:root {
      --primary: #0ea5e9;
      --primary-dark: #0284c7;
      --secondary: #22c55e;
      --secondary-dark: #16a34a;
      --bg-light: #e0f2fe;
      --bg-white: #ffffff;
      --text-dark: #0f172a;
      --text-mid: #1e3a5f;
      --text-muted: #475569;
      --accent-gold: #f59e0b;
      --accent-red: #ef4444;
      --border-color: #7dd3fc;
      --card-radius: 16px;
      --shadow-sm: 0 2px 12px rgba(14,165,233,0.10);
      --shadow-md: 0 6px 32px rgba(14,165,233,0.16);
      --shadow-lg: 0 16px 48px rgba(14,165,233,0.22);
    }

*, *::before, *::after { box-sizing: border-box; }

body {
    overflow-x: clip;
    width: 100%;
      font-family: 'Hind Siliguri', sans-serif;
      background: var(--bg-light);
      color: var(--text-dark);
      margin: 0;
      padding: 0;
      line-height: 1.8;
    }

/* ── BREADCRUMB ── */
    .breadcrumb-bar {
      background: #bae6fd;
      border-bottom: 2px solid #7dd3fc;
      padding: 10px 0;
    }

.breadcrumb { margin: 0; background: none; padding: 0; }

.breadcrumb-item a { color: var(--primary-dark); text-decoration: none; font-weight: 500; }

.breadcrumb-item a:hover { text-decoration: underline; }

.breadcrumb-item.active { color: var(--text-mid); font-weight: 600; }

.breadcrumb-item + .breadcrumb-item::before { color: var(--primary); }

/* ── HERO ── */
    .page-hero {
      background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 45%, #0ea5e9 100%);
      padding: 80px 0 70px;
      position: relative;
      overflow: hidden;
    }

.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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(239,68,68,0.25);
      border: 1px solid rgba(239,68,68,0.5);
      color: #fca5a5;
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 20px;
      animation: pulse-badge 2s infinite;
    }

@keyframes pulse-badge {
      0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.3); }
      50% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
    }

.page-hero h1 {
      color: #fff;
      font-size: clamp(1.7rem, 4vw, 2.6rem);
      font-weight: 700;
      line-height: 1.35;
      margin-bottom: 16px;
    }

.page-hero .lead { color: #bae6fd; font-size: 1.08rem; }

.btn-primary-cta {
      display: inline-flex;
      align-items: center;
      background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
      color: #fff;
      padding: 13px 28px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 1rem;
      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 28px rgba(34,197,94,0.45); color: #fff; }

.btn-outline-cta {
      display: inline-flex;
      align-items: center;
      background: transparent;
      color: #e0f2fe;
      padding: 12px 26px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      border: 2px solid rgba(224,242,254,0.5);
      transition: background 0.2s, border-color 0.2s;
    }

.btn-outline-cta:hover { background: rgba(255,255,255,0.12); border-color: #e0f2fe; color: #fff; }

/* ── MONSTER VISUAL ── */
    .monster-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

.mv-card {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 14px;
      padding: 22px 16px;
      text-align: center;
      backdrop-filter: blur(8px);
      transition: transform 0.2s;
    }

.mv-card:hover { transform: translateY(-4px); }

.mv-multiplier {
      font-size: 2rem;
      font-weight: 800;
      color: #fbbf24;
      display: block;
      line-height: 1;
    }

.mv-label { color: #bae6fd; font-size: 0.8rem; margin-top: 6px; display: block; }

.mv-icon { font-size: 1.8rem; display: block; margin-bottom: 6px; }

/* ── OCEAN DIVIDER ── */
    .ocean-divider {
      height: 4px;
      background: linear-gradient(90deg, #0ea5e9, #22c55e, #0ea5e9);
      opacity: 0.5;
    }

/* ── STATS BAR ── */
    .stats-bar {
      background: linear-gradient(135deg, #0369a1, #0ea5e9);
      padding: 28px 0;
    }

.s-stat { padding: 8px; }

.s-val {
      display: block;
      font-size: 1.8rem;
      font-weight: 800;
      color: #fbbf24;
      line-height: 1.1;
    }

.s-lbl { color: #bae6fd; font-size: 0.85rem; font-weight: 500; }

/* ── SECTIONS ── */
    section { padding: 70px 0; }

.section-title {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 700;
      color: var(--text-mid);
      margin-bottom: 10px;
    }

.section-subtitle { color: var(--text-muted); font-size: 1rem; margin-bottom: 0; }

/* ── CONTENT IMAGE ── */
    .content-img {
      width: 100%;
      border-radius: var(--card-radius);
      box-shadow: var(--shadow-md);
      object-fit: cover;
    }

/* ── ARTICLE TEXT ── */
    .article-text h2 {
      font-size: clamp(1.3rem, 2.5vw, 1.75rem);
      font-weight: 700;
      color: var(--text-mid);
      margin-bottom: 14px;
      line-height: 1.4;
    }

.article-text h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin: 22px 0 10px;
    }

.article-text p { color: #334155; margin-bottom: 14px; }

/* ── INFO BOX ── */
    .info-box {
      background: #f0f9ff;
      border-left: 4px solid var(--primary);
      border-radius: 10px;
      padding: 16px 18px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

.info-box i { color: var(--primary); font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }

.info-box p { margin: 0; color: #1e3a5f; font-size: 0.93rem; }

.info-box.ib-green { background: #f0fdf4; border-color: var(--secondary); }

.info-box.ib-green i { color: var(--secondary); }

.info-box.ib-red { background: #fff1f2; border-color: #ef4444; }

.info-box.ib-red i { color: #ef4444; }

.info-box.ib-gold { background: #fffbeb; border-color: var(--accent-gold); }

.info-box.ib-gold i { color: var(--accent-gold); }

/* ── CRASH MECHANICS CARDS ── */
    .mechanics-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 22px;
    }

.mechanic-card {
      background: #fff;
      border-radius: var(--card-radius);
      padding: 28px 22px;
      box-shadow: var(--shadow-sm);
      border-top: 4px solid var(--primary);
      transition: transform 0.2s, box-shadow 0.2s;
    }

.mechanic-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.mechanic-card.mc-green { border-color: var(--secondary); }

.mechanic-card.mc-gold { border-color: var(--accent-gold); }

.mechanic-card.mc-red { border-color: var(--accent-red); }

.mechanic-icon {
      font-size: 2.4rem;
      margin-bottom: 14px;
      display: block;
    }

.mechanic-card h5 { font-weight: 700; color: var(--text-mid); margin-bottom: 8px; }

.mechanic-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ── MULTIPLIER SHOWCASE ── */
    .multiplier-showcase {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
    }

.mp-badge {
      background: linear-gradient(135deg, #0c4a6e, #0ea5e9);
      color: #fff;
      border-radius: 12px;
      padding: 16px 24px;
      text-align: center;
      min-width: 110px;
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s;
    }

.mp-badge:hover { transform: scale(1.07); }

.mp-badge.mpb-green { background: linear-gradient(135deg, #14532d, #22c55e); }

.mp-badge.mpb-gold { background: linear-gradient(135deg, #78350f, #f59e0b); }

.mp-badge.mpb-red { background: linear-gradient(135deg, #7f1d1d, #ef4444); }

.mp-badge.mpb-purple { background: linear-gradient(135deg, #3b0764, #a855f7); }

.mp-val { font-size: 1.7rem; font-weight: 800; display: block; line-height: 1.1; }

.mp-lbl { font-size: 0.78rem; opacity: 0.85; margin-top: 4px; display: block; }

/* ── STRATEGY CARDS ── */
    .strategy-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

.strategy-card {
      background: #fff;
      border-radius: var(--card-radius);
      padding: 26px 22px;
      box-shadow: var(--shadow-sm);
      border-left: 5px solid var(--primary);
      transition: box-shadow 0.2s;
    }

.strategy-card:hover { box-shadow: var(--shadow-md); }

.strategy-card.sc-green { border-color: var(--secondary); }

.strategy-card.sc-gold { border-color: var(--accent-gold); }

.strategy-card.sc-purple { border-color: #a855f7; }

.strategy-num {
      width: 40px; height: 40px;
      background: var(--primary);
      color: #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 1rem;
      margin-bottom: 14px;
      flex-shrink: 0;
    }

.strategy-card.sc-green .strategy-num { background: var(--secondary); }

.strategy-card.sc-gold .strategy-num { background: var(--accent-gold); }

.strategy-card.sc-purple .strategy-num { background: #a855f7; }

.strategy-card h6 { font-weight: 700; color: var(--text-mid); margin-bottom: 8px; }

.strategy-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ── CRASH LIVE TICKER ── */
    .crash-ticker {
      background: #0c4a6e;
      padding: 12px 0;
      overflow: hidden;
    }

.ct-track {
      display: flex;
      gap: 0;
      animation: scrollLeft 30s linear infinite;
      white-space: nowrap;
    }

@keyframes scrollLeft {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

.ct-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0 24px;
      color: #e0f2fe;
      font-size: 0.88rem;
    }

.ct-win { color: #4ade80; font-weight: 700; }

.ct-crash { color: #f87171; font-weight: 700; }

.ct-sep { color: #7dd3fc; opacity: 0.4; }

/* ── HOW TO PLAY ── */
    .how-step {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      background: #fff;
      border-radius: var(--card-radius);
      padding: 22px;
      box-shadow: var(--shadow-sm);
      margin-bottom: 16px;
      transition: box-shadow 0.2s;
    }

.how-step:hover { box-shadow: var(--shadow-md); }

.hs-num {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; font-weight: 800;
      flex-shrink: 0;
    }

.hs-body h6 { font-weight: 700; color: var(--text-mid); margin-bottom: 5px; }

.hs-body p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ── BONUS BANNER ── */
    .bonus-banner {
      background: linear-gradient(135deg, #0c4a6e 0%, #0ea5e9 60%, #22c55e 100%);
      border-radius: 20px;
      padding: 50px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

.bonus-banner::before {
      content: '👾';
      font-size: 8rem;
      position: absolute;
      left: -20px;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.12;
    }

.bonus-banner::after {
      content: '💥';
      font-size: 8rem;
      position: absolute;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.12;
    }

.bonus-tag {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      color: #fff;
      padding: 5px 16px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 16px;
    }

.bonus-banner h3 { color: #fff; font-weight: 700; font-size: clamp(1.2rem, 3vw, 1.75rem); margin-bottom: 12px; }

.bonus-banner p { color: #bae6fd; font-size: 0.98rem; margin-bottom: 24px; }

/* ── FAQ ── */
    .faq-accordion .accordion-item {
      border: none;
      border-radius: 12px !important;
      margin-bottom: 12px;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

.faq-accordion .accordion-button {
      background: #fff;
      color: var(--text-mid);
      font-weight: 600;
      border-radius: 12px !important;
      font-size: 0.97rem;
    }

.faq-accordion .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, #e0f2fe, #f0fdf4);
      color: var(--primary-dark);
      box-shadow: none;
    }

.faq-accordion .accordion-button::after { filter: hue-rotate(190deg); }

.faq-accordion .accordion-body {
    overflow-x: clip;
    width: 100%; background: #f8fafc; color: #334155; font-size: 0.93rem; line-height: 1.8; }

/* ── RESPONSIBLE NOTE ── */
    .resp-note {
      background: #fff7ed;
      border: 1px solid #fed7aa;
      border-radius: 12px;
      padding: 18px 22px;
      color: #92400e;
      font-size: 0.92rem;
    }

.resp-note a { color: #b45309; font-weight: 600; }

/* ── RESPONSIVE ── */
    @media (max-width: 768px) {
section { padding: 48px 0; }

.monster-visual { grid-template-columns: 1fr 1fr; }

.bonus-banner { padding: 36px 22px; }

.bonus-banner::before, .bonus-banner::after { display: none; }
}

@media (max-width: 480px) {
.monster-visual { grid-template-columns: 1fr 1fr; gap: 10px; }

.mv-multiplier { font-size: 1.5rem; }
}
