:root {
  --color-void-black: #0a0a0f;
  --color-deep-space: #1a1b3a;
  --color-nebula-purple: #2d1b69;
  --color-cosmic-blue: #1e3a8a;
  --color-stellar-indigo: #3b2f7a;
  --color-star-gold: #ffd700;
  --color-aurora-green: #4ade80;
  --color-mystic-cyan: #22d3ee;
  --color-comet-white: #f8fafc;
  --color-galaxy-dust: #9333ea;
  --aurora-primary: #10b981;
  --aurora-secondary: #06b6d4;
  --aurora-tertiary: #8b5cf6;
  --gradient-cosmic: linear-gradient(135deg, var(--color-void-black) 0%, var(--color-deep-space) 30%, var(--color-nebula-purple) 70%, var(--color-stellar-indigo) 100%);
  --gradient-aurora: linear-gradient(45deg, var(--aurora-primary) 0%, var(--aurora-secondary) 50%, var(--aurora-tertiary) 100%);
  --gradient-starfall: radial-gradient(circle at 30% 20%, var(--color-star-gold) 0%, transparent 50%), radial-gradient(circle at 70% 80%, var(--color-mystic-cyan) 0%, transparent 50%);
  --gradient-galaxy: conic-gradient(from 180deg, var(--color-galaxy-dust), var(--color-cosmic-blue), var(--color-nebula-purple), var(--color-galaxy-dust))
}

body {
  background: var(--gradient-cosmic);
  background-attachment: fixed;
  color: var(--color-comet-white);
  position: relative;
  overflow-x: hidden
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(2px 2px at 20px 30px, var(--color-star-gold), transparent), radial-gradient(2px 2px at 40px 70px, var(--color-comet-white), transparent), radial-gradient(1px 1px at 90px 40px, var(--color-mystic-cyan), transparent), radial-gradient(1px 1px at 130px 80px, var(--color-aurora-green), transparent), radial-gradient(2px 2px at 160px 30px, var(--color-star-gold), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: starfield 20s linear infinite;
  pointer-events: none;
  z-index: -1
}

@keyframes starfield {
  from {
    transform: translateY(0)
  }

  to {
    transform: translateY(-100px)
  }
}

.navbar {
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid var(--color-galaxy-dust);
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3)
}

.navbar a {
  color: var(--color-comet-white);
  text-shadow: 0 0 10px var(--color-mystic-cyan);
  position: relative
}

.navbar a::before {
  content: '✦';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--color-star-gold)
}

.navbar a:hover::before {
  opacity: 1;
  animation: twinkle 1s infinite
}

.navbar a:hover {
  color: var(--color-star-gold);
  text-shadow: 0 0 15px var(--color-star-gold)
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2)
  }
}

.hero-banner {
  background: var(--gradient-cosmic);
  position: relative;
  border-bottom: 3px solid var(--aurora-primary);
  overflow: hidden
}

.hero-banner::before {
  background: var(--gradient-starfall);
  animation: aurora-dance 8s ease-in-out infinite
}

.hero-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(34, 211, 238, 0.1) 50%, transparent 70%), linear-gradient(-45deg, transparent 30%, rgba(16, 185, 129, 0.1) 50%, transparent 70%);
  animation: northern-lights 6s ease-in-out infinite alternate
}

@keyframes aurora-dance {

  0%,
  100% {
    opacity: 0.3;
    transform: rotate(0deg) scale(1)
  }

  33% {
    opacity: 0.6;
    transform: rotate(120deg) scale(1.1)
  }

  66% {
    opacity: 0.4;
    transform: rotate(240deg) scale(0.9)
  }
}

@keyframes northern-lights {
  0% {
    opacity: 0.2;
    transform: translateX(-10%)
  }

  50% {
    opacity: 0.5;
    transform: translateX(0%)
  }

  100% {
    opacity: 0.3;
    transform: translateX(10%)
  }
}

.hero-title {
  background: var(--gradient-aurora);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  animation: stellar-pulse 3s ease-in-out infinite
}

@keyframes stellar-pulse {

  0%,
  100% {
    filter: brightness(1) drop-shadow(0 0 20px rgba(255, 215, 0, 0.3))
  }

  50% {
    filter: brightness(1.2) drop-shadow(0 0 30px rgba(255, 215, 0, 0.6))
  }
}

.hero-subtitle {
  color: var(--color-mystic-cyan);
  text-shadow: 0 0 10px var(--aurora-secondary)
}

.cta-button {
  background: var(--gradient-galaxy);
  border: 2px solid var(--color-star-gold);
  color: var(--color-comet-white);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden
}

.cta-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-aurora);
  opacity: 0;
  transition: opacity 0.3s ease
}

.cta-button:hover::before {
  opacity: 0.2;
  animation: magic-swirl 1s ease-in-out
}

@keyframes magic-swirl {
  0% {
    transform: rotate(0deg) scale(0)
  }

  50% {
    transform: rotate(180deg) scale(1)
  }

  100% {
    transform: rotate(360deg) scale(0)
  }
}

.gaming-categories {
  background: rgba(29, 27, 105, 0.1);
  backdrop-filter: blur(10px)
}

.category-card {
  background: rgba(26, 27, 58, 0.7);
  border: 2px solid var(--color-stellar-indigo);
  backdrop-filter: blur(15px);
  position: relative
}

.category-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: var(--gradient-aurora);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease
}

.category-card:hover::before {
  opacity: 0.3
}

.category-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(147, 51, 234, 0.4);
  border-color: var(--color-star-gold)
}

.category-icon {
  background: var(--gradient-galaxy);
  border: 3px solid var(--aurora-primary);
  box-shadow: 0 0 20px var(--aurora-secondary);
  animation: float-magic 4s ease-in-out infinite
}

@keyframes float-magic {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  25% {
    transform: translateY(-5px) rotate(2deg)
  }

  50% {
    transform: translateY(0) rotate(0deg)
  }

  75% {
    transform: translateY(-3px) rotate(-2deg)
  }
}

.category-card h3 {
  background: linear-gradient(45deg, var(--color-star-gold), var(--color-mystic-cyan));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.category-card p {
  color: var(--aurora-secondary)
}

.security-section {
  background: var(--gradient-cosmic);
  border-top: 3px solid var(--aurora-tertiary);
  border-bottom: 3px solid var(--aurora-primary);
  position: relative
}

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(34, 211, 238, 0.05) 50px, rgba(34, 211, 238, 0.05) 100px);
  animation: mystic-waves 10s linear infinite
}

@keyframes mystic-waves {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(100px)
  }
}

.security-item {
  background: rgba(45, 27, 105, 0.3);
  border: 2px solid var(--aurora-tertiary);
  backdrop-filter: blur(20px);
  position: relative
}

.security-item::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: var(--color-star-gold);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--color-star-gold);
  animation: protection-glow 2s ease-in-out infinite
}

@keyframes protection-glow {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.2)
  }
}

.security-icon {
  background: var(--gradient-aurora);
  border: 3px solid var(--color-mystic-cyan);
  box-shadow: 0 0 25px var(--aurora-primary)
}

.casino-wrapper {
  background: rgba(10, 10, 15, 0.5);
  border: 3px solid var(--color-galaxy-dust);
  box-shadow: 0 0 30px rgba(147, 51, 234, 0.5)
}

.casino-item {
  background: rgba(30, 58, 138, 0.2);
  border: 2px solid var(--aurora-secondary);
  backdrop-filter: blur(15px);
  position: relative
}

.casino-item::before {
  content: '⭐';
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 20px;
  color: var(--color-star-gold);
  animation: twinkle 2s ease-in-out infinite
}

.casino-item h4 {
  color: var(--color-star-gold);
  text-shadow: 0 0 10px var(--color-star-gold)
}

.casino-item p {
  color: var(--aurora-secondary)
}

.btn-red {
  background: var(--gradient-galaxy);
  border: 2px solid var(--color-star-gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden
}

.btn-red::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  transition: left 0.5s ease
}

.btn-red:hover::before {
  left: 100%
}

.btn-blue {
  background: var(--gradient-aurora);
  border: 2px solid var(--aurora-primary);
  box-shadow: 0 0 20px var(--aurora-secondary)
}

.btn-green {
  background: linear-gradient(135deg, var(--aurora-primary), var(--aurora-secondary));
  border: 2px solid var(--aurora-primary);
  box-shadow: 0 0 20px var(--aurora-primary)
}

.btn-white {
  background: var(--color-comet-white);
  border: 2px solid var(--color-mystic-cyan);
  color: var(--color-deep-space);
  box-shadow: 0 0 15px var(--color-mystic-cyan)
}

.section-title {
  background: var(--gradient-aurora);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-aurora);
  border-radius: 2px
}

.section-subtitle {
  color: var(--aurora-secondary);
  text-shadow: 0 0 8px var(--aurora-secondary)
}

.testimonials {
  background: rgba(26, 27, 58, 0.3)
}

.testimonial-card {
  background: rgba(45, 27, 105, 0.4);
  border: 2px solid var(--aurora-tertiary);
  backdrop-filter: blur(15px);
  position: relative
}

.testimonial-card::before {
  color: var(--color-star-gold);
  text-shadow: 0 0 15px var(--color-star-gold);
  animation: quote-glow 3s ease-in-out infinite
}

@keyframes quote-glow {

  0%,
  100% {
    opacity: 0.7
  }

  50% {
    opacity: 1
  }
}

.testimonial-text {
  color: var(--aurora-secondary)
}

.testimonial-author {
  color: var(--color-star-gold);
  text-shadow: 0 0 8px var(--color-star-gold)
}

.news-section {
  background: rgba(30, 58, 138, 0.1)
}

.news-card {
  background: rgba(26, 27, 58, 0.6);
  border: 2px solid var(--color-stellar-indigo);
  backdrop-filter: blur(10px)
}

.news-card:hover {
  border-color: var(--aurora-primary);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3)
}

.news-image {
  background: var(--gradient-galaxy);
  color: var(--color-comet-white);
  position: relative
}

.news-image::before {
  content: '🌟';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  animation: stellar-rotation 5s linear infinite
}

@keyframes stellar-rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg)
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

.news-title {
  color: var(--color-star-gold)
}

.news-date {
  color: var(--aurora-tertiary)
}

.news-excerpt {
  color: var(--aurora-secondary)
}

.stats-section {
  background: var(--color-deep-space);
  border-top: 3px solid var(--aurora-primary);
  border-bottom: 3px solid var(--aurora-tertiary)
}

.stat-item {
  border: 2px solid var(--aurora-secondary);
  background: rgba(147, 51, 234, 0.1);
  position: relative
}

.stat-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-aurora);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease
}

.stat-item:hover::before {
  opacity: 0.2
}

.stat-number {
  background: var(--gradient-aurora);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: number-pulse 2s ease-in-out infinite
}

@keyframes number-pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

.stat-label {
  color: var(--aurora-secondary)
}

.promo-banner {
  background: var(--gradient-cosmic);
  border: 3px solid var(--color-galaxy-dust);
  position: relative
}

.promo-banner::before {
  background: repeating-conic-gradient(from 0deg, transparent 0deg, rgba(34, 211, 238, 0.1) 30deg, transparent 60deg, rgba(16, 185, 129, 0.1) 90deg, transparent 120deg);
  animation: cosmic-rotation 15s linear infinite
}

@keyframes cosmic-rotation {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

.promo-title {
  background: var(--gradient-aurora);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.promo-text {
  color: var(--aurora-secondary)
}

footer {
  background: rgba(10, 10, 15, 0.9);
  border: 3px solid var(--aurora-primary);
  backdrop-filter: blur(20px)
}

.footer-age {
  background: rgba(45, 27, 105, 0.5);
  border: 2px solid var(--aurora-tertiary)
}

.footer-links a {
  color: var(--aurora-secondary);
  text-shadow: 0 0 5px var(--aurora-secondary)
}

.footer-links a:hover {
  color: var(--color-star-gold);
  text-shadow: 0 0 10px var(--color-star-gold)
}

.gdpr-banner {
  background: rgba(10, 10, 15, 0.95);
  border-top: 3px solid var(--aurora-primary);
  backdrop-filter: blur(20px)
}

.gdpr-title {
  background: var(--gradient-aurora);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.gdpr-description {
  color: var(--aurora-secondary)
}

.gdpr-btn-primary {
  background: var(--gradient-galaxy);
  border: 2px solid var(--color-star-gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3)
}

.gdpr-btn-secondary {
  border: 2px solid var(--aurora-primary);
  background: rgba(16, 185, 129, 0.1)
}

.gdpr-modal-content {
  background: rgba(26, 27, 58, 0.95);
  border: 3px solid var(--aurora-primary);
  backdrop-filter: blur(25px)
}

.gdpr-toggle.active {
  background: var(--gradient-aurora);
  border-color: var(--aurora-primary)
}

@media (max-width:768px) {
  body::before {
    background-size: 100px 50px
  }

  .hero-title {
    background-size: 200% 200%;
    animation: stellar-pulse 3s ease-in-out infinite, gradient-shift 4s ease-in-out infinite
  }

  @keyframes gradient-shift {

    0%,
    100% {
      background-position: 0% 50%
    }

    50% {
      background-position: 100% 50%
    }
  }
}

.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%;
}