: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;
      --dragon-red: #dc2626;
      --dragon-red-dark: #b91c1c;
      --tiger-orange: #ea580c;
      --tiger-orange-dark: #c2410c;
      --gold: #f59e0b;
      --gold-light: #fde68a;
    }

*, *::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 ── */
    .dt-ticker {
      background: linear-gradient(90deg, #7f1d1d, #991b1b, #7f1d1d);
      overflow: hidden;
      white-space: nowrap;
      padding: 0.45rem 0;
    }

.ticker-inner {
      display: inline-block;
      animation: tickerScroll 38s 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: #fef2f2; margin: 0 0.5rem; }

.ticker-item span { color: var(--gold-light); font-weight: 800; }

.ticker-sep { color: rgba(255,255,255,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, #1a0a0a 0%, #3b0a0a 30%, #0c4a6e 70%, #082f49 100%);
      padding: 72px 0 64px;
      position: relative;
      overflow: hidden;
      color: #fff;
    }

.page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.hero-glow-red {
      position: absolute;
      top: -60px; left: -60px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(220,38,38,0.25) 0%, transparent 70%);
      pointer-events: none;
    }

.hero-glow-blue {
      position: absolute;
      bottom: -60px; right: -60px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(14,165,233,0.25) 0%, transparent 70%);
      pointer-events: none;
    }

.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(245,158,11,0.2);
      border: 1px solid rgba(245,158,11,0.4);
      color: var(--gold-light);
      border-radius: 20px;
      padding: 4px 14px;
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }

.page-hero h1 {
      font-size: clamp(1.5rem, 3vw, 2.25rem);
      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; }

/* ── DRAGON TIGER CARD VISUAL ── */
    .dt-card-visual {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }

.dt-card {
      width: 90px; height: 130px;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 900;
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
      border: 2px solid rgba(255,255,255,0.2);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s;
    }

.dt-card:hover { transform: translateY(-6px) rotate(-2deg); }

.dt-card.dragon {
      background: linear-gradient(145deg, #7f1d1d, #dc2626);
    }

.dt-card.tiger {
      background: linear-gradient(145deg, #431407, #ea580c);
    }

.dt-card.vs {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), #d97706);
      font-size: 1rem;
      font-weight: 900;
      color: #1c0a00;
      box-shadow: 0 0 20px rgba(245,158,11,0.5);
    }

.dt-card-label { font-size: 0.7rem; color: rgba(255,255,255,0.7); margin-top: 4px; letter-spacing: 1px; }

/* ── STATS BAR ── */
    .game-stats-bar {
      background: linear-gradient(90deg, #1a0a0a, #3b0a0a 40%, #0c4a6e);
      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: var(--gold-light); line-height: 1.1; }

.g-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.7); margin-top: 2px; text-align: center; }

/* ── OCEAN DIVIDER ── */
    .ocean-divider {
      height: 4px;
      background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 50%, var(--secondary) 100%);
      opacity: 0.35;
    }

/* ── SECTION TITLES ── */
    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(--dragon-red), var(--primary));
      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.red-top { border-top-color: var(--dragon-red); }

.feature-card.orange-top { border-top-color: var(--tiger-orange); }

.feature-card.gold-top { border-top-color: var(--gold); }

.feature-card.green-top { border-top-color: var(--secondary); }

.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-red { background: rgba(220,38,38,0.1); }

.fi-orange { background: rgba(234,88,12,0.1); }

.fi-gold { background: rgba(245,158,11,0.12); }

.fi-green { background: rgba(34,197,94,0.1); }

.fi-blue { background: rgba(14,165,233,0.1); }

/* ── DRAGON VS TIGER COMPARE ── */
    .dvt-wrap {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(14,165,233,0.1);
    }

.dvt-header {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 0;
    }

.dvt-dragon-h {
      background: linear-gradient(135deg, #7f1d1d, #dc2626);
      padding: 1.4rem 1.2rem;
      text-align: center;
      color: #fff;
    }

.dvt-tiger-h {
      background: linear-gradient(135deg, #431407, #ea580c);
      padding: 1.4rem 1.2rem;
      text-align: center;
      color: #fff;
    }

.dvt-vs-h {
      background: linear-gradient(135deg, #1c1917, #292524);
      padding: 1.4rem 1rem;
      text-align: center;
      color: var(--gold-light);
      font-weight: 900;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

.dvt-dragon-h h4, .dvt-tiger-h h4 { font-size: 1.2rem; font-weight: 900; margin: 0; }

.dvt-dragon-h p, .dvt-tiger-h p { font-size: 0.8rem; opacity: 0.85; margin: 4px 0 0; }

.dvt-body {
    overflow-x: clip;
    width: 100%; padding: 0; }

.dvt-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      border-bottom: 1px solid rgba(14,165,233,0.08);
    }

.dvt-row:last-child { border-bottom: none; }

.dvt-cell {
      padding: 0.85rem 1.2rem;
      font-size: 0.88rem;
      color: var(--text-mid);
      display: flex;
      align-items: center;
    }

.dvt-cell.dragon-cell { justify-content: flex-end; text-align: right; background: rgba(220,38,38,0.03); }

.dvt-cell.tiger-cell { background: rgba(234,88,12,0.03); }

.dvt-label {
      padding: 0.85rem 0.6rem;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text-muted);
      text-align: center;
      background: rgba(14,165,233,0.04);
      display: flex;
      align-items: center;
      justify-content: center;
      border-left: 1px solid rgba(14,165,233,0.08);
      border-right: 1px solid rgba(14,165,233,0.08);
      min-width: 90px;
    }

/* ── BET TYPES ── */
    .bet-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%;
    }

.bet-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(14,165,233,0.15); }

.bet-header { padding: 1.2rem 1.4rem 0.8rem; }

.bh-dragon { background: linear-gradient(135deg, #7f1d1d, #dc2626); }

.bh-tiger  { background: linear-gradient(135deg, #431407, #ea580c); }

.bh-tie    { background: linear-gradient(135deg, #14532d, #22c55e); }

.bh-suited { background: linear-gradient(135deg, #1e1b4b, #4f46e5); }

.bet-header h5 { color: #fff; font-weight: 800; font-size: 1rem; margin: 0.3rem 0 0; }

.bet-emoji { font-size: 2rem; }

.bet-odds-badge {
      display: inline-block;
      background: rgba(255,255,255,0.22);
      color: #fff;
      border-radius: 12px;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 2px 10px;
      margin-top: 5px;
    }

.bet-body {
    overflow-x: clip;
    width: 100%; padding: 1.2rem 1.4rem; }

.bet-body p { font-size: 0.88rem; color: var(--text-muted); margin: 0 0 0.7rem; }

.bet-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(--dragon-red);
      transition: box-shadow 0.2s;
    }

.step-card:hover { box-shadow: 0 4px 20px rgba(14,165,233,0.14); }

.step-card.blue-border { border-left-color: var(--primary); }

.step-card.green-border { border-left-color: var(--secondary); }

.step-card.gold-border { border-left-color: var(--gold); }

.step-num {
      min-width: 38px; height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--dragon-red), var(--dragon-red-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; }

/* ── PAY TABLE ── */
    .pay-table-wrap {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 2px 16px rgba(14,165,233,0.09);
      overflow: hidden;
    }

.pay-table-wrap table { margin: 0; }

.pay-table-wrap thead th {
      background: linear-gradient(135deg, #7f1d1d, #dc2626);
      color: #fff;
      font-weight: 700;
      font-size: 0.88rem;
      border: none;
      padding: 0.85rem 1rem;
    }

.pay-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;
    }

.pay-table-wrap tbody tr:hover { background: rgba(220,38,38,0.03); }

.pay-badge {
      display: inline-block;
      border-radius: 6px;
      font-size: 0.8rem;
      font-weight: 800;
      padding: 2px 10px;
      color: #fff;
    }

.pb-red { background: linear-gradient(135deg, var(--dragon-red), var(--dragon-red-dark)); }

.pb-green { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }

.pb-gold { background: linear-gradient(135deg, var(--gold), #d97706); color: #1c0a00; }

.pb-blue { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }

.pb-purple { background: linear-gradient(135deg, #7c3aed, #5b21b6); }

/* ── 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.red { background: rgba(220,38,38,0.07); border-color: rgba(220,38,38,0.2); }

.info-box.red i { color: var(--dragon-red); }

.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.gold { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.25); }

.info-box.gold i { color: var(--gold); }

/* ── 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.5rem 0 0.6rem; }

.article-text p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin-
bottom: 1rem; }

/* ── BONUS BANNER ── */
    .bonus-banner {
      background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 30%, #0c4a6e 70%, #082f49 100%);
      border-radius: 18px;
      padding: 2.5rem 2rem;
      text-align: center;
      color: #fff;
      box-shadow: 0 8px 32px rgba(220,38,38,0.2);
      position: relative;
      overflow: hidden;
    }

.bonus-banner::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'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h30v30H0zm30 30h30v30H30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.bonus-banner .bonus-tag {
      display: inline-block;
      background: rgba(245,158,11,0.25);
      border: 1px solid rgba(245,158,11,0.5);
      color: var(--gold-light);
      border-radius: 20px;
      padding: 4px 16px;
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }

.bonus-banner h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-weight: 900; margin-bottom: 0.8rem; }

.bonus-banner p { font-size: 0.95rem; opacity: 0.88; max-width: 580px; margin: 0 auto 1.5rem; }

/* ── FAQ ── */
    .faq-accordion .accordion-item {
      border: 1px solid rgba(14,165,233,0.15);
      border-radius: 10px !important;
      margin-bottom: 0.7rem;
      overflow: hidden;
    }

.faq-accordion .accordion-button {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text-dark);
      background: #fff;
      border-radius: 10px !important;
      box-shadow: none;
    }

.faq-accordion .accordion-button:not(.collapsed) {
      background: linear-gradient(90deg, rgba(220,38,38,0.07), rgba(14,165,233,0.07));
      color: var(--dragon-red);
    }

.faq-accordion .accordion-button::after {
      filter: hue-rotate(180deg);
    }

.faq-accordion .accordion-body {
    overflow-x: clip;
    width: 100%;
      font-size: 0.9rem;
      color: var(--text-mid);
      background: rgba(224,242,254,0.4);
      line-height: 1.75;
    }

/* ── RESPONSIVE ── */
    @media (max-width: 768px) {
.dvt-header { grid-template-columns: 1fr; }

.dvt-dragon-h, .dvt-tiger-h, .dvt-vs-h { border-radius: 0; }

.dvt-row { grid-template-columns: 1fr 1fr; }

.dvt-label { display: none; }

.dvt-cell.dragon-cell { text-align: left; justify-content: flex-start; }

.dt-card-visual { gap: 0.7rem; }

.dt-card { width: 70px; height: 105px; font-size: 1.5rem; }
}
