:root {
      --orange:  #f97316;
      --gold:    #facc15;
      --dark:    #111827;
      --dark2:   #1a2234;
      --dark3:   #1f2937;
      --dark4:   #0d1420;
      --muted:   #9ca3af;
      --text:    #e5e7eb;
      --green:   #22c55e;
      --red:     #ef4444;
    }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    overflow-x: clip;
    width: 100%;
      background: var(--dark);
      color: var(--text);
      font-family: 'Hind Siliguri', 'Inter', sans-serif;
      line-height: 1.75;
      overflow-x: hidden;
    }

/* ── READING PROGRESS ── */
    #readingProgress {
      position: fixed; top: 0; left: 0; height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      z-index: 9999; width: 0%; transition: width 0.1s;
    }

.nav-cta { background: var(--orange) !important; color: #fff !important; padding: 0.45rem 1.1rem !important; border-radius: 6px; }

.nav-cta:hover { background: #ea580c !important; color: #fff !important; }

/* ── BREADCRUMB ── */
    .breadcrumb-bar {
      background: var(--dark2);
      border-bottom: 1px solid rgba(249,115,22,0.12);
      padding: 0.65rem 0;
    }

.breadcrumb { margin: 0; background: transparent; padding: 0; }

.breadcrumb-item a { color: var(--orange); text-decoration: none; font-size: 0.83rem; }

.breadcrumb-item.active { color: var(--muted); font-size: 0.83rem; }

.breadcrumb-item + .breadcrumb-item::before { color: var(--muted); }

/* ── PAGE HERO ── */
    .page-hero {
      background: linear-gradient(135deg, #0d1420 0%, #1a2234 55%, #0a1a12 100%);
      padding: 4.5rem 0 3.5rem;
      position: relative; overflow: hidden;
    }

.page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(circle at 10% 60%, rgba(249,115,22,0.14), transparent 45%),
        radial-gradient(circle at 90% 20%, rgba(34,197,94,0.07), transparent 40%);
    }

.page-hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(249,115,22,0.4), transparent);
    }

.hero-badge {
      display: inline-flex; align-items: center;
      background: rgba(34,197,94,0.12);
      border: 1px solid rgba(34,197,94,0.3);
      color: var(--green); font-size: 0.82rem; font-weight: 700;
      padding: 0.4rem 1rem; border-radius: 50px;
      margin-bottom: 1.2rem; letter-spacing: 0.04em;
    }

.page-hero h1 {
      font-size: clamp(1.7rem, 3.5vw, 2.6rem);
      font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 1rem;
    }

.page-hero h1 span { color: var(--orange); }

.page-hero .lead { color: #d1d5db; font-size: 0.98rem; max-width: 600px; }

.hero-stats {
      display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem;
    }

.hero-stat {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(249,115,22,0.15);
      border-radius: 12px; padding: 1rem 1.4rem; text-align: center;
      min-width: 120px;
    }

.hero-stat .stat-num {
      font-size: 1.5rem; font-weight: 800;
      background: linear-gradient(135deg, var(--orange), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

.hero-stat .stat-label { color: var(--muted); font-size: 0.78rem; margin-top: 0.2rem; }

.hero-emoji {
      font-size: 6.5rem; line-height: 1;
      filter: drop-shadow(0 0 28px rgba(249,115,22,0.25));
      animation: heroFloat 3.5s ease-in-out infinite;
    }

@keyframes heroFloat {
      0%, 100% { transform: translateY(0) rotate(-3deg); }
      50% { transform: translateY(-12px) rotate(3deg); }
    }

/* ── COMMON ── */
    .section-pad { padding: 5rem 0; }

.bg-dark2 { background: var(--dark2); }

.bg-dark4 { background: var(--dark4); }

.divider-line {
      width: 48px; height: 4px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      border-radius: 2px; margin-bottom: 1rem;
    }

.section-title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: #fff; }

.section-title .hl { color: var(--orange); }

/* ── FEATURE CARDS ── */
    .feat-card {
      background: var(--dark2);
      border: 1px solid rgba(249,115,22,0.12);
      border-radius: 16px; padding: 2rem 1.6rem; height: 100%;
      transition: all 0.35s; position: relative; overflow: hidden;
    }

.feat-card::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--gold));
      opacity: 0; transition: opacity 0.3s;
    }

.feat-card:hover { border-color: rgba(249,115,22,0.35); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(249,115,22,0.13); }

.feat-card:hover::after { opacity: 1; }

.feat-icon {
      width: 60px; height: 60px;
      background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(250,204,21,0.08));
      border: 1px solid rgba(249,115,22,0.22);
      border-radius: 14px; display: flex; align-items: center; justify-content: center;
      font-size: 1.7rem; margin-bottom: 1.2rem;
    }

.feat-title { font-size: 1.02rem; font-weight: 700; color: #fff; margin-bottom: 0.55rem; }

.feat-text { color: var(--muted); font-size: 0.86rem; line-height: 1.75; }

/* ── SELF-ASSESSMENT QUIZ ── */
    .quiz-wrap {
      background: var(--dark2);
      border: 1px solid rgba(249,115,22,0.2);
      border-radius: 20px; padding: 2.5rem;
    }

.quiz-title { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 0.4rem; }

.quiz-subtitle { color: var(--muted); font-size: 0.88rem; margin-bottom: 2rem; }

.quiz-item { margin-bottom: 1.4rem; }

.quiz-q {
      color: #e5e7eb; font-size: 0.92rem; font-weight: 600;
      margin-bottom: 0.6rem; display: flex; align-items: flex-start; gap: 0.6rem;
    }

.quiz-q span {
      background: rgba(249,115,22,0.15); color: var(--orange);
      font-size: 0.78rem; font-weight: 800; min-width: 24px; height: 24px;
      border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
    }

.quiz-opts { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.quiz-opt {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
      color: var(--muted); font-size: 0.83rem; font-weight: 600;
      padding: 0.4rem 1rem; border-radius: 50px; cursor: pointer; transition: all 0.2s;
      user-select: none;
    }

.quiz-opt:hover { border-color: rgba(249,115,22,0.4); color: var(--orange); }

.quiz-opt.selected-yes { background: rgba(239,68,68,0.15); border-color: var(--red); color: var(--red); }

.quiz-opt.selected-no { background: rgba(34,197,94,0.12); border-color: var(--green); color: var(--green); }

.quiz-result {
      display: none; margin-top: 1.5rem;
      border-radius: 12px; padding: 1.4rem 1.6rem;
    }

.quiz-result.show { display: block; }

.quiz-result.safe { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); }

.quiz-result.warn { background: rgba(250,204,21,0.08); border: 1px solid rgba(250,204,21,0.3); }

.quiz-result.danger { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); }

.quiz-result .qr-icon { font-size: 2rem; margin-bottom: 0.5rem; }

.quiz-result .qr-title { font-weight: 800; font-size: 1rem; margin-bottom: 0.3rem; }

.quiz-result.safe .qr-title { color: var(--green); }

.quiz-result.warn .qr-title { color: var(--gold); }

.quiz-result.danger .qr-title { color: var(--red); }

.quiz-result p { font-size: 0.87rem; color: #d1d5db; margin: 0; }

.btn-quiz {
      background: linear-gradient(135deg, var(--orange), #ea580c);
      color: #fff; font-weight: 700; font-size: 0.9rem;
      padding: 0.7rem 2rem; border-radius: 8px; border: none;
      cursor: pointer; margin-top: 1.5rem; transition: all 0.3s;
    }

.btn-quiz:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,115,22,0.4); }

/* ── TIPS ACCORDION ── */
    .tips-accordion .accordion-item {
      background: var(--dark2); border: 1px solid rgba(249,115,22,0.12) !important;
      border-radius: 12px !important; margin-bottom: 0.8rem; overflow: hidden;
    }

.tips-accordion .accordion-button {
      background: var(--dark2); color: #fff; font-weight: 700; font-size: 0.93rem;
      border-radius: 12px !important; padding: 1.1rem 1.4rem;
      box-shadow: none !important;
    }

.tips-accordion .accordion-button::after {
      filter: brightness(0) saturate(100%) invert(56%) sepia(93%) saturate(1000%) hue-rotate(345deg) brightness(101%) contrast(97%);
    }

.tips-accordion .accordion-button:not(.collapsed) {
      background: rgba(249,115,22,0.08); color: var(--orange);
      border-bottom: 1px solid rgba(249,115,22,0.15);
    }

.tips-accordion .accordion-body {
    overflow-x: clip;
    width: 100%;
      background: var(--dark2); color: #d1d5db; font-size: 0.9rem; line-height: 1.85;
      padding: 1.2rem 1.4rem;
    }

.tips-accordion .accordion-body ul { padding-left: 0; list-style: none; }

.tips-accordion .accordion-body ul li {
      padding: 0.25rem 0 0.25rem 1.4rem; position: relative;
    }

.tips-accordion .accordion-body ul li::before {
      content: '▸'; position: absolute; left: 0; color: var(--orange); font-size: 0.8rem; top: 0.38rem;
    }

/* ── LIMIT TOOLS ── */
    .tool-card {
      background: var(--dark3);
      border: 1px solid rgba(249,115,22,0.12);
      border-radius: 14px; padding: 1.6rem;
      height: 100%; transition: border-color 0.3s;
    }

.tool-card:hover { border-color: rgba(249,115,22,0.3); }

.tool-icon-wrap {
      width: 50px; height: 50px;
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 1rem;
    }

.tool-icon-wrap.orange { background: rgba(249,115,22,0.15); }

.tool-icon-wrap.gold { background: rgba(250,204,21,0.12); }

.tool-icon-wrap.green { background: rgba(34,197,94,0.12); }

.tool-icon-wrap.red { background: rgba(239,68,68,0.12); }

.tool-title { font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }

.tool-text { color: var(--muted); font-size: 0.85rem; line-height: 1.7; }

/* ── SIGN / WARNING STRIP ── */
    .warning-strip {
      background: linear-gradient(135deg, rgba(239,68,68,0.12), rgba(249,115,22,0.08));
      border: 1px solid rgba(239,68,68,0.25);
      border-left: 5px solid var(--red);
      border-radius: 0 14px 14px 0;
      padding: 1.5rem 1.8rem; margin: 2rem 0;
    }

.warning-strip .ws-title {
      font-weight: 800; color: #f87171; font-size: 0.95rem;
      display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.7rem;
    }

.warning-strip ul { list-style: none; padding: 0; margin: 0; }

.warning-strip ul li {
      color: #fca5a5; font-size: 0.88rem;
      padding: 0.2rem 0 0.2rem 1.4rem; position: relative;
    }

.warning-strip ul li::before { content: '⚠'; position: absolute; left: 0; font-size: 0.75rem; top: 0.3rem; }

.green-strip {
      background: rgba(34,197,94,0.08);
      border: 1px solid rgba(34,197,94,0.2);
      border-left: 5px solid var(--green);
      border-radius: 0 14px 14px 0;
      padding: 1.2rem 1.6rem; margin: 1.5rem 0;
    }

.green-strip .gs-title {
      font-weight: 800; color: var(--green); font-size: 0.88rem;
      text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem;
    }

.green-strip p { color: #d1d5db; font-size: 0.9rem; margin: 0; }

/* ── PROGRESS INDICATOR ── */
    .progress-steps {
      display: flex; flex-direction: column; gap: 0;
      position: relative;
    }

.progress-steps::before {
      content: ''; position: absolute; left: 19px; top: 0; bottom: 0; width: 2px;
      background: linear-gradient(180deg, var(--orange), rgba(249,115,22,0.1));
    }

.step-item { display: flex; gap: 1.2rem; padding-bottom: 2rem; position: relative; }

.step-num {
      width: 38px; height: 38px; border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), #ea580c);
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 0.88rem; color: #fff; flex-shrink: 0; z-index: 1;
    }

.step-content { padding-top: 0.3rem; }

.step-title { font-weight: 700; color: #fff; font-size: 0.97rem; margin-bottom: 0.35rem; }

.step-text { color: var(--muted); font-size: 0.87rem; line-height: 1.7; }

/* ── MAIN CONTENT PROSE ── */
    .prose-section { margin-bottom: 3rem; scroll-margin-top: 90px; }

.prose-section h2 {
      font-size: 1.25rem; font-weight: 800; color: #fff;
      margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem;
    }

.prose-section h2 .h2-icon {
      width: 34px; height: 34px;
      background: rgba(249,115,22,0.15); border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.95rem; color: var(--orange); flex-shrink: 0;
    }

.prose-section p { color: #d1d5db; font-size: 0.93rem; line-height: 1.9; margin-bottom: 0.9rem; }

.prose-section p:last-child { margin-bottom: 0; }

.prose-section ul { list-style: none; padding: 0; margin: 0.7rem 0 1rem; }

.prose-section ul li {
      color: #d1d5db; font-size: 0.92rem; line-height: 1.8;
      padding: 0.28rem 0 0.28rem 1.5rem; position: relative;
    }

.prose-section ul li::before { content: '▸'; position: absolute; left: 0; color: var(--orange); font-size: 0.8rem; top: 0.4rem; }

/* ── AGE GATE BADGE ── */
    .age-badge {
      display: inline-flex; align-items: center; justify-content: center;
      width: 70px; height: 70px; border-radius: 50%;
      background: linear-gradient(135deg, var(--red), #b91c1c);
      color: #fff; font-size: 1rem; font-weight: 900; flex-shrink: 0;
      box-shadow: 0 4px 20px rgba(239,68,68,0.35);
    }

/* ── CTA ── */
    .cta-strip {
      background: var(--dark4);
      border-top: 1px solid rgba(249,115,22,0.15);
      border-bottom: 1px solid rgba(249,115,22,0.15);
      padding: 5rem 0; text-align: center;
    }

.cta-inner { max-width: 660px; margin: 0 auto; }

.cta-strip h3 { color: #fff; font-weight: 800; font-size: 1.75rem; margin-bottom: 0.75rem; }

.cta-strip h3 span { color: var(--orange); }

.cta-strip p { color: var(--muted); font-size: 0.96rem; margin-bottom: 2rem; }

.btn-fire {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: linear-gradient(135deg, var(--orange), #ea580c);
      color: #fff !important; font-weight: 800; font-size: 1rem;
      padding: 0.85rem 2.2rem; border-radius: 8px; text-decoration: none;
      transition: all 0.3s; box-shadow: 0 4px 20px rgba(249,115,22,0.35); margin: 0.3rem;
    }

.btn-fire:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(249,115,22,0.5); }

.btn-outline-o {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: transparent; color: var(--orange) !important;
      border: 2px solid var(--orange); font-weight: 700; font-size: 1rem;
      padding: 0.82rem 2rem; border-radius: 8px; text-decoration: none;
      transition: all 0.3s; margin: 0.3rem;
    }

.btn-outline-o:hover { background: rgba(249,115,22,0.1); transform: translateY(-2px); }

.cta-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.6rem; }

.cta-trust span { color: var(--muted); font-size: 0.82rem; display: flex; align-items: center; gap: 0.4rem; }

.cta-trust i { color: var(--orange); }

@media (max-width: 991px) {
.section-pad { padding: 3rem 0; }

.page-hero { padding: 3rem 0 2.5rem; }

.quiz-wrap { padding: 1.8rem; }
}

@media (max-width: 576px) {
.hero-stat { min-width: 100px; padding: 0.8rem 1rem; }

.progress-steps::before { left: 18px; }
}
