/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #0a0f1e;
  --bg-secondary: #0f1629;
  --bg-card: rgba(255, 255, 255, 0.05);
  --gold: #d4a017;
  --gold-light: #e6b820;
  --gold-bright: #f5cc40;
  --text-primary: #f0eada;
  --text-secondary: #a89f8c;
  --text-muted: #6b6458;
  --border-glass: rgba(212, 160, 23, 0.2);
  --border-card: rgba(255, 255, 255, 0.08);
  --shadow-gold: 0 0 40px rgba(212, 160, 23, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-bright);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0d1a3a 0%, #0a0f1e 40%, #12082a 100%);
  padding: 80px 20px 120px;
  text-align: center;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212, 160, 23, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(80, 40, 160, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 80% 70%, rgba(30, 80, 160, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  pointer-events: none;
}

.hero-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-stars span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(212, 160, 23, 0.6);
  border-radius: 50%;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, #f5cc40 0%, #d4a017 40%, #f0eada 70%, #d4a017 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  text-shadow: none;
  filter: drop-shadow(0 2px 20px rgba(212, 160, 23, 0.3));
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ===== BRAND CARD SECTION ===== */
.brand-section {
  position: relative;
  z-index: 10;
  padding: 0 20px 48px;
  max-width: 900px;
  margin: -50px auto 0;
}

.brand-card {
  background: linear-gradient(135deg, #131d38 0%, #0e1628 100%);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 160, 23, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(212, 160, 23, 0.18), 0 0 0 1px rgba(212, 160, 23, 0.3);
  color: inherit;
}

.brand-card-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  padding: 22px 28px;
}

.brand-card-left-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge-recommended {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(29, 115, 68, 0.25);
  color: #5ddf96;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid rgba(93, 223, 150, 0.2);
  width: fit-content;
  margin-bottom: 2px;
}

.badge-recommended::before {
  content: '★';
  font-size: 8px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.brand-bonus-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1px;
}

.brand-bonus-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.brand-card-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212,160,23,0.2), transparent);
  flex-shrink: 0;
  margin: 16px 0;
}

.brand-card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-shrink: 0;
  padding: 22px 32px;
  background: rgba(0, 0, 0, 0.2);
  min-width: 160px;
}

.brand-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.brand-stars {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 3px;
}

.brand-score {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
}

.btn-play {
  display: inline-block;
  background: linear-gradient(135deg, #f0c830, #d4940a);
  color: #0a0f1e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  animation: pulse-btn 2.5s ease-in-out infinite;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}

.btn-play:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5);
  filter: brightness(1.08);
  color: #0a0f1e;
  animation: none;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 3px 12px rgba(212, 160, 23, 0.3); }
  50% { box-shadow: 0 3px 24px rgba(212, 160, 23, 0.55); }
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 70px 20px;
  position: relative;
}

.content-section:nth-child(even) {
  background: var(--bg-secondary);
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-inner {
  max-width: 820px;
  margin: 0 auto;
}

.section-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 28px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 16px;
}

.section-inner h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.section-inner p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.section-inner p:last-child {
  margin-bottom: 0;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== 18+ DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: linear-gradient(90deg, #0f1629, #1a1030, #0f1629);
  border-top: 1px solid rgba(212, 160, 23, 0.15);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
  padding: 20px;
  text-align: center;
}

.disclaimer-bar-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.badge-18-img {
  flex-shrink: 0;
  height: 44px;
  width: auto;
  object-fit: contain;
}

.disclaimer-bar p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: left;
}

.disclaimer-bar p a {
  color: var(--gold);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #060a15;
  padding: 56px 20px 24px;
  border-top: 1px solid rgba(212, 160, 23, 0.12);
}

.footer-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 32px;
  margin-bottom: 48px;
}

.footer-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.footer-col p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Footer responsible gaming logos */
.footer-logos {
  max-width: 900px;
  margin: 0 auto 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-link {
  display: block;
  opacity: 0.8;
  transition: opacity var(--transition), transform var(--transition);
  border-radius: 8px;
  overflow: hidden;
}

.footer-logo-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-logo-link img {
  height: 54px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-logos-bottom {
  max-width: 900px;
  margin: 0 auto 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-copyright {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(10, 15, 30, 0.97), rgba(15, 22, 41, 0.97));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 160, 23, 0.3);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 13px;
  color: var(--text-secondary);
  flex: 1;
}

.cookie-banner p a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, #e6b820, #c49010);
  color: #0a0f1e;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-cookie-accept:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(212,160,23,0.4);
}

.btn-cookie-more {
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  padding: 9px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.btn-cookie-more:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== POLICY PAGES ===== */
.policy-page {
  min-height: 100vh;
}

.policy-hero {
  background: linear-gradient(160deg, #0d1a3a 0%, #0a0f1e 60%);
  padding: 60px 20px 50px;
  text-align: center;
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.policy-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold-light);
  max-width: 700px;
  margin: 0 auto;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 20px;
  transition: color var(--transition);
}

.policy-back:hover {
  color: var(--gold-light);
}

.policy-back::before {
  content: '←';
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 20px 80px;
}

.policy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 36px 0 14px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-content ul {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 16px 20px;
}

.policy-content ul li {
  margin-bottom: 8px;
}

/* ===== UTILITY ===== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 60px 16px 100px;
    min-height: 280px;
  }

  /* Brand card half-overlaps the hero on mobile and spans full width */
  .brand-section {
    padding: 0 0 32px;
    margin: -50px 0 0;
    max-width: 100%;
    width: 100%;
  }

  .brand-card {
    border-radius: 0;
    border-left: none;
    border-top: 3px solid var(--gold);
    flex-direction: column;
    width: 100%;
    margin: 0;
  }

  .brand-card-left {
    width: 100%;
    padding: 18px 16px 14px;
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand-card-left-inner {
    flex: 1;
    min-width: 0;
  }

  .brand-bonus-text {
    max-width: 100%;
  }

  .brand-card-divider {
    display: none;
  }

  .brand-card-right {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-width: unset;
    padding: 14px 16px 18px;
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(212,160,23,0.1);
    gap: 16px;
  }

  .brand-rating {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }

  .btn-play {
    width: auto;
  }

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

  .footer-logos,
  .footer-logos-bottom {
    gap: 12px;
  }

  .footer-logo-link img {
    height: 44px;
    max-width: 160px;
  }

  .badge-18-img {
    height: 36px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .disclaimer-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .disclaimer-bar p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-links {
    gap: 6px 16px;
  }
}
