/* ============================================================
   WINZONE — Complete Stylesheet
   Design colors (from image):
     --green:      #44DD1A   (single consistent green — used everywhere)
     --gold:       #ffd700
     --gold-dk:    #c9a800
     --bg:         #0d0d0d   (main dark background)
     --bg2:        #111111   (section alt dark)
     --bg3:        #0a1a10   (dark-green tint for How-It-Works, Why-Us)
     --card:       #181818
     --border:     #252525
     --text:       #ffffff
     --muted:      #999999
============================================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   2. UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold  { color: #ffd700; }
.text-green { color: #44DD1A; }

/* ============================================================
   3. BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

/* Green — single flat #44DD1A, no two-shade gradient */
.btn-green {
  background: #44DD1A;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(68, 221, 26, 0.4);
}
.btn-green:hover {
  background: #35b814;
  box-shadow: 0 6px 24px rgba(68, 221, 26, 0.55);
  transform: translateY(-2px);
}

/* Sizes */
.btn-sm  { padding: 9px 20px;  font-size: 0.82rem; border-radius: 5px; }
.btn-nav { padding: 10px 18px; font-size: 0.82rem; border-radius: 6px; }

/* ============================================================
   4. SECTION HEADERS (shared)
============================================================ */
.sec-header {
  text-align: center;
  margin-bottom: 28px;
}
.sec-title {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
}
.sec-underline {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, #44DD1A, #ffd700);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ============================================================
   5. NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 66px;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #1c1c1c;
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-right: auto;
}

/* Circular green badge with "W" */
.logo-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #44DD1A;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(68,221,26,0.55);
  letter-spacing: 0;
  line-height: 1;
}

/* Text group beside badge */
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* "WINZONE" */
.logo-name {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
}

/* "PLAY MORE. WIN MORE." */
.logo-tagline {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #aaaaaa;
  text-transform: uppercase;
}

.logo-accent { color: #ffffff; }

/* keep .logo-text for any leftover references */
.logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #cccccc;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #44DD1A;
  transition: width 0.3s;
}
.nav-link:hover,
.nav-link.active { color: #44DD1A; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Nav CTA */
.nav-cta { margin-left: auto; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  margin-right: 16px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   6. HERO SECTION
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 66px;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(255,200,0,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 80% 75%, rgba(68,221,26,0.07) 0%, transparent 55%),
    #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 60px;
  width: 100%;
}

/* ---- LEFT ---- */
.hero-content {
  flex: 0 0 auto;
  width: 480px;
  z-index: 2;
}

/* LIMITED TIME OFFER badge — no box, just icon + gold text */
.badge-offer {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #F6CB04;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.badge-offer i { color: #F6CB04; font-size: 0.78rem; }

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;       /* "PLAY SMART." stays white */
  margin-bottom: 18px;
}

/* "WIN REAL REWARDS." line is bright green — matches screenshot exactly */
.hero-title-green {
  color: #44DD1A;
  display: block;
}

.hero-sub {
  font-size: 0.97rem;
  color: #aaaaaa;
  font-weight: 500;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 22px;
}

/* Trust row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #cccccc;
}
.trust-item i { color: #44DD1A; }

/* Hero CTA */
.btn-hero-cta {
  padding: 15px 32px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 7px;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 0.78rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-note i { color: #44DD1A; }

/* ============================================================
   HERO RIGHT — CSS-built composite
   (roulette wheel + phone mockup + card fan + floating coins)
============================================================ */
.hero-right {
  flex: 1;
  position: relative;
  min-height: 580px;
  z-index: 2;
  overflow: hidden;
}

/* ---- Dual glow (gold + green) ---- */
.hr-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
}
.hr-glow-gold {
  background: radial-gradient(circle, rgba(255,200,0,0.18) 0%, transparent 65%);
  top: 30%; left: 40%;
  transform: translate(-50%, -50%);
}
.hr-glow-green {
  background: radial-gradient(circle, rgba(68,221,26,0.10) 0%, transparent 65%);
  top: 65%; left: 55%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
}

/* ---- Crown centrepiece ---- */
.hr-crown-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Pulsing glow ring behind the crown */
.hr-crown-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.22) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: crownRingPulse 2.2s ease-in-out infinite;
}
@keyframes crownRingPulse {
  0%,100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1);   }
  50%      { opacity: 1;   transform: translate(-50%,-50%) scale(1.2); }
}

.hr-crown-icon {
  font-size: 8rem;
  color: #ffd700;
  filter:
    drop-shadow(0 0 22px rgba(255,215,0,0.85))
    drop-shadow(0 8px 20px rgba(0,0,0,0.6));
  animation: crownFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes crownFloat {
  0%,100% { transform: translateY(0);     filter: drop-shadow(0 0 18px rgba(255,215,0,0.7)) drop-shadow(0 8px 20px rgba(0,0,0,0.6)); }
  50%      { transform: translateY(-14px); filter: drop-shadow(0 0 36px rgba(255,215,0,1.0)) drop-shadow(0 8px 20px rgba(0,0,0,0.6)); }
}

.hr-crown-stars {
  display: flex;
  gap: 10px;
  color: #ffd700;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 8px rgba(255,215,0,0.8);
}

/* ---- Dice (showing 6 dots each) ---- */
.hr-die {
  position: absolute;
  width: 78px;
  height: 78px;
  background: linear-gradient(145deg, #f5f5f5 0%, #dcdcdc 100%);
  border-radius: 13px;
  box-shadow:
    4px 4px 0 rgba(0,0,0,0.3),
    0 8px 24px rgba(0,0,0,0.65);
  z-index: 5;
  padding: 9px;
}

.hr-die-dots {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 4px;
}

.hr-die-dots b {
  background: #111111;
  border-radius: 50%;
  display: block;
}

/* Position the three dice around the crown */
.die-a {
  bottom: 22%;
  left: 8%;
  transform: rotate(-15deg);
  animation: floatUp 3.5s ease-in-out infinite;
  animation-delay: 0s;
}
.die-b {
  bottom: 14%;
  left: 38%;
  transform: rotate(8deg);
  animation: floatUp 3.5s ease-in-out infinite;
  animation-delay: 0.7s;
  width: 88px; height: 88px;
}
.die-c {
  top: 20%;
  left: 6%;
  transform: rotate(20deg);
  animation: floatUp 3.5s ease-in-out infinite;
  animation-delay: 1.4s;
  width: 68px; height: 68px;
}

/* ---- Card fan (4× Ace of Spades) ---- */
.hr-cards {
  position: absolute;
  top: 24px;
  right: 6%;
  width: 120px;
  height: 170px;
  z-index: 5;
}

.hr-card {
  position: absolute;
  width: 72px;
  height: 100px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.7), 0 2px 6px rgba(0,0,0,0.5);
  transform-origin: bottom center;
}
.hrc-r {
  font-size: 1.6rem;
  font-weight: 900;
  color: #111;
  line-height: 1;
  font-family: Georgia, serif;
}
.hrc-s {
  font-size: 1.3rem;
  color: #111;
  line-height: 1;
}

.hr-card-1 { transform: rotate(-24deg) translateX(-30px); z-index: 1; }
.hr-card-2 { transform: rotate(-10deg) translateX(-10px); z-index: 2; }
.hr-card-3 { transform: rotate(4deg)  translateX(10px);  z-index: 3; }
.hr-card-4 { transform: rotate(18deg) translateX(30px);  z-index: 4; }

/* ---- Floating gold coins (plain — no text symbol) ---- */
.hr-coin {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, #fff4a0 0%, #f5c518 30%, #c9900a 65%, #7a5a00 100%);
  border: 2px solid rgba(255,215,0,0.55);
  box-shadow: 0 4px 14px rgba(201,144,10,0.55), inset 0 1px 3px rgba(255,255,200,0.4);
  animation: floatUp 3s ease-in-out infinite;
  z-index: 6;
}

.hrc1 { top: 8%;     left: 28%;  animation-delay: 0s;    width: 44px; height: 44px; }
.hrc2 { top: 18%;    right: 8%;  animation-delay: 0.6s;  }
.hrc3 { top: 42%;    left: 4%;   animation-delay: 1.2s;  width: 32px; height: 32px; }
.hrc4 { top: 55%;    right: 32%; animation-delay: 0.3s;  }
.hrc5 { bottom: 22%; left: 22%;  animation-delay: 1.8s;  width: 30px; height: 30px; }
.hrc6 { bottom: 10%; right: 10%; animation-delay: 0.9s;  }
.hrc7 { top: 30%;    left: 48%;  animation-delay: 2.4s;  width: 28px; height: 28px; }
.hrc8 { bottom: 35%; right: 4%;  animation-delay: 1.5s;  width: 36px; height: 36px; }

/* ---- Gold sparkles ---- */
.hr-spark {
  position: absolute;
  color: #ffd700;
  animation: sparkle 2.2s ease-in-out infinite;
  z-index: 7;
  pointer-events: none;
  line-height: 1;
}
@keyframes sparkle {
  0%,100% { opacity: 0.25; transform: scale(0.75) rotate(0deg);  }
  50%      { opacity: 1;    transform: scale(1.2)  rotate(25deg); }
}
.sp1 { top: 12%;    left: 18%;   font-size: 0.9rem;  animation-delay: 0s;    }
.sp2 { top: 22%;    right: 22%;  font-size: 0.7rem;  animation-delay: 0.5s;  }
.sp3 { top: 48%;    left: 8%;    font-size: 1.4rem;  animation-delay: 1.0s;  }
.sp4 { bottom: 28%; right: 18%;  font-size: 0.85rem; animation-delay: 1.5s;  }
.sp5 { bottom: 12%; left: 38%;   font-size: 1.1rem;  animation-delay: 0.8s;  }

@keyframes floatUp {
  0%,100% { transform: translateY(0) rotate(0deg);   }
  50%      { transform: translateY(-16px) rotate(12deg); }
}

/* ---- GPU layer hints for animated elements ---- */
.hr-rays, .hr-orbit, .hr-crown-icon, .hr-die, .hr-coin, .hr-spark, .cp {
  will-change: transform, opacity;
}

/* ---- Rotating light rays ---- */
.hr-rays {
  position: absolute;
  top: 50%; left: 50%;
  width: 420px; height: 420px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,   rgba(255,215,0,0.18) 8deg,  transparent 16deg,
    transparent 30deg,  rgba(255,215,0,0.12) 38deg,  transparent 46deg,
    transparent 60deg,  rgba(255,215,0,0.18) 68deg,  transparent 76deg,
    transparent 90deg,  rgba(255,215,0,0.10) 98deg,  transparent 106deg,
    transparent 120deg, rgba(255,215,0,0.18) 128deg, transparent 136deg,
    transparent 150deg, rgba(255,215,0,0.12) 158deg, transparent 166deg,
    transparent 180deg, rgba(255,215,0,0.18) 188deg, transparent 196deg,
    transparent 210deg, rgba(255,215,0,0.12) 218deg, transparent 226deg,
    transparent 240deg, rgba(255,215,0,0.18) 248deg, transparent 256deg,
    transparent 270deg, rgba(255,215,0,0.10) 278deg, transparent 286deg,
    transparent 300deg, rgba(255,215,0,0.18) 308deg, transparent 316deg,
    transparent 330deg, rgba(255,215,0,0.12) 338deg, transparent 346deg
  );
  animation: raysSpin 18s linear infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes raysSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---- Orbiting stars ---- */
.hr-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 280px; height: 280px;
  transform: translate(-50%, -50%);
  animation: orbitSpin 10s linear infinite;
  z-index: 3;
  pointer-events: none;
}
@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.hr-os {
  position: absolute;
  animation: counterSpin 10s linear infinite;
  font-size: 1rem;
  line-height: 1;
}
@keyframes counterSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
/* Place 6 stars evenly on the orbit circle (radius ~140px) */
.hos1 { top: 0%;   left: 50%; margin-left: -8px; margin-top: -8px; color: #ffd700; font-size: 1.1rem; }
.hos2 { top: 25%;  left: 93%; margin-left: -8px; margin-top: -8px; color: #44DD1A; font-size: 0.85rem; }
.hos3 { top: 75%;  left: 93%; margin-left: -8px; margin-top: -8px; color: #ffd700; font-size: 1.0rem; }
.hos4 { top: 100%; left: 50%; margin-left: -8px; margin-top: -8px; color: #ffffff; font-size: 0.85rem; }
.hos5 { top: 75%;  left: 7%;  margin-left: -8px; margin-top: -8px; color: #ffd700; font-size: 1.1rem; }
.hos6 { top: 25%;  left: 7%;  margin-left: -8px; margin-top: -8px; color: #44DD1A; font-size: 0.85rem; }

/* ---- Confetti rain ---- */
.hr-confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}
.cp {
  position: absolute;
  width: 7px; height: 14px;
  border-radius: 2px;
  opacity: 0;
  animation: confettiFall 3.8s ease-in infinite;
}
@keyframes confettiFall {
  0%   { opacity: 1; transform: translateY(-30px) rotate(0deg)   scaleX(1); }
  80%  { opacity: 0.8; }
  100% { opacity: 0;   transform: translateY(340px) rotate(540deg) scaleX(-1); }
}
.cp1  { left: 8%;   top: 0%; background: #ff4444; animation-delay: 0.0s; animation-duration: 3.4s; }
.cp2  { left: 18%;  top: 0%; background: #ffd700; animation-delay: 0.4s; animation-duration: 3.8s; width: 5px; height: 11px; }
.cp3  { left: 30%;  top: 0%; background: #44DD1A; animation-delay: 0.8s; animation-duration: 3.2s; }
.cp4  { left: 42%;  top: 0%; background: #4488ff; animation-delay: 1.2s; animation-duration: 4.0s; width: 6px; height: 12px; }
.cp5  { left: 55%;  top: 0%; background: #ff44cc; animation-delay: 0.3s; animation-duration: 3.6s; }
.cp6  { left: 66%;  top: 0%; background: #ffd700; animation-delay: 0.7s; animation-duration: 3.0s; width: 5px; height: 10px; }
.cp7  { left: 76%;  top: 0%; background: #ff4444; animation-delay: 1.5s; animation-duration: 4.2s; }
.cp8  { left: 85%;  top: 0%; background: #44DD1A; animation-delay: 0.2s; animation-duration: 3.5s; width: 6px; height: 13px; }
.cp9  { left: 13%;  top: 0%; background: #ff9900; animation-delay: 1.8s; animation-duration: 3.3s; }
.cp10 { left: 48%;  top: 0%; background: #cc44ff; animation-delay: 0.9s; animation-duration: 3.9s; width: 5px; height: 11px; }
.cp11 { left: 62%;  top: 0%; background: #ffd700; animation-delay: 2.1s; animation-duration: 3.7s; }
.cp12 { left: 90%;  top: 0%; background: #ff4444; animation-delay: 1.1s; animation-duration: 4.1s; width: 6px; height: 12px; }

/* ---- Chips ---- */
.hr-chip {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5), inset 0 0 12px rgba(255,255,255,0.12);
  animation: floatUp 3.5s ease-in-out infinite;
  z-index: 4;
  pointer-events: none;
}
/* Dashed inner ring pattern */
.hr-chip::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.4);
}
.hr-chip::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: inherit;
  filter: brightness(1.25);
}
.chip-r {
  background: radial-gradient(circle at 35% 30%, #ff7777 0%, #cc1111 55%, #880000 100%);
  top: 18%; right: 4%;
  animation-delay: 0s;
}
.chip-b {
  background: radial-gradient(circle at 35% 30%, #6699ff 0%, #1144cc 55%, #002288 100%);
  bottom: 30%; right: 10%;
  animation-delay: 1.1s;
  width: 44px; height: 44px;
}
.chip-g {
  background: radial-gradient(circle at 35% 30%, #66dd44 0%, #229911 55%, #115500 100%);
  bottom: 18%; left: 26%;
  animation-delay: 2.0s;
  width: 40px; height: 40px;
}

/* ============================================================
   7. WINNERS SECTION
============================================================ */
.winners {
  padding: 40px 0;
  background: #000000;
  border-top: 1px solid #1e1e1e;
}

/* Header with gold dividers */
.winners-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.win-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  max-width: 220px;
}
.winners-title {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.winners-title i { color: #ffd700; font-size: 1.1rem; }

/* 3-column grid */
.winners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.winner-card {
  background: #0e0e0e;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.winner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(68,221,26,0.18);
  border-color: rgba(68,221,26,0.3);
}

/* Featured center card */
.winner-featured {
  border-color: transparent;
  background: #0e0e0e;
  box-shadow: 0 0 28px rgba(255,215,0,0.1);
}
.winner-featured:hover {
  box-shadow: 0 18px 40px rgba(255,215,0,0.22);
  border-color: transparent;
}

.win-badge {
  display: inline-block;
  background: rgba(68,221,26,0.14);
  color: #44DD1A;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.win-badge.gold-badge {
  background: rgba(68,221,26,0.14) !important;
  color: #44DD1A !important;
}

.win-amount {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1;
}
.win-amount.green { color: #44DD1A; }
.win-amount.gold  {
  color: #44DD1A;
  text-shadow: 0 0 14px rgba(68,221,26,0.35);
  font-size: 2.2rem;
}

.win-stars {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #ffd700;
  margin-bottom: 18px;
}
.win-stars.gold-stars { color: #ffd700; }

.win-avatar-wrap {
  margin-bottom: 10px;
}
.win-avatar-icon {
  font-size: 3rem;
  color: #444;
}
.win-avatar-icon.gold-avatar { color: #888888; }

.win-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #eeeeee;
  margin-bottom: 4px;
}
.win-sub {
  font-size: 0.75rem;
  color: #666;
}

/* ============================================================
   8. HOW IT WORKS
============================================================ */
.how-it-works {
  padding: 40px 0;
  background: #000000;
  border-top: 1px solid #1e1e1e;
}

.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 280px;
  background: #0e0e0e;
  border: 1px solid #252525;
  border-radius: 14px;
  padding: 40px 26px 32px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(68,221,26,0.18);
  border-color: rgba(68,221,26,0.35);
}

.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #44DD1A;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(68,221,26,0.45);
}

.step-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(68,221,26,0.1);
  border: 2px solid rgba(68,221,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  color: #44DD1A;
  transition: background 0.3s;
}
.step-card:hover .step-icon-box {
  background: rgba(68,221,26,0.2);
}

.step-name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.7;
}

.step-connector {
  color: #44DD1A;
  font-size: 1.4rem;
  padding: 0 20px;
  opacity: 0.55;
  flex-shrink: 0;
}

/* ============================================================
   9. EXCLUSIVE OFFERS
============================================================ */
.offers {
  padding: 40px 0;
  background: #000000;
  border-top: 1px solid #1e1e1e;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-card {
  background: #0e0e0e;
  border: 1px solid #252525;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(68,221,26,0.16);
  border-color: rgba(68,221,26,0.3);
}
.offer-card-mid {
  border-color: rgba(255,215,0,0.25);
  background: linear-gradient(165deg, #1a1a0a, #181818);
}
.offer-card-mid:hover {
  border-color: rgba(255,215,0,0.5);
  box-shadow: 0 16px 40px rgba(255,215,0,0.15);
}

.offer-img-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 2.4rem;
}
.green-wrap {
  background: rgba(68,221,26,0.12);
  border: 2px solid rgba(68,221,26,0.3);
  color: #44DD1A;
}
.gold-wrap {
  background: rgba(255,215,0,0.12);
  border: 2px solid rgba(255,215,0,0.3);
  color: #ffd700;
}

.offer-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 10px;
}

.offer-desc {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* ============================================================
   10. WHY PLAYERS CHOOSE US
============================================================ */
.why-us {
  padding: 40px 0;
  background: #000000;
  border-top: 1px solid #1e1e1e;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-item {
  text-align: center;
  background: #0e0e0e;
  border: 1px solid #252525;
  border-radius: 12px;
  padding: 30px 18px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(68,221,26,0.16);
  border-color: rgba(68,221,26,0.3);
}

.why-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(68,221,26,0.1);
  border: 2px solid rgba(68,221,26,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.7rem;
  color: #44DD1A;
  transition: background 0.3s;
}
.why-item:hover .why-icon-box {
  background: rgba(68,221,26,0.2);
}

.why-name {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
}
.why-desc {
  font-size: 0.76rem;
  color: #666;
  line-height: 1.6;
}

/* ============================================================
   11. COUNTDOWN / HURRY UP
============================================================ */
.countdown-sec {
  padding: 40px 0;
  background: #000000;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}

.countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

/* Left */
.cd-left { flex: 1; min-width: 280px; }

/* HURRY UP! badge */
.badge-hurry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(255, 60, 60, 0.15);
  border: 1px solid rgba(255, 60, 60, 0.4);
  color: #ff4a4a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cd-title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.15;
}

.cd-sub {
  font-size: 0.87rem;
  color: #888;
  margin-bottom: 32px;
}

/* Timer */
.timer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0e0e0e;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 14px 22px;
  min-width: 78px;
}
.t-val {
  font-size: 2.4rem;
  font-weight: 900;
  color: #44DD1A;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 14px rgba(68,221,26,0.35);
}
.t-lbl {
  font-size: 0.6rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 600;
}
.t-sep {
  font-size: 2.2rem;
  font-weight: 900;
  color: #44DD1A;
  margin-bottom: 20px;
  opacity: 0.7;
}

/* Right */
.cd-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.limited-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,80,80,0.08));
  border: 2px solid rgba(255,215,0,0.4);
  border-radius: 14px;
  padding: 16px 28px;
}
.limited-badge i {
  font-size: 2rem;
  color: #ffd700;
  animation: starPulse 1.4s ease-in-out infinite;
}
.limited-badge span {
  font-size: 1rem;
  font-weight: 900;
  color: #ffd700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.25;
}
@keyframes starPulse {
  0%,100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.18) rotate(15deg); }
}

.btn-join-now {
  padding: 16px 44px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1px;
  border-radius: 8px;
}

.cd-warning {
  font-size: 0.78rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cd-warning i { color: #ffd700; }

/* ============================================================
   12. TODAY'S REWARDS
============================================================ */
.todays-rewards {
  padding: 40px 0;
  background: #000000;
  border-top: 1px solid #1e1e1e;
}

.rewards-wrap {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

/* Left visual — playing cards + coins */
.rewards-visual {
  flex-shrink: 0;
  position: relative;
  width: 260px;
  height: 260px;
}

.cards-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.12) 0%, transparent 65%);
  filter: blur(20px);
}

.playing-cards {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.p-card {
  position: absolute;
  width: 90px;
  height: 125px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.p-card span {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.p-card-1 {
  bottom: 10px; left: 0;
  color: #e63535;
  transform: rotate(-12deg);
  z-index: 3;
}
.p-card-2 {
  top: 10px; left: 50%;
  transform: translateX(-50%) rotate(4deg);
  color: #1a1a1a;
  z-index: 4;
}
.p-card-3 {
  bottom: 10px; right: 0;
  color: #e63535;
  transform: rotate(12deg);
  z-index: 3;
}

.coins-scatter { position: absolute; inset: 0; pointer-events: none; z-index: 5; }
.sc-coin {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #c9a800);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; color: #5a3e00;
  box-shadow: 0 3px 12px rgba(255,215,0,0.4);
  animation: floatUp 2.5s ease-in-out infinite;
}
.sc1 { top: 0; left: 0;     animation-delay: 0s; }
.sc2 { top: 0; right: 0;    animation-delay: 0.8s; }
.sc3 { bottom: 0; left: 40%; animation-delay: 1.6s; }

/* Right content */
.rewards-content { flex: 1; }

.rewards-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.rewards-sub {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 26px;
  max-width: 400px;
}

.btn-tg-now {
  padding: 15px 32px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 7px;
  margin-bottom: 24px;
}

.reward-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rtab {
  padding: 7px 20px;
  border-radius: 50px;
  border: 1px solid #333;
  color: #888;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.25s;
  font-family: 'Montserrat', sans-serif;
}
.rtab:hover { border-color: #44DD1A; color: #44DD1A; }
.rtab-active {
  background: rgba(68,221,26,0.12);
  border-color: #44DD1A;
  color: #44DD1A;
}

/* ============================================================
   13. FOOTER
============================================================ */
.footer {
  background: #000000;
  border-top: 1px solid #1e1e1e;
  padding-top: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  align-items: start;
}

/* Brand */
.logo-footer { margin-bottom: 12px; display: inline-flex; }
.footer-tag {
  font-size: 0.78rem;
  color: #44DD1A;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-about {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 100%;
}
.social-row { display: flex; gap: 10px; }
.soc-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  color: #666; font-size: 0.95rem;
  transition: all 0.25s;
}
.soc-icon:hover {
  background: rgba(68,221,26,0.15);
  border-color: #44DD1A;
  color: #44DD1A;
  transform: translateY(-3px);
}

/* Columns */
.footer-heading {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #44DD1A;
  display: inline-block;
}

.ftr-list li { margin-bottom: 10px; }
.ftr-list a {
  font-size: 0.8rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.ftr-list a::before { content: '›'; color: #44DD1A; font-size: 1rem; }
.ftr-list a:hover   { color: #44DD1A; }

/* Bigger logo in footer */
.logo-badge-lg { width: 46px; height: 46px; font-size: 1.3rem; }
.logo-name-lg  { font-size: 1.5rem; }

/* Brand stats row */
.ftr-brand-stats {
  display: flex;
  gap: 28px;
  margin: 18px 0 22px;
}
.ftr-bstat { display: flex; flex-direction: column; }
.ftr-bstat-val {
  font-size: 1.25rem;
  font-weight: 900;
  color: #44DD1A;
  line-height: 1;
}
.ftr-bstat-lbl {
  font-size: 0.62rem;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* Join card */
.footer-join-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ftr-join-text {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
}
.ftr-tg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 55px;
  line-height: 16px;
  margin: 15px auto 0px auto;
  font-size: 25px;
  position: relative;
  z-index: 99;
  padding: 20px;
  width: 100%;
  border-radius: 12px;
  background: linear-gradient(135deg, #44DD1A 0%, #2ab80e 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: tgBtnGlow 2s ease-in-out infinite;
}
.ftr-tg-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  border-radius: 12px;
  pointer-events: none;
}
.ftr-tg-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(68,221,26,0.6);
}
@keyframes tgBtnGlow {
  0%,100% { box-shadow: 0 4px 20px rgba(68,221,26,0.45); }
  50%      { box-shadow: 0 6px 32px rgba(68,221,26,0.8); }
}

/* ---- Telegram Popup ---- */
.tg-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  backdrop-filter: blur(4px);
}
.tg-popup-overlay.tg-popup-open {
  opacity: 1;
  pointer-events: all;
}
.tg-popup {
  background: #111111;
  border: 1px solid #222;
  border-radius: 20px;
  padding: 44px 40px 36px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.88) translateY(20px);
  transition: transform 0.28s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 40px rgba(68,221,26,0.08);
}
.tg-popup-overlay.tg-popup-open .tg-popup {
  transform: scale(1) translateY(0);
}
.tg-popup-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: #555;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.tg-popup-close:hover { color: #ffffff; }
.tg-popup-icon {
  font-size: 4rem;
  color: #2AABEE;
  margin-bottom: 16px;
  animation: tgIconPulse 2.4s ease-in-out infinite;
}
.tg-popup-title {
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 12px;
}
.tg-popup-desc {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 20px;
}
.tg-popup-desc strong { color: #ffd700; }
.tg-popup-members {
  display: block;
  margin-top: 6px;
  color: #44DD1A;
  font-weight: 700;
  font-size: 0.82rem;
}
.tg-popup-perks {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.tg-popup-perks span {
  font-size: 0.75rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tg-popup-perks i { color: #44DD1A; font-size: 0.7rem; }
.tg-popup-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  border-radius: 10px;
  margin-bottom: 12px;
}
.tg-popup-note {
  font-size: 0.68rem;
  color: #333;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #161616;
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-bottom-inner p {
  font-size: 0.75rem;
  color: #3a3a3a;
}

/* ============================================================
   14. SCROLL-TO-TOP
============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #44DD1A;
  color: #fff;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(68,221,26,0.45);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(68,221,26,0.5);
}

/* ============================================================
   15. RESPONSIVE — TABLET ≤ 992px
============================================================ */
@media (max-width: 992px) {

  /* Hero */
  .hero-inner { flex-direction: column; text-align: center; padding-top: 30px; }
  .hero-content { width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-trust { justify-content: center; }
  .hero-right { width: 100%; min-height: 420px; }
  .hr-roulette { width: 280px; height: 280px; left: 50%; transform: translate(-50%, -50%); }
  .hr-phone { right: 50%; transform: translate(50%, -50%); }
  .hr-cards { right: calc(50% + 160px); }

  /* Winners */
  .winners-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .winner-featured { transform: none; }

  /* Steps */
  .steps-row    { flex-direction: column; }
  .step-connector { transform: rotate(90deg); padding: 8px 0; }
  .step-card    { max-width: 100%; }

  /* Offers */
  .offers-grid  { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* Why */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Countdown */
  .countdown-wrap { flex-direction: column; text-align: center; }
  .timer { justify-content: center; }

  /* Rewards */
  .rewards-wrap { flex-direction: column; text-align: center; gap: 40px; }
  .rewards-visual { margin: 0 auto; }
  .rewards-sub { max-width: 100%; }
  .reward-tabs { justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }

  /* Winners title wrapping */
  .winners-title { white-space: normal; text-align: center; }
  .winners-header { flex-wrap: wrap; justify-content: center; }
  .win-divider { flex: 0 0 100%; max-width: 100%; }
}

/* ============================================================
   16. RESPONSIVE — MOBILE ≤ 580px
============================================================ */
@media (max-width: 580px) {

  .winners, .how-it-works, .offers,
  .why-us, .countdown-sec, .todays-rewards { padding: 30px 0; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-item { padding: 22px 12px; }

  .t-block { padding: 10px 16px; min-width: 62px; }
  .t-val   { font-size: 1.9rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   17. HAMBURGER ANIMATION
============================================================ */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg);  }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   18. PERFORMANCE — disable heavy animations on mobile
       (reduces paint/composite cost, improves FCP/LCP score)
============================================================ */
@media (max-width: 768px) {
  .hr-rays,
  .hr-orbit,
  .hr-confetti,
  .cp { animation: none !important; opacity: 0.5; }
  .hr-crown-icon { animation: none !important; }
  .hr-coin       { animation: none !important; }
  .hr-die        { animation: none !important; }
  .hr-spark      { animation: none !important; opacity: 0.6; }
  .hr-chip       { animation: none !important; }
  .tg-popup-icon { animation: none !important; }
  .ftr-tg-btn    { animation: none !important; }
}

/* Respect user OS reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
