:root {
  --color-black: #0a0e1a;
  --color-dark-gray: #1a1f2e;
  --color-medium-gray: #2a2f3e;
  --color-border-gray: #6b7a9a;
  --color-white: #e8edf7;
  --text-primary: #e8edf7;
  --text-secondary: #b8c5d9;
  --text-muted: #6b7a9a;
  --text-light-gray: #8a96aa;
  --text-black: #0a0e1a;
  --btn-red: #7a4d9c;
  --btn-red-hover: #5d3a7a;
  --btn-light-red: #9966cc;
  --btn-white: #e8edf7;
  --btn-blue: #3d5a80;
  --btn-green: #2d5a3d;
  --btn-yellow: #c9a96e;
  --btn-yellow-hover: #b89960;
  --bg-primary: #0a0e1a;
  --bg-secondary: #1a1f2e;
  --bg-tertiary: #2a2f3e;
  --bg-overlay: rgba(10, 14, 26, 0.9);
  --bg-light: #f0f4f8;
  --border-primary: 1px solid #6b7a9a;
  --border-white: 1px solid #e8edf7;
  --shadow-light: 0 -4px 20px rgba(123, 77, 156, 0.2);
  --shadow-heavy: 0 4px 10px rgba(61, 90, 128, 0.4);
  --shadow-menu: 5px 0 10px 0 rgba(107, 122, 154, 0.3)
}

.hero-banner {
  background: radial-gradient(ellipse at center, #2a2f3e 0%, #1a1f2e 40%, #0a0e1a 100%);
  position: relative;
  overflow: hidden
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(153, 102, 204, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(61, 90, 128, 0.08) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
  animation: mysticalGlow 8s ease-in-out infinite alternate
}

@keyframes mysticalGlow {
  0% {
    opacity: 0.3
  }

  100% {
    opacity: 0.7
  }
}

.hero-content {
  backdrop-filter: blur(1px)
}

.hero-title {
  text-shadow: 0 0 10px rgba(153, 102, 204, 0.5), 0 0 20px rgba(153, 102, 204, 0.3), 2px 2px 4px rgba(0, 0, 0, 0.8);
  animation: titlePulse 4s ease-in-out infinite alternate
}

@keyframes titlePulse {
  0% {
    text-shadow: 0 0 10px rgba(153, 102, 204, 0.5), 0 0 20px rgba(153, 102, 204, 0.3), 2px 2px 4px rgba(0, 0, 0, 0.8)
  }

  100% {
    text-shadow: 0 0 15px rgba(153, 102, 204, 0.8), 0 0 25px rgba(153, 102, 204, 0.5), 0 0 35px rgba(153, 102, 204, 0.3), 2px 2px 4px rgba(0, 0, 0, 0.8)
  }
}

.cta-button {
  background: linear-gradient(135deg, #7a4d9c 0%, #5d3a7a 100%);
  box-shadow: 0 0 20px rgba(123, 77, 156, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(153, 102, 204, 0.4)
}

.cta-button:hover {
  background: linear-gradient(135deg, #9966cc 0%, #7a4d9c 100%);
  box-shadow: 0 0 25px rgba(153, 102, 204, 0.5), 0 5px 15px rgba(123, 77, 156, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2)
}

.gaming-categories {
  background: linear-gradient(180deg, #1a1f2e 0%, #2a2f3e 50%, #1a1f2e 100%);
  position: relative
}

.gaming-categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(107, 122, 154, 0.02) 100px, rgba(107, 122, 154, 0.02) 200px)
}

.category-card {
  background: linear-gradient(145deg, #2a2f3e 0%, #1a1f2e 100%);
  border: 1px solid rgba(107, 122, 154, 0.3);
  position: relative;
  overflow: hidden
}

.category-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(153, 102, 204, 0.1) 45deg, transparent 90deg, rgba(61, 90, 128, 0.1) 180deg, transparent 270deg);
  animation: cardRotate 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease
}

.category-card:hover::before {
  opacity: 1
}

@keyframes cardRotate {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

.category-card:hover {
  border-color: rgba(153, 102, 204, 0.6);
  box-shadow: 0 10px 30px rgba(123, 77, 156, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05)
}

.category-icon {
  background: linear-gradient(135deg, rgba(61, 90, 128, 0.3) 0%, rgba(123, 77, 156, 0.3) 100%);
  border: 2px solid rgba(107, 122, 154, 0.4);
  box-shadow: 0 0 15px rgba(153, 102, 204, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.1);
  position: relative
}

.category-icon::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 102, 204, 0.1) 0%, transparent 70%);
  animation: iconGlow 3s ease-in-out infinite alternate
}

@keyframes iconGlow {
  0% {
    opacity: 0.3
  }

  100% {
    opacity: 0.8
  }
}

.security-section {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #2a2f3e 100%), radial-gradient(circle at 30% 70%, rgba(61, 90, 128, 0.1) 0%, transparent 50%);
  position: relative
}

.security-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1" fill="rgba(107,122,154,0.2)"/></svg>') repeat;
  animation: starfield 15s linear infinite
}

@keyframes starfield {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(-60px)
  }
}

.security-item {
  background: rgba(42, 47, 62, 0.4);
  border: 1px solid rgba(107, 122, 154, 0.2);
  backdrop-filter: blur(10px);
  position: relative
}

.security-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(153, 102, 204, 0.05) 0%, transparent 50%, rgba(61, 90, 128, 0.05) 100%);
  border-radius: inherit
}

.security-icon {
  background: linear-gradient(135deg, rgba(123, 77, 156, 0.2) 0%, rgba(61, 90, 128, 0.2) 100%);
  border: 2px solid rgba(107, 122, 154, 0.3);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05)
}

.testimonials {
  background: radial-gradient(ellipse at center, #1a1f2e 0%, #0a0e1a 70%)
}

.testimonial-card {
  background: linear-gradient(145deg, #2a2f3e 0%, #1a1f2e 100%);
  border: 1px solid rgba(107, 122, 154, 0.3);
  position: relative
}

.testimonial-card::before {
  content: '"';
  color: rgba(153, 102, 204, 0.8);
  text-shadow: 0 0 10px rgba(153, 102, 204, 0.5)
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: whisperGlow 2s ease-in-out infinite alternate
}

@keyframes whisperGlow {
  0% {
    opacity: 0.2
  }

  100% {
    opacity: 0.6
  }
}

.news-section {
  background: linear-gradient(180deg, #2a2f3e 0%, #1a1f2e 100%)
}

.news-card {
  background: linear-gradient(145deg, #1a1f2e 0%, #2a2f3e 100%);
  border: 1px solid rgba(107, 122, 154, 0.3);
  position: relative;
  overflow: hidden
}

.news-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(153, 102, 204, 0.2) 0%, transparent 25%, transparent 75%, rgba(61, 90, 128, 0.2) 100%);
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease
}

.news-card:hover::before {
  opacity: 1
}

.news-card:hover {
  border-color: rgba(153, 102, 204, 0.5)
}

.news-image {
  background: linear-gradient(45deg, rgba(61, 90, 128, 0.6) 0%, rgba(123, 77, 156, 0.6) 50%, rgba(201, 169, 110, 0.6) 100%);
  position: relative
}

.news-image::after {
  content: '🌙';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3))
}

.stats-section {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
  position: relative
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(107, 122, 154, 0.02) 30deg, transparent 60deg)
}

.stat-item {
  border: 1px solid rgba(107, 122, 154, 0.3);
  background: linear-gradient(145deg, rgba(42, 47, 62, 0.3) 0%, rgba(26, 31, 46, 0.3) 100%);
  backdrop-filter: blur(5px);
  position: relative
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(153, 102, 204, 0.05) 0%, transparent 70%);
  border-radius: inherit;
  animation: statPulse 3s ease-in-out infinite
}

@keyframes statPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6
  }
}

.stat-number {
  text-shadow: 0 0 10px rgba(123, 77, 156, 0.5), 0 0 20px rgba(123, 77, 156, 0.3);
  position: relative;
  z-index: 2
}

.promo-banner {
  background: linear-gradient(45deg, #0a0e1a 0%, #2a2f3e 50%, #1a1f2e 100%), radial-gradient(circle at 80% 20%, rgba(153, 102, 204, 0.1) 0%, transparent 50%);
  position: relative
}

.promo-banner::before {
  background: repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(107, 122, 154, 0.05) 3px, rgba(107, 122, 154, 0.05) 6px), repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(153, 102, 204, 0.03) 3px, rgba(153, 102, 204, 0.03) 6px);
  animation: patternShift 8s linear infinite
}

@keyframes patternShift {
  0% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(12px, 12px)
  }
}

.promo-title {
  text-shadow: 0 0 15px rgba(153, 102, 204, 0.6), 0 0 25px rgba(123, 77, 156, 0.4)
}

.gdpr-banner {
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(26, 31, 46, 0.95) 100%);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(107, 122, 154, 0.4);
  box-shadow: 0 -5px 20px rgba(123, 77, 156, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05)
}

.gdpr-btn-primary {
  background: linear-gradient(135deg, #7a4d9c 0%, #5d3a7a 100%);
  border: 1px solid rgba(153, 102, 204, 0.4);
  box-shadow: 0 0 15px rgba(123, 77, 156, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1)
}

.gdpr-btn-primary:hover {
  background: linear-gradient(135deg, #9966cc 0%, #7a4d9c 100%);
  box-shadow: 0 0 20px rgba(153, 102, 204, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2)
}

.gdpr-btn-secondary {
  border: 1px solid rgba(107, 122, 154, 0.4);
  background: rgba(42, 47, 62, 0.3);
  backdrop-filter: blur(5px)
}

.gdpr-btn-secondary:hover {
  background: rgba(107, 122, 154, 0.2);
  border-color: rgba(153, 102, 204, 0.5)
}

.btn-red {
  background: linear-gradient(135deg, #7a4d9c 0%, #5d3a7a 100%);
  box-shadow: 0 4px 15px rgba(123, 77, 156, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1)
}

.btn-red:hover {
  background: linear-gradient(135deg, #9966cc 0%, #7a4d9c 100%);
  box-shadow: 0 6px 20px rgba(153, 102, 204, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2)
}

.btn-blue {
  background: linear-gradient(135deg, #3d5a80 0%, #2a3f5a 100%);
  box-shadow: 0 4px 15px rgba(61, 90, 128, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1)
}

.btn-blue:hover {
  background: linear-gradient(135deg, #4a6a94 0%, #3d5a80 100%);
  box-shadow: 0 6px 20px rgba(61, 90, 128, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2)
}

.btn-green {
  background: linear-gradient(135deg, #2d5a3d 0%, #1f3e2a 100%);
  box-shadow: 0 4px 15px rgba(45, 90, 61, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1)
}

.btn-green:hover {
  background: linear-gradient(135deg, #3a6b4a 0%, #2d5a3d 100%);
  box-shadow: 0 6px 20px rgba(45, 90, 61, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2)
}

.btn-light-red {
  background: linear-gradient(135deg, #9966cc 0%, #7a4d9c 100%);
  box-shadow: 0 4px 15px rgba(153, 102, 204, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1)
}

.btn-light-red:hover {
  background: linear-gradient(135deg, #a673d1 0%, #9966cc 100%);
  box-shadow: 0 6px 20px rgba(153, 102, 204, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2)
}

.section-title {
  text-shadow: 0 0 10px rgba(153, 102, 204, 0.4), 0 2px 4px rgba(0, 0, 0, 0.8)
}

.section-subtitle {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5)
}

.casino-item:hover,
.category-card:hover h3,
.security-item:hover h3,
.testimonial-author,
.news-title {
  text-shadow: 0 0 8px rgba(153, 102, 204, 0.6)
}

:root {
  --color-black: #0a0e1a;
  --color-dark-gray: #1a1f2e;
  --color-medium-gray: #2a2f3e;
  --color-border-gray: #6b7a9a;
  --color-white: #e8edf7;
  --text-primary: #e8edf7;
  --text-secondary: #b8c5d9;
  --text-muted: #6b7a9a;
  --text-light-gray: #8a96aa;
  --text-black: #0a0e1a;
  --btn-red: #7a4d9c;
  --btn-red-hover: #5d3a7a;
  --btn-light-red: #9966cc;
  --btn-white: #e8edf7;
  --btn-blue: #3d5a80;
  --btn-green: #2d5a3d;
  --btn-yellow: #c9a96e;
  --btn-yellow-hover: #b89960;
  --bg-primary: #0a0e1a;
  --bg-secondary: #1a1f2e;
  --bg-tertiary: #2a2f3e;
  --bg-overlay: rgba(10, 14, 26, 0.9);
  --bg-light: #f0f4f8;
  --border-primary: 1px solid #6b7a9a;
  --border-white: 1px solid #e8edf7;
  --shadow-light: 0 -4px 20px rgba(123, 77, 156, 0.2);
  --shadow-heavy: 0 4px 10px rgba(61, 90, 128, 0.4);
  --shadow-menu: 5px 0 10px 0 rgba(107, 122, 154, 0.3)
}

.hero-banner {
  background: radial-gradient(ellipse at center, #2a2f3e 0%, #1a1f2e 40%, #0a0e1a 100%);
  position: relative;
  overflow: hidden
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(153, 102, 204, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(61, 90, 128, 0.08) 0%, transparent 50%), radial-gradient(circle at 40% 80%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
  animation: mysticalGlow 8s ease-in-out infinite alternate
}

@keyframes mysticalGlow {
  0% {
    opacity: 0.3
  }

  100% {
    opacity: 0.7
  }
}

.hero-content {
  backdrop-filter: blur(1px)
}

.hero-title {
  text-shadow: 0 0 10px rgba(153, 102, 204, 0.5), 0 0 20px rgba(153, 102, 204, 0.3), 2px 2px 4px rgba(0, 0, 0, 0.8);
  animation: titlePulse 4s ease-in-out infinite alternate
}

@keyframes titlePulse {
  0% {
    text-shadow: 0 0 10px rgba(153, 102, 204, 0.5), 0 0 20px rgba(153, 102, 204, 0.3), 2px 2px 4px rgba(0, 0, 0, 0.8)
  }

  100% {
    text-shadow: 0 0 15px rgba(153, 102, 204, 0.8), 0 0 25px rgba(153, 102, 204, 0.5), 0 0 35px rgba(153, 102, 204, 0.3), 2px 2px 4px rgba(0, 0, 0, 0.8)
  }
}

.cta-button {
  background: linear-gradient(135deg, #7a4d9c 0%, #5d3a7a 100%);
  box-shadow: 0 0 20px rgba(123, 77, 156, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(153, 102, 204, 0.4)
}

.cta-button:hover {
  background: linear-gradient(135deg, #9966cc 0%, #7a4d9c 100%);
  box-shadow: 0 0 25px rgba(153, 102, 204, 0.5), 0 5px 15px rgba(123, 77, 156, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2)
}

.gaming-categories {
  background: linear-gradient(180deg, #1a1f2e 0%, #2a2f3e 50%, #1a1f2e 100%);
  position: relative
}

.gaming-categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(107, 122, 154, 0.02) 100px, rgba(107, 122, 154, 0.02) 200px)
}

.category-card {
  background: linear-gradient(145deg, #2a2f3e 0%, #1a1f2e 100%);
  border: 1px solid rgba(107, 122, 154, 0.3);
  position: relative;
  overflow: hidden
}

.category-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(153, 102, 204, 0.1) 45deg, transparent 90deg, rgba(61, 90, 128, 0.1) 180deg, transparent 270deg);
  animation: cardRotate 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease
}

.category-card:hover::before {
  opacity: 1
}

@keyframes cardRotate {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

.category-card:hover {
  border-color: rgba(153, 102, 204, 0.6);
  box-shadow: 0 10px 30px rgba(123, 77, 156, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05)
}

.category-icon {
  background: linear-gradient(135deg, rgba(61, 90, 128, 0.3) 0%, rgba(123, 77, 156, 0.3) 100%);
  border: 2px solid rgba(107, 122, 154, 0.4);
  box-shadow: 0 0 15px rgba(153, 102, 204, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.1);
  position: relative
}

.category-icon::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 102, 204, 0.1) 0%, transparent 70%);
  animation: iconGlow 3s ease-in-out infinite alternate
}

@keyframes iconGlow {
  0% {
    opacity: 0.3
  }

  100% {
    opacity: 0.8
  }
}

.security-section {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #2a2f3e 100%), radial-gradient(circle at 30% 70%, rgba(61, 90, 128, 0.1) 0%, transparent 50%);
  position: relative
}

.security-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1" fill="rgba(107,122,154,0.2)"/></svg>') repeat;
  animation: starfield 15s linear infinite
}

@keyframes starfield {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(-60px)
  }
}

.security-item {
  background: rgba(42, 47, 62, 0.4);
  border: 1px solid rgba(107, 122, 154, 0.2);
  backdrop-filter: blur(10px);
  position: relative
}

.security-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(153, 102, 204, 0.05) 0%, transparent 50%, rgba(61, 90, 128, 0.05) 100%);
  border-radius: inherit
}

.security-icon {
  background: linear-gradient(135deg, rgba(123, 77, 156, 0.2) 0%, rgba(61, 90, 128, 0.2) 100%);
  border: 2px solid rgba(107, 122, 154, 0.3);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05)
}

.testimonials {
  background: radial-gradient(ellipse at center, #1a1f2e 0%, #0a0e1a 70%)
}

.testimonial-card {
  background: linear-gradient(145deg, #2a2f3e 0%, #1a1f2e 100%);
  border: 1px solid rgba(107, 122, 154, 0.3);
  position: relative
}

.testimonial-card::before {
  content: '"';
  color: rgba(153, 102, 204, 0.8);
  text-shadow: 0 0 10px rgba(153, 102, 204, 0.5)
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: whisperGlow 2s ease-in-out infinite alternate
}

@keyframes whisperGlow {
  0% {
    opacity: 0.2
  }

  100% {
    opacity: 0.6
  }
}

.news-section {
  background: linear-gradient(180deg, #2a2f3e 0%, #1a1f2e 100%)
}

.news-card {
  background: linear-gradient(145deg, #1a1f2e 0%, #2a2f3e 100%);
  border: 1px solid rgba(107, 122, 154, 0.3);
  position: relative;
  overflow: hidden
}

.news-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(153, 102, 204, 0.2) 0%, transparent 25%, transparent 75%, rgba(61, 90, 128, 0.2) 100%);
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease
}

.news-card:hover::before {
  opacity: 1
}

.news-card:hover {
  border-color: rgba(153, 102, 204, 0.5)
}

.news-image {
  background: linear-gradient(45deg, rgba(61, 90, 128, 0.6) 0%, rgba(123, 77, 156, 0.6) 50%, rgba(201, 169, 110, 0.6) 100%);
  position: relative
}

.news-image::after {
  content: '🌙';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3))
}

.stats-section {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
  position: relative
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(107, 122, 154, 0.02) 30deg, transparent 60deg)
}

.stat-item {
  border: 1px solid rgba(107, 122, 154, 0.3);
  background: linear-gradient(145deg, rgba(42, 47, 62, 0.3) 0%, rgba(26, 31, 46, 0.3) 100%);
  backdrop-filter: blur(5px);
  position: relative
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(153, 102, 204, 0.05) 0%, transparent 70%);
  border-radius: inherit;
  animation: statPulse 3s ease-in-out infinite
}

@keyframes statPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6
  }
}

.stat-number {
  text-shadow: 0 0 10px rgba(123, 77, 156, 0.5), 0 0 20px rgba(123, 77, 156, 0.3);
  position: relative;
  z-index: 2
}

.promo-banner {
  background: linear-gradient(45deg, #0a0e1a 0%, #2a2f3e 50%, #1a1f2e 100%), radial-gradient(circle at 80% 20%, rgba(153, 102, 204, 0.1) 0%, transparent 50%);
  position: relative
}

.promo-banner::before {
  background: repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(107, 122, 154, 0.05) 3px, rgba(107, 122, 154, 0.05) 6px), repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(153, 102, 204, 0.03) 3px, rgba(153, 102, 204, 0.03) 6px);
  animation: patternShift 8s linear infinite
}

@keyframes patternShift {
  0% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(12px, 12px)
  }
}

.promo-title {
  text-shadow: 0 0 15px rgba(153, 102, 204, 0.6), 0 0 25px rgba(123, 77, 156, 0.4)
}

.gdpr-banner {
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(26, 31, 46, 0.95) 100%);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(107, 122, 154, 0.4);
  box-shadow: 0 -5px 20px rgba(123, 77, 156, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05)
}

.gdpr-btn-primary {
  background: linear-gradient(135deg, #7a4d9c 0%, #5d3a7a 100%);
  border: 1px solid rgba(153, 102, 204, 0.4);
  box-shadow: 0 0 15px rgba(123, 77, 156, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1)
}

.gdpr-btn-primary:hover {
  background: linear-gradient(135deg, #9966cc 0%, #7a4d9c 100%);
  box-shadow: 0 0 20px rgba(153, 102, 204, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2)
}

.gdpr-btn-secondary {
  border: 1px solid rgba(107, 122, 154, 0.4);
  background: rgba(42, 47, 62, 0.3);
  backdrop-filter: blur(5px)
}

.gdpr-btn-secondary:hover {
  background: rgba(107, 122, 154, 0.2);
  border-color: rgba(153, 102, 204, 0.5)
}

.btn-red {
  background: linear-gradient(135deg, #7a4d9c 0%, #5d3a7a 100%);
  box-shadow: 0 4px 15px rgba(123, 77, 156, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1)
}

.btn-red:hover {
  background: linear-gradient(135deg, #9966cc 0%, #7a4d9c 100%);
  box-shadow: 0 6px 20px rgba(153, 102, 204, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2)
}

.btn-blue {
  background: linear-gradient(135deg, #3d5a80 0%, #2a3f5a 100%);
  box-shadow: 0 4px 15px rgba(61, 90, 128, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1)
}

.btn-blue:hover {
  background: linear-gradient(135deg, #4a6a94 0%, #3d5a80 100%);
  box-shadow: 0 6px 20px rgba(61, 90, 128, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2)
}

.btn-green {
  background: linear-gradient(135deg, #2d5a3d 0%, #1f3e2a 100%);
  box-shadow: 0 4px 15px rgba(45, 90, 61, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1)
}

.btn-green:hover {
  background: linear-gradient(135deg, #3a6b4a 0%, #2d5a3d 100%);
  box-shadow: 0 6px 20px rgba(45, 90, 61, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2)
}

.btn-light-red {
  background: linear-gradient(135deg, #9966cc 0%, #7a4d9c 100%);
  box-shadow: 0 4px 15px rgba(153, 102, 204, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1)
}

.btn-light-red:hover {
  background: linear-gradient(135deg, #a673d1 0%, #9966cc 100%);
  box-shadow: 0 6px 20px rgba(153, 102, 204, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2)
}

.section-title {
  text-shadow: 0 0 10px rgba(153, 102, 204, 0.4), 0 2px 4px rgba(0, 0, 0, 0.8);
  animation: titleBreathing 6s ease-in-out infinite
}

@keyframes titleBreathing {

  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(153, 102, 204, 0.4), 0 2px 4px rgba(0, 0, 0, 0.8)
  }

  50% {
    transform: scale(1.02);
    text-shadow: 0 0 15px rgba(153, 102, 204, 0.6), 0 0 25px rgba(153, 102, 204, 0.3), 0 2px 4px rgba(0, 0, 0, 0.8)
  }
}

.section-subtitle {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  animation: subtitleFloat 8s ease-in-out infinite
}

@keyframes subtitleFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-3px)
  }
}

.casino-item:hover,
.category-card:hover h3,
.security-item:hover h3,
.testimonial-author,
.news-title {
  text-shadow: 0 0 8px rgba(153, 102, 204, 0.6)
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(153, 102, 204, 0.03) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(61, 90, 128, 0.03) 0%, transparent 20%), radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.02) 0%, transparent 25%);
  animation: spiritsMovement 20s ease-in-out infinite;
  pointer-events: none;
  z-index: -1
}

@keyframes spiritsMovement {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3
  }

  25% {
    transform: translate(-20px, -30px) rotate(90deg);
    opacity: 0.6
  }

  50% {
    transform: translate(30px, -20px) rotate(180deg);
    opacity: 0.4
  }

  75% {
    transform: translate(-10px, 40px) rotate(270deg);
    opacity: 0.7
  }
}

.container::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(ellipse at 30% 70%, rgba(107, 122, 154, 0.05) 0%, transparent 60%), radial-gradient(ellipse at 70% 30%, rgba(153, 102, 204, 0.03) 0%, transparent 60%);
  animation: mistFlow 15s ease-in-out infinite;
  pointer-events: none;
  z-index: -1
}

@keyframes mistFlow {

  0%,
  100% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 0.2
  }

  33% {
    transform: translateX(20px) translateY(-10px) scale(1.1);
    opacity: 0.4
  }

  66% {
    transform: translateX(-15px) translateY(15px) scale(0.9);
    opacity: 0.3
  }
}

.navbar {
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px rgba(123, 77, 156, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(153, 102, 204, 0.05) 0%, transparent 20%, transparent 80%, rgba(61, 90, 128, 0.05) 100%);
  animation: navbarGlow 8s ease-in-out infinite
}

@keyframes navbarGlow {

  0%,
  100% {
    opacity: 0.3
  }

  50% {
    opacity: 0.7
  }
}

.navbar a {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}

.navbar a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(153, 102, 204, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1
}

.navbar a:hover::before {
  width: 40px;
  height: 40px
}

.navbar a:hover {
  text-shadow: 0 0 10px rgba(153, 102, 204, 0.8), 0 0 20px rgba(153, 102, 204, 0.4);
  transform: translateY(-2px)
}

.logo {
  filter: drop-shadow(0 0 10px rgba(153, 102, 204, 0.3));
  animation: logoMystic 5s ease-in-out infinite
}

@keyframes logoMystic {

  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(153, 102, 204, 0.3))
  }

  50% {
    filter: drop-shadow(0 0 15px rgba(153, 102, 204, 0.6)) drop-shadow(0 0 25px rgba(153, 102, 204, 0.2))
  }
}

.casino {
  position: relative
}

.casino::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: conic-gradient(from 0deg, rgba(153, 102, 204, 0.1) 0deg, transparent 60deg, rgba(61, 90, 128, 0.1) 120deg, transparent 180deg, rgba(201, 169, 110, 0.08) 240deg, transparent 300deg, rgba(153, 102, 204, 0.1) 360deg);
  animation: casinoAura 12s linear infinite;
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1
}

@keyframes casinoAura {
  0% {
    transform: rotate(0deg) scale(0.8);
    opacity: 0.3
  }

  50% {
    transform: rotate(180deg) scale(1.2);
    opacity: 0.6
  }

  100% {
    transform: rotate(360deg) scale(0.8);
    opacity: 0.3
  }
}

.casino-item {
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1)
}

.casino-item::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: linear-gradient(135deg, rgba(153, 102, 204, 0.1) 0%, rgba(61, 90, 128, 0.1) 50%, rgba(201, 169, 110, 0.08) 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1
}

.casino-item:hover::after {
  opacity: 1
}

.casino-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(123, 77, 156, 0.3), 0 0 30px rgba(153, 102, 204, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.1)
}

.casino-item img {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3))
}

.casino-item:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(153, 102, 204, 0.3))
}

footer {
  position: relative;
  background: linear-gradient(180deg, rgba(26, 31, 46, 0.8) 0%, rgba(10, 14, 26, 0.95) 100%);
  backdrop-filter: blur(10px)
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(153, 102, 204, 0.6) 20%, rgba(61, 90, 128, 0.6) 50%, rgba(201, 169, 110, 0.6) 80%, transparent 100%);
  animation: rootsGlow 6s ease-in-out infinite
}

@keyframes rootsGlow {

  0%,
  100% {
    opacity: 0.3
  }

  50% {
    opacity: 0.8
  }
}

.logo-info img {
  filter: drop-shadow(0 0 8px rgba(153, 102, 204, 0.4));
  transition: filter 0.3s ease
}

.logo-info img:hover {
  filter: drop-shadow(0 0 12px rgba(153, 102, 204, 0.6))
}

.footer-links a {
  position: relative;
  transition: all 0.3s ease
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(153, 102, 204, 0.8), rgba(61, 90, 128, 0.8));
  transition: width 0.3s ease
}

.footer-links a:hover::after {
  width: 100%
}

.footer-links a:hover {
  text-shadow: 0 0 8px rgba(153, 102, 204, 0.6);
  transform: translateY(-1px)
}

.footer-age {
  background: linear-gradient(135deg, rgba(42, 47, 62, 0.6) 0%, rgba(26, 31, 46, 0.8) 100%);
  backdrop-filter: blur(8px);
  position: relative
}

.footer-age::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(153, 102, 204, 0.4) 50%, transparent 100%)
}

.modal-overlay {
  background: radial-gradient(ellipse at center, rgba(10, 14, 26, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(15px);
  animation: portalOpen 0.5s cubic-bezier(0.4, 0, 0.2, 1)
}

@keyframes portalOpen {
  0% {
    opacity: 0;
    backdrop-filter: blur(0px);
    background: radial-gradient(ellipse at center, rgba(10, 14, 26, 0) 0%, rgba(0, 0, 0, 0) 100%)
  }

  100% {
    opacity: 1;
    backdrop-filter: blur(15px);
    background: radial-gradient(ellipse at center, rgba(10, 14, 26, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%)
  }
}

.modal {
  background: linear-gradient(145deg, rgba(232, 237, 247, 0.95) 0%, rgba(184, 197, 217, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(107, 122, 154, 0.3);
  box-shadow: 0 20px 60px rgba(123, 77, 156, 0.4), 0 0 40px rgba(153, 102, 204, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  animation: modalMaterialize 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative
}

@keyframes modalMaterialize {
  0% {
    transform: scale(0.5) rotateY(90deg);
    opacity: 0;
    filter: blur(10px)
  }

  50% {
    transform: scale(1.05) rotateY(45deg);
    opacity: 0.8;
    filter: blur(2px)
  }

  100% {
    transform: scale(1) rotateY(0deg);
    opacity: 1;
    filter: blur(0px)
  }
}

.modal::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: conic-gradient(from 0deg, rgba(153, 102, 204, 0.4) 0deg, rgba(61, 90, 128, 0.4) 120deg, rgba(201, 169, 110, 0.3) 240deg, rgba(153, 102, 204, 0.4) 360deg);
  border-radius: inherit;
  z-index: -1;
  animation: modalAura 3s linear infinite
}

@keyframes modalAura {
  0% {
    transform: rotate(0deg);
    opacity: 0.4
  }

  100% {
    transform: rotate(360deg);
    opacity: 0.4
  }
}

.modal .age-circle {
  background: linear-gradient(135deg, #7a4d9c 0%, #5d3a7a 100%);
  box-shadow: 0 0 20px rgba(123, 77, 156, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  animation: ageCirclePulse 2s ease-in-out infinite
}

@keyframes ageCirclePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(123, 77, 156, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2)
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(123, 77, 156, 0.7), 0 0 40px rgba(153, 102, 204, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.3)
  }
}

.modal button {
  background: linear-gradient(135deg, #c9a96e 0%, #b89960 100%);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.modal button:hover {
  background: linear-gradient(135deg, #d4b378 0%, #c9a96e 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4), 0 0 15px rgba(201, 169, 110, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.3)
}

section {
  animation: sectionAppear 1s ease-out
}

@keyframes sectionAppear {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px)
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px)
  }
}

.hero-banner {
  animation-delay: 0.1s
}

.gaming-categories {
  animation-delay: 0.2s
}

.security-section {
  animation-delay: 0.3s
}

.testimonials {
  animation-delay: 0.4s
}

.news-section {
  animation-delay: 0.5s
}

.stats-section {
  animation-delay: 0.6s
}

.promo-banner {
  animation-delay: 0.7s
}

.eighteen section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eighteen .hero-title {
  margin-bottom: 0;
  padding-bottom: 25px;
}

.eighteen .icon {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  background: var(--color-border-gray);
  border-radius: 50%;
}