:root {
  --aurora-cyan: #00d9ff;
  --aurora-purple: #8b5cf6;
  --aurora-dark: #1a1a2e;
  --aurora-gold: #d4af37;
  --aurora-gold-light: #f4e4c1;
  --text-primary: #ffffff;
  --text-secondary: #b8b8d4;
  --background-dark: #0f0f1e;
  --background-card: #1f1f3a;
  --accent-glow: rgba(0, 217, 255, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cormorant Garamond", serif;
  background-color: var(--background-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 30, 0.98);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s ease;
}

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: linear-gradient(
    135deg,
    var(--background-card),
    var(--aurora-dark)
  );
  padding: 4rem 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  position: relative;
  border: 2px solid var(--aurora-gold);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  animation: slideUp 0.6s ease;
}

.age-modal-aurora {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-purple));
  opacity: 0.1;
  border-radius: 20px 20px 0 0;
  filter: blur(40px);
}

.age-icon {
  font-size: 4rem;
  color: var(--aurora-gold);
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.age-modal-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.age-modal-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.age-confirm {
  font-weight: 600;
  color: var(--aurora-gold);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-confirm,
.btn-deny {
  flex: 1;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-confirm {
  background: linear-gradient(
    135deg,
    var(--aurora-gold),
    var(--aurora-gold-light)
  );
  color: var(--aurora-dark);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-confirm:hover {
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.btn-deny {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-deny:hover {
  background: rgba(255, 255, 255, 0.15);
}

.age-disclaimer {
  font-size: 0.9rem;
  margin-top: 2rem;
  color: var(--text-secondary);
}

.navbar {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--aurora-gold);
}

.nav-brand i {
  font-size: 1.8rem;
}

.domain {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 1rem;
  font-family: "Cormorant Garamond", serif;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--aurora-gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-login {
  color: var(--aurora-cyan) !important;
}

.nav-register {
  background: linear-gradient(
    135deg,
    var(--aurora-gold),
    var(--aurora-gold-light)
  );
  color: var(--aurora-dark) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
}

.nav-register:hover {
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.nav-register::after {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-aurora {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--aurora-cyan) 0%,
    var(--aurora-purple) 50%,
    var(--aurora-dark) 100%
  );
  opacity: 0.3;
  animation: auroraFlow 20s ease-in-out infinite;
}

@keyframes auroraFlow {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-5%) translateY(-5%);
  }
  50% {
    transform: translateX(5%) translateY(5%);
  }
  75% {
    transform: translateX(-5%) translateY(5%);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    var(--background-dark) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--aurora-gold);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--aurora-gold);
  margin-bottom: 2rem;
  animation: fadeIn 1s ease 0.3s backwards;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.5s backwards;
}

.aurora-text {
  background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
  animation: fadeInUp 1s ease 0.7s backwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.9s backwards;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--aurora-gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 1s ease 1.1s backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--aurora-gold),
    var(--aurora-gold-light)
  );
  color: var(--aurora-dark);
  box-shadow: 0 5px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--aurora-gold);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 2rem;
  color: var(--aurora-gold);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.games-section {
  padding: 8rem 0;
  background: linear-gradient(
    180deg,
    var(--background-dark) 0%,
    var(--aurora-dark) 100%
  );
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.3rem;
  color: var(--text-secondary);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.game-card {
  background: linear-gradient(
    135deg,
    var(--background-card),
    rgba(31, 31, 58, 0.8)
  );
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-purple));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.game-card:hover {
  border-color: var(--aurora-gold);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.game-card:hover::before {
  opacity: 0.05;
}

.premium-featured {
  border-color: var(--aurora-gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.featured-banner {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--aurora-gold);
  color: var(--aurora-dark);
  padding: 0.4rem 3rem;
  font-size: 0.8rem;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.game-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--aurora-gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--aurora-gold);
  margin-bottom: 2rem;
}

.game-icon {
  text-align: center;
  margin-bottom: 1.5rem;
}

.game-icon i {
  font-size: 4rem;
  background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.game-tagline {
  color: var(--aurora-gold);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.game-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.game-features {
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.feature i {
  color: var(--aurora-gold);
  font-size: 1rem;
}

.game-jackpot {
  text-align: center;
  padding: 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.jackpot-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.jackpot-amount {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--aurora-gold);
}

.btn-game {
  width: 100%;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--aurora-gold),
    var(--aurora-gold-light)
  );
  color: var(--aurora-dark);
  padding: 1.2rem;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-game:hover {
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.vip-section {
  padding: 8rem 0;
  background: var(--aurora-dark);
  position: relative;
  overflow: hidden;
}

.vip-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent, var(--aurora-purple));
  opacity: 0.05;
  pointer-events: none;
}

.vip-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--aurora-gold);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--aurora-gold);
  margin-bottom: 2rem;
}

.vip-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.vip-intro {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.vip-benefits {
  margin-bottom: 3rem;
}

.benefit {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit i {
  font-size: 2.5rem;
  color: var(--aurora-gold);
  flex-shrink: 0;
}

.benefit h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.benefit p {
  color: var(--text-secondary);
}

.vip-tiers {
  display: grid;
  gap: 1.5rem;
}

.tier-card {
  background: linear-gradient(
    135deg,
    var(--background-card),
    rgba(31, 31, 58, 0.6)
  );
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.tier-card:hover {
  border-color: var(--aurora-gold);
}

.tier-card.featured {
  border-color: var(--aurora-gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.tier-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tier-icon.gold {
  color: #ffd700;
}

.tier-icon.platinum {
  color: #e5e4e2;
}

.tier-icon.diamond {
  color: #b9f2ff;
}

.tier-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.tier-card p {
  color: var(--aurora-gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.tier-card ul {
  list-style: none;
}

.tier-card li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
}

.tier-card li i {
  color: var(--aurora-gold);
}

.stories-section {
  padding: 8rem 0;
  background: var(--background-dark);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.story-card {
  background: var(--background-card);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.story-card:hover {
  border-color: var(--aurora-gold);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.story-image {
  height: 250px;
  background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-purple));
  position: relative;
}

.story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 30, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-overlay i {
  font-size: 3rem;
  color: var(--aurora-gold);
}

.story-content {
  padding: 2.5rem;
}

.story-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.story-amount {
  color: var(--aurora-gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.story-content > p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.story-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--aurora-gold);
  font-weight: 600;
}

.blog-section {
  padding: 8rem 0;
  background: var(--aurora-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: var(--background-card);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.blog-card:hover {
  border-color: var(--aurora-gold);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.blog-image {
  height: 250px;
  background: linear-gradient(135deg, var(--aurora-purple), var(--aurora-cyan));
}

.blog-content {
  padding: 2.5rem;
}

.blog-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--aurora-gold);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--aurora-gold);
  margin-bottom: 1rem;
}

.blog-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.blog-content > p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--aurora-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-link:hover {
  gap: 1rem;
}

.concierge-section {
  padding: 8rem 0;
  background: var(--background-dark);
  position: relative;
  overflow: hidden;
}

.concierge-aurora {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--aurora-cyan), transparent);
  opacity: 0.1;
  filter: blur(100px);
}

.concierge-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.concierge-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--aurora-gold);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--aurora-gold);
  margin-bottom: 2rem;
}

.concierge-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.concierge-content > p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  line-height: 1.8;
}

.concierge-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.concierge-feature {
  text-align: center;
}

.concierge-feature i {
  font-size: 3rem;
  color: var(--aurora-gold);
  margin-bottom: 1rem;
}

.concierge-feature h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.concierge-feature p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.footer {
  background: var(--aurora-dark);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--aurora-gold);
  margin-bottom: 1rem;
}

.footer-brand i {
  font-size: 1.8rem;
}

.footer-domain {
  color: var(--aurora-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--aurora-gold);
  color: var(--aurora-dark);
}

.footer-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--aurora-gold);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-size: 0.9rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }

  .vip-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--aurora-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .games-grid,
  .stories-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .age-modal-content {
    margin: 1rem;
    padding: 3rem 2rem;
  }

  .age-buttons {
    flex-direction: column;
  }
}

.footer-imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-imgs img {
  padding: 12px;
  margin: 12px;
  height: 55px;
  background: white;
  border-radius: 10px;
}
