/* ==========================================================================
   Teer Online — Official Landing Page Stylesheet (App-Themed Light Design)
   Background: Pure White & Off-White (#FFFFFF / #F9FAFB)
   Brand Colors: Deep Teal (#063F45), Rich Petrol (#0A4E55), Luxury Gold (#F5C842), Emerald (#10B981)
   Designed for Mobile-First Perfection (Phone View 100% Optimized)
   ========================================================================== */

:root {
  /* Primary Brand Palette (App Sync) */
  --teal-primary: #063F45;
  --teal-dark: #032428;
  --teal-mid: #0A4E55;
  --teal-light: #0E5F67;
  --teal-soft: #ECF7F8;
  --teal-soft-border: #D1EFF2;

  /* Accent Colors */
  --gold-primary: #F5C842;
  --gold-dark: #B45309;
  --gold-soft: #FEF3C7;
  --gold-border: #FDE68A;

  --emerald: #10B981;
  --emerald-dark: #059669;
  --emerald-soft: #DCFCE7;

  --sky-blue: #0284C7;
  --sky-soft: #E0F2FE;
  --sky-border: #BAE6FD;

  /* Surfaces & Backgrounds */
  --bg-page: #FFFFFF;
  --bg-subtle: #F9FAFB;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8FAFC;
  --bg-card-teal: #063F45;

  /* Borders & Dividers */
  --border-subtle: #E5E7EB;
  --border-card: #E2F2F4;
  --border-teal: #0E5F67;

  /* Typography */
  --text-title: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-dim: #94A3B8;
  --text-white: #FFFFFF;
  --text-teal: #063F45;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 9999px;

  /* Elevation Shadows */
  --shadow-sm: 0 2px 8px rgba(6, 63, 69, 0.05);
  --shadow-md: 0 6px 20px rgba(6, 63, 69, 0.07);
  --shadow-lg: 0 12px 36px rgba(6, 63, 69, 0.10);
  --shadow-gold: 0 8px 24px rgba(245, 200, 66, 0.25);
  --shadow-teal: 0 8px 24px rgba(6, 63, 69, 0.20);

  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-page);
  color: var(--text-body);
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.55;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  padding-bottom: calc(75px + var(--safe-bottom));
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement {
  background: var(--teal-soft);
  color: var(--teal-primary);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid var(--teal-soft-border);
  text-align: center;
}

.top-announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-pill {
  background: var(--teal-primary);
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   2. STICKY APP HEADER (Deep Teal App Header)
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--teal-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px rgba(6, 63, 69, 0.15);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  line-height: 1.1;
}

.brand-title span {
  color: var(--gold-primary);
}

.brand-subtitle {
  font-size: 0.68rem;
  font-weight: 600;
  color: #B2DFDB;
  letter-spacing: 0.3px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-header-wa i {
  color: #25D366;
  font-size: 0.95rem;
}

.btn-header-wa:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.btn-header-web {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
}

.btn-header-web:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.btn-header-apk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-primary);
  color: #02181A;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  transition: all 0.2s ease;
}

.btn-header-apk:hover {
  background: #FCD34D;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .btn-header-web {
    display: none;
  }
}

/* ==========================================================================
   3. HERO SECTION (Light Theme with App Style)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 36px 0 44px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-subtle) 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    padding: 24px 0;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--teal-soft);
  border: 1px solid var(--teal-soft-border);
  color: var(--teal-primary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.hero-pill-tag i {
  color: var(--emerald-dark);
}

.hero-heading {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.22;
  color: var(--text-title);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 2.6rem;
  }
}

.gold-grad {
  color: var(--gold-dark);
  background: linear-gradient(135deg, #B45309 0%, #D97706 50%, #B45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.hero-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 22px;
  max-width: 580px;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-primary);
  box-shadow: var(--shadow-sm);
}

.feature-chip i {
  color: var(--gold-dark);
}

.hero-cta-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 480px) {
  .hero-cta-box {
    flex-direction: row;
    align-items: center;
  }
}

.btn-apk-hero {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--teal-primary);
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-teal);
  transition: all 0.25s ease;
  border: 1px solid var(--teal-light);
}

.btn-apk-hero:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(6, 63, 69, 0.3);
}

.btn-icon {
  font-size: 1.8rem;
  color: var(--gold-primary);
}

.btn-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-label {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
}

.btn-sublabel {
  font-size: 0.72rem;
  color: #A7D8DE;
  font-weight: 600;
  margin-top: 2px;
}

.btn-web-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
  color: var(--teal-primary);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-subtle);
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.btn-web-hero:hover {
  background: var(--teal-soft);
  border-color: var(--teal-soft-border);
  transform: translateY(-2px);
}

/* ==========================================================================
   APP PREVIEW MOCKUP (Crafted Like Real Android App)
   ========================================================================== */
.hero-card-wrap {
  background: #FFFFFF;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-card-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal-primary) 0%, var(--gold-primary) 100%);
}

.app-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--teal-primary);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.mock-user-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
}

.mock-user-avatar {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #FFFFFF;
}

.mock-wallet-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #FFFFFF;
}

.mock-wallet-pill i {
  color: var(--gold-primary);
}

.mock-live-item {
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 14px;
}

.mock-live-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mock-market-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--teal-primary);
}

.mock-live-tag {
  background: var(--emerald-soft);
  color: var(--emerald-dark);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mock-scores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mock-round-box {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}

.mock-round-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
}

.mock-round-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--teal-primary);
  margin: 4px 0;
  letter-spacing: 1px;
}

.mock-round-time {
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--text-dim);
}

/* ==========================================================================
   4. RATES SECTION (High Contrast App-Like Cards)
   ========================================================================== */
.rates-section {
  padding: 56px 0;
  background-color: var(--bg-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header-centered {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-soft);
  color: var(--teal-primary);
  border: 1px solid var(--teal-soft-border);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-tag i {
  color: var(--gold-dark);
}

.section-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-title);
  line-height: 1.25;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.rates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.rate-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft-border);
}

/* Featured Direct Guti in Deep Teal (Like App Subgames!) */
.rate-card.featured {
  background: var(--teal-primary);
  border-color: var(--teal-light);
  box-shadow: var(--shadow-teal);
  color: #FFFFFF;
}

.rate-card.featured .rate-title {
  color: #FFFFFF;
}

.rate-card.featured .rate-range {
  color: #A7D8DE;
}

.rate-card.featured .rate-ratio-box {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.rate-card.featured .rate-ratio-label {
  color: #B2DFDB;
}

.rate-card.featured .rate-ratio-val {
  color: var(--gold-primary);
}

.rate-card.featured .rate-ratio-val span {
  color: #FFFFFF;
}

.rate-card.featured .rate-payout-example {
  background: rgba(245, 200, 66, 0.15);
  border-color: rgba(245, 200, 66, 0.3);
  color: #FFFFFF;
}

.rate-card.featured .rate-payout-example strong {
  color: var(--gold-primary);
}

.rate-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-soft);
  color: var(--teal-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px;
}

.rate-card.featured .rate-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--gold-primary);
}

.rate-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--teal-primary);
  margin-bottom: 4px;
}

.rate-range {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.rate-ratio-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 14px;
}

.rate-ratio-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

.rate-ratio-val {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--teal-primary);
  margin-top: 2px;
}

.rate-ratio-val span {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.rate-payout-example {
  background: var(--teal-soft);
  border: 1px dashed var(--teal-soft-border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-primary);
}

.rate-payout-example strong {
  color: var(--gold-dark);
  font-weight: 900;
}

/* ==========================================================================
   5. CALCULATOR SECTION
   ========================================================================== */
.calc-section {
  padding: 56px 0;
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--border-subtle);
}

.calc-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .calc-card {
    padding: 32px;
  }
}

.calc-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 6px;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
}

.calc-tab-btn {
  background: transparent;
  border: none;
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calc-tab-btn span {
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0.8;
}

.calc-tab-btn.active {
  background: var(--teal-primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.calc-tab-btn.active span {
  color: var(--gold-primary);
}

.calc-input-block {
  margin-bottom: 20px;
}

.calc-input-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 10px;
}

.calc-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.calc-chip {
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s ease;
}

.calc-chip:hover {
  border-color: var(--teal-primary);
  color: var(--teal-primary);
}

.calc-chip.active {
  background: var(--teal-primary);
  border-color: var(--teal-primary);
  color: #FFFFFF;
}

.calc-input-group {
  display: flex;
  align-items: center;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 4px 14px;
  transition: border-color 0.2s ease;
}

.calc-input-group:focus-within {
  border-color: var(--teal-primary);
  background: #FFFFFF;
}

.calc-input-prefix {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--teal-primary);
  margin-right: 8px;
}

.calc-input-field {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-title);
  outline: none;
  font-family: inherit;
}

.calc-result-box {
  background: var(--teal-soft);
  border: 1.5px solid var(--teal-soft-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  text-align: center;
}

.calc-result-sub {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-result-amount {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--gold-dark);
  margin: 6px 0;
  letter-spacing: 0.5px;
}

.calc-result-note {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================================================
   6. LIVE MARKETS SECTION (Light Material Cards)
   ========================================================================== */
.markets-section {
  padding: 56px 0;
  background-color: var(--bg-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.markets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.market-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.market-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.market-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.market-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--teal-primary);
}

.market-status-pill {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.market-status-pill.status-open {
  background: var(--emerald-soft);
  color: var(--emerald-dark);
}

.market-status-pill.status-closed {
  background: #F1F5F9;
  color: #475569;
}

.market-rounds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.round-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px;
  text-align: center;
}

.round-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
}

.round-time {
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-top: 1px;
}

.round-result {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--teal-primary);
  margin-top: 3px;
  letter-spacing: 1px;
}

.market-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
}

.min-bet-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

.min-bet-text i {
  color: var(--gold-dark);
}

.btn-market-play {
  background: var(--teal-primary);
  color: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.btn-market-play:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
}

/* ==========================================================================
   7. VALUE PILLARS & FEATURES
   ========================================================================== */
.features-section {
  padding: 56px 0;
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--border-subtle);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.feature-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft-border);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--teal-soft);
  color: var(--teal-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.feature-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal-primary);
  margin-bottom: 6px;
}

.feature-card-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-body);
}

/* ==========================================================================
   8. HOW TO PLAY (3 Steps)
   ========================================================================== */
.steps-section {
  padding: 56px 0;
  background-color: var(--bg-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

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

.step-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--teal-soft-border);
  line-height: 1;
  margin-bottom: 10px;
}

.step-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal-primary);
  margin-bottom: 6px;
}

.step-card-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-body);
}

/* ==========================================================================
   9. FAQS ACCORDION
   ========================================================================== */
.faq-section {
  padding: 56px 0;
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--border-subtle);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FFFFFF;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: var(--teal-soft-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--teal-primary);
  cursor: pointer;
  user-select: none;
}

.faq-icon {
  font-size: 0.85rem;
  color: var(--teal-light);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 18px 16px;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-body);
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   10. MAIN FOOTER
   ========================================================================== */
.main-footer {
  background: var(--teal-dark);
  color: #E2E8F0;
  padding: 40px 0 24px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-links a {
  color: #B2DFDB;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-disclaimer {
  font-size: 0.72rem;
  line-height: 1.6;
  color: #94A3B8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

/* ==========================================================================
   11. MOBILE STICKY BOTTOM ACTION BAR
   ========================================================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 14px calc(10px + var(--safe-bottom));
  display: flex;
  gap: 10px;
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.sticky-btn-apk {
  flex: 1.3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--teal-primary);
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-teal);
  transition: all 0.2s ease;
}

.sticky-btn-apk i {
  color: var(--gold-primary);
  font-size: 1.05rem;
}

.sticky-btn-web {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #FFFFFF;
  color: var(--teal-primary);
  border: 1.5px solid var(--teal-primary);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}
