:root {
    --primary: #0ea5e9;
    --secondary: #22c55e;
    --bg-light: #e0f2fe;
    --bg-dark: #0c4a6e;
    --divider: #0284c7;
    --text-dark: #0f172a;
    --text-muted: #475569;
  }

* { 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); }

/* PAGE HERO */
  .page-hero {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 55%, #0ea5e9 100%);
    color: #fff;
    padding: 64px 0 52px;
    position: relative;
    overflow: hidden;
  }

.page-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -40px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(14,165,233,0.18) 0%, transparent 70%);
    border-radius: 50%;
  }

.page-hero-badge {
    display: inline-block;
    background: rgba(34,197,94,0.2);
    border: 1px solid var(--secondary);
    color: #bbf7d0;
    border-radius: 20px;
    padding: 0.25rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
  }

.page-hero p.lead {
    font-size: 1.08rem;
    opacity: 0.9;
    max-width: 580px;
  }

.btn-primary-cta {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 0.72rem 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.68rem 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; }

/* OCEAN DIVIDER */
  .ocean-divider { height: 4px; background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--primary), transparent); }

/* SECTION */
  section { padding: 60px 0; }

.section-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--bg-dark);
    position: relative;
    padding-bottom: 0.6rem;
    margin-bottom: 0.4rem;
  }

.section-title::after {
    content: '';
    position: absolute;
    left: 50%; transform: translateX(-50%);
    bottom: 0; width: 56px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
  }

.section-title.left-line::after { left: 0; transform: none; }

.section-subtitle { color: var(--text-muted); font-size: 0.97rem; margin-bottom: 2rem; }

/* CONTENT IMAGE */
  .content-img {
    display: block;
    margin: 1.5rem auto;
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 4px 22px rgba(14,165,233,0.16);
  }

/* FEATURE CARDS */
  .feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.6rem 1.3rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(14,165,233,0.09);
    border-top: 3px solid var(--primary);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
  }

.feature-card:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(14,165,233,0.18); }

.feature-icon {
    width: 58px; height: 58px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem; color: #fff;
  }

.feature-card h5 { font-weight: 700; color: var(--bg-dark); margin-bottom: 0.4rem; }

.feature-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* FISH TYPE CARDS */
  .fish-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(14,165,233,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
  }

.fish-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(14,165,233,0.20); }

.fish-card-header {
    background: linear-gradient(135deg, var(--bg-dark), var(--divider));
    padding: 1.2rem 1.2rem 0.8rem;
    display: flex; align-items: center; gap: 0.8rem;
  }

.fish-card-icon { font-size: 2rem; }

.fish-card-header h5 { color: #fff; font-weight: 700; margin: 0; font-size: 1rem; }

.fish-card-header span { color: #bbf7d0; font-size: 0.8rem; }

.fish-card-body {
    overflow-x: clip;
    width: 100%; padding: 1rem 1.2rem 1.2rem; }

.fish-card-body p { color: var(--text-muted); font-size: 0.88rem; margin: 0 0 0.8rem; line-height: 1.6; }

.multiplier-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 20px;
    padding: 0.2rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 700;
  }

/* HOW TO PLAY */
  .how-section { background: linear-gradient(135deg, #f0f9ff, #e0f2fe); }

.how-step {
    display: flex; align-items: flex-start; gap: 1.1rem;
    margin-bottom: 1.8rem;
  }

.how-step-num {
    flex-shrink: 0;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff; font-size: 1.2rem; font-weight: 700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 3px 12px rgba(14,165,233,0.28);
  }

.how-step-content h5 { font-weight: 700; color: var(--bg-dark); margin-bottom: 0.25rem; }

.how-step-content p { color: var(--text-muted); font-size: 0.91rem; margin: 0; }

/* TIPS TABLE */
  .tips-table { border-collapse: separate; border-spacing: 0; width: 100%; border-radius: 14px; overflow: hidden; }

.tips-table thead th { background: var(--bg-dark); color: #fff; padding: 0.9rem 1.1rem; font-size: 0.95rem; }

.tips-table thead th:first-child { border-radius: 14px 0 0 0; }

.tips-table thead th:last-child { border-radius: 0 14px 0 0; }

.tips-table tbody tr:nth-child(even) td { background: #f0f9ff; }

.tips-table tbody td { padding: 0.8rem 1.1rem; border-bottom: 1px solid #bae6fd; font-size: 0.91rem; color: var(--text-dark); }

.tips-table tbody tr:last-child td { border-bottom: none; }

/* ARTICLE */
  .article-text { max-width: 820px; margin: 0 auto; color: var(--text-dark); font-size: 0.96rem; line-height: 1.85; }

.article-text h2 { font-size: 1.45rem; font-weight: 700; 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; }

/* 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.09);
    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.6; }

.info-box.green { border-left-color: var(--secondary); }

.info-box.green i { color: var(--secondary); }

/* STAT STRIP */
  .stat-strip {
    background: linear-gradient(135deg, #0c4a6e, #0369a1);
    color: #fff;
    padding: 2.5rem 0;
  }

.stat-strip-item { text-align: center; }

.stat-strip-item .s-num { font-size: 2rem; font-weight: 800; color: #bbf7d0; }

.stat-strip-item .s-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 0.2rem; }

@media (max-width: 768px) {
.page-hero { padding: 44px 0 36px; }

.page-hero h1 { font-size: 1.55rem; }

section { padding: 40px 0; }

.stat-strip-item .s-num { font-size: 1.5rem; }
}
