:root {
      --primary: #0ea5e9;
      --primary-dark: #0284c7;
      --primary-deeper: #0369a1;
      --secondary: #22c55e;
      --secondary-dark: #16a34a;
      --bg-light: #e0f2fe;
      --bg-white: #ffffff;
      --text-dark: #0c2340;
      --text-mid: #1e4060;
      --text-muted: #64748b;
      --border-teal: #38bdf8;
      --sand: #fef3c7;
      --sand-dark: #fbbf24;
    }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    overflow-x: clip;
    width: 100%;
      font-family: 'Hind Siliguri', sans-serif;
      background: var(--bg-light);
      color: var(--text-dark);
      font-size: 1rem;
      line-height: 1.75;
    }

/* ── TICKER ── */
    .beach-ticker {
      background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
      overflow: hidden;
      white-space: nowrap;
      padding: 0.45rem 0;
    }

.ticker-inner {
      display: inline-block;
      animation: tickerScroll 36s linear infinite;
      padding-left: 100%;
    }

.ticker-inner:hover { animation-play-state: paused; }

@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.ticker-item {
      font-size: 0.82rem;
      font-weight: 600;
      color: #1c1917;
      margin: 0 0.5rem;
    }

.ticker-item span { color: #0369a1; font-weight: 800; }

.ticker-sep { color: rgba(0,0,0,0.3); margin: 0 0.3rem; }

/* ── BREADCRUMB ── */
    .breadcrumb-bar {
      background: linear-gradient(90deg, #e0f7fa 0%, #b3e5fc 100%);
      border-bottom: 2px solid var(--border-teal);
      padding: 0.6rem 0;
    }

.breadcrumb { margin: 0; font-size: 0.85rem; }

.breadcrumb-item a { color: var(--primary-dark); text-decoration: none; font-weight: 600; }

.breadcrumb-item a:hover { text-decoration: underline; }

.breadcrumb-item.active { color: var(--text-mid); font-weight: 500; }

.breadcrumb-item + .breadcrumb-item::before { color: var(--primary); }

/* ── HERO ── */
    .page-hero {
      background: linear-gradient(135deg, #082f49 0%, #0c4a6e 40%, #0369a1 75%, #0ea5e9 100%);
      padding: 70px 0 60px;
      position: relative;
      overflow: hidden;
      color: #fff;
    }

.page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

/* Sun decoration */
    .sun-deco {
      position: absolute;
      top: -40px;
      right: -40px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(251,191,36,0.3) 0%, rgba(251,191,36,0.05) 60%, transparent 80%);
      pointer-events: none;
    }

/* Wave decoration */
    .wave-deco {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40'%3E%3Cpath fill='%23e0f2fe' fill-opacity='1' d='M0,20 C360,40 720,0 1080,20 C1260,30 1380,10 1440,20 L1440,40 L0,40 Z'/%3E%3C/svg%3E") no-repeat bottom center;
      background-size: cover;
    }

.hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(251,191,36,0.2);
      border: 1px solid rgba(251,191,36,0.4);
      color: #fde68a;
      border-radius: 20px;
      padding: 4px 14px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-bottom: 0.8rem;
    }

.page-hero h1 {
      font-size: clamp(1.55rem, 3vw, 2.3rem);
      font-weight: 900;
      line-height: 1.3;
      color: #fff;
    }

.page-hero .lead {
      font-size: 1rem;
      opacity: 0.88;
      color: #e0f2fe;
    }

.btn-primary-cta {
      display: inline-flex;
      align-items: center;
      background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
      color: #fff;
      font-weight: 800;
      font-size: 1rem;
      padding: 0.75rem 1.8rem;
      border-radius: 10px;
      text-decoration: none;
      box-shadow: 0 4px 18px rgba(34,197,94,0.35);
      transition: transform 0.2s, box-shadow 0.2s;
    }

.btn-primary-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(34,197,94,0.45);
      color: #fff;
    }

.btn-outline-cta {
      display: inline-flex;
      align-items: center;
      background: transparent;
      color: #bae6fd;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 0.72rem 1.6rem;
      border-radius: 10px;
      border: 2px solid rgba(186,230,253,0.45);
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }

.btn-outline-cta:hover {
      background: rgba(186,230,253,0.12);
      color: #fff;
    }

/* ── STATS BAR ── */
    .game-stats-bar {
      background: linear-gradient(90deg, #0c4a6e, #0369a1);
      padding: 0.85rem 0;
      border-bottom: 3px solid var(--border-teal);
    }

.g-stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0.3rem 0.5rem;
    }

.g-val { font-size: 1.35rem; font-weight: 900; color: #fde68a; line-height: 1.1; }

.g-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.7); margin-top: 2px; text-align: center; }

/* ── DIVIDER ── */
    .ocean-divider {
      height: 4px;
      background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 50%, var(--secondary) 100%);
      opacity: 0.35;
    }

/* ── SECTIONS ── */
    section { padding: 60px 0; }

.section-title {
      font-size: clamp(1.3rem, 2.5vw, 1.75rem);
      font-weight: 800;
      color: var(--text-dark);
      position: relative;
      padding-bottom: 0.6rem;
      margin-bottom: 0.5rem;
    }

.section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      border-radius: 4px;
    }

.section-title.left-align::after { left: 0; transform: none; }

.section-subtitle { color: var(--text-muted); font-size: 0.95rem; max-width: 600px; margin: 0 auto; }

/* ── FEATURE CARDS ── */
    .feature-card {
      background: #fff;
      border-radius: 14px;
      padding: 1.6rem 1.4rem;
      height: 100%;
      box-shadow: 0 2px 16px rgba(14,165,233,0.08);
      border-top: 4px solid var(--primary);
      transition: transform 0.25s, box-shadow 0.25s;
    }

.feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 28px rgba(14,165,233,0.16);
    }

.feature-card.green-top { border-top-color: var(--secondary); }

.feature-card.sand-top { border-top-color: var(--sand-dark); }

.feature-card.teal-top { border-top-color: #0d9488; }

.feature-card h5 { font-weight: 700; color: var(--text-dark); margin: 0.8rem 0 0.5rem; font-size: 1rem; }

.feature-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.feature-icon {
      width: 54px; height: 54px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
    }

.fi-blue { background: rgba(14,165,233,0.12); }

.fi-green { background: rgba(34,197,94,0.12); }

.fi-sand { background: rgba(251,191,36,0.15); }

.fi-teal { background: rgba(13,148,136,0.12); }

/* ── GAME MODES ── */
    .mode-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(14,165,233,0.08);
      transition: transform 0.25s, box-shadow 0.25s;
      height: 100%;
    }

.mode-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(14,165,233,0.15); }

.mode-header {
      padding: 1.4rem 1.4rem 1rem;
      text-align: center;
    }

.mh-1 { background: linear-gradient(135deg, #0c4a6e, #0ea5e9); }

.mh-2 { background: linear-gradient(135deg, #065f46, #22c55e); }

.mh-3 { background: linear-gradient(135deg, #92400e, #fbbf24); }

.mh-4 { background: linear-gradient(135deg, #4c1d95, #8b5cf6); }

.mode-emoji { font-size: 2.4rem; display: block; margin-bottom: 0.4rem; }

.mode-header h5 { color: #fff; font-weight: 800; font-size: 1rem; margin: 0; }

.mode-header .mode-badge {
      display: inline-block;
      background: rgba(255,255,255,0.22);
      color: #fff;
      border-radius: 12px;
      font-size: 0.73rem;
      font-weight: 700;
      padding: 2px 10px;
      margin-top: 6px;
    }

.mode-body {
    overflow-x: clip;
    width: 100%; padding: 1.2rem 1.4rem; }

.mode-body p { font-size: 0.88rem; color: var(--text-muted); margin: 0 0 0.8rem; }

.mode-tag {
      display: inline-block;
      background: var(--bg-light);
      color: var(--primary-dark);
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 2px 9px;
      margin: 2px;
      border: 1px solid rgba(14,165,233,0.2);
    }

/* ── STEPS ── */
    .step-card {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      background: #fff;
      border-radius: 12px;
      padding: 1rem 1.2rem;
      box-shadow: 0 1px 10px rgba(14,165,233,0.07);
      border-left: 4px solid var(--primary);
      transition: box-shadow 0.2s;
    }

.step-card:hover { box-shadow: 0 4px 20px rgba(14,165,233,0.14); }

.step-num {
      min-width: 38px; height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      font-weight: 900;
      font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

.step-card h6 { font-weight: 700; color: var(--text-dark); margin: 0 0 4px; font-size: 0.95rem; }

.step-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ── ODDS TABLE ── */
    .odds-table-wrap {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 2px 16px rgba(14,165,233,0.09);
      overflow: hidden;
    }

.odds-table-wrap table { margin: 0; }

.odds-table-wrap thead th {
      background: linear-gradient(135deg, #0c4a6e, #0369a1);
      color: #fff;
      font-weight: 700;
      font-size: 0.88rem;
      border: none;
      padding: 0.85rem 1rem;
    }

.odds-table-wrap tbody td {
      font-size: 0.88rem;
      color: var(--text-dark);
      padding: 0.75rem 1rem;
      border-color: rgba(14,165,233,0.1);
      vertical-align: middle;
    }

.odds-table-wrap tbody tr:hover { background: rgba(14,165,233,0.04); }

.odds-badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
      color: #fff;
      border-radius: 6px;
      font-size: 0.8rem;
      font-weight: 800;
      padding: 2px 10px;
    }

.odds-badge.blue {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    }

/* ── INFO BOX ── */
    .info-box {
      display: flex;
      gap: 0.8rem;
      align-items: flex-start;
      background: rgba(14,165,233,0.08);
      border: 1px solid rgba(14,165,233,0.2);
      border-radius: 10px;
      padding: 1rem 1.2rem;
    }

.info-box i { color: var(--primary); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.info-box p { font-size: 0.88rem; color: var(--text-mid); margin: 0; line-height: 1.65; }

.info-box.green { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.2); }

.info-box.green i { color: var(--secondary); }

.info-box.sand { background: rgba(251,191,36,0.1); border-color: rgba(251,191,36,0.3); }

.info-box.sand i { color: var(--sand-dark); }

/* ── CONTENT IMAGE ── */
    .content-img {
      width: 100%;
      border-radius: 14px;
      box-shadow: 0 4px 24px rgba(14,165,233,0.15);
      display: block;
      object-fit: cover;
    }

/* ── ARTICLE ── */
    .article-text h2 { font-size: 1.35rem; font-weight: 800; color: var(--text-dark); margin: 2rem 0 0.8rem; }

.article-text h2:first-child { margin-top: 0; }

.article-text h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary-deeper); margin: 1.6rem 0 0.6rem; }

.article-text p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.9rem; }

.article-text p:last-child { margin-bottom: 0; }

/* ── BONUS BANNER ── */
    .bonus-banner {
      background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0ea5e9 100%);
      border-radius: 18px;
      padding: 2.5rem 2rem;
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(8,47,73,0.25);
    }

.bonus-banner::before {
      content: '🏖️';
      position: absolute;
      font-size: 9rem;
      opacity: 0.06;
      right: -20px;
      top: -20px;
      pointer-events: none;
    }

.bonus-tag {
      display: inline-block;
      background: rgba(251,191,36,0.2);
      border: 1px solid rgba(251,191,36,0.4);
      color: #fde68a;
      border-radius: 20px;
      padding: 3px 14px;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }

.bonus-banner h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.7rem; }

.bonus-banner p { opacity: 0.88; font-size: 0.93rem; max-width: 520px; margin: 0 auto 1.5rem; }

/* ── FAQ ── */
    .faq-accordion .accordion-item {
      border: 1px solid rgba(14,165,233,0.18);
      border-radius: 10px !important;
      margin-bottom: 0.6rem;
      overflow: hidden;
    }

.faq-accordion .accordion-button {
      font-weight: 600;
      font-size: 0.93rem;
      color: var(--text-dark);
      background: #fff;
      box-shadow: none;
      border-radius: 10px !important;
    }

.faq-accordion .accordion-button:not(.collapsed) {
      background: rgba(14,165,233,0.07);
      color: var(--primary-deeper);
    }

.faq-accordion .accordion-button::after {
      filter: hue-rotate(190deg);
    }

.faq-accordion .accordion-body {
    overflow-x: clip;
    width: 100%;
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.75;
      background: #fff;
    }

/* ── RESPONSIVE ── */
    @media (max-width: 767px) {
section { padding: 44px 0; }

.page-hero { padding: 50px 0 44px; }
}
