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

:root {
  --red: #e31837;
  --red-bright: #ff1a3d;
  --red-hot: #ff2d4b;
  --red-dark: #b0102a;
  --red-deeper: #8b0015;
  --red-glow: rgba(227, 24, 55, 0.6);
  --gold: #ffd700;
  --dark: #1a0008;
  --dark-card: #2a0010;
  --dark-surface: #350015;
  --gray: #ff8a9a;
  --gray-light: #ffc0c8;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --app-height: 100svh;
  --mobile-bottom-ui: 96px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow: hidden;
  height: 100vh;
  height: 100svh;
  height: var(--app-height);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--red-hot); color: white; }

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

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ===== PAGE SCROLL ===== */
#pages {
  height: 100vh;
  height: 100svh;
  height: var(--app-height);
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

#pages::-webkit-scrollbar { width: 3px; }
#pages::-webkit-scrollbar-track { background: transparent; }
#pages::-webkit-scrollbar-thumb { background: var(--red-hot); border-radius: 2px; }

.page {
  height: 100vh;
  height: 100svh;
  height: var(--app-height);
  min-height: 100vh;
  min-height: 100svh;
  min-height: var(--app-height);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.section-scroll {
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.section-scroll::-webkit-scrollbar { width: 3px; }
.section-scroll::-webkit-scrollbar-track { background: transparent; }
.section-scroll::-webkit-scrollbar-thumb { background: var(--red-hot); border-radius: 2px; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 0, 8, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 24px rgba(227, 24, 55, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
}

.nav-logo-img {
  width: 122px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 5px 9px;
  box-shadow: 0 0 18px rgba(255, 45, 75, 0.25);
}

.nav-links { display: flex; gap: 2px; }

.nav-links a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
  color: white;
  background: var(--red);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav.open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 56px; left: 0; right: 0; bottom: 0;
  background: rgba(26, 0, 8, 0.95);
  backdrop-filter: blur(24px);
  padding: 20px;
  z-index: 999;
}

.nav.open + .mobile-menu { display: flex; flex-direction: column; gap: 4px; }

.mobile-menu a {
  display: block;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-light);
  border-radius: 12px;
  transition: all 0.2s;
}

.mobile-menu a:hover { background: var(--red); color: white; }

/* ===== HERO PAGE ===== */
.hero-page {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(227, 24, 55, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 26, 61, 0.4) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(139, 0, 21, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, var(--red-dark) 0%, var(--dark) 100%);
  align-items: center;
  justify-content: center;
  padding: 72px 20px 48px;
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.9; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* Grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 26, 61, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 26, 61, 0.12) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border: 2px solid rgba(255, 26, 61, 0.35);
  animation: shapeFloat 25s ease-in-out infinite;
}

.hero-shape:nth-child(1) { width: 200px; height: 200px; top: 10%; left: -5%; border-radius: 50%; }
.hero-shape:nth-child(2) { width: 120px; height: 120px; top: 60%; right: -3%; transform: rotate(45deg); animation-delay: -5s; }
.hero-shape:nth-child(3) { width: 80px; height: 80px; top: 20%; right: 15%; border-radius: 50%; border-color: rgba(255, 215, 0, 0.25); animation-delay: -10s; }
.hero-shape:nth-child(4) { width: 160px; height: 160px; bottom: 15%; left: 10%; transform: rotate(30deg); animation-delay: -15s; }
.hero-shape:nth-child(5) { width: 50px; height: 50px; top: 40%; left: 20%; border-radius: 50%; border-color: rgba(255, 215, 0, 0.15); animation-delay: -8s; }

@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  50% { transform: translateY(-40px) rotate(180deg); opacity: 0.7; }
}

/* Glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: glowPulse 3s ease-in-out infinite;
}

.hero-glow.red1 { width: 400px; height: 400px; background: rgba(227, 24, 55, 0.5); top: 10%; left: 5%; }
.hero-glow.red2 { width: 300px; height: 300px; background: rgba(255, 26, 61, 0.4); bottom: 15%; right: 5%; animation-delay: -1.5s; }
.hero-glow.gold1 { width: 200px; height: 200px; background: rgba(255, 215, 0, 0.25); top: 25%; right: 15%; animation-delay: -0.8s; }

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

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

.hero-keyvisual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26,0,8,0.92) 0%, rgba(26,0,8,0.62) 38%, rgba(26,0,8,0.08) 72%, rgba(26,0,8,0.36) 100%),
    linear-gradient(180deg, rgba(26,0,8,0.1) 0%, rgba(26,0,8,0.72) 100%);
}

.hero-keyvisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  opacity: 0.78;
  transform: scale(1.04);
  filter: saturate(1.18) contrast(1.06);
  animation: heroDrift 12s ease-in-out infinite;
}

@keyframes heroDrift {
  0%, 100% { transform: scale(1.04) translateX(0); }
  50% { transform: scale(1.08) translateX(-14px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 640px;
  margin-right: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  border: 2px solid var(--red-hot);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 24px;
  animation: fadeDown 0.6s ease both;
  box-shadow: 0 0 24px var(--red-glow);
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(36px, 8vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 16px;
  animation: fadeUp 0.7s ease 0.1s both;
  text-shadow: 0 0 80px rgba(227, 24, 55, 0.5);
}

.hero h1 .red {
  color: var(--red-hot);
  text-shadow: 0 0 60px rgba(255, 26, 61, 0.6), 0 0 120px rgba(227, 24, 55, 0.3);
}

.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(255, 215, 0, 0.4));
}

.hero-sub {
  font-size: clamp(14px, 3vw, 18px);
  color: var(--gray-light);
  margin-bottom: 32px;
  animation: fadeUp 0.7s ease 0.2s both;
  max-width: 500px;
  margin-left: 0;
  margin-right: 0;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease 0.3s both;
}

.cd-box {
  background: var(--red);
  border: 2px solid var(--red-hot);
  border-radius: 14px;
  padding: 16px 20px;
  min-width: 76px;
  text-align: center;
  box-shadow: 0 0 32px var(--red-glow), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.3s;
}

.cd-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 48px var(--red-glow), 0 8px 32px rgba(0,0,0,0.3);
}

.cd-num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  display: block;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cd-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  display: block;
}

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease 0.4s both;
}

.hero-stat {
  text-align: center;
  padding: 16px 24px;
  background: var(--red);
  border: 2px solid var(--red-hot);
  border-radius: 14px;
  box-shadow: 0 0 24px var(--red-glow);
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 900;
  display: block;
  color: var(--gold);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-btns {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.5s both;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-red {
  background: var(--red-hot);
  color: white;
  box-shadow: 0 0 24px var(--red-glow);
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px var(--red-glow), 0 8px 32px rgba(0,0,0,0.3);
  background: #ff3d5a;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  color: var(--dark);
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.4);
  font-weight: 800;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.5), 0 8px 32px rgba(0,0,0,0.3);
}

/* ===== SECTION COMMON ===== */
.section { position: relative; }

.page > .section {
  padding: 72px 0;
  flex: 1;
}

.section-red {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(227, 24, 55, 0.15) 0%, transparent 60%),
    var(--dark-card);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 12px;
  padding: 6px 18px;
  background: var(--red);
  border-radius: 50px;
  border: 2px solid var(--red-hot);
  box-shadow: 0 0 16px var(--red-glow);
}

.section-title {
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-title .gold {
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title .red { color: var(--red-hot); }

.section-desc {
  font-size: 15px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

.mechanic-poster {
  position: relative;
  max-width: 620px;
  margin: -24px auto 28px;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.28);
  box-shadow: 0 0 50px rgba(227, 24, 55, 0.35), 0 22px 70px rgba(0,0,0,0.34);
}

.mechanic-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(26,0,8,0.82) 100%);
  pointer-events: none;
}

.mechanic-poster img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(1.12) contrast(1.04);
}

.mechanic-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  z-index: 1;
}

.mechanic-caption span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.mechanic-caption strong {
  display: block;
  color: white;
  font-size: clamp(18px, 3vw, 26px);
  line-height: 1.15;
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.step {
  background: var(--dark-card);
  border: 2px solid rgba(227, 24, 55, 0.25);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red-hot);
  box-shadow: 0 0 16px var(--red-glow);
}

.step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(227, 24, 55, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.step:hover::after { opacity: 1; }

.step:hover {
  transform: translateY(-6px);
  border-color: var(--red-hot);
  box-shadow: 0 0 40px rgba(227, 24, 55, 0.3), 0 16px 48px rgba(0,0,0,0.3);
}

.step-num {
  width: 52px; height: 52px;
  background: var(--red-hot);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 0 24px var(--red-glow);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.step p strong { color: var(--gold); }

/* ===== PRIZE SHOWCASE ===== */
.prize-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .prize-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .prize-showcase { grid-template-columns: repeat(3, 1fr); }
}

.prize-card {
  background: var(--dark-card);
  border: 2px solid rgba(227, 24, 55, 0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.prize-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(227, 24, 55, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.prize-card:hover::before { opacity: 1; }

.prize-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--red-hot);
  box-shadow: 0 0 40px rgba(227, 24, 55, 0.3), 0 16px 48px rgba(0,0,0,0.3);
}

.prize-card.featured {
  border-color: var(--red-hot);
  background: linear-gradient(135deg, rgba(227, 24, 55, 0.15), var(--dark-card));
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .prize-card.featured { grid-column: auto; }
}

.prize-card.featured::after {
  content: 'ĐẶC BIỆT';
  position: absolute;
  top: 14px; right: -30px;
  background: var(--gold);
  color: var(--dark);
  font-size: 9px;
  font-weight: 800;
  padding: 4px 40px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.4);
}

.prize-img {
  width: 160px; height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--red);
  background: linear-gradient(135deg, rgba(227, 24, 55, 0.2), var(--dark-card));
  box-shadow: 0 0 32px var(--red-glow);
  transition: all 0.4s;
}

.prize-card:hover .prize-img {
  transform: scale(1.08);
  box-shadow: 0 0 48px var(--red-glow);
}

.prize-img img {
  width: 122px;
  height: 122px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.prize-icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff4d6a, #c41230);
  box-shadow: 0 8px 24px rgba(227, 24, 55, 0.35);
  transition: all 0.4s;
}

.prize-card:hover .prize-icon {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(227, 24, 55, 0.5);
}

.prize-icon i {
  width: 32px; height: 32px;
  color: #fff;
  stroke-width: 2.5;
}

.prize-card.hot .prize-icon {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.prize-card.hot .prize-icon i {
  color: #8b0015;
}

.calendar-icon {
  border-radius: 7px;
  background: linear-gradient(180deg, #fff 0 28%, #ffd7df 29% 100%);
}

.calendar-icon::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 28%;
  border-radius: 7px 7px 0 0;
  background: var(--red-hot);
}

.calendar-icon::after {
  content: '';
  position: absolute;
  left: 26%;
  top: 48%;
  width: 48%;
  height: 20%;
  border-radius: 999px;
  background: #ffb000;
}

.prize-card.featured .prize-img {
  width: 190px;
  height: 190px;
}

.prize-card.featured .prize-img img {
  width: 152px;
  height: 152px;
}

.prize-img.prize-photo {
  width: 100%;
  height: 210px;
  border-radius: 18px;
  border-color: rgba(255, 215, 0, 0.22);
  background: #22000c;
  box-shadow: 0 0 38px rgba(227, 24, 55, 0.32), 0 16px 42px rgba(0,0,0,0.28);
}

.prize-card.featured .prize-img.prize-photo {
  width: 100%;
  height: 240px;
}

.prize-img.prize-photo img,
.prize-card.featured .prize-img.prize-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}

.prize-label {
  font-size: 11px;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.prize-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.prize-value {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.prize-qty {
  font-size: 13px;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

/* ===== REWARD HIGHLIGHTS ===== */
.reward-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .reward-highlights { grid-template-columns: 1.05fr 1fr 1fr; align-items: stretch; }
}

.reward-visual {
  position: relative;
  min-height: 230px;
  border: 2px solid rgba(255, 215, 0, 0.25);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 215, 0, 0.28), transparent 42%),
    radial-gradient(circle at 20% 80%, rgba(227, 24, 55, 0.42), transparent 38%),
    var(--dark-card);
  box-shadow: 0 0 44px rgba(227, 24, 55, 0.28), 0 22px 60px rgba(0,0,0,0.26);
  overflow: hidden;
}

.reward-visual::before {
  content: 'QUÀ KHỦNG';
  position: absolute;
  left: 18px;
  top: 16px;
  z-index: 2;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.reward-visual img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.42));
}

.reward-visual img:nth-child(1) {
  width: 155px;
  right: 8px;
  bottom: 0;
  transform: rotate(5deg);
}

.reward-visual img:nth-child(2) {
  width: 145px;
  left: 14px;
  bottom: 8px;
  transform: rotate(-8deg);
}

.reward-visual img:nth-child(3) {
  width: 118px;
  left: 110px;
  top: 42px;
  transform: rotate(8deg);
}

.rh-card {
  background: var(--dark-card);
  border: 2px solid rgba(227, 24, 55, 0.2);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s;
}

.rh-card:hover {
  border-color: var(--red-hot);
  transform: translateY(-3px);
  box-shadow: 0 0 32px rgba(227, 24, 55, 0.2);
}

.rh-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--red);
  box-shadow: 0 0 16px var(--red-glow);
}

.rh-icon i {
  width: 22px; height: 22px;
  color: #fff;
  stroke-width: 2.5;
}

.rh-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.rh-content .amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
  text-shadow: 0 0 16px rgba(255, 215, 0, 0.3);
}
.rh-content p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ===== GROUPS ===== */
.groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .groups { grid-template-columns: repeat(3, 1fr); }
}

.group {
  background: var(--dark-card);
  border: 2px solid rgba(227, 24, 55, 0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s;
}

.group:hover {
  transform: translateY(-6px);
  border-color: var(--red-hot);
  box-shadow: 0 0 40px rgba(227, 24, 55, 0.25);
}

.group-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.group-badge.n1 { background: var(--red-hot); color: white; box-shadow: 0 0 16px var(--red-glow); }
.group-badge.n2 { background: var(--gold); color: var(--dark); box-shadow: 0 0 16px rgba(255,215,0,0.4); }
.group-badge.n3 { background: #3b82f6; color: white; box-shadow: 0 0 16px rgba(59,130,246,0.4); }

.group h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }

.group-target {
  font-size: 44px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 24px rgba(255, 215, 0, 0.3);
}

.group-target-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.group p { font-size: 13px; color: var(--gray); margin-top: 12px; }

/* ===== RULES DETAIL ===== */
.rules-block {
  background: var(--dark-card);
  border: 2px solid rgba(227, 24, 55, 0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 16px;
}

.rules-block h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(227, 24, 55, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.rules-block h3 .num {
  width: 28px; height: 28px;
  background: var(--red-hot);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--red-glow);
}

.rules-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.rules-table th {
  background: var(--red);
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.rules-table td {
  padding: 12px 16px;
  border-bottom: 2px solid rgba(227, 24, 55, 0.1);
  color: var(--gray-light);
}

.rules-table tr:last-child td { border-bottom: none; }
.rules-table td strong { color: white; }

.rules-note {
  background: var(--red);
  border-left: 4px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin-top: 16px;
  font-size: 14px;
  color: white;
  line-height: 1.6;
}

.rules-note strong { color: var(--gold); }

.reward-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .reward-cards { grid-template-columns: repeat(3, 1fr); }
}

.reward-card {
  background: var(--dark-card);
  border: 2px solid rgba(227, 24, 55, 0.2);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
}

.reward-card:hover {
  transform: translateY(-3px);
  border-color: var(--red-hot);
  box-shadow: 0 0 32px rgba(227, 24, 55, 0.2);
}

.reward-card .icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  box-shadow: 0 0 16px var(--red-glow);
}

.reward-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.reward-card .amount {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.reward-card p { font-size: 13px; color: var(--gray); }

/* ===== LEADERBOARD ===== */
.lb-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.lb-tab {
  padding: 10px 20px;
  background: var(--dark-card);
  border: 2px solid rgba(227, 24, 55, 0.2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.lb-tab:hover { background: var(--red-dark); color: white; border-color: var(--red); }

.lb-tab.active {
  background: var(--red-hot);
  color: white;
  border-color: var(--red-hot);
  box-shadow: 0 0 20px var(--red-glow);
}

.lb-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lb-podium {
  display: grid;
  grid-template-columns: 0.94fr 1.08fr 0.94fr;
  gap: 12px;
  align-items: end;
  margin: 14px 0 12px;
  flex-shrink: 0;
}

.lb-podium-card {
  position: relative;
  min-height: 160px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(255,255,255,0.98), rgba(255,239,242,0.96));
  box-shadow: 0 18px 42px rgba(227, 24, 55, 0.13);
  display: flex;
  flex-direction: column;
}

.lb-podium-card.rank-1 {
  min-height: 186px;
  box-shadow: 0 26px 60px rgba(227, 24, 55, 0.22);
}

.lb-podium-card.rank-2 { order: 1; }
.lb-podium-card.rank-1 { order: 2; }
.lb-podium-card.rank-3 { order: 3; }

.lb-podium-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  background: #e31837;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.lb-podium-card.rank-1 .lb-podium-rank {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #8b0015;
}

.lb-podium-card.rank-2 .lb-podium-rank {
  background: linear-gradient(135deg, #e0e0e0, #a0a0a0);
}

.lb-podium-card.rank-3 .lb-podium-rank {
  background: linear-gradient(135deg, #e8a87c, #cd7f32);
}

.lb-podium-rank span {
  font-size: 16px;
  line-height: 1;
}

.lb-podium-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 16px 10px;
  text-align: center;
}

.lb-podium-name {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.18;
  color: #231f20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.lb-podium-mnv {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: rgba(227, 24, 55, 0.15);
  color: #e31837;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  font-family: 'SF Mono', 'Courier New', monospace;
}

.lb-podium-card.rank-1 .lb-podium-name {
  font-size: 20px;
}

.lb-podium-meta {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  color: #6b2731;
}

.lb-podium-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 12px 12px;
}

.lb-podium-stat {
  padding: 6px 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(227, 24, 55, 0.12);
  text-align: center;
}

.lb-podium-stat b {
  display: block;
  color: #e31837;
  font-size: 16px;
  line-height: 1;
}

.lb-podium-stat small {
  display: block;
  margin-top: 2px;
  color: #8b2632;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.lb-podium-reward {
  text-align: center;
  padding: 8px 16px;
  border-top: 1px solid rgba(227, 24, 55, 0.1);
  color: #231f20;
  font-size: 17px;
  font-weight: 900;
  background: rgba(227, 24, 55, 0.04);
}

.lb-select {
  flex: 1;
  min-width: 120px;
  padding: 10px 14px;
  border: 2px solid rgba(227, 24, 55, 0.2);
  border-radius: 8px;
  background: var(--dark-card);
  color: white;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23ff8a9a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.lb-select:focus { outline: none; border-color: var(--red-hot); }
.lb-select option { background: var(--dark-card); color: white; }

.lb-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(227, 24, 55, 0.2);
  -webkit-overflow-scrolling: touch;
}

.lb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  table-layout: fixed;
}

.lb-table th {
  background: var(--red);
  padding: 8px 6px;
  font-size: 10px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  white-space: nowrap;
}

.lb-table th:nth-child(1) { width: 36px; text-align: center; }
.lb-table th:nth-child(2) { width: 34%; }
.lb-table th:nth-child(3),
.lb-table th:nth-child(4),
.lb-table th:nth-child(5) { width: 14%; text-align: right; }
.lb-table th:nth-child(6) { width: 20%; text-align: right; }

.lb-table td {
  padding: 8px 6px;
  border-bottom: 1px solid rgba(227, 24, 55, 0.08);
  vertical-align: middle;
}

.lb-table td:nth-child(1) { text-align: center; }
.lb-table td:nth-child(2) { overflow: hidden; }
.lb-table td:nth-child(3),
.lb-table td:nth-child(4),
.lb-table td:nth-child(5),
.lb-table td:nth-child(6) { text-align: right; }

.lb-table tr:hover { background: rgba(227, 24, 55, 0.1); }

.lb-rank { font-weight: 800; font-size: 14px; width: 36px; color: var(--gray); }
.lb-rank.top1 { color: var(--gold); text-shadow: 0 0 12px rgba(255, 215, 0, 0.4); }
.lb-rank.top2 { color: #c0c0c0; }
.lb-rank.top3 { color: #cd7f32; }

.lb-name strong { display: block; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lb-name .meta { font-size: 10px; color: var(--gray); }
.lb-mnv-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  color: #e31837;
  background: rgba(227, 24, 55, 0.1);
  padding: 1px 7px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  font-family: 'SF Mono', 'Courier New', monospace;
  margin: 1px 0 2px;
}
.lb-reward { font-weight: 700; color: var(--gold); white-space: nowrap; }

/* ===== FAQ ===== */
.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item {
  background: var(--dark-card);
  border: 2px solid rgba(227, 24, 55, 0.15);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.open { border-color: var(--red-hot); box-shadow: 0 0 24px rgba(227, 24, 55, 0.2); }

.faq-q {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  text-align: left;
  gap: 12px;
}

.faq-q:hover { background: rgba(227, 24, 55, 0.1); }

.faq-arrow {
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-arrow {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 500px; }

.faq-a p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.faq-a strong { color: white; }

/* ===== CTA ===== */
.cta-page {
  align-items: center;
  justify-content: center;
}

.cta {
  position: relative;
  padding: 72px 20px;
  text-align: center;
  overflow: hidden;
  width: 100%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(227, 24, 55, 0.4) 0%, transparent 60%),
    var(--dark);
}

.cta-content { position: relative; z-index: 1; }

.cta h2 {
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 900;
  margin-bottom: 12px;
  text-shadow: 0 0 60px rgba(227, 24, 55, 0.5);
}

.cta p {
  font-size: 15px;
  color: var(--gray-light);
  margin-bottom: 28px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: transparent;
  border: none;
  padding: 32px 20px;
  text-align: center;
}

.footer p {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 4px;
}

.footer strong { color: white; }

/* ===== BRIGHT VIETTEL THEME REFRESH ===== */
body {
  background:
    linear-gradient(180deg, #fff6f6 0%, #fff 42%, #ffe8ec 100%);
  color: #231f20;
}

#pages::-webkit-scrollbar-thumb,
.section-scroll::-webkit-scrollbar-thumb {
  background: #e31837;
}

.nav {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 3px solid #e31837;
  box-shadow: 0 10px 36px rgba(227, 24, 55, 0.14);
}

.nav-logo span,
.nav-links a {
  color: #231f20;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: #e31837;
}

.nav-toggle span {
  background: #e31837;
}

.mobile-menu {
  background: rgba(255, 255, 255, 0.96);
}

.mobile-menu a {
  color: #231f20;
}

.hero-page {
  background:
    radial-gradient(ellipse at 18% 20%, rgba(255, 255, 255, 0.92) 0%, transparent 32%),
    radial-gradient(ellipse at 76% 18%, rgba(255, 215, 0, 0.42) 0%, transparent 34%),
    linear-gradient(135deg, #f11235 0%, #e31837 48%, #ff6b7f 100%);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
}

.hero-shape {
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-glow.red1,
.hero-glow.red2 {
  background: rgba(255, 255, 255, 0.36);
}

.hero-glow.gold1 {
  background: rgba(255, 215, 0, 0.34);
}

.hero-keyvisual::after {
  background:
    linear-gradient(90deg, rgba(227, 24, 55, 0.96) 0%, rgba(227, 24, 55, 0.72) 42%, rgba(227, 24, 55, 0.08) 76%, rgba(227, 24, 55, 0.36) 100%),
    linear-gradient(180deg, rgba(227, 24, 55, 0.05) 0%, rgba(227, 24, 55, 0.4) 100%);
}

.hero-keyvisual img {
  opacity: 0.68;
  filter: saturate(1.22) contrast(1.02) brightness(1.08);
}

.hero-badge,
.section-tag,
.cd-box,
.hero-stat,
.rh-icon,
.reward-card .icon,
.rules-block h3 .num,
.faq-arrow {
  background: #e31837;
  border-color: #ff6b7f;
  box-shadow: 0 12px 28px rgba(227, 24, 55, 0.22);
}

.hero h1,
.hero-sub,
.cd-num,
.hero-stat-label,
.hero-stat-num {
  color: #fff;
}

.hero h1 {
  text-shadow: 0 12px 38px rgba(90, 0, 12, 0.28);
}

.hero h1 .red {
  color: #fff;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.28);
}

.hero h1 .gold,
.section-title .gold,
.prize-value,
.reward-card .amount {
  background: linear-gradient(135deg, #ffd900, #ff9f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub,
.cd-label,
.hero-stat-label {
  color: rgba(255, 255, 255, 0.86);
}

.section-red,
.page > .section,
.cta {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(227, 24, 55, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #fff 0%, #fff5f6 100%);
}

.section-title,
.step h3,
.prize-name,
.rh-content h4,
.group h3,
.rules-block h3,
.reward-card h4,
.lb-name strong,
.faq-q,
.cta h2 {
  color: #231f20;
}

.section-desc,
.step p,
.prize-label,
.prize-qty,
.rh-content p,
.group-target-label,
.group p,
.reward-card p,
.lb-tab,
.lb-rank,
.lb-name .meta,
.faq-a p,
.cta p,
.footer p {
  color: #6b2731;
}

.step,
.prize-card,
.rh-card,
.group,
.rules-block,
.reward-card,
.faq-item,
.lb-tab,
.lb-select,
.lb-table-wrap {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(227, 24, 55, 0.18);
  box-shadow: 0 18px 42px rgba(227, 24, 55, 0.08);
}

.step::after,
.prize-card::before {
  background: radial-gradient(circle at 50% 0%, rgba(227, 24, 55, 0.11), transparent 62%);
}

.step:hover,
.prize-card:hover,
.rh-card:hover,
.group:hover,
.reward-card:hover,
.faq-item.open {
  border-color: #e31837;
  box-shadow: 0 22px 52px rgba(227, 24, 55, 0.18);
}

.step p strong,
.group-target,
.rh-content .amount,
.lb-reward {
  color: #e31837;
  text-shadow: none;
}

.rules-note strong {
  color: #ffd900;
  text-shadow: none;
}

.mechanic-poster {
  border-color: rgba(227, 24, 55, 0.28);
  box-shadow: 0 18px 48px rgba(227, 24, 55, 0.18);
}

.mechanic-poster::after {
  background: linear-gradient(180deg, transparent 44%, rgba(227, 24, 55, 0.82) 100%);
}

.prize-card.featured {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 236, 239, 0.96));
  border-color: #e31837;
}

.prize-img {
  border-color: #e31837;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 215, 0, 0.2), transparent 44%),
    linear-gradient(135deg, #fff, #ffe7eb);
  box-shadow: 0 16px 32px rgba(227, 24, 55, 0.18);
}

.prize-img.prize-photo {
  border-color: rgba(227, 24, 55, 0.24);
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 215, 0, 0.22), transparent 48%),
    linear-gradient(135deg, #fff, #ffe8ec);
  box-shadow: 0 16px 38px rgba(227, 24, 55, 0.16);
}

.reward-visual {
  border-color: rgba(227, 24, 55, 0.24);
  background:
    radial-gradient(circle at 52% 40%, rgba(255, 215, 0, 0.34), transparent 42%),
    radial-gradient(circle at 16% 82%, rgba(227, 24, 55, 0.26), transparent 36%),
    linear-gradient(135deg, #fff, #ffe8ec);
  box-shadow: 0 22px 56px rgba(227, 24, 55, 0.16);
}

.rules-table th,
.rules-note,
.lb-table th {
  background: #e31837;
}

.rules-table td {
  color: #3a2a2d;
  border-bottom-color: rgba(227, 24, 55, 0.12);
}

.rules-table td strong,
.faq-a strong,
.footer strong {
  color: #e31837;
}

.lb-select {
  color: #231f20;
  background-color: #fff;
}

.lb-select option {
  background: #fff;
  color: #231f20;
}

.lb-tab:hover {
  background: #ffe6ea;
  color: #e31837;
  border-color: #e31837;
}

.lb-tab.active {
  background: #e31837;
  color: white;
  border-color: #e31837;
  box-shadow: 0 12px 28px rgba(227, 24, 55, 0.22);
}

.lb-table td {
  color: #231f20;
}

.lb-table tr:hover {
  background: #fff0f2;
}

.faq-q:hover {
  background: #fff0f2;
}

.cta h2 {
  text-shadow: none;
}

.footer {
  background: #fff;
}

/* ===== CAMPAIGN DEPTH LAYER ===== */
.page:not(.hero-page):not(.cta-page) {
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(227, 24, 55, 0.1) 0 18%, transparent 18% 100%),
    repeating-linear-gradient(135deg, rgba(227, 24, 55, 0.045) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #fff 0%, #fff5f6 48%, #ffe8ec 100%);
}

.page:not(.hero-page):not(.cta-page)::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(128deg, transparent 0 58%, rgba(227, 24, 55, 0.12) 58% 72%, transparent 72%),
    linear-gradient(24deg, transparent 0 68%, rgba(255, 217, 0, 0.18) 68% 78%, transparent 78%);
}

.page:not(.hero-page):not(.cta-page)::after {
  content: '';
  position: absolute;
  right: -8vw;
  top: 86px;
  width: min(560px, 44vw);
  height: calc(100% - 130px);
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.36) 0 6px, transparent 6px 18px),
    linear-gradient(160deg, rgba(227, 24, 55, 0.18), rgba(255, 217, 0, 0.16));
  clip-path: polygon(34% 0, 100% 0, 66% 100%, 0 100%);
  opacity: 0.95;
}

.page > .section,
.section-red,
.cta {
  background: transparent;
}

.page > .section .container {
  position: relative;
  z-index: 1;
}

#steps {
  background:
    linear-gradient(102deg, rgba(227, 24, 55, 0.18) 0 28%, transparent 28% 100%),
    repeating-linear-gradient(90deg, rgba(227, 24, 55, 0.055) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, #fff 0%, #fff1f3 100%);
}

#prizes {
  background:
    linear-gradient(145deg, rgba(227, 24, 55, 0.16) 0 18%, transparent 18% 100%),
    linear-gradient(28deg, transparent 0 58%, rgba(255, 217, 0, 0.22) 58% 69%, transparent 69%),
    linear-gradient(180deg, #fff7f8 0%, #fff 48%, #ffe4e9 100%);
}

#rewards {
  background:
    linear-gradient(90deg, #e31837 0 9px, transparent 9px),
    repeating-linear-gradient(135deg, rgba(227, 24, 55, 0.055) 0 2px, transparent 2px 20px),
    linear-gradient(180deg, #fff 0%, #fff0f2 100%);
}

#groups {
  background:
    linear-gradient(118deg, transparent 0 12%, rgba(227, 24, 55, 0.13) 12% 25%, transparent 25%),
    linear-gradient(242deg, transparent 0 10%, rgba(255, 217, 0, 0.2) 10% 19%, transparent 19%),
    linear-gradient(180deg, #fff 0%, #fff5f6 100%);
}

#rules {
  background:
    repeating-linear-gradient(0deg, rgba(227, 24, 55, 0.045) 0 1px, transparent 1px 22px),
    linear-gradient(112deg, rgba(227, 24, 55, 0.14) 0 24%, transparent 24%),
    linear-gradient(180deg, #fff 0%, #fff3f5 100%);
}

#leaderboard {
  background:
    linear-gradient(90deg, rgba(227, 24, 55, 0.1) 0 16%, transparent 16%),
    repeating-linear-gradient(135deg, rgba(255, 217, 0, 0.12) 0 1px, transparent 1px 24px),
    linear-gradient(180deg, #fff7f8 0%, #fff 52%, #ffe9ed 100%);
}

#faq {
  background:
    linear-gradient(122deg, transparent 0 62%, rgba(227, 24, 55, 0.14) 62% 76%, transparent 76%),
    repeating-linear-gradient(90deg, rgba(227, 24, 55, 0.045) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, #fff 0%, #fff1f3 100%);
}

.section-header {
  position: relative;
  padding: 18px 20px 22px;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.section-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(227, 24, 55, 0.1);
  box-shadow: 0 18px 42px rgba(227, 24, 55, 0.08);
}

.section-header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 120px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e31837, #ffd900);
  transform: translateX(-50%);
}

.section-tag {
  transform: translateY(-2px);
}

.step,
.prize-card,
.rh-card,
.group,
.rules-block,
.reward-card,
.faq-item,
.lb-table-wrap {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 247, 0.96));
}

.step::before,
.rh-card::before,
.group::before,
.rules-block::before,
.reward-card::before,
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #e31837, #ff6b7f, #ffd900);
}

.step-num,
.group-badge,
.rh-icon,
.reward-card .icon,
.rules-block h3 .num {
  transform: translateZ(0);
}

.step:hover,
.prize-card:hover,
.rh-card:hover,
.group:hover,
.reward-card:hover {
  transform: translateY(-7px);
}

.prize-card {
  box-shadow: 0 20px 48px rgba(227, 24, 55, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.prize-card.featured {
  background:
    linear-gradient(135deg, rgba(227, 24, 55, 0.08), rgba(255, 255, 255, 0.98) 38%, rgba(255, 236, 239, 0.98)),
    repeating-linear-gradient(135deg, rgba(227, 24, 55, 0.05) 0 1px, transparent 1px 18px);
  box-shadow: 0 26px 60px rgba(227, 24, 55, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.prize-card.featured::before {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(227, 24, 55, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 217, 0, 0.14), transparent 46%);
}

.prize-img.prize-photo {
  background:
    linear-gradient(135deg, rgba(227, 24, 55, 0.12), transparent 32%),
    radial-gradient(circle at 50% 42%, rgba(255, 217, 0, 0.28), transparent 48%),
    linear-gradient(135deg, #fff, #ffe2e7);
}

.reward-visual::after {
  content: '';
  position: absolute;
  inset: auto -24px 0 auto;
  width: 74%;
  height: 34%;
  background: linear-gradient(90deg, rgba(227, 24, 55, 0.2), rgba(255, 217, 0, 0.22));
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.groups .group:nth-child(1) {
  border-color: rgba(227, 24, 55, 0.36);
}

.groups .group:nth-child(2) {
  border-color: rgba(255, 176, 0, 0.42);
}

.groups .group:nth-child(3) {
  border-color: rgba(59, 130, 246, 0.28);
}

.rules-block {
  box-shadow: 0 22px 50px rgba(227, 24, 55, 0.1);
}

.lb-table-wrap {
  box-shadow: 0 24px 58px rgba(227, 24, 55, 0.12);
}

.cta-page {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 22px),
    linear-gradient(135deg, #e31837 0%, #f53d58 52%, #ff9fab 100%);
}

.cta {
  color: #fff;
}

.cta h2,
.cta p {
  color: #fff;
}

.cta .footer {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 24px;
}

.cta .footer p,
.cta .footer strong {
  color: #fff;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  body {
    min-height: var(--app-height);
  }

  #pages {
    height: 100vh;
    height: var(--app-height);
    scroll-snap-type: y mandatory;
    scroll-behavior: auto;
    overscroll-behavior-y: contain;
  }

  .page {
    height: 100vh;
    height: var(--app-height);
    min-height: 100vh;
    min-height: var(--app-height);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
  }

  .section-scroll {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .page > .section {
    min-height: var(--app-height);
    padding: 62px 0 calc(28px + env(safe-area-inset-bottom));
  }

  .hero-page {
    min-height: var(--app-height);
    padding: 62px 14px calc(var(--mobile-bottom-ui) + env(safe-area-inset-bottom));
    justify-content: flex-start;
  }

  .nav-inner {
    height: 56px;
    padding: 0 14px;
  }

  .nav-logo {
    gap: 8px;
    font-size: 13px;
  }

  .nav-logo-img {
    width: 104px;
    max-height: 42px;
    padding: 5px 8px;
    border-radius: 9px;
  }

  .section-header {
    margin-bottom: 18px;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.12;
  }

  .section-desc {
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    padding-top: 14px;
  }

  .hero-badge {
    padding: 6px 14px;
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.05;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.38;
    margin-bottom: 18px;
    max-width: 92%;
  }

  .countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
  }

  .cd-box {
    min-width: 0;
    padding: 10px 8px;
    border-radius: 14px;
  }

  .cd-num { font-size: 26px; }
  .cd-label { font-size: 8px; }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-stat {
    padding: 12px 10px;
    min-width: 0;
    border-radius: 14px;
  }

  .hero-stat:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero-stat-num {
    font-size: 19px;
    line-height: 1.15;
  }

  .hero-stat-label {
    font-size: 10px;
    letter-spacing: 1.4px;
  }

  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns {
    gap: 10px;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 330px;
    justify-content: center;
    padding: 13px 18px;
  }

  .mechanic-poster {
    max-width: 100%;
    margin: -8px auto 14px;
    border-radius: 18px;
  }

  .mechanic-poster img {
    height: 150px;
  }

  .steps {
    gap: 10px;
  }

  .step {
    padding: 16px 14px;
  }

  .step-num {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .step h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .step p {
    font-size: 12px;
    line-height: 1.45;
  }

  .prize-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .prize-card {
    padding: 12px 10px;
    border-radius: 14px;
  }

  .prize-card.featured {
    grid-column: span 2;
  }

  .prize-img,
  .prize-card.featured .prize-img {
    width: 92px;
    height: 92px;
    margin-bottom: 8px;
  }

  .prize-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
    border-radius: 14px;
  }

  .prize-icon i {
    width: 26px;
    height: 26px;
  }

  .prize-img.prize-photo,
  .prize-card.featured .prize-img.prize-photo {
    width: 100%;
    height: 118px;
    border-radius: 13px;
    background:
      radial-gradient(circle at 50% 45%, rgba(255, 215, 0, 0.24), transparent 58%),
      linear-gradient(135deg, #fff, #ffe8ec);
  }

  .prize-img img,
  .prize-card.featured .prize-img img {
    width: 66px;
    height: 66px;
  }

  .prize-img.prize-photo img,
  .prize-card.featured .prize-img.prize-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .prize-label {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .prize-name {
    font-size: 15px;
  }

  .prize-value { font-size: 20px; }
  .prize-qty { font-size: 11px; }

  .reward-highlights {
    gap: 10px;
  }

  .reward-visual {
    min-height: 150px;
  }

  .rh-card {
    padding: 16px 14px;
  }

  .group-target { font-size: 36px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .lb-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .lb-tab { white-space: nowrap; flex-shrink: 0; }
  .lb-filters { flex-direction: column; }
  .lb-select { min-width: auto; }

  .rules-block {
    padding: 18px 14px;
  }

  .rules-block > div[style*="overflow-x"] {
    overflow-x: visible !important;
  }

  .rules-table,
  .rules-table thead,
  .rules-table tbody,
  .rules-table tr,
  .rules-table td {
    display: block;
    width: 100%;
  }

  .rules-table {
    border-collapse: separate;
    border-spacing: 0;
  }

  .rules-table thead {
    display: none;
  }

  .rules-table tr {
    margin-bottom: 10px;
    padding: 12px 12px 10px;
    border: 1px solid rgba(227, 24, 55, 0.16);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(227, 24, 55, 0.08);
  }

  .rules-table tr:last-child {
    margin-bottom: 0;
  }

  .rules-table td {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 7px 0;
    border-bottom: 1px solid rgba(227, 24, 55, 0.1);
    color: #3a2a2d;
    font-size: 12px;
    line-height: 1.45;
  }

  .rules-table td:last-child {
    border-bottom: none;
  }

  .rules-table td::before {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #e31837;
  }

  .rules-table td:nth-child(1)::before { content: 'Hạng mục'; }
  .rules-table td:nth-child(2)::before { content: 'Điều kiện'; }
  .rules-table td:nth-child(3)::before { content: 'Thưởng'; }

  .rules-table td strong {
    color: #e31837;
  }

  .rules-note {
    padding: 12px 14px;
    font-size: 12px;
    border-radius: 12px;
    border-left-width: 0;
  }

  .lb-table-wrap {
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid rgba(227, 24, 55, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(227, 24, 55, 0.1);
    -webkit-overflow-scrolling: touch;
  }

  .lb-table,
  .lb-table thead,
  .lb-table tbody,
  .lb-table tr,
  .lb-table td {
    width: 100%;
  }

  .lb-table {
    min-width: 0;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 11px;
  }

  .lb-table thead {
    display: table-header-group;
  }

  .lb-table tbody {
    display: table-row-group;
  }

  .lb-table tr {
    display: table-row;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .lb-table tr::before {
    content: none;
  }

  .lb-table td {
    display: table-cell;
    width: auto;
    padding: 8px 5px;
    border-bottom: 1px solid rgba(227, 24, 55, 0.08);
    color: #231f20;
    vertical-align: middle;
  }

  .lb-table th {
    display: table-cell;
    padding: 8px 5px;
    font-size: 8px;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }

  .lb-table th:nth-child(1),
  .lb-table td:nth-child(1) {
    width: 28px;
    text-align: center;
  }

  .lb-table th:nth-child(2),
  .lb-table td:nth-child(2) {
    width: 36%;
    min-width: 0;
  }

  .lb-table th:nth-child(3),
  .lb-table td:nth-child(3),
  .lb-table th:nth-child(4),
  .lb-table td:nth-child(4),
  .lb-table th:nth-child(5),
  .lb-table td:nth-child(5) {
    width: 12%;
    text-align: right;
  }

  .lb-table th:nth-child(6),
  .lb-table td:nth-child(6) {
    width: 18%;
    text-align: right;
  }

  .lb-rank {
    font-size: 11px;
    color: #e31837;
  }

  .lb-name strong {
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: anywhere;
  }

  .lb-name .meta {
    display: block;
    margin-top: 1px;
    font-size: 8px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lb-mnv-badge {
    font-size: 7px;
    padding: 0 5px;
    margin: 1px 0 1px;
  }

  .lb-reward {
    color: #e31837;
    font-size: 10px;
    white-space: nowrap;
  }

  .lb-table td[colspan] {
    text-align: center !important;
    padding: 28px 14px !important;
    border-top: none;
  }

  .lb-table td[colspan]::before {
    content: none;
  }

  .lb-podium {
    grid-template-columns: 1fr 1.06fr 1fr;
    gap: 6px;
    margin: 10px 0 8px;
  }

  .lb-podium-card {
    min-height: 104px;
    border-radius: 13px;
  }

  .lb-podium-card.rank-1 {
    min-height: 124px;
  }

  .lb-podium-rank {
    gap: 3px;
    padding: 4px 8px;
    font-size: 8px;
    letter-spacing: 0.4px;
  }

  .lb-podium-rank span {
    font-size: 12px;
  }

  .lb-podium-body {
    padding: 8px 8px 6px;
  }

  .lb-podium-name,
  .lb-podium-card.rank-1 .lb-podium-name {
    font-size: 11px;
    line-height: 1.18;
    overflow: hidden;
  }

  .lb-podium-mnv {
    font-size: 8px;
    padding: 1px 5px;
  }

  .lb-podium-meta {
    margin-top: 2px;
    font-size: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lb-podium-stats {
    gap: 4px;
    padding: 0 8px 8px;
  }

  .lb-podium-stat {
    padding: 4px 2px;
    border-radius: 8px;
  }

  .lb-podium-stat b {
    font-size: 11px;
  }

  .lb-podium-stat small {
    font-size: 7px;
    letter-spacing: 0.2px;
  }

  .lb-podium-reward {
    padding: 5px 8px;
    font-size: 12px;
    color: #e31837;
  }

  .hero-shape { display: none; }
  .hero-glow { filter: blur(40px); }
}

@media (min-width: 769px) {
  .nav-toggle { display: none; }
}

@media (max-width: 480px) and (max-height: 760px) {
  :root {
    --mobile-bottom-ui: 78px;
  }

  .hero-page {
    padding-top: 58px;
  }

  .hero-content {
    padding-top: 6px;
  }

  .hero-badge {
    margin-bottom: 8px;
  }

  .hero h1 {
    font-size: clamp(30px, 10vw, 40px);
    margin-bottom: 8px;
  }

  .hero-sub {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .countdown {
    gap: 6px;
    margin-bottom: 12px;
  }

  .cd-box {
    padding: 8px 6px;
  }

  .cd-num {
    font-size: 23px;
  }

  .hero-stats {
    gap: 8px;
    margin-bottom: 12px;
  }

  .hero-stat {
    padding: 10px 8px;
  }

  .hero-stat-num {
    font-size: 17px;
  }

  .hero-stat-label {
    font-size: 9px;
  }

  .hero-btns .btn {
    padding: 12px 16px;
  }

  #spin-fab {
    bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .mobile-float-menu {
    height: 42px;
  }
}

/* ===== SPIN WHEEL ===== */
#spin-fab {
  position: fixed;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #e31837 0%, #ff2d4b 40%, #ff8a00 70%, #ffd900 100%);
  cursor: pointer;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.3),
    0 8px 32px rgba(227, 24, 55, 0.45),
    0 0 28px rgba(255, 138, 0, 0.3);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  animation: spin-fab-glow 2.5s ease-in-out infinite;
}

#spin-fab:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.45),
    0 12px 40px rgba(227, 24, 55, 0.55),
    0 0 44px rgba(255, 217, 0, 0.5);
}

#spin-fab:active {
  transform: translateY(0) scale(0.95);
}

.spin-fab-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  animation: spin-fab-rotate 6s linear infinite;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

@keyframes spin-fab-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-fab-glow {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(255, 255, 255, 0.3),
      0 8px 32px rgba(227, 24, 55, 0.45),
      0 0 28px rgba(255, 138, 0, 0.3);
  }
  50% {
    box-shadow:
      0 0 0 4px rgba(255, 255, 255, 0.5),
      0 8px 44px rgba(227, 24, 55, 0.6),
      0 0 48px rgba(255, 217, 0, 0.5);
  }
}

/* Floating menu group - desktop: hidden */
.spin-float-group {
  display: none;
}

@media (max-width: 480px) {
  .spin-float-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    right: 22px;
    bottom: calc(100px + env(safe-area-inset-bottom));
    z-index: 1002;
    align-items: flex-end;
  }

  .spin-float-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #e31837;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(227, 24, 55, 0.2);
    border: 1.5px solid rgba(227, 24, 55, 0.15);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    opacity: 0;
    transform: translateX(20px);
    animation: spin-float-in 0.3s ease-out forwards;
  }

  .spin-float-menu:nth-child(1) { animation-delay: 0.05s; }
  .spin-float-menu:nth-child(2) { animation-delay: 0.1s; }
  .spin-float-menu:nth-child(3) { animation-delay: 0.15s; }
  .spin-float-menu:nth-child(4) { animation-delay: 0.2s; }
  .spin-float-menu:nth-child(5) { animation-delay: 0.25s; }

  @keyframes spin-float-in {
    to { opacity: 1; transform: translateX(0); }
  }

  .spin-float-menu svg {
    width: 20px;
    height: 20px;
  }

  .spin-float-menu:hover,
  .spin-float-menu:active {
    transform: scale(1.12);
    background: #e31837;
    color: #fff;
    box-shadow: 0 6px 20px rgba(227, 24, 55, 0.35);
  }

  .spin-float-menu::after {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
    background: #231f20;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }

  .spin-float-menu:hover::after {
    opacity: 1;
  }

  #spin-fab {
    width: 60px;
    height: 60px;
    right: 14px;
    bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .spin-fab-icon {
    width: 44px;
    height: 44px;
  }
}

.spin-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  padding: 18px;
  background: rgba(35, 31, 32, 0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}

.spin-modal.active { display: flex; }

.spin-modal-content {
  position: relative;
  width: min(94vw, 520px);
  max-height: min(92vh, 820px);
  padding: 22px;
  overflow-y: auto;
  border: 1px solid rgba(227, 24, 55, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 243, 0.98)),
    repeating-linear-gradient(135deg, rgba(227, 24, 55, 0.05) 0 1px, transparent 1px 18px);
  box-shadow: 0 30px 80px rgba(90, 0, 18, 0.26);
  color: #231f20;
}

.spin-modal-content::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 116px;
  border-radius: 26px 26px 0 0;
  background:
    radial-gradient(circle at 78% 0%, rgba(255, 217, 0, 0.42), transparent 36%),
    linear-gradient(135deg, #e31837, #ff3d58);
  pointer-events: none;
}

.spin-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #e31837;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 10px 22px rgba(90, 0, 18, 0.14);
}

.spin-login,
.spin-game {
  position: relative;
  z-index: 1;
}

.spin-login {
  text-align: center;
  padding: 18px 0 6px;
}

.spin-login-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 24px;
  background: #fff;
  color: #e31837;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(90, 0, 18, 0.18);
}

.spin-login h3 {
  color: #231f20;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.spin-login p {
  max-width: 340px;
  margin: 0 auto 22px;
  color: #555;
  font-size: 13px;
  line-height: 1.45;
}

.spin-login-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 8px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(227, 24, 55, 0.12);
}

.spin-login-form input {
  padding: 12px 16px;
  border: 1px solid rgba(227, 24, 55, 0.18);
  border-radius: 12px;
  background: #fff;
  color: #231f20;
  font-size: 16px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.spin-login-form input:focus {
  outline: none;
  border-color: #e31837;
  box-shadow: 0 0 0 4px rgba(227, 24, 55, 0.1);
}

.spin-user-info {
  margin-top: 12px;
  min-height: 20px;
  font-size: 13px;
}

.spin-user-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 0 0 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(227, 24, 55, 0.12);
}

.spin-user-bar strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
  color: #231f20;
}

.spin-user-bar span {
  color: #6b2731;
}

.spin-user-spins {
  text-align: right;
  min-width: 76px;
  padding-left: 12px;
  border-left: 1px solid rgba(227, 24, 55, 0.14);
  font-size: 12px;
  color: #8b2632;
}

.spin-count {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #e31837;
  line-height: 1;
}

.spin-prize-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 12px;
}

.spin-prize-mini {
  min-width: 0;
  padding: 6px;
  border: 1px solid rgba(227, 24, 55, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(227, 24, 55, 0.08);
}

.spin-prize-mini img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border-radius: 10px;
}

.spin-prize-mini span {
  display: block;
  margin-top: 5px;
  color: #6b2731;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spin-wheel-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 8px auto 0;
  padding: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 58%, rgba(255, 217, 0, 0.26) 59% 64%, rgba(227, 24, 55, 0.18) 65% 100%);
  box-shadow: inset 0 0 0 2px rgba(227, 24, 55, 0.12), 0 20px 52px rgba(227, 24, 55, 0.18);
}

.spin-pointer {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-top: 32px solid #e31837;
  transform: translateX(-50%);
  z-index: 5;
  filter: drop-shadow(0 5px 8px rgba(90, 0, 18, 0.32));
}

#spin-wheel-canvas {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  display: block;
  border-radius: 50%;
}

#spin-spin-btn {
  width: 100%;
  margin-top: 16px;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #e31837, #ff2d4b);
  box-shadow: 0 16px 34px rgba(227, 24, 55, 0.26);
}

.spin-stats {
  display: flex;
  justify-content: space-around;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(227, 24, 55, 0.12);
  font-size: 13px;
  color: #6b2731;
}

.spin-history-wrapper { margin-top: 16px; }
.spin-history-wrapper h4 {
  font-size: 13px;
  color: #8b2632;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.spin-history-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(227, 24, 55, 0.1);
  font-size: 12px;
}

.spin-history-prize {
  color: #231f20;
  font-weight: 700;
}

.spin-history-time {
  color: #8b2632;
  font-size: 11px;
  white-space: nowrap;
}

.spin-history-empty {
  color: #8b2632;
  text-align: center;
  font-size: 13px;
}

.spin-result-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  padding: 18px;
  background: rgba(35, 31, 32, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}

.spin-result-overlay.active { display: flex; }

.spin-result-card {
  text-align: center;
  padding: 38px 28px 30px;
  border-radius: 24px;
  max-width: 360px;
  width: 90%;
  color: #fff;
  box-shadow: 0 24px 70px rgba(90, 0, 18, 0.32);
  animation: spin-result-pop 0.3s ease-out;
}

@keyframes spin-result-pop {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.spin-result-icon { font-size: 64px; margin-bottom: 8px; }
.spin-result-title { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.spin-result-name { font-size: 16px; margin-bottom: 4px; }
.spin-result-value { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.spin-result-note { font-size: 13px; opacity: 0.85; margin-bottom: 20px; }
.spin-close-result { margin-top: 12px; }

.spin-toast {
  position: fixed;
  bottom: calc(92px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 4000;
  background: #231f20;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.spin-toast.active { opacity: 1; }

#spin-spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .spin-modal {
    padding: 10px;
    align-items: flex-end;
  }

  .spin-modal-content {
    width: 100%;
    max-height: calc(100svh - 20px);
    padding: 16px;
    border-radius: 24px;
  }

  .spin-modal-content::before {
    height: 92px;
  }

  .spin-login h3 {
    font-size: 22px;
  }

  .spin-login-form {
    grid-template-columns: 1fr;
  }

  .spin-user-bar {
    padding: 12px;
  }

  .spin-user-bar strong {
    font-size: 13px;
  }

  .spin-user-spins {
    min-width: 64px;
  }

  .spin-count {
    font-size: 26px;
  }

  .spin-wheel-wrapper {
    max-width: min(286px, 78vw);
    padding: 9px;
  }

  .spin-prize-preview {
    gap: 6px;
    margin-bottom: 10px;
  }

  .spin-prize-mini {
    padding: 5px;
    border-radius: 12px;
  }

  .spin-prize-mini img {
    border-radius: 8px;
  }

  .spin-prize-mini span {
    font-size: 9px;
  }
}

@media (max-width: 480px) and (max-height: 760px) {
  #spin-fab {
    bottom: calc(66px + env(safe-area-inset-bottom));
    min-width: 86px;
    height: 38px;
    font-size: 10px;
  }
}

/* ===== FINAL SCROLL + FLOATING BUTTON NORMALIZATION ===== */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  min-height: 100svh;
  min-height: var(--app-height);
}

#pages {
  height: auto;
  min-height: 100svh;
  min-height: var(--app-height);
  overflow: visible;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.page {
  height: auto;
  min-height: auto;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  overflow: visible;
}

.hero-page,
.cta-page {
  min-height: 100svh;
  min-height: var(--app-height);
}

.hero-page .hero-keyvisual::after {
  background:
    linear-gradient(90deg, rgba(227, 24, 55, 0.92) 0%, rgba(227, 24, 55, 0.76) 43%, rgba(227, 24, 55, 0.22) 74%, rgba(227, 24, 55, 0.42) 100%),
    linear-gradient(180deg, rgba(227, 24, 55, 0.08) 0%, rgba(126, 0, 20, 0.44) 100%);
}

.hero-page .hero-keyvisual img {
  opacity: 0.72;
  filter: saturate(1.18) contrast(1.02) brightness(0.98);
}

.hero-page .hero-content h1 {
  color: #fff;
  letter-spacing: 0;
  text-shadow:
    0 3px 0 rgba(126, 0, 20, 0.18),
    0 20px 50px rgba(73, 0, 12, 0.34);
}

.hero-page .hero-content h1 .red {
  color: #fff;
  text-shadow:
    0 3px 0 rgba(126, 0, 20, 0.18),
    0 18px 46px rgba(73, 0, 12, 0.32);
}

.hero-page .hero-content h1 .gold {
  color: #ffd900;
  background: linear-gradient(135deg, #fff7a1 0%, #ffd900 42%, #ff9f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 8px 24px rgba(255, 176, 0, 0.34));
}

.hero-page .hero-sub {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 8px 24px rgba(73, 0, 12, 0.28);
}

.section-scroll {
  overflow: visible;
}

#spin-fab {
  inline-size: 68px;
  block-size: 68px;
  min-inline-size: 68px;
  min-block-size: 68px;
  max-inline-size: 68px;
  max-block-size: 68px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  line-height: 0;
  box-sizing: border-box;
  transform-origin: center;
  overflow: visible;
}

#spin-fab:hover {
  transform: translateY(-3px);
}

#spin-fab:active {
  transform: translateY(0) scale(0.96);
}

.spin-fab-icon {
  inline-size: 52px;
  block-size: 52px;
  aspect-ratio: 1 / 1;
  display: block;
  flex: 0 0 auto;
  animation: none;
  transform: none;
}

@media (max-width: 480px) {
  #spin-fab {
    inline-size: 58px;
    block-size: 58px;
    min-inline-size: 58px;
    min-block-size: 58px;
    max-inline-size: 58px;
    max-block-size: 58px;
    right: 14px;
    bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .spin-fab-icon {
    inline-size: 44px;
    block-size: 44px;
  }
}

@media (max-width: 480px) and (max-height: 760px) {
  #spin-fab {
    inline-size: 52px;
    block-size: 52px;
    min-inline-size: 52px;
    min-block-size: 52px;
    max-inline-size: 52px;
    max-block-size: 52px;
    bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .spin-fab-icon {
    inline-size: 40px;
    block-size: 40px;
  }
}

/* ===== HERO CAMPAIGN POLISH ===== */
.hero-page {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 210, 0, 0.32), transparent 24%),
    radial-gradient(circle at 16% 88%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, #f2143c 0%, #e31837 45%, #c90025 100%);
}

.hero-page .hero-keyvisual::after {
  background:
    linear-gradient(90deg, rgba(227, 24, 55, 0.95) 0%, rgba(227, 24, 55, 0.82) 38%, rgba(227, 24, 55, 0.46) 68%, rgba(227, 24, 55, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(174, 0, 28, 0.36) 100%);
}

.hero-page .hero-keyvisual img {
  opacity: 0.9;
  filter: saturate(1.26) contrast(1.04) brightness(1.08);
}

.hero-page .hero-content {
  max-width: 760px;
}

.hero-page .hero-content h1 {
  margin-bottom: 12px;
}

.hero-page .hero-content h1 .gold {
  background: linear-gradient(135deg, #fffbc2 0%, #ffe100 42%, #ff9f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-page .hero-sub {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
}

.hero-page .countdown {
  gap: 10px;
  margin-bottom: 18px;
}

.hero-page .cd-box {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, #ed183f, #cf0028);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 36px rgba(134, 0, 24, 0.28);
}

.hero-page .cd-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.24), transparent 38%);
  pointer-events: none;
}

.hero-page .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-bottom: 16px;
}

.hero-page .hero-stat {
  position: relative;
  overflow: hidden;
  text-align: left;
  min-height: 104px;
  padding: 14px 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(167, 0, 29, 0.78), rgba(237, 24, 58, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 42px rgba(102, 0, 18, 0.26);
}

.hero-page .hero-stat::after {
  content: '';
  position: absolute;
  width: 84px;
  height: 84px;
  right: -28px;
  top: -32px;
  border-radius: 999px;
  background: rgba(255, 216, 0, 0.18);
}

.hero-stat-kicker {
  display: block;
  color: #ffe674;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  line-height: 1;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.hero-page .hero-stat-num {
  color: #fff;
  font-size: 28px;
  line-height: 1.05;
  text-shadow: 0 10px 24px rgba(80, 0, 14, 0.28);
}

.hero-page .hero-stat-label {
  color: rgba(255, 255, 255, 0.82);
  display: block;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-top: 8px;
}

.hero-prizes {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 10px;
  max-width: 720px;
  margin: 0 0 18px;
  animation: fadeUp 0.7s ease 0.45s both;
}

.hero-prize {
  position: relative;
  overflow: hidden;
  min-height: 110px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 42px rgba(92, 0, 18, 0.3);
}

.hero-prize::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 36%, rgba(88, 0, 16, 0.78) 100%),
    radial-gradient(circle at 82% 12%, rgba(255, 224, 0, 0.32), transparent 34%);
}

.hero-prize img {
  width: 100%;
  height: 100%;
  min-height: 110px;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-prize-main img {
  object-position: center;
}

.hero-prize span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 8px 18px rgba(60, 0, 12, 0.6);
}

.hero-page .hero-btns {
  margin-top: 0;
}

.hero-page .hero-btns .btn {
  border: 0;
  box-shadow: 0 18px 36px rgba(102, 0, 18, 0.28);
}

.hero-page .btn-red {
  background: #fff;
  color: #e31837;
}

.hero-page .btn-gold {
  background: linear-gradient(135deg, #ffe100, #ffae00);
  color: #2b1b00;
}

@media (max-width: 768px) {
  .hero-page {
    padding-top: 64px;
  }

  .hero-page .hero-content {
    padding-top: 12px;
  }

  .hero-page .hero-content h1 {
    font-size: clamp(31px, 9.4vw, 42px);
    line-height: 1.08;
  }

  .hero-page .hero-sub {
    font-size: 13px;
    line-height: 1.38;
    max-width: 96%;
    margin-bottom: 14px;
  }

  .hero-page .countdown {
    gap: 7px;
    margin-bottom: 12px;
  }

  .hero-page .cd-box {
    padding: 9px 6px;
    border-radius: 12px;
  }

  .hero-page .cd-num {
    font-size: 25px;
  }

  .hero-page .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
  }

  .hero-page .hero-stat {
    min-height: 78px;
    padding: 10px 12px;
    border-radius: 15px;
  }

  .hero-page .hero-stat:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 72px;
  }

  .hero-stat-kicker {
    font-size: 8px;
    letter-spacing: 1.4px;
    margin-bottom: 6px;
  }

  .hero-page .hero-stat-num {
    font-size: 19px;
  }

  .hero-page .hero-stat-label {
    font-size: 9px;
    margin-top: 5px;
  }

  .hero-prizes {
    grid-template-columns: 1.14fr 0.86fr 0.86fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .hero-prize {
    min-height: 82px;
    border-radius: 16px;
  }

  .hero-prize img {
    min-height: 82px;
  }

  .hero-prize span {
    left: 9px;
    right: 9px;
    bottom: 8px;
    font-size: 10px;
  }

  .hero-page .hero-btns {
    gap: 8px;
  }

  .hero-page .hero-btns .btn {
    max-width: none;
    min-height: 48px;
    padding: 12px 16px;
  }
}

@media (max-width: 380px) {
  .hero-page .hero-content h1 {
    font-size: 30px;
  }

  .hero-page .hero-sub {
    font-size: 12px;
  }

  .hero-prizes {
    grid-template-columns: 1fr 1fr;
  }

  .hero-prize-main {
    grid-column: 1 / -1;
    min-height: 96px;
  }

  .hero-prize-main img {
    min-height: 96px;
  }
}
