/* Extracted from lullabies copy.html — page content styles */

    :root {
      --night:      #232049;
      --night-2:    #2E2A63;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Vazirmatn', sans-serif;
      background: var(--canvas);
      color: var(--ink);
      line-height: 1.8;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, .brand, .btn, .chip, .nav a, .stat-num {
      font-family: 'Baloo Bhaijaan 2', 'Vazirmatn', sans-serif;
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { font: inherit; cursor: pointer; border: none; background: none; }
    section { position: relative; }
    .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

    .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
    .reveal.in { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

    /* ===================== Navbar (matches homepage) ===================== */
    .nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255, 249, 238, 0.92);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }
    .nav-inner {
      max-width: 1180px; margin: 0 auto; padding: 12px 24px;
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
    }
    .brand {
      display: flex; align-items: center; gap: 10px;
      font-weight: 800; font-size: 24px; color: var(--ink);
    }
    .brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; }
    .nav-links { display: flex; align-items: center; gap: 6px; }
    .nav-links a {
      padding: 10px 16px; border-radius: 100px; font-weight: 600; font-size: 15px;
      color: var(--ink-soft); transition: background .2s var(--ease), color .2s var(--ease);
    }
    .nav-links a:hover, .nav-links a.active { background: var(--sun-100); color: var(--sun-deep); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .nav-ghost { font-weight: 600; font-size: 15px; color: var(--ink-soft); padding: 10px 12px; }

    .burger {
      display: none; flex-direction: column; gap: 6px;
      width: 30px; height: 24px; justify-content: center; z-index: 101;
    }
    .burger span {
      width: 100%; height: 3px; background: var(--ink); border-radius: 4px;
      transition: transform .3s var(--ease), opacity .3s var(--ease);
    }
    .burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .mobile-drawer {
      position: fixed; inset: 0; background: var(--canvas); z-index: 99;
      display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px;
      transform: translateX(100%); transition: transform 0.4s var(--ease);
    }
    .mobile-drawer.open { transform: translateX(0); }
    .mobile-drawer a { font-size: 22px; font-weight: 700; color: var(--ink); padding: 10px 20px; border-radius: 100px; }
    .mobile-drawer a:hover { background: var(--sun-100); }

    @media (max-width: 1024px) {
      .burger { display: flex; }
      .nav-links, .nav-cta { display: none; }
    }

    /* ===================== Buttons + chip ===================== */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: 16px;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
      white-space: nowrap;
    }
    .btn-primary { background: var(--sun); color: #fff; box-shadow: 0 4px 0 var(--sun-deep); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--sun-deep), var(--shadow-sm); }
    .btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--sun-deep); }
    .btn-outline { background: #fff; color: var(--ink); border: 2px solid var(--line); }
    .btn-outline:hover { border-color: var(--sky); color: var(--sky); transform: translateY(-2px); }
    .btn-sm { padding: 10px 20px; font-size: 14px; }
    .btn-light { background: #fff; color: var(--grape); box-shadow: 0 4px 0 rgba(0,0,0,.12); }
    .btn-light:hover { transform: translateY(-2px); }
    .btn-ghost-dark { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); }
    .btn-ghost-dark:hover { background: rgba(255,255,255,.2); }

    .chip {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--white); border: 1px solid var(--line); border-radius: 100px;
      padding: 8px 16px; font-weight: 600; font-size: 13px; color: var(--ink-soft); box-shadow: var(--shadow-sm);
    }
    .chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); }

    /* ===================== Breadcrumb ===================== */
    .breadcrumb-strip { padding: 18px 0 0; }
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-soft); flex-wrap: wrap; }
    .breadcrumb a { font-weight: 600; }
    .breadcrumb a:hover { color: var(--sky); }
    .breadcrumb span.sep { opacity: .5; }
    .breadcrumb span.current { color: var(--ink); font-weight: 700; }

    /* ===================== Hero ===================== */
    .lull-hero {
      padding: 40px 0 60px; overflow: hidden;
      background:
        radial-gradient(ellipse 65% 70% at 88% 15%, rgba(124,92,191,.35), transparent 55%),
        radial-gradient(ellipse 55% 55% at 8% 90%, rgba(46,143,201,.28), transparent 55%),
        linear-gradient(160deg, var(--night) 0%, var(--night-2) 100%);
      color: #fff;
    }
    .lull-hero .bg-stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
    .lull-hero .bg-stars span {
      position: absolute; border-radius: 50%; background: #fff; opacity: .5;
      animation: twinkle 3.2s ease-in-out infinite;
    }
    @keyframes twinkle { 0%,100% { opacity: .15; } 50% { opacity: .8; } }

    .lull-hero-grid {
      display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
      position: relative; z-index: 1;
    }
    .lull-hero .eyebrow {
      display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px;
      color: var(--sun-100); background: rgba(255,159,28,.16); border: 1px solid rgba(255,159,28,.3);
      padding: 7px 16px; border-radius: 100px; margin-bottom: 18px;
    }
    .lull-hero h1 { font-size: clamp(28px, 4.2vw, 44px); font-weight: 800; line-height: 1.35; margin-bottom: 16px; }
    .lull-hero h1 .hl { color: var(--sun-100); }
    .lull-hero p.lead { font-size: 16.5px; color: rgba(255,255,255,.78); max-width: 480px; margin-bottom: 26px; }
    .lull-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
    .lull-hero-stats { display: flex; gap: 26px; flex-wrap: wrap; }
    .lull-hero-stats div { display: flex; flex-direction: column; }
    .lull-hero-stats b { font-size: 22px; font-weight: 800; }
    .lull-hero-stats span { font-size: 12.5px; color: rgba(255,255,255,.65); }

    .moon-card {
      position: relative; justify-self: center; width: 100%; max-width: 400px;
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
      border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(6px);
      box-shadow: var(--shadow-lg);
    }
    .moon-card .moon-emoji { font-size: 54px; margin-bottom: 14px; }
    .moon-card h3 { font-size: 18px; margin-bottom: 8px; }
    .moon-card p { font-size: 13.5px; color: rgba(255,255,255,.72); margin-bottom: 18px; }
    .moon-card img { width: 90px; height: 90px; margin: 0 auto 14px; filter: drop-shadow(0 10px 20px rgba(0,0,0,.3)); }

    /* ===================== Sleep timer widget ===================== */
    .timer-widget { background: rgba(255,255,255,.08); border-radius: var(--radius-md); padding: 16px; }
    .timer-widget .tw-label { font-size: 12.5px; color: rgba(255,255,255,.7); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
    .tw-options { display: flex; gap: 8px; flex-wrap: wrap; }
    .tw-opt {
      flex: 1; min-width: 60px; text-align: center; padding: 9px 6px; border-radius: 10px;
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); font-size: 13px; font-weight: 700;
      color: #fff; transition: all .2s var(--ease);
    }
    .tw-opt:hover { background: rgba(255,255,255,.16); }
    .tw-opt.active { background: var(--sun); color: #fff; border-color: var(--sun); }
    .tw-status { margin-top: 12px; font-size: 12.5px; color: rgba(255,255,255,.75); display: none; align-items: center; gap: 8px; }
    .tw-status.show { display: flex; }
    .tw-status .tw-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); animation: pulse 1.4s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }

    /* ===================== Filter bar ===================== */
    .filter-section { padding: 44px 0 6px; }
    .filter-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; flex-wrap: wrap; }
    .filter-head h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; }
    .filter-head p { color: var(--ink-soft); font-size: 14.5px; margin-top: 6px; }
    .search-box { position: relative; width: 100%; max-width: 300px; }
    .search-box svg { position: absolute; inset-inline-start: 14px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--ink-soft); }
    .search-box input {
      width: 100%; padding: 11px 16px 11px 16px; padding-inline-start: 40px; border-radius: 100px;
      border: 2px solid var(--line); background: #fff; font: inherit; font-size: 14px; outline: none;
      transition: border-color .2s var(--ease);
    }
    .search-box input:focus { border-color: var(--sky); }

    .filter-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
    .filter-chip {
      padding: 9px 18px; border-radius: 100px; background: #fff; border: 2px solid var(--line);
      font-weight: 700; font-size: 13.5px; color: var(--ink-soft); transition: all .2s var(--ease);
    }
    .filter-chip:hover { border-color: var(--sky); color: var(--sky); }
    .filter-chip.active { background: var(--grape); border-color: var(--grape); color: #fff; }

    /* ===================== Lullaby grid / player cards ===================== */
    .lull-grid-section { padding: 26px 0 60px; }
    .lull-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .lull-card {
      background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
      padding: 20px; box-shadow: var(--shadow-sm); transition: box-shadow .25s var(--ease), transform .25s var(--ease);
    }
    .lull-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .lull-card.hidden-item { display: none; }

    .lull-card-top { display: flex; align-items: center; gap: 14px; }
    .lull-thumb {
      flex-shrink: 0; width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center;
      justify-content: center; font-size: 26px; color: #fff;
    }
    .lull-card-info { flex: 1; min-width: 0; }
    .lull-card-info h3 { font-size: 16px; font-weight: 800; margin-bottom: 3px; }
    .lull-card-info .meta { font-size: 12px; color: var(--ink-soft); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
    .lull-tag {
      font-size: 10.5px; font-weight: 700; padding: 2px 9px; border-radius: 100px;
      background: var(--sky-100); color: var(--sky);
    }

    .fav-btn {
      flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
      color: var(--ink-soft); border: 1px solid var(--line); transition: all .2s var(--ease);
    }
    .fav-btn svg { width: 18px; height: 18px; }
    .fav-btn:hover { border-color: var(--berry); color: var(--berry); }
    .fav-btn.active { background: var(--berry-100); border-color: var(--berry); color: var(--berry); }
    .fav-btn.active svg { fill: currentColor; }

    .player-row { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
    .play-btn {
      flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--sun);
      color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 0 var(--sun-deep);
      transition: transform .15s var(--ease);
    }
    .play-btn:hover { transform: scale(1.05); }
    .play-btn:active { transform: scale(.96); }
    .play-btn svg { width: 18px; height: 18px; }
    .play-btn .icon-pause { display: none; }
    .play-btn.playing .icon-play { display: none; }
    .play-btn.playing .icon-pause { display: block; }

    .progress-wrap { flex: 1; }
    .progress-track {
      position: relative; height: 8px; border-radius: 100px; background: var(--canvas-2); cursor: pointer; overflow: hidden;
    }
    .progress-fill { position: absolute; inset-inline-start: 0; top: 0; bottom: 0; width: 0%; background: linear-gradient(90deg, var(--sun), var(--berry)); border-radius: 100px; }
    .progress-times { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-soft); margin-top: 6px; }

    .lull-card-actions { display: flex; align-items: center; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
    .lyrics-toggle {
      font-size: 12.5px; font-weight: 700; color: var(--grape); display: flex; align-items: center; gap: 6px;
    }
    .lyrics-toggle svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
    .lyrics-toggle.open svg { transform: rotate(180deg); }
    .lang-toggle { display: flex; gap: 4px; background: var(--canvas-2); border-radius: 100px; padding: 3px; margin-inline-start: auto; }
    .lang-toggle button {
      font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 100px; color: var(--ink-soft);
    }
    .lang-toggle button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

    .lyrics-panel {
      max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), margin-top .35s var(--ease);
      margin-top: 0; font-size: 13.5px; color: var(--ink-soft); line-height: 2;
    }
    .lyrics-panel.open { max-height: 340px; margin-top: 14px; overflow-y: auto; }
    .lyrics-panel .ly-block { display: none; padding: 14px 16px; background: var(--canvas); border-radius: var(--radius-sm); border: 1px solid var(--line); }
    .lyrics-panel .ly-block.show { display: block; }
    .lyrics-panel .ly-block p { margin-bottom: 4px; }

    .load-more-row { text-align: center; margin-top: 30px; }

    @media (max-width: 860px) {
      .lull-hero-grid { grid-template-columns: 1fr; }
      .moon-card { max-width: 460px; }
      .lull-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 560px) {
      .filter-head { align-items: stretch; }
      .search-box { max-width: none; }
      .lull-card-top { flex-wrap: wrap; }
    }

    /* ===================== Why lullabies section ===================== */
    .why-section { padding: 20px 0 60px; }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
    .why-card {
      background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px;
      box-shadow: var(--shadow-sm);
    }
    .why-card .ico {
      width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
      font-size: 22px; margin-bottom: 16px;
    }
    .why-card h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
    .why-card p { font-size: 14px; color: var(--ink-soft); }
    .section-head { text-align: center; max-width: 620px; margin: 0 auto; }
    .section-head h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 800; margin-bottom: 12px; }
    .section-head p { color: var(--ink-soft); font-size: 15.5px; }

    @media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }

    /* ===================== FAQ ===================== */
    .faq-section { padding: 20px 0 60px; }
    .faq-list { max-width: 780px; margin: 32px auto 0; display: flex; flex-direction: column; gap: 12px; }
    .faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px 22px; }
    .faq-q {
      font-weight: 700; font-size: 15px; cursor: pointer; list-style: none;
      display: flex; align-items: center; justify-content: space-between; gap: 10px;
    }
    .faq-q::-webkit-details-marker { display: none; }
    .faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s var(--ease); color: var(--ink-soft); }
    details[open] .faq-q svg { transform: rotate(45deg); }
    .faq-a { margin-top: 12px; color: var(--ink-soft); font-size: 14.5px; }

    /* ===================== CTA banner ===================== */
    .cta-banner {
      padding: 60px 0; text-align: center; color: #fff;
      background: radial-gradient(ellipse 70% 90% at 50% 0%, rgba(255,255,255,.12), transparent 60%), linear-gradient(135deg, var(--grape), var(--sky));
    }
    .cta-inner { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .cta-mascot { width: 100px; height: 100px; margin-bottom: 14px; filter: drop-shadow(0 8px 20px rgba(0,0,0,.2)); }
    .cta-banner h2 { font-size: clamp(24px, 3.4vw, 32px); margin-bottom: 12px; }
    .cta-banner p { opacity: .92; margin-bottom: 26px; font-size: 15.5px; }
    .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 22px; }
    .cta-perks { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; font-size: 13px; opacity: .85; }

    /* ===================== Footer (shared) ===================== */
    footer { padding: 56px 0 28px; border-top: 1px solid var(--line); background: var(--white); }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
    .footer-brand p { color: var(--ink-soft); font-size: 14px; margin-top: 12px; max-width: 280px; }
    .footer-brand .brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 24px; color: var(--ink); }
    .footer-brand .brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; }
    .footer-col b { font-family: 'Baloo Bhaijaan 2'; font-size: 15px; display: block; margin-bottom: 14px; }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col a { font-size: 14px; color: var(--ink-soft); transition: color .2s; }
    .footer-col a:hover { color: var(--sky); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between; padding-top: 22px;
      border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); flex-wrap: wrap; gap: 12px;
    }
    @media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

    /* ===================== Toast ===================== */
    .toast {
      position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
      background: var(--ink); color: #fff; padding: 12px 22px; border-radius: 100px; font-size: 13.5px;
      font-weight: 600; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: all .3s var(--ease);
      z-index: 200; display: flex; align-items: center; gap: 8px; white-space: nowrap;
    }
    .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
  
.moon-card__title { text-align: center; }
.moon-card__desc { text-align: center; }
.tw-label__icon { width: 14px; height: 14px; color: #fff; }
.ico--grape { background: var(--grape-100); color: var(--grape); }
.ico--sky { background: var(--sky-100); color: var(--sky); }
.ico--berry { background: var(--berry-100); color: var(--berry); }
.chip-link { color: var(--sun-deep); font-weight: 700; }
.lull-card.hidden-item { display: none !important; }
