/* ===========================
   FONTS
=========================== */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-ExtraBold.woff2') format('woff2');
  font-weight: 800;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Black.ttf') format('truetype');
  font-weight: 900;
}

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --bg-primary:   #1A0E00;
  --bg-secondary: #130A00;
  --bg-card:      #221200;
  --gold:         #D4AF37;
  --gold-light:   #FFD700;
  --gold-bright:  #FFE55C;
  --gold-glow:    rgba(255, 215, 0, 0.28);
  --border-gold:  rgba(255, 200, 0, 0.35);
  --amber:        #FFB300;
  --amber-glow:   rgba(255, 179, 0, 0.22);
  --text-primary:   #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --text-muted:     rgba(255, 220, 100, 0.45);
  --border:         rgba(255, 200, 0, 0.09);
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
img  { display: block; max-width: 100%; }

/* ===========================
   CONTAINER
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   UTILITY
=========================== */
.text-gold { color: var(--gold-bright); }

/* ===========================
   BUTTONS
=========================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 44px;
  background: linear-gradient(135deg, #FFE55C 0%, #FFB300 50%, #D47800 100%);
  color: #1A0D00;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 28px rgba(255, 179, 0, 0.55);
}
.btn-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.38), transparent);
  animation: shimmer 2.8s infinite;
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 179, 0, 0.75);
}
.btn-cta:active { transform: translateY(-1px); }

@keyframes shimmer {
  0%   { left: -60%; }
  100% { left: 160%; }
}

.btn-cta--card {
  margin-top: 28px;
  width: 100%;
  padding: 15px 32px;
  font-size: 14px;
}

/* ===========================
   HEADER
=========================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
}
.header__logo img {
  height: 44px;
  width: auto;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
  background: var(--bg-primary);
}

/* Background gradients – deep amber/yellow atmosphere */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 90% at 85% 100%, rgba(255, 160, 0, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 20% 50%,  rgba(255, 200, 0, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 55% 0%,   rgba(255, 120, 0, 0.10) 0%, transparent 50%),
    linear-gradient(160deg, #1A0E00 0%, #2A1500 40%, #1A0E00 100%);
  pointer-events: none;
}

/* ---- Floating Easter eggs (warm palette) ---- */
.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
/* SVG Easter eggs – no background/border-radius needed, SVG handles shape */
.deco-egg {
  position: absolute;
  animation: floatEgg ease-in-out infinite;
}
.deco-egg--1 { width: 44px;  left: 4%;   top: 18%;  opacity: 0.75; animation-duration: 11s; animation-delay:  0s; }
.deco-egg--2 { width: 32px;  left: 11%;  top: 62%;  opacity: 0.70; animation-duration: 14s; animation-delay: -4s; }
.deco-egg--3 { width: 60px;  right: 26%; top: 6%;   opacity: 0.72; animation-duration: 10s; animation-delay: -2s; }
.deco-egg--4 { width: 40px;  right: 6%;  top: 42%;  opacity: 0.75; animation-duration: 13s; animation-delay: -6s; }
.deco-egg--5 { width: 28px;  left: 40%;  top: 72%;  opacity: 0.68; animation-duration: 10s; animation-delay: -3s; }
.deco-egg--6 { width: 46px;  left: 30%;  top: 3%;   opacity: 0.70; animation-duration: 12s; animation-delay: -7s; }
.deco-egg--7 { width: 34px;  left: 58%;  top: 78%;  opacity: 0.65; animation-duration: 16s; animation-delay: -1s; }
.deco-egg--8 { width: 52px;  right: 16%; top: 68%;  opacity: 0.72; animation-duration:  9s; animation-delay: -5s; }
@keyframes floatEgg {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  30%       { transform: translateY(-28px) rotate(6deg); }
  60%       { transform: translateY(-14px) rotate(-3deg); }
  80%       { transform: translateY(-38px) rotate(8deg); }
}

/* ---- Hero inner layout ---- */
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;        /* both columns sit at the bottom */
  justify-content: space-between;
  gap: 40px;
  height: calc(100vh - 68px);
  padding: 0;
}

/* ---- Hero Content (left) ---- */
.hero__content {
  flex: 1;
  max-width: 560px;
  align-self: center;           /* text stays vertically centred */
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 179, 0, 0.12);
  border: 1px solid rgba(255, 179, 0, 0.40);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: #FFCA28;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero__title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}

.hero__subtitle {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 34px;
}

/* ---- Promo Code Block ---- */
.hero__promo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.promo-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
.promo-code-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 200, 0, 0.09);
  border: 1.5px solid var(--border-gold);
  border-radius: 10px;
  padding: 10px 18px;
  position: relative;
}
.promo-code {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold-bright);
  letter-spacing: 3.5px;
}
.promo-copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  display: flex;
  align-items: center;
  padding: 2px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.promo-copy-btn:hover { color: var(--gold-bright); transform: scale(1.2); }
.copy-tooltip {
  position: absolute;
  top: -38px; right: 0;
  background: var(--amber);
  color: #1A0D00;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}
.copy-tooltip.show { opacity: 1; transform: translateY(0); }

/* ---- Hero Visual (right) – full-height girl from bottom to top ---- */
.hero__visual {
  flex-shrink: 0;
  position: relative;
  width: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: flex-end;
}

/* Multi-layer warm glow — not just a dot, but a whole atmosphere */
.hero__girl-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background:
    radial-gradient(ellipse 70% 55% at 50% 85%, rgba(255, 160, 0, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 55% 70% at 50% 50%, rgba(255, 200, 0, 0.20) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 20%, rgba(255, 220, 80, 0.10) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(40px);
  animation: glowPulse 5s ease-in-out infinite;
  z-index: 0;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7;  transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;    transform: translateX(-50%) scale(1.06); }
}

.hero__girl {
  position: relative;
  z-index: 1;
  width: 100%;
  /* Almost full hero height — from feet at bottom to near the top */
  height: calc(100vh - 80px);
  max-height: 900px;
  object-fit: contain;
  object-position: bottom center;
  /* Warm amber rim light + golden haze */
  filter:
    drop-shadow(0 0 80px rgba(255, 160, 0, 0.40))
    drop-shadow(0 0 24px rgba(255, 220, 0, 0.25));
  animation: heroBob 6s ease-in-out infinite;
}
@keyframes heroBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

/* ===========================
   SEO SECTION
=========================== */
.seo-section {
  padding: 72px 0 80px;
  background: var(--bg-primary);
  position: relative;
}
.seo-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,200,0,0.20) 50%, transparent 100%);
}

.seo-inner {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(255, 200, 0, 0.14);
  border-radius: 20px;
  padding: 44px 48px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.35);
}

.seo-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,200,0,0.12);
}

.seo-icon {
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}

.seo-title {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.4;
  letter-spacing: -0.2px;
}

.seo-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.seo-body p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

.seo-body strong {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

.seo-code {
  color: var(--gold-light) !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
}

/* ===========================
   BONUS SECTION
=========================== */
.bonus-section {
  padding: 80px 0 110px;
  background: var(--bg-secondary);
  position: relative;
}
.bonus-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,200,0,0.35) 50%, transparent 100%);
}

.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

/* ---- Bonus Card ---- */
.bonus-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 22px;
  padding: 36px;
  box-shadow:
    0 0 0 1px rgba(255, 200, 0, 0.05),
    0 24px 72px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Game Cover */
.bonus-card__game { margin-bottom: 28px; }
.game-cover {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.game-cover__thumb { flex-shrink: 0; }
.game-cover__img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(255, 179, 0, 0.35);
  display: block;
}

.game-cover__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.game-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}
.game-vendor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.game-play-link {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.game-play-link:hover { color: var(--gold-bright); }

/* Bonus Details */
.bonus-card__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.detail-item:hover {
  border-color: rgba(255, 200, 0, 0.35);
  background: rgba(255, 200, 0, 0.05);
}
.detail-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 26px;
  text-align: center;
}
.detail-text {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}
.detail-text strong { color: var(--text-primary); font-weight: 700; }
.highlight-code {
  color: var(--gold-bright) !important;
  font-size: 16px;
  letter-spacing: 2.5px;
  font-weight: 900 !important;
}

/* ===========================
   ANIMATIONS & UTILITIES
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible          { opacity: 1; transform: translateY(0); }
.reveal-delay-1          { transition-delay: 0.10s; }
.reveal-delay-2          { transition-delay: 0.20s; }
.reveal-delay-3          { transition-delay: 0.32s; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #0E0700;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer__partner { opacity: 0.55; transition: opacity 0.2s ease; filter: grayscale(1); }
.footer__partner:hover { opacity: 1; filter: grayscale(0); }
.footer__partner img { height: 32px; width: auto; }

.footer-providers {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-providers img { height: 28px; width: auto; opacity: 0.6; }
.footer-providers a:hover img { opacity: 1; }

.footer-menu {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.footer-menu__link {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}
.footer-menu__link:hover { color: var(--gold); }

.footer-bottom { padding: 24px 0; }
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.footer-bottom-row:last-child { margin-bottom: 0; }
.footer-bottom-col_text p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-col_flex { display: flex; align-items: center; gap: 16px; }
.footer-age img, .footer-license img { height: 36px; width: auto; opacity: 0.7; }
.footer-age img:hover, .footer-license img:hover { opacity: 1; }
.footer-bottom-license {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  text-align: center;
}
.footer-bottom-license a { color: rgba(255,255,255,0.4); text-decoration: underline; }
.footer-bottom-license a:hover { color: var(--gold); }
.f-bg { /* utility */ }

/* ===========================
   RESPONSIVE – TABLET (≤1024px)
=========================== */
@media (max-width: 1024px) {
  .hero__visual { width: 420px; }
  .hero__girl   { max-height: 780px; }
  .hero__title  { font-size: 50px; }
  .btn-cta      { padding: 15px 36px; }
}

/* ===========================
   RESPONSIVE – MOBILE (≤768px)
=========================== */
@media (max-width: 768px) {
  .header__inner {
    justify-content: left;
  }
  .container { padding: 0 16px; }

  .header__logo img { height: 36px; }

  .hero { padding-top: 0; height: auto; min-height: 100vh; }
  .hero__inner {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    height: auto;
    padding: 0;
    gap: 0;
  }
  .hero__content {
    max-width: 100%;
    align-self: auto;
    padding: 0 0 40px;
  }
  .hero__badge   { margin-left: auto; margin-right: auto; }
  .hero__title   { font-size: clamp(32px, 9vw, 48px); letter-spacing: -0.5px; }
  .hero__subtitle{ font-size: clamp(16px, 4.5vw, 22px); margin-bottom: 22px; }
  .hero__promo   { justify-content: center; margin-bottom: 26px; }

  .btn-cta {
    width: 100%;
    max-width: 340px;
    padding: 15px 28px;
    font-size: 14px;
  }

  .hero__visual {
    width: 100%;
    max-width: 380px;
    align-self: auto;
  }
  .hero__girl {
    height: 68vw;
    max-height: 400px;
    object-position: top center;
    animation: none;
  }
  .hero__girl-glow { width: 300px; height: 300px; bottom: -30px; }

  .seo-inner { padding: 28px 20px; border-radius: 14px; }
  .seo-header { gap: 10px; margin-bottom: 20px; padding-bottom: 18px; }
  .seo-icon { font-size: 24px; }
  .seo-body p { font-size: 13px; }

  .bonus-section  { padding: 56px 0 72px; }
  .bonus-card     { padding: 24px 18px; border-radius: 16px; }
  .game-cover     { flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .game-cover__placeholder { width: 80px; height: 80px; }
  .game-frog-icon { font-size: 34px; }
  .game-name      { font-size: 18px; }
  .detail-item    { padding: 11px 12px; gap: 10px; }
  .detail-text    { font-size: 13px; }

  .footer-bottom-row   { flex-direction: column; text-align: center; }
  .footer-bottom-col_flex { justify-content: center; }
}

/* ===========================
   RESPONSIVE – SMALL MOBILE (≤400px)
=========================== */
@media (max-width: 400px) {
  .hero__title { font-size: 30px; }
  .promo-code  { font-size: 17px; letter-spacing: 2.5px; }
  .bonus-card  { padding: 18px 14px; }
}
