:root {
    --primary: #0ea5e9;
    --secondary: #22c55e;
    --bg-light: #e0f2fe;
    --bg-dark: #0c4a6e;
    --divider: #0284c7;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --card-radius: 16px;
    --ice-blue: #bae6fd;
    --ice-white: #f0f9ff;
  }

* { box-sizing: border-box; }

body {
    overflow-x: clip;
    width: 100%;
    font-family: 'Hind Siliguri', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0; padding: 0;
  }

a { color: var(--primary); text-decoration: none; }

a:hover { color: var(--secondary); }

/* BREADCRUMB */
  .breadcrumb-section {
    background: #fff;
    border-bottom: 2px solid var(--bg-light);
    padding: 0.75rem 0;
  }

.breadcrumb-item a { color: var(--primary); font-size: 0.9rem; }

.breadcrumb-item.active { color: var(--text-muted); font-size: 0.9rem; }

.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* OCEAN DIVIDER */
  .ocean-divider {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent);
  }

/* ICE PARTICLES */
  .ice-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
  }

.ice-flake {
    position: absolute;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: floatUp linear infinite;
  }

@keyframes floatUp {
    0% { transform: translateY(100%) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-120%) rotate(360deg); opacity: 0; }
  }

/* PAGE HERO */
  .page-hero {
    background: linear-gradient(135deg, #082f49 0%, #0c4a6e 40%, #0369a1 75%, #0ea5e9 100%);
    color: #fff;
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
  }

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(186,230,253,0.12) 0%, transparent 70%);
    border-radius: 50%;
  }

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -60px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(34,197,94,0.10) 0%, transparent 70%);
    border-radius: 50%;
  }

.hero-badge {
    display: inline-block;
    background: rgba(186,230,253,0.2);
    border: 1px solid rgba(186,230,253,0.5);
    color: #bae6fd;
    border-radius: 20px;
    padding: 0.28rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
  }

.page-hero p.lead {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.7;
  }

/* CTA BUTTONS */
  .btn-primary-cta {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(34,197,94,0.3);
    transition: all 0.2s;
    display: inline-block;
  }

.btn-primary-cta:hover { background: #16a34a; color: #fff; transform: translateY(-2px); }

.btn-outline-cta {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.55);
    padding: 0.72rem 1.6rem;
    border-radius: 30px;
    font-size: 0.97rem;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
  }

.btn-outline-cta:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* GAME STATS BAR */
  .game-stats-bar {
    background: linear-gradient(135deg, #082f49, #0c4a6e);
    padding: 1.2rem 0;
    border-bottom: 2px solid var(--divider);
  }

.g-stat { text-align: center; }

.g-stat .g-val { font-size: 1.4rem; font-weight: 800; color: #bae6fd; display: block; }

.g-stat .g-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

.g-stat-divider { width: 1px; background: rgba(255,255,255,0.15); height: 40px; margin: auto; }

/* SECTION */
  section { padding: 64px 0; }

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bg-dark);
    position: relative;
    padding-bottom: 0.65rem;
    margin-bottom: 0.5rem;
  }

.section-title::after {
    content: '';
    position: absolute;
    left: 50%; transform: translateX(-50%);
    bottom: 0; width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
  }

.section-title.left-align { text-align: left; }

.section-title.left-align::after { left: 0; transform: none; }

.section-subtitle { color: var(--text-muted); font-size: 0.97rem; }

/* CONTENT IMAGE */
  .content-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 6px 28px rgba(14,165,233,0.18);
    object-fit: cover;
  }

/* FEATURE CARDS */
  .feature-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 1.8rem 1.5rem;
    box-shadow: 0 2px 18px rgba(14,165,233,0.09);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
    border-top: 4px solid var(--primary);
  }

.feature-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(14,165,233,0.18); }

.feature-card.green-top { border-top-color: var(--secondary); }

.feature-card.teal-top { border-top-color: #0d9488; }

.feature-card.ice-top { border-top-color: #38bdf8; }

.feature-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.1rem;
  }

.feature-icon.blue-bg { background: linear-gradient(135deg, #e0f2fe, #bae6fd); }

.feature-icon.green-bg { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }

.feature-icon.teal-bg { background: linear-gradient(135deg, #ccfbf1, #99f6e4); }

.feature-icon.ice-bg { background: linear-gradient(135deg, #f0f9ff, #e0f2fe); }

.feature-card h5 { font-weight: 700; color: var(--bg-dark); font-size: 1.05rem; margin-bottom: 0.5rem; }

.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ICE LEVEL CARD */
  .ice-level-card {
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(14,165,233,0.10);
    transition: transform 0.22s;
    height: 100%;
  }

.ice-level-card:hover { transform: translateY(-5px); }

.ice-level-header {
    padding: 1.5rem;
    position: relative;
    color: #fff;
    text-align: center;
  }

.ilh-1 { background: linear-gradient(135deg, #082f49, #0c4a6e); }

.ilh-2 { background: linear-gradient(135deg, #0c4a6e, #0369a1); }

.ilh-3 { background: linear-gradient(135deg, #0369a1, #0ea5e9); }

.ilh-4 { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }

.ilh-5 { background: linear-gradient(135deg, #134e4a, #0d9488); }

.level-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 0.18rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }

.level-emoji { font-size: 2.2rem; display: block; margin-bottom: 0.4rem; }

.ice-level-header h5 { font-weight: 800; font-size: 1.05rem; margin-bottom: 0.2rem; }

.level-mult { font-size: 1.6rem; font-weight: 900; color: #fde68a; }

.level-mult-lbl { font-size: 0.75rem; opacity: 0.75; }

.ice-level-body {
    overflow-x: clip;
    width: 100%; padding: 1.1rem 1.3rem; }

.ice-level-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.7rem; }

.level-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.level-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 8px;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
  }

/* HOW TO PLAY */
  .step-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.4rem;
    box-shadow: 0 2px 12px rgba(14,165,233,0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    border-left: 4px solid var(--primary);
    transition: box-shadow 0.2s;
  }

.step-card:hover { box-shadow: 0 6px 22px rgba(14,165,233,0.15); }

.step-num {
    flex-shrink: 0;
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem;
  }

.step-card h6 { font-weight: 700; color: var(--bg-dark); margin-bottom: 0.3rem; font-size: 0.97rem; }

.step-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.6; margin: 0; }

/* INFO BOX */
  .info-box {
    background: #fff;
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 1.1rem 1.4rem;
    box-shadow: 0 2px 10px rgba(14,165,233,0.08);
    display: flex; align-items: flex-start; gap: 0.9rem;
    margin: 1.5rem 0;
  }

.info-box i { color: var(--primary); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.info-box p { margin: 0; color: var(--text-dark); font-size: 0.91rem; line-height: 1.65; }

.info-box.green { border-left-color: var(--secondary); }

.info-box.green i { color: var(--secondary); }

.info-box.ice { border-left-color: #38bdf8; }

.info-box.ice i { color: #38bdf8; }

/* ARTICLE */
  .article-text { max-width: 840px; margin: 0 auto; color: var(--text-dark); font-size: 0.97rem; line-height: 1.85; }

.article-text h2 { font-size: 1.45rem; font-weight: 800; color: var(--bg-dark); margin-top: 2rem; margin-bottom: 0.7rem; }

.article-text h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-top: 1.5rem; margin-bottom: 0.5rem; }

.article-text p { margin-bottom: 1rem; }

/* ICE TICKER */
  .ice-ticker {
    background: linear-gradient(90deg, #082f49, #0c4a6e, #082f49);
    padding: 0.65rem 0;
    overflow: hidden;
    border-bottom: 2px solid var(--divider);
  }

.ticker-inner {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: ticker-scroll 25s linear infinite;
  }

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

.ticker-item { color: #bae6fd; font-size: 0.85rem; font-weight: 500; }

.ticker-item span { color: #fde68a; font-weight: 700; }

.ticker-sep { color: var(--secondary); }

/* BONUS BANNER */
  .bonus-banner {
    background: linear-gradient(135deg, #082f49 0%, #0c4a6e 50%, #0369a1 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
  }

.bonus-banner::before {
    content: '❄️';
    position: absolute;
    font-size: 8rem;
    opacity: 0.06;
    right: 1rem; top: -1rem;
  }

.bonus-banner h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.6rem; }

.bonus-banner p { opacity: 0.88; font-size: 0.95rem; max-width: 520px; margin-bottom: 1.5rem; }

.bonus-tag {
    display: inline-block;
    background: rgba(34,197,94,0.2);
    border: 1px solid var(--secondary);
    color: #bbf7d0;
    border-radius: 20px;
    padding: 0.2rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
  }

/* FAQ */
  .faq-accordion .accordion-button {
    font-family: 'Hind Siliguri', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--bg-dark);
    background: #fff;
  }

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: #f0f9ff;
    box-shadow: none;
  }

.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-muted); line-height: 1.7; }

.faq-accordion .accordion-item {
    border: 1px solid #bae6fd;
    border-radius: 10px !important;
    margin-bottom: 0.6rem;
    overflow: hidden;
  }

/* MULTIPLIER SHOWCASE */
  .mult-showcase {
    background: linear-gradient(135deg, #082f49, #0c4a6e);
    border-radius: 20px;
    padding: 2rem;
    color: #fff;
  }

.mult-row { display: flex; align-items: center; gap: 1rem; padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }

.mult-row:last-child { border-bottom: none; }

.mult-icon { font-size: 1.6rem; flex-shrink: 0; width: 40px; text-align: center; }

.mult-label { flex: 1; font-size: 0.9rem; color: #bae6fd; }

.mult-val { font-weight: 800; font-size: 1.1rem; color: #fde68a; }

.mult-bar-wrap { flex: 1; }

.mult-bar { height: 6px; border-radius: 6px; background: rgba(255,255,255,0.1); overflow: hidden; }

.mult-bar-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--primary), var(--secondary)); }

@media (max-width: 768px) {
.page-hero { padding: 48px 0 40px; }

.page-hero h1 { font-size: 1.55rem; }

section { padding: 44px 0; }

.bonus-banner { padding: 1.8rem 1.2rem; }

.mult-showcase { padding: 1.4rem; }
}
