/* ============================================================
   VINAYAK ONLINE BOOK — premium iGaming landing
   Palette: deep navy-black · royal gold · emerald · silver-white
   ============================================================ */

:root {
  --bg: #05070c;
  --bg-2: #0a0f1a;
  --card: rgba(15, 22, 36, 0.72);
  --border: rgba(212, 175, 55, 0.22);
  --border-soft: rgba(255, 255, 255, 0.07);

  --gold: #d4af37;
  --gold-bright: #f6d365;
  --gold-deep: #9c7c1e;
  --emerald: #2ecc71;
  --emerald-deep: #0f5c33;

  --text: #eef1f7;
  --muted: #9aa5b8;

  --font-display: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;

  --gold-grad: linear-gradient(100deg, #8a6a1c 0%, #d4af37 35%, #fff3b0 50%, #d4af37 65%, #8a6a1c 100%);
  --glow-gold: 0 0 18px rgba(212, 175, 55, 0.45), 0 0 60px rgba(212, 175, 55, 0.18);

  --radius: 18px;
  --header-h: 92px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(212, 175, 55, 0.35); color: #fff; }

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ambient glows */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}
.bg-glow--gold {
  width: 44vw; height: 44vw;
  top: -12vw; right: -10vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 70%);
}
.bg-glow--green {
  width: 40vw; height: 40vw;
  bottom: -14vw; left: -10vw;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.1), transparent 70%);
}

main { position: relative; z-index: 1; }

/* ============ reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ 1. HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 12, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(5, 7, 12, 0.92);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(212, 175, 55, 0.12);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  transition: padding 0.35s var(--ease-out);
}
.site-header.scrolled .header-inner { padding: 8px 20px; }

.header-logo {
  grid-column: 2;
  justify-self: center;
  display: block;
  border-radius: 16px;
  padding: 3px;
  background: var(--gold-grad);
  box-shadow: var(--glow-gold);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.header-logo:hover { transform: scale(1.05); }
.header-logo img {
  width: 68px;
  height: 68px;
  border-radius: 13px;
  object-fit: cover;
  border: 2px solid #05070c;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out);
}
.site-header.scrolled .header-logo img { width: 44px; height: 44px; }

.header-icons {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 10px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(160deg, #141c2e, #0a0f1a);
  border: 1px solid var(--border);
  color: var(--gold);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn:hover {
  transform: translateY(-3px);
  color: var(--gold-bright);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), 0 0 16px rgba(212, 175, 55, 0.35);
}
.icon-btn:active { transform: translateY(-1px) scale(0.96); }

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 16px 34px;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, filter 0.25s ease;
}
.btn-ico { width: 20px; height: 20px; }

.btn--primary {
  background: var(--gold-grad);
  background-size: 200% 100%;
  color: #1a1305;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  background-position: 100% 0;
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn--primary:active { transform: translateY(-1px) scale(0.98); }

.btn--ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--gold-bright);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}

.btn--whatsapp {
  background: linear-gradient(120deg, #0f5c33, #1db85c 55%, #0f5c33);
  background-size: 200% 100%;
  color: #fff;
  font-size: 17px;
  padding: 18px 44px;
  box-shadow: 0 12px 34px rgba(29, 184, 92, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn--whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  background-position: 100% 0;
  box-shadow: 0 18px 44px rgba(29, 184, 92, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* ============ 2. HERO ============ */
.hero {
  padding: 72px 20px 84px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 25% 20%, rgba(212, 175, 55, 0.1), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 75%, rgba(46, 204, 113, 0.07), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 18px;
  text-shadow: 0 0 14px rgba(46, 204, 113, 0.6);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero-brand {
  display: block;
  font-size: clamp(15px, 2vw, 19px);
  letter-spacing: 0.42em;
  font-weight: 700;
  margin-bottom: 14px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-glow-line {
  display: block;
  font-size: clamp(38px, 6.4vw, 74px);
  color: var(--text);
  text-shadow: 0 0 22px rgba(212, 175, 55, 0.35), 0 0 80px rgba(212, 175, 55, 0.15);
}
.hero-glow-line em {
  font-style: normal;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.55));
}

.hero-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 34px;
}
.hero-sub strong { color: var(--text); }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--border-soft);
  padding-top: 28px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.4));
}
.stat-label {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero-media { display: flex; justify-content: center; }
.hero-media-frame {
  width: min(100%, 460px);
  border-radius: 26px;
  padding: 3px;
  background: var(--gold-grad);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6), var(--glow-gold);
  animation: float 6s ease-in-out infinite;
}
.hero-media-frame video {
  width: 100%;
  border-radius: 23px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #000;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ============ 3/6. CAROUSELS ============ */
.promo { padding: 10px 20px 64px; }

.carousel {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

.carousel-track { position: relative; min-height: 240px; }

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px 70px;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  pointer-events: none;
}
.slide.is-active { opacity: 1; transform: none; pointer-events: auto; }

.slide--gold {
  background:
    radial-gradient(ellipse 70% 120% at 50% -20%, rgba(212, 175, 55, 0.28), transparent 60%),
    linear-gradient(140deg, #0c0f18, #141020 55%, #0c0f18);
}
.slide--green {
  background:
    radial-gradient(ellipse 70% 120% at 50% -20%, rgba(46, 204, 113, 0.2), transparent 60%),
    linear-gradient(140deg, #0a1410, #0c1a12 55%, #0a1410);
}
.slide--tier {
  background:
    radial-gradient(ellipse 70% 120% at 50% -20%, rgba(212, 175, 55, 0.18), transparent 60%),
    linear-gradient(140deg, #0a0f1a, #101b2e 55%, #0a0f1a);
}

.slide-kicker {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 10px;
}
.slide--gold .slide-kicker, .slide--tier .slide-kicker { color: var(--gold); }

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4.4vw, 46px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.45), 0 0 90px rgba(212, 175, 55, 0.2);
  margin-bottom: 10px;
}
.slide--green .slide-title { text-shadow: 0 0 24px rgba(46, 204, 113, 0.5), 0 0 90px rgba(46, 204, 113, 0.22); }

.slide-sub { font-size: 18px; color: var(--muted); }
.slide-sub strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.6);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(5, 7, 12, 0.55);
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  z-index: 3;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.carousel-arrow:hover {
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
}
.carousel-arrow--prev { left: 14px; }
.carousel-arrow--next { right: 14px; }

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: width 0.3s var(--ease-out), background 0.3s ease;
}
.carousel-dot.is-active {
  width: 26px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}

/* ============ sections shared ============ */
.section { padding: 84px 20px 30px; max-width: 1200px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 40px; }
.section-head--sub { margin: 64px 0 30px; }

.section-kicker {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 10px;
}

.section-title, .footer-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.6vw, 44px);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text);
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.3);
}
.section-title span, .footer-title span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.5));
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: 0.08em;
}
.section-subtitle span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ 4. ABOUT ============ */
.about-blurb {
  max-width: 72ch;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 19px;
  color: var(--muted);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.about-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}
.about-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5), 0 0 24px rgba(212, 175, 55, 0.12);
}
.about-card-ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.04));
  border: 1px solid var(--border);
  color: var(--gold);
}
.about-card-ico svg { width: 30px; height: 30px; }
.about-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.about-card p { color: var(--muted); font-size: 16px; }

/* ============ 5. SITES & GAMES ============ */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.site-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 30px 22px 24px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}
.site-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gold-grad);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.site-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.55), 0 0 28px rgba(212, 175, 55, 0.16);
}
.site-card:hover::before { opacity: 1; }

.site-mono {
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: #1a1305;
  background: var(--gold-grad);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.35s var(--ease-out);
}
.site-card:hover .site-mono { transform: scale(1.08) rotate(-4deg); }

.site-name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.site-url {
  font-size: 14px;
  color: var(--emerald);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.site-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
}
.site-chips li {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.03);
}

.site-go {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.site-card:hover .site-go {
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 26px 14px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  color: var(--muted);
  transition: transform 0.3s var(--ease-out), color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.game-card svg { width: 34px; height: 34px; }
.game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease;
}
.game-card:hover img {
  transform: scale(1.04);
  border-color: var(--border);
}
.game-card span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.game-card:hover {
  transform: translateY(-6px);
  color: var(--gold-bright);
  border-color: var(--border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.14);
}

/* ============ 7. FOOTER ============ */
.site-footer {
  margin-top: 84px;
  padding: 72px 20px 44px;
  text-align: center;
  border-top: 1px solid var(--border-soft);
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(212, 175, 55, 0.1), transparent 70%),
    linear-gradient(180deg, var(--bg), #03040a);
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 110px;
  height: 110px;
  margin: 0 auto 22px;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: var(--glow-gold);
}

.footer-title { margin-bottom: 10px; }
.footer-sub { color: var(--muted); margin-bottom: 30px; font-size: 18px; }

.wa-number { font-size: 17px; }

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 36px 0 30px;
}

.footer-legal {
  font-size: 13px;
  color: #6b7488;
  max-width: 52ch;
  margin: 0 auto 12px;
}
.footer-copy {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============ floating WhatsApp ============ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(140deg, #1db85c, #0f5c33);
  color: #fff;
  box-shadow: 0 10px 30px rgba(29, 184, 92, 0.45);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
  animation: pulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 14px 38px rgba(29, 184, 92, 0.6); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(29, 184, 92, 0.45), 0 0 0 0 rgba(29, 184, 92, 0.4); }
  50% { box-shadow: 0 10px 30px rgba(29, 184, 92, 0.45), 0 0 0 14px rgba(29, 184, 92, 0); }
}

/* ============ responsive ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-media { order: -1; }
  .hero-media-frame { width: min(100%, 380px); }
  .sites-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .about-cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .header-inner { grid-template-columns: 1fr; justify-items: center; gap: 10px; }
  .header-spacer { display: none; }
  .header-logo { grid-column: 1; }
  .header-icons { grid-column: 1; justify-self: center; }
  .icon-btn { width: 40px; height: 40px; }

  .hero { padding: 48px 16px 60px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px 32px; }

  .slide { padding: 38px 52px 46px; }
  .carousel-track { min-height: 260px; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 13px; }

  .sites-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 16px 20px; }
  .btn--whatsapp { width: 100%; justify-content: center; padding: 18px 24px; }
}
