/* ============================================
   TASKPEX — Main Stylesheet
   Theme: Dark Navy + Gold/Yellow + Cyan
   ============================================ */

:root {
  --bg-primary: #0d0f1a;
  --bg-secondary: #131628;
  --bg-card: #1a1e35;
  --bg-card-hover: #1f2440;
  --accent-gold: #f5c518;
  --accent-gold-light: #ffd93d;
  --accent-cyan: #00d4ff;
  --accent-green: #00e676;
  --accent-orange: #ff6b35;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #6b7a99;
  --border-color: #2a2f4a;
  --gradient-gold: linear-gradient(135deg, #f5c518, #ff8c00);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-main: 'Nunito', sans-serif;
  --font-display: 'Orbitron', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-gold);
  color: #000;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(245, 197, 24, 0.6); }
.btn-primary.btn-lg { padding: 16px 32px; font-size: 16px; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 15, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s;
  overflow-x: hidden;
}
.navbar.scrolled { background: rgba(13, 15, 26, 0.98); }
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 40px; width: 40px; border-radius: 10px; object-fit: contain; }
.logo-fallback { display: flex; align-items: center; gap: 4px; }
.logo-t { font-family: var(--font-display); font-size: 22px; color: var(--accent-gold); font-weight: 900; }
.logo-p { font-family: var(--font-display); font-size: 22px; color: var(--accent-cyan); font-weight: 900; }
.logo-name { font-weight: 900; font-size: 18px; color: var(--text-primary); }
.nav-links { display: flex; list-style: none; gap: 28px; margin-left: auto; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-weight: 600; font-size: 14px; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent-gold); }
.nav-cta { margin-left: 16px; padding: 10px 20px; font-size: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; flex-direction: column; padding: 16px 24px 24px; gap: 16px; border-top: 1px solid var(--border-color); }
.mobile-menu a { color: var(--text-secondary); text-decoration: none; font-weight: 600; font-size: 16px; }
.mobile-menu.open { display: flex; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; }
.circle { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12; }
.c1 { width: 600px; height: 600px; background: var(--accent-gold); top: -200px; right: -100px; animation: pulse 8s ease-in-out infinite; }
.c2 { width: 400px; height: 400px; background: var(--accent-cyan); bottom: -100px; left: -100px; animation: pulse 10s ease-in-out infinite 2s; }
.c3 { width: 300px; height: 300px; background: var(--accent-orange); top: 40%; left: 40%; animation: pulse 12s ease-in-out infinite 4s; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-text { position: relative; z-index: 1; }
.badge-pill {
  display: inline-block;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.4);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero-text h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero-sub { color: var(--text-secondary); font-size: 18px; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 28px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 24px; font-weight: 900; color: var(--accent-gold); }
.stat-label { font-size: 13px; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border-color); }

/* Hero phone image */
.hero-phone {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-phone img {
  width: 100%;
  max-width: 300px;
  border-radius: 32px;
  box-shadow: 0 24px 80px rgba(245, 197, 24, 0.2), 0 8px 32px rgba(0,0,0,0.6);
  border: 2px solid rgba(245, 197, 24, 0.25);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); }
.scroll-indicator span { display: block; width: 24px; height: 40px; border: 2px solid var(--border-color); border-radius: 12px; position: relative; }
.scroll-indicator span::after {
  content: '';
  display: block;
  width: 4px; height: 8px;
  background: var(--accent-gold);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown { 0%,100%{top:6px;opacity:1} 50%{top:20px;opacity:0.3} }

/* FEATURES */
.features { background: var(--bg-secondary); }
.features .section-title, .features .section-label { text-align: center; display: block; margin-left: auto; margin-right: auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--accent-gold); box-shadow: 0 20px 40px rgba(245, 197, 24, 0.1); }
.feature-card.featured { border-color: var(--accent-gold); background: linear-gradient(135deg, rgba(245, 197, 24, 0.05) 0%, var(--bg-card) 100%); }
.feature-badge { position: absolute; top: -12px; left: 24px; background: var(--gradient-gold); color: #000; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 20px; }
.feature-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.feature-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.feature-tag { display: inline-block; background: rgba(0, 212, 255, 0.1); border: 1px solid rgba(0, 212, 255, 0.3); color: var(--accent-cyan); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }

/* HOW IT WORKS */
.how .section-title, .how .section-label { text-align: center; display: block; }
.steps-row { display: flex; align-items: center; gap: 24px; margin-top: 56px; }
.step-card { flex: 1; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: all 0.3s; }
.step-card:hover { border-color: var(--accent-gold); transform: translateY(-4px); }
.step-num { font-family: var(--font-display); font-size: 48px; font-weight: 900; color: rgba(245, 197, 24, 0.15); line-height: 1; margin-bottom: 8px; }
.step-icon { font-size: 40px; margin-bottom: 16px; }
.step-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.step-card p { color: var(--text-secondary); font-size: 14px; }
.step-arrow { font-size: 28px; color: var(--accent-gold); flex-shrink: 0; }

/* EARN */
.earn { background: var(--bg-secondary); }
.earn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.earn-text p { color: var(--text-secondary); margin-bottom: 28px; }
.earn-table { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.earn-row { display: flex; justify-content: space-between; align-items: center; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-sm); padding: 14px 20px; transition: border-color 0.2s; }
.earn-row:hover { border-color: var(--accent-gold); }
.earn-activity { font-weight: 700; font-size: 14px; }
.earn-range { font-weight: 800; color: var(--accent-gold); font-size: 14px; }

/* Spin wheel */
.spin-preview { text-align: center; }
.wheel-wrap { position: relative; width: 280px; height: 280px; margin: 0 auto 24px; }
.wheel {
  width: 100%; height: 100%; border-radius: 50%;
  border: 4px solid #2a3060;
  background: conic-gradient(
    #1a1e35 0deg 45deg, #f5c518 45deg 90deg,
    #1a1e35 90deg 135deg, #f5c518 135deg 180deg,
    #1a1e35 180deg 225deg, #f5c518 225deg 270deg,
    #1a1e35 270deg 315deg, #f5c518 315deg 360deg
  );
  transition: transform 3s cubic-bezier(0.17, 0.67, 0.12, 0.99);
  box-shadow: 0 0 30px rgba(245,197,24,0.3), inset 0 0 20px rgba(0,0,0,0.4);
}
.wheel-pointer { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); font-size: 24px; color: var(--accent-gold); z-index: 10; }
.wheel-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; background: var(--gradient-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; z-index: 5; box-shadow: 0 0 20px rgba(245,197,24,0.6); }
.spin-btn { font-family: var(--font-display); letter-spacing: 1px; margin-bottom: 12px; }
.spins-left { display: inline-block; background: var(--bg-card); border: 1px solid var(--border-color); padding: 8px 20px; border-radius: 20px; font-size: 13px; font-weight: 700; color: var(--text-secondary); }
.spins-left strong { color: var(--accent-gold); }

/* SCREENSHOTS — real image carousel */
.screenshots { background: var(--bg-primary); }
.screenshots .section-label, .screenshots .section-title { text-align: center; display: block; }
.screenshots-sub { text-align: center; color: var(--text-secondary); font-size: 17px; max-width: 560px; margin: 0 auto 48px; }
.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 16px 4px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,197,24,0.3) transparent;
  max-width: 100%;
}
.carousel::-webkit-scrollbar { height: 4px; }
.carousel::-webkit-scrollbar-track { background: transparent; }
.carousel::-webkit-scrollbar-thumb { background: rgba(245,197,24,0.3); border-radius: 2px; }
.carousel img {
  width: 220px;
  flex-shrink: 0;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--border-color);
  scroll-snap-align: start;
  transition: transform 0.3s, border-color 0.3s;
  object-fit: cover;
}
.carousel img:hover { transform: scale(1.04); border-color: rgba(245,197,24,0.4); }
.ss-cta { text-align: center; margin-top: 40px; }

/* TESTIMONIALS */
.testimonials { background: var(--bg-secondary); }
.testimonials .section-label, .testimonials .section-title { text-align: center; display: block; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testi-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 28px; transition: all 0.3s; }
.testi-card:hover { border-color: var(--accent-gold); transform: translateY(-4px); }
.testi-card.featured { border-color: var(--accent-gold); background: rgba(245,197,24,0.03); }
.testi-stars { color: var(--accent-gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.testi-user { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; background: var(--gradient-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 13px; color: #000; flex-shrink: 0; }
.testi-user span { font-size: 13px; color: var(--text-secondary); }
.testi-user strong { color: var(--text-primary); }

/* FAQ */
.faq-container { max-width: 800px; }
.faq .section-label, .faq .section-title { text-align: center; display: block; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--accent-gold); }
.faq-q { width: 100%; background: none; border: none; color: var(--text-primary); font-family: var(--font-main); font-size: 16px; font-weight: 700; text-align: left; padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q span { color: var(--accent-gold); font-size: 22px; font-weight: 300; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; color: var(--text-secondary); font-size: 14px; line-height: 1.7; padding: 0 24px; transition: all 0.3s; }
.faq-a.open { max-height: 200px; padding: 0 24px 20px; }

/* DOWNLOAD */
.download { background: var(--bg-secondary); overflow: hidden; }
.download-inner { text-align: center; position: relative; overflow: hidden; }
.download-bg-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(245,197,24,0.08) 0%, transparent 70%); pointer-events: none; }
.download .section-label, .download .section-title { display: block; }
.download p { color: var(--text-secondary); margin-bottom: 36px; font-size: 17px; }
.download-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.store-btn { display: inline-flex; align-items: center; gap: 14px; background: var(--bg-card); border: 1px solid var(--border-color); color: var(--text-primary); text-decoration: none; padding: 16px 28px; border-radius: var(--radius-md); min-width: 200px; transition: all 0.3s; }
.store-btn:hover { border-color: var(--accent-gold); background: rgba(245,197,24,0.05); transform: translateY(-2px); }
.store-btn div { display: flex; flex-direction: column; text-align: left; }
.store-btn small { font-size: 11px; color: var(--text-muted); }
.store-btn strong { font-size: 16px; font-weight: 800; }

/* FOOTER */
.footer { background: #08090f; border-top: 1px solid var(--border-color); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .footer-logo { height: 48px; width: 48px; border-radius: 12px; object-fit: contain; margin-bottom: 8px; }
.footer-logo-fallback { font-size: 20px; font-weight: 900; margin-bottom: 8px; }
.footer-brand p { color: var(--text-secondary); font-size: 14px; }
.footer-tagline { margin-top: 8px; color: var(--text-muted) !important; }
.footer-links h4 { font-size: 14px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; letter-spacing: 1px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-gold); }
.footer-bottom { border-top: 1px solid var(--border-color); padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; max-width: 1180px; margin: 0 auto; font-size: 13px; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent-gold); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .earn-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .section-title { font-size: clamp(22px, 5vw, 32px); }

  /* Navbar mobile */
  .nav-inner { padding: 0 16px; height: 60px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }
  .hamburger span {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .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);
  }

  /* Mobile menu */
  .mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    gap: 0;
    border-top: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease,
                padding 0.35s ease;
    background: rgba(13, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .mobile-menu.open {
    max-height: 400px;
    opacity: 1;
    padding: 12px 16px 20px;
  }
  .mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(42, 47, 74, 0.5);
    transition: color 0.2s, background 0.2s;
    border-radius: var(--radius-sm);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .mobile-menu a:last-child {
    border-bottom: none;
  }
  .mobile-menu a:active {
    background: rgba(245, 197, 24, 0.08);
    color: var(--accent-gold);
  }
  .mobile-menu .btn-primary {
    margin-top: 8px;
    justify-content: center;
    padding: 14px 24px;
    border-bottom: none;
    color: #000;
  }

  /* Hero mobile */
  .hero { padding: 80px 0 48px; min-height: auto; width: 100%; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; max-width: 100%; }
  .hero-sub { margin: 0 auto 28px; font-size: 16px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .stat-num { font-size: 20px; }
  .stat-label { font-size: 12px; }
  .stat-divider { height: 28px; }
  .hero-phone { order: -1; }
  .hero-phone img { max-width: 200px; border-radius: 24px; }
  .scroll-indicator { display: none; }

  /* Features mobile */
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px 20px; }
  .feature-icon { font-size: 32px; }
  .feature-card h3 { font-size: 18px; }

  /* Steps mobile */
  .steps-row { flex-direction: column; gap: 16px; }
  .step-arrow { transform: rotate(90deg); font-size: 22px; }
  .step-card { padding: 28px 20px; }

  /* Earn mobile */
  .earn-grid { gap: 40px; }
  .earn-row { padding: 12px 16px; }
  .earn-activity { font-size: 13px; }
  .earn-range { font-size: 13px; }
  .wheel-wrap { width: 220px; height: 220px; }

  /* Carousel mobile */
  .carousel { gap: 12px; padding: 8px 4px 16px; max-width: 100%; }
  .carousel img { width: 180px; border-radius: 20px; }

  /* Testimonials mobile */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card { padding: 20px; }

  /* FAQ mobile */
  .faq-q { padding: 16px 16px; font-size: 15px; }
  .faq-a { padding: 0 16px; font-size: 13px; }
  .faq-a.open { padding: 0 16px 16px; }

  /* Download mobile */
  .download-btns { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Footer mobile */
  .footer { padding: 48px 0 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .section { padding: 44px 0; }
  .hero-text h1 { font-size: 28px; }
  .hero { padding: 72px 0 40px; }
  .hero-phone img { max-width: 160px; }
  .badge-pill { font-size: 11px; padding: 5px 12px; }
  .btn-primary.btn-lg { padding: 14px 24px; font-size: 14px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .earn-grid { grid-template-columns: 1fr; }
  .wheel-wrap { width: 180px; height: 180px; }
  .carousel img { width: 150px; border-radius: 16px; }
  .section-label { font-size: 11px; padding: 5px 12px; }
  .feature-card { padding: 20px 16px; }
  .step-card { padding: 24px 16px; }
}
