    /* ═══════════════════════════════════════════════════════════
       Dr. Vishal Sharma — Author Website Stylesheet
       Theme : Elegant Dark | Accent #67fb94 | Font: Nunito
    ═══════════════════════════════════════════════════════════ */
    
    /* ─── Variables ──────────────────────────────────────────── */
    :root {
      --accent:    #67fb94;
      --accent2:   rgba(103, 251, 148, 0.12);
      --bg:        #080a0e;
      --bg2:       #0d1017;
      --bg3:       #12171f;
      --white:     #ffffff;
      --muted:     rgba(255, 255, 255, 0.5);
      --muted2:    rgba(255, 255, 255, 0.22);
      --nav-h:     70px;
      --font:      'Nunito', sans-serif;
      --radius:    10px;
    }
    
    /* ─── Reset ──────────────────────────────────────────────── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }bcl-status coming
    body {
      font-family:103,251,148,0.12;
      background: 103,251,148,0.12;
      color: var(--white);
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    
    /* ─── Scrollbar ──────────────────────────────────────────── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
    
    
    /* ════════════════════════════════════════════════════════════
       HEADER
    ════════════════════════════════════════════════════════════ */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-h);
      background: rgba(8, 10, 14, 0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: background 0.4s, border-color 0.4s;
    }
    header.scrolled {
      background: rgba(8, 10, 14, 0.96);
      border-color: rgba(103, 251, 148, 0.08);
    }
    
    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      height: 100%;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    
    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      cursor: pointer;
    }
    .logo img {
      height: 38px;
      width: auto;
      object-fit: contain;
    }
    .logo-text {
      font-family: var(--font);
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: -0.2px;
      color: var(--white);
      white-space: nowrap;
    }
    .logo-text em {
      font-style: normal;
      color: var(--accent);
    }
    
    /* Nav links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font);
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--muted);
      padding: 7px 15px;
      border-radius: 7px;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
      letter-spacing: 0.2px;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--accent);
      background: rgba(103, 251, 148, 0.07);
    }
    
    /* CTA */
    .nav-cta {
      flex-shrink: 0;
      padding: 9px 20px;
      background: var(--accent);
      color: var(--bg);
      border: none;
      border-radius: 7px;
      font-family: var(--font);
      font-size: 0.85rem;
      font-weight: 800;
      cursor: pointer;
      letter-spacing: 0.2px;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      white-space: nowrap;
    }
    .nav-cta:hover {
      background: #50f080;
      transform: translateY(-1px);
      box-shadow: 0 6px 22px rgba(103, 251, 148, 0.3);
    }
    
    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 34px;
      height: 34px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 1100;
    }
    .hamburger span {
      display: block;
      height: 2px;
      width: 100%;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    
    /* Mobile drawer */
    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h); left: 0; right: 0;
      background: rgba(8, 10, 14, 0.98);
      backdrop-filter: blur(24px);
      padding: 20px 28px 28px;
      border-bottom: 1px solid rgba(103, 251, 148, 0.08);
      z-index: 999;
      opacity: 0;
      transform: translateY(-12px);
      transition: opacity 0.3s, transform 0.3s;
    }
    .mobile-menu.open {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }
    .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
    .mobile-menu ul a {
      display: block;
      font-family: var(--font);
      font-size: 0.97rem;
      font-weight: 700;
      color: var(--muted);
      padding: 11px 14px;
      border-radius: 7px;
      transition: color 0.2s, background 0.2s;
    }
    .mobile-menu ul a:hover { color: var(--accent); background: rgba(103, 251, 148, 0.06); }
    .mobile-cta {
      display: inline-block;
      margin-top: 16px;
      padding: 11px 26px;
      background: var(--accent);
      color: var(--bg);
      border-radius: 7px;
      font-family: var(--font);
      font-weight: 800;
      font-size: 0.88rem;
      transition: background 0.2s;
      border: none;
      cursor: pointer;
    }
    .mobile-cta:hover { background: #50f080; }
    
    
    /* ═══════════════════════════════════════════════════════════
       HERO SECTION
    ═══════════════════════════════════════════════════════════ */
    #home {
      position: relative;
      min-height: 100vh;
      padding-top: var(--nav-h);
      background: var(--bg);
      overflow: hidden;
      display: flex;
      align-items: stretch;
    }
    
    .hero-texture {
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(ellipse 80% 70% at 75% 50%, rgba(103,251,148,0.04) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(103,251,148,0.025) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }
    
    .ink-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
      opacity: 0.5;
    }
    
    .lit-deco.deco-quote {
      position: absolute;
      top: calc(var(--nav-h) + 20px);
      left: -10px;
      font-family: var(--font);
      font-size: clamp(16rem, 28vw, 28rem);
      line-height: 1;
      color: rgba(103,251,148,0.025);
      user-select: none;
      pointer-events: none;
      z-index: 0;
      font-style: italic;
    }
    
    .lit-deco.deco-lines {
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 18px;
      padding-right: 28px;
      pointer-events: none;
      z-index: 2;
      opacity: 0.18;
    }
    .deco-lines span {
      display: block;
      height: 1px;
      background: linear-gradient(to left, rgba(103,251,148,0.6), transparent);
      animation: lineGrow 3s ease-in-out infinite alternate;
    }
    .deco-lines span:nth-child(1) { width: 80px; animation-delay: 0s; }
    .deco-lines span:nth-child(2) { width: 56px; animation-delay: 0.3s; }
    .deco-lines span:nth-child(3) { width: 96px; animation-delay: 0.6s; }
    .deco-lines span:nth-child(4) { width: 44px; animation-delay: 0.9s; }
    .deco-lines span:nth-child(5) { width: 68px; animation-delay: 1.2s; }
    @keyframes lineGrow {
      from { transform: scaleX(0.5); opacity: 0.5; }
      to   { transform: scaleX(1); opacity: 1; }
    }
    
    /* ── Inner layout ── */
    .hero-inner {
      position: relative;
      z-index: 3;
      width: 100%;
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 36px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 0;
      min-height: calc(100vh - var(--nav-h));
    }
    
    /* ── LEFT: Text ── */
    .hero-text {
      padding: 60px 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    
    .eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
      opacity: 0;
      animation: slideUp 0.6s 0.2s ease forwards;
    }
    .eyebrow-line {
      display: inline-block;
      width: 28px;
      height: 1.5px;
      background: var(--accent);
      border-radius: 2px;
      flex-shrink: 0;
    }
    
    .hero-name {
      font-family: var(--font);
      font-size: clamp(3.4rem, 5.5vw, 5.6rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -2px;
      color: var(--white);
      margin-bottom: 18px;
      opacity: 0;
      animation: slideUp 0.65s 0.32s ease forwards;
    }
    .hero-name em {
      font-style: italic;
      font-family: var(--font);
      color: var(--accent);
    }
    
    .hero-cred {
      font-family: var(--font);
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.3px;
      margin-bottom: 28px;
      opacity: 0;
      animation: slideUp 0.65s 0.42s ease forwards;
      line-height: 1.6;
    }
    .hero-cred .sep { color: rgba(103,251,148,0.35); margin: 0 4px; }
    
    .hero-desc {
      font-family: var(--font);
      font-size: clamp(0.92rem, 1.2vw, 1.05rem);
      font-weight: 400;
      line-height: 1.9;
      color: rgba(255,255,255,0.58);
      max-width: 460px;
      margin-bottom: 34px;
      opacity: 0;
      animation: slideUp 0.65s 0.52s ease forwards;
    }
    
    /* Book hint pill */
    .hero-book-hint {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      padding: 9px 16px;
      background: rgba(103,251,148,0.06);
      border: 1px solid rgba(103,251,148,0.14);
      border-radius: 8px;
      margin-bottom: 36px;
      font-family: var(--font);
      font-size: 0.8rem;
      color: rgba(255,255,255,0.65);
      opacity: 0;
      animation: slideUp 0.65s 0.6s ease forwards;
      width: fit-content;
    }
    .hero-book-hint .book-icon {
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }
    .hero-book-hint strong { color: var(--accent); font-weight: 700; }
    
    /* CTA Buttons */
    .hero-actions {
      display: flex;
      gap: 13px;
      flex-wrap: wrap;
      margin-bottom: 48px;
      opacity: 0;
      animation: slideUp 0.65s 0.68s ease forwards;
    }
    
    .btn-primary {
      padding: 13px 32px;
      background: var(--accent);
      color: var(--bg);
      border: none;
      border-radius: var(--radius);
      font-family: var(--font);
      font-size: 0.88rem;
      font-weight: 800;
      cursor: pointer;
      letter-spacing: 0.2px;
      transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
    }
    .btn-primary:hover {
      background: #50f080;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(103,251,148,0.28);
    }
    
    .btn-outline {
      padding: 13px 32px;
      background: transparent;
      color: rgba(255,255,255,0.72);
      border: 1.5px solid rgba(255,255,255,0.14);
      border-radius: var(--radius);
      font-family: var(--font);
      font-size: 0.88rem;
      font-weight: 700;
      cursor: pointer;
      transition: border-color 0.22s, color 0.22s, transform 0.22s;
    }
    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }
    
    /* Scroll cue */
    .scroll-cue {
      display: flex;
      align-items: center;
      gap: 10px;
      opacity: 0;
      animation: fadeIn 0.7s 1.2s ease forwards;
    }
    .mouse {
      width: 18px; height: 28px;
      border: 1.5px solid rgba(103,251,148,0.3);
      border-radius: 9px;
      display: flex;
      justify-content: center;
      padding-top: 4px;
    }
    .wheel {
      width: 2px; height: 5px;
      background: var(--accent);
      border-radius: 2px;
      animation: wheelScroll 2s ease-in-out infinite;
    }
    @keyframes wheelScroll {
      0%,100% { transform: translateY(0); opacity: 1; }
      50%      { transform: translateY(6px); opacity: 0.3; }
    }
    .scroll-cue span {
      font-family: var(--font);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--muted);
    }
    
    /* ════════════════════════════════════════════════════════════
       HERO VISUAL — RIGHT COLUMN  (IMAGE SIZE FIX)
    ════════════════════════════════════════════════════════════ */
    
    /* ── RIGHT: Visual column ── */
    .hero-visual {
      position: relative;
      height: calc(100vh - var(--nav-h));
      display: flex;
      align-items: flex-end;
      justify-content: center;
      overflow: hidden;
    }
    
    /* ── Image frame ── */
    .img-frame {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100%;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      z-index: 2;
    }
    
    /* ── The actual photo ── */
    .img-frame img {
      width: 88%;
      max-width: 520px;
      height: 2550px;
      max-height: 92%;
      object-fit: contain;
      object-position: bottom center;
      display: block;
      filter: drop-shadow(-18px 0 36px rgba(8, 10, 14, 0.85));
      opacity: 0;
      animation: imgReveal 1s 0.5s ease forwards;
    }
    
    /* ── Bottom fade ── */
    .img-fade-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 14%;
      background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
      z-index: 3;
      pointer-events: none;
    }
    
    /* ── Left-side blend so image doesn't hard-cut into text ── */
    .hero-visual::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 60px;
      height: 100%;
      background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
      z-index: 4;
      pointer-events: none;
    }
    
    /* img-fade-sides kept for HTML compatibility but handled above */
    .img-fade-sides { display: none; }
    
    @keyframes imgReveal {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    
    /* ── Visual BG orbs / rings / particles (unchanged) ── */
    .visual-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
    .vbg-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
    }
    .orb-main {
      width: 55%; height: 65%;
      background: radial-gradient(circle, rgba(103,251,148,0.07) 0%, transparent 70%);
      bottom: -10%; left: 10%;
      animation: orbPulse 8s ease-in-out infinite alternate;
    }
    .orb-secondary {
      width: 40%; height: 45%;
      background: radial-gradient(circle, rgba(103,251,148,0.045) 0%, transparent 70%);
      top: 5%; right: 5%;
      animation: orbPulse 11s 2s ease-in-out infinite alternate;
    }
    .orb-accent {
      width: 25%; height: 30%;
      background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
      top: 40%; left: 5%;
      filter: blur(60px);
      animation: orbPulse 9s 1s ease-in-out infinite alternate;
    }
    @keyframes orbPulse {
      from { opacity: 0.5; transform: scale(0.9); }
      to   { opacity: 1;   transform: scale(1.1); }
    }
    
    .vbg-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(103,251,148,0.06);
      bottom: -20%; left: 50%;
      transform: translateX(-50%);
    }
    .ring-1 { width: 500px; height: 500px; animation: ringPulse 7s ease-in-out infinite; }
    .ring-2 { width: 380px; height: 380px; animation: ringPulse 9s 1.5s ease-in-out infinite; }
    .ring-3 { width: 260px; height: 260px; animation: ringPulse 11s 3s ease-in-out infinite; }
    @keyframes ringPulse {
      0%,100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
      50%      { opacity: 0.8; transform: translateX(-50%) scale(1.04); }
    }
    
    .vbg-scan {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(103,251,148,0.015) 50%,
        transparent 100%
      );
      animation: scanMove 6s linear infinite;
    }
    @keyframes scanMove {
      from { transform: translateY(-100%); }
      to   { transform: translateY(100%); }
    }
    
    .vbg-dots-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0.3;
    }
    
    .vbg-arcs {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }
    
    .vbg-particles { position: absolute; inset: 0; pointer-events: none; }
    .vp {
      position: absolute;
      width: 3px; height: 3px;
      border-radius: 50%;
      background: var(--accent);
      opacity: 0;
      animation: vpFloat 8s ease-in-out infinite;
    }
    .vp1  { top: 15%; left: 20%; animation-delay: 0s; }
    .vp2  { top: 30%; left: 75%; animation-delay: 1s; }
    .vp3  { top: 50%; left: 10%; animation-delay: 2s; }
    .vp4  { top: 65%; left: 85%; animation-delay: 0.5s; }
    .vp5  { top: 20%; left: 50%; animation-delay: 1.5s; }
    .vp6  { top: 80%; left: 40%; animation-delay: 3s; }
    .vp7  { top: 40%; left: 60%; animation-delay: 2.5s; }
    .vp8  { top: 70%; left: 25%; animation-delay: 0.8s; }
    @keyframes vpFloat {
      0%   { opacity: 0; transform: translateY(0) scale(0.5); }
      30%  { opacity: 0.6; }
      60%  { opacity: 0.3; transform: translateY(-20px) scale(1); }
      100% { opacity: 0; transform: translateY(-40px) scale(0.5); }
    }
    
    .vbg-data-chip {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      background: rgba(8,10,14,0.85);
      border: 1px solid rgba(103,251,148,0.18);
      border-radius: 7px;
      backdrop-filter: blur(12px);
      font-family: var(--font);
      font-size: 0.62rem;
      font-weight: 700;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.5px;
      z-index: 3;
    }
    .chip-tl { top: 12%; left: 5%; animation: chipFloat 4s ease-in-out infinite alternate; }
    .chip-tr { top: 18%; right: 3%; animation: chipFloat 5s 1s ease-in-out infinite alternate; }
    @keyframes chipFloat {
      from { transform: translateY(0); }
      to   { transform: translateY(-6px); }
    }
    .dc-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: dcPulse 2s ease-in-out infinite;
    }
    @keyframes dcPulse {
      0%,100% { box-shadow: 0 0 0 2px rgba(103,251,148,0.2); }
      50%      { box-shadow: 0 0 0 5px rgba(103,251,148,0); }
    }
    
    /* ── Two floating accent chips ── */
    .accent-chips {
      position: absolute;
      bottom: 16%;
      left: 4%;
      z-index: 5;
      display: flex;
      gap: 10px;
      opacity: 0;
      animation: chipIn 0.7s 1s ease forwards, chipFloat 4s 1.7s ease-in-out infinite alternate;
    }
    @keyframes chipIn {
      from { opacity: 0; transform: translateX(-12px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    
    .accent-chip {
      background: rgba(8,10,14,0.88);
      border: 1px solid rgba(103,251,148,0.22);
      border-radius: 12px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
    .chip-num {
      font-family: var(--font);
      font-size: 1.7rem;
      font-weight: 900;
      color: var(--accent);
      line-height: 1;
    }
    .chip-label {
      font-family: var(--font);
      font-size: 0.68rem;
      font-weight: 700;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.5px;
      line-height: 1.55;
      text-transform: uppercase;
    }
    
    /* Corner brackets */
    .corner-bracket {
      position: absolute;
      z-index: 5;
      opacity: 0.5;
    }
    .corner-bracket.tl { top: 14px; left: 10px; }
    .corner-bracket.br { bottom: 12%; right: 6%; }
    
    
    /* ═══════════════════════════════════════════════════════════
       PLACEHOLDER SECTIONS
    ═══════════════════════════════════════════════════════════ */
    .ph-section {
      min-height: 60vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      border-top: 1px solid rgba(255,255,255,0.04);
      padding: 60px 32px;
      text-align: center;
    }
    .ph-section.alt { background: var(--bg2); }
    .ph-tag {
      padding: 4px 14px;
      background: rgba(103,251,148,0.07);
      border: 1px solid rgba(103,251,148,0.16);
      border-radius: 5px;
      font-family: var(--font);
      font-size: 0.68rem;
      font-weight: 800;
      color: var(--accent);
      letter-spacing: 2.5px;
      text-transform: uppercase;
    }
    .ph-section h2 {
      font-family: var(--font);
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 900;
      letter-spacing: -0.5px;
    }
    .ph-section h2 em { font-style: italic; color: var(--accent); }
    .ph-section p {
      font-family: var(--font);
      font-size: 0.92rem;
      color: var(--muted);
      font-weight: 500;
    }
    
    
    /* ═══════════════════════════════════════════════════════════
       FEEDBACK MODAL
    ═══════════════════════════════════════════════════════════ */
    .modal-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.82);
      backdrop-filter: blur(12px);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.28s;
    }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .modal {
      background: var(--bg3);
      border: 1px solid rgba(103,251,148,0.1);
      border-radius: 14px;
      padding: 40px;
      max-width: 440px;
      width: 100%;
      position: relative;
      transform: translateY(18px) scale(0.97);
      transition: transform 0.28s;
      box-shadow: 0 20px 70px rgba(0,0,0,0.75);
    }
    .modal-overlay.open .modal { transform: translateY(0) scale(1); }
    .modal h3 {
      font-family: var(--font);
      font-size: 1.5rem;
      font-weight: 900;
      margin-bottom: 8px;
    }
    .modal h3 em { font-style: italic; color: var(--accent); }
    .modal > p {
      font-family: var(--font);
      font-size: 0.86rem;
      color: var(--muted);
      margin-bottom: 26px;
      line-height: 1.65;
    }
    .modal label {
      display: block;
      font-family: var(--font);
      font-size: 0.73rem;
      font-weight: 700;
      color: rgba(255,255,255,0.55);
      margin-bottom: 6px;
      letter-spacing: 0.4px;
    }
    .modal input,
    .modal textarea {
      width: 100%;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 8px;
      padding: 10px 13px;
      font-family: var(--font);
      font-size: 0.86rem;
      color: var(--white);
      outline: none;
      margin-bottom: 16px;
      transition: border-color 0.2s;
      resize: none;
    }
    .modal input:focus,
    .modal textarea:focus { border-color: rgba(103,251,148,0.4); }
    .modal textarea { min-height: 96px; }
    .modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 4px; }
    .btn-cancel {
      padding: 9px 18px;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 7px;
      color: var(--muted);
      font-family: var(--font);
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-cancel:hover { border-color: var(--white); color: var(--white); }
    .btn-send {
      padding: 9px 22px;
      background: var(--accent);
      color: var(--bg);
      border: none;
      border-radius: 7px;
      font-family: var(--font);
      font-size: 0.82rem;
      font-weight: 800;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-send:hover { background: #50f080; transform: translateY(-1px); }
    .modal-x {
      position: absolute; top: 15px; right: 15px;
      background: none; border: none;
      color: var(--muted); font-size: 1.1rem;
      cursor: pointer; line-height: 1;
      transition: color 0.2s;
    }
    .modal-x:hover { color: var(--white); }
    
    /* ═══════════════════════════════════════════════════════════
       KEYFRAMES
    ═══════════════════════════════════════════════════════════ */
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    
    
    /* ═══════════════════════════════════════════════════════════
       RESPONSIVE — HERO
    ═══════════════════════════════════════════════════════════ */
    
    /* Tablet landscape */
    @media (max-width: 1024px) {
      .hero-inner {
        grid-template-columns: 55% 45%;
        padding: 0 28px;
      }
    }
    
    /* Tablet portrait + mobile */
    @media (max-width: 860px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
    
      .hero-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        min-height: auto;
        padding: 0;
        align-items: start;
        gap: 0;
      }
    
      .hero-text {
        padding: 48px 28px 36px;
        order: 1;
        text-align: center;
        align-items: center;
      }
    
      .eyebrow { justify-content: center; }
      .hero-desc { text-align: center; }
    
      .hero-visual {
        order: 2;
        height: 75vw;
        min-height: 320px;
        max-height: 540px;
        width: 100%;
        overflow: hidden;
      }
    
      .img-frame {
        height: 100%;
      }
    
      /* Remove left-side blend on mobile */
      .hero-visual::before { display: none; }
    
      .img-frame img {
        width: auto;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: bottom center;
        filter: none;
      }
    
      .accent-chips {
        bottom: 6%;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
      }
      .corner-bracket.tl { top: 8px; left: 8px; }
      .corner-bracket.br { bottom: 8%; right: 4%; }
    
      #home { display: block; }
    }
    
    /* Mobile */
    @media (max-width: 600px) {
      :root { --nav-h: 60px; }
      .nav-inner { padding: 0 18px; }
      .hero-text { padding: 40px 20px 28px; }
      .hero-name { font-size: 3rem; letter-spacing: -1.5px; }
    
      .hero-visual {
        height: 88vw;
        min-height: 280px;
        max-height: 460px;
      }
    
      .accent-chips { display: none; }
      .lit-deco.deco-quote { font-size: 12rem; }
      .lit-deco.deco-lines { display: none; }
      .modal { padding: 28px 20px; }
    }
    
    @media (max-width: 420px) {
      .hero-name { font-size: 2.6rem; }
      .hero-actions { flex-direction: column; width: 100%; }
      .btn-primary, .btn-outline { width: 100%; text-align: center; }
    }
    
    /* ═══════════════════════════════════════════════════════════
       ABOUT SECTION
    ═══════════════════════════════════════════════════════════ */
    
    .anim-fade-up {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.7s ease, transform 0.7s ease;
      transition-delay: var(--d, 0s);
    }
    .anim-fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .about-section {
      position: relative;
      background: var(--bg);
      padding: 100px 0 110px;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.04);
    }
    
    .about-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      opacity: 0.45;
    }
    
    .about-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
    }
    .abg-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
    }
    .abg-g1 {
      width: 580px; height: 580px;
      background: radial-gradient(circle, rgba(103,251,148,0.05) 0%, transparent 70%);
      top: -140px; right: -60px;
      animation: aboutGlow 9s ease-in-out infinite alternate;
    }
    .abg-g2 {
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(103,251,148,0.03) 0%, transparent 70%);
      bottom: -60px; left: -80px;
      animation: aboutGlow 11s 2s ease-in-out infinite alternate;
    }
    @keyframes aboutGlow {
      from { opacity: 0.5; transform: scale(0.9); }
      to   { opacity: 1;   transform: scale(1.1); }
    }
    
    .abg-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(103,251,148,0.055) 1px, transparent 1px);
      background-size: 38px 38px;
      mask-image: radial-gradient(ellipse 70% 70% at 55% 45%, black 0%, transparent 68%);
      -webkit-mask-image: radial-gradient(ellipse 70% 70% at 55% 45%, black 0%, transparent 68%);
    }
    
    .about-inner {
      position: relative;
      z-index: 2;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 48px;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: center;
    }
    
    .about-content {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    
    .section-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
    }
    
    .about-heading {
      font-family: var(--font);
      font-size: clamp(2.2rem, 3.4vw, 3.6rem);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -1.5px;
      color: var(--white);
      margin-bottom: 28px;
    }
    .about-heading em {
      font-style: italic;
      color: var(--accent);
    }
    
    .about-stats {
      display: flex;
      align-items: center;
      gap: 0;
      padding: 18px 22px;
      background: rgba(103,251,148,0.04);
      border: 1px solid rgba(103,251,148,0.1);
      border-radius: 12px;
      margin-bottom: 26px;
      backdrop-filter: blur(8px);
    }
    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      flex: 1;
      text-align: center;
    }
    .stat-num {
      font-family: var(--font);
      font-size: 2rem;
      font-weight: 900;
      color: var(--accent);
      line-height: 1;
      display: inline-block;
    }
    .stat-plus {
      font-family: var(--font);
      font-size: 1.3rem;
      font-weight: 900;
      color: var(--accent);
      line-height: 1;
      vertical-align: top;
    }
    .stat-label {
      font-family: var(--font);
      font-size: 0.63rem;
      font-weight: 700;
      color: var(--muted);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .stat-sep {
      width: 1px;
      height: 38px;
      background: rgba(255,255,255,0.08);
      flex-shrink: 0;
    }
    
    .about-trail {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 24px;
    }
    .trail-item {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .trail-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 3px rgba(103,251,148,0.14);
      flex-shrink: 0;
    }
    .trail-body {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 9px 15px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 8px;
      flex: 1;
      transition: background 0.25s, border-color 0.25s;
    }
    .trail-body:hover {
      background: rgba(103,251,148,0.05);
      border-color: rgba(103,251,148,0.18);
    }
    .trail-inst {
      font-family: var(--font);
      font-size: 0.84rem;
      font-weight: 800;
      color: var(--white);
      white-space: nowrap;
    }
    .trail-deg {
      font-family: var(--font);
      font-size: 0.74rem;
      font-weight: 500;
      color: var(--muted);
    }
    .trail-line {
      width: 1px;
      height: 11px;
      background: rgba(103,251,148,0.2);
      margin-left: 4px;
    }
    
    .about-bio { margin-bottom: 22px; }
    .about-bio p {
      font-family: var(--font);
      font-size: 0.91rem;
      line-height: 1.88;
      color: rgba(255,255,255,0.56);
      font-weight: 400;
      margin-bottom: 12px;
    }
    .about-bio p strong { color: rgba(255,255,255,0.82); font-weight: 700; }
    .about-bio p em     { color: var(--accent); font-style: italic; }
    
    .bio-extra {
      max-height: 0;
      overflow: hidden;
      margin-bottom: 0 !important;
      transition: max-height 0.55s ease;
    }
    .bio-extra.open {
      max-height: 700px;
      margin-bottom: 12px !important;
    }
    
    .bio-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font);
      font-size: 0.77rem;
      font-weight: 700;
      color: var(--accent);
      padding: 0;
      margin-bottom: 20px;
      transition: opacity 0.2s;
    }
    .bio-toggle:hover { opacity: 0.72; }
    .bio-toggle svg { transition: transform 0.3s ease; }
    .bio-toggle.open svg { transform: rotate(180deg); }
    
    .about-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 24px;
    }
    .atag {
      padding: 5px 12px;
      background: rgba(103,251,148,0.05);
      border: 1px solid rgba(103,251,148,0.13);
      border-radius: 6px;
      font-family: var(--font);
      font-size: 0.71rem;
      font-weight: 700;
      color: rgba(255,255,255,0.68);
      transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.2s;
      cursor: default;
    }
    .atag:hover {
      background: rgba(103,251,148,0.1);
      border-color: rgba(103,251,148,0.3);
      color: var(--accent);
      transform: translateY(-2px);
    }
    
    .about-actions {
      display: flex;
      align-items: center;
      gap: 13px;
      flex-wrap: wrap;
    }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: var(--font);
      font-size: 0.85rem;
      font-weight: 700;
      color: rgba(255,255,255,0.62);
      border: 1.5px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 12px 22px;
      transition: color 0.22s, border-color 0.22s, transform 0.22s;
      text-decoration: none;
    }
    .btn-ghost:hover {
      color: var(--accent);
      border-color: rgba(103,251,148,0.35);
      transform: translateY(-2px);
    }
    
    .about-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .av-rings {
      position: absolute;
      inset: -60px;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      z-index: 0;
    }
    .av-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(103,251,148,0.07);
      animation: avRingPulse 7s ease-in-out infinite;
    }
    .av-r1 { width: 380px; height: 380px; animation-delay: 0s; }
    .av-r2 { width: 520px; height: 520px; animation-delay: 2.5s;
              border-color: rgba(103,251,148,0.04); }
    @keyframes avRingPulse {
      0%,100% { transform: scale(1);    opacity: 0.55; }
      50%      { transform: scale(1.05); opacity: 1;    }
    }
    
    .av-card {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 420px;
      border-radius: 20px;
      overflow: visible;
    }
    
    .av-card-img {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(103,251,148,0.12);
      box-shadow:
        0 24px 72px rgba(0,0,0,0.5),
        0 0 0 1px rgba(103,251,148,0.05),
        inset 0 1px 0 rgba(255,255,255,0.04);
    }
    
    .av-card-img img {
      width: 100%;
      height: auto;
      max-height: 520px;
      object-fit: cover;
      object-position: top center;
      display: block;
      filter: saturate(0.88) brightness(0.94);
      transition: filter 0.4s ease, transform 0.5s ease;
    }
    .av-card-img:hover img {
      filter: saturate(1.05) brightness(1);
      transform: scale(1.02);
    }
    
    .av-card-fade {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 28%;
      background: linear-gradient(to top, rgba(8,10,14,0.65) 0%, transparent 100%);
      pointer-events: none;
      z-index: 1;
    }
    
    .av-corner { position: absolute; z-index: 3; }
    .av-c-tl   { top: -6px;    left: -6px; }
    .av-c-br   { bottom: -6px; right: -6px; }
    
    .av-badge {
      position: absolute;
      bottom: 24px;
      left: -18px;
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      background: rgba(8,10,14,0.93);
      border: 1px solid rgba(103,251,148,0.22);
      border-radius: 12px;
      backdrop-filter: blur(16px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.45);
      animation: avFloat 4s 0.5s ease-in-out infinite alternate;
    }
    @keyframes avFloat {
      from { transform: translateY(0); }
      to   { transform: translateY(-8px); }
    }
    .av-badge-icon {
      width: 32px; height: 32px;
      background: rgba(103,251,148,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .av-badge-text { display: flex; flex-direction: column; }
    .av-badge-text strong {
      font-family: var(--font);
      font-size: 0.78rem;
      font-weight: 800;
      color: var(--white);
    }
    .av-badge-text span {
      font-family: var(--font);
      font-size: 0.64rem;
      font-weight: 600;
      color: var(--accent);
    }
    
    .av-rtag {
      position: absolute;
      top: 0px;
      right: -14px;
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      background: rgba(8,10,14,0.9);
      border: 1px solid rgba(103,251,148,0.15);
      border-radius: 8px;
      backdrop-filter: blur(14px);
      font-family: var(--font);
      font-size: 0.67rem;
      font-weight: 700;
      color: rgba(255,255,255,0.75);
      animation: avFloat 5s 1s ease-in-out infinite alternate;
    }
    .rtag-pulse {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
      animation: rtPulse 2s ease-in-out infinite;
    }
    @keyframes rtPulse {
      0%,100% { box-shadow: 0 0 0 2px rgba(103,251,148,0.25); }
      50%      { box-shadow: 0 0 0 6px rgba(103,251,148,0);    }
    }
    
    .av-ptag {
      position: absolute;
      bottom: 100px;
      right: -14px;
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 7px 12px;
      background: rgba(8,10,14,0.88);
      border: 1px solid rgba(103,251,148,0.12);
      border-radius: 7px;
      backdrop-filter: blur(14px);
      font-family: var(--font);
      font-size: 0.65rem;
      font-weight: 700;
      color: rgba(255,255,255,0.65);
      animation: avFloat 6s 1.8s ease-in-out infinite alternate;
    }
    
    /* About Responsive */
    @media (min-width: 1400px) {
      .about-inner {
        grid-template-columns: 1fr 460px;
        padding: 0 64px;
      }
    }
    @media (max-width: 1140px) {
      .about-inner {
        grid-template-columns: 1fr 360px;
        gap: 48px;
        padding: 0 36px;
      }
      .av-card-img img { max-height: 460px; }
      .av-rtag  { right: -4px; }
      .av-ptag  { right: -4px; }
      .av-badge { left: -8px; }
    }
    @media (max-width: 900px) {
      .about-section { padding: 72px 0 80px; }
      .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 28px;
      }
      .about-visual {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
      }
      .av-card { max-width: 100%; }
      .av-card-img img { max-height: 400px; }
      .av-rtag  { top: -10px; right: 0; }
      .av-ptag  { bottom: 80px; right: 0; }
      .av-badge { bottom: 16px; left: 0; }
      .av-r1 { width: 280px; height: 280px; }
      .av-r2 { width: 380px; height: 380px; }
    }
    @media (max-width: 600px) {
      .about-section { padding: 56px 0 64px; }
      .about-inner   { padding: 0 18px; gap: 36px; }
      .av-card-img img { max-height: 320px; }
      .about-stats { flex-wrap: wrap; padding: 14px 16px; }
      .stat-sep    { display: none; }
      .stat-item   { flex: 0 0 calc(33% - 6px); }
      .about-heading { font-size: 1.9rem; letter-spacing: -0.8px; }
      .about-actions { flex-direction: column; }
      .btn-primary, .btn-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
      }
      .av-ptag  { display: none; }
      .av-rtag  { top: -8px; right: 0; font-size: 0.62rem; padding: 6px 10px; }
      .av-badge { left: 4px; bottom: 10px; padding: 10px 14px; }
      .av-badge-text strong { font-size: 0.72rem; }
    }
    @media (max-width: 420px) {
      .about-heading { font-size: 1.7rem; }
      .av-card-img img { max-height: 280px; }
    }
    
    
    /* ═══════════════════════════════════════════════════════════
       BOOKS SECTION
    ═══════════════════════════════════════════════════════════ */
    
    .books-anim {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.75s ease, transform 0.75s ease;
      transition-delay: var(--bd, 0s);
    }
    .books-anim.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .books-section {
      position: relative;
      background: var(--bg2, #0d1017);
      padding: 110px 0 120px;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.04);
    }
    
    .books-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    .bbg-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(110px);
    }
    .bbg-g1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(103,251,148,0.055) 0%, transparent 70%);
      top: -140px; left: -80px;
      animation: bbgPulse 10s ease-in-out infinite alternate;
    }
    .bbg-g2 {
      width: 440px; height: 440px;
      background: radial-gradient(circle, rgba(103,251,148,0.035) 0%, transparent 70%);
      bottom: -80px; right: -60px;
      animation: bbgPulse 13s 3s ease-in-out infinite alternate;
    }
    @keyframes bbgPulse {
      from { opacity: 0.5; transform: scale(0.88); }
      to   { opacity: 1;   transform: scale(1.12); }
    }
    .bbg-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(103,251,148,0.05) 1px, transparent 1px);
      background-size: 40px 40px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 72%);
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 72%);
    }
    
    .books-inner {
      position: relative;
      z-index: 2;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 40px;
    }
    
    .books-header {
      text-align: center;
      margin-bottom: 72px;
    }
    
    .books-title {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: clamp(2.2rem, 3.8vw, 3.4rem);
      font-weight: 900;
      letter-spacing: -1.5px;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 16px;
    }
    .books-title em {
      font-style: italic;
      color: var(--accent, #67fb94);
    }
    .books-subtitle {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 1rem;
      font-weight: 400;
      color: rgba(255,255,255,0.48);
      line-height: 1.75;
      max-width: 520px;
      margin: 0 auto;
    }
    
    .books-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      justify-items: center;
    }
    
    .book-card {
      position: relative;
      width: 100%;
      max-width: 420px;
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      border: 1px solid rgba(103,251,148,0.1);
      box-shadow:
        0 20px 60px rgba(0,0,0,0.45),
        0 0 0 1px rgba(255,255,255,0.03);
      transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
    }
    .book-card:hover {
      border-color: rgba(103,251,148,0.28);
      box-shadow:
        0 32px 80px rgba(0,0,0,0.55),
        0 0 40px rgba(103,251,148,0.08);
      transform: translateY(-6px);
    }
    
    .sport-floats {
      position: absolute;
      inset: 0;
      z-index: 5;
      pointer-events: none;
      overflow: hidden;
    }
    .sport-float-icon {
      position: absolute;
      font-size: 1.4rem;
      opacity: 0;
      transform: translateY(20px) scale(0.6);
      transition: none;
      animation: none;
      pointer-events: none;
      user-select: none;
      filter: drop-shadow(0 2px 8px rgba(103,251,148,0.3));
    }
    .book-card:hover .sport-float-icon {
      animation: sportFloat var(--dur, 3s) var(--delay, 0s) ease-in-out infinite;
    }
    @keyframes sportFloat {
      0%   { opacity: 0;    transform: translateY(40px) scale(0.5) rotate(var(--rot, 0deg)); }
      15%  { opacity: 0.75; transform: translateY(20px) scale(0.85) rotate(calc(var(--rot, 0deg) + 5deg)); }
      50%  { opacity: 0.6;  transform: translateY(0px)  scale(1)    rotate(calc(var(--rot, 0deg) - 8deg)); }
      85%  { opacity: 0.7;  transform: translateY(-18px) scale(0.9) rotate(calc(var(--rot, 0deg) + 4deg)); }
      100% { opacity: 0;    transform: translateY(-40px) scale(0.5) rotate(var(--rot, 0deg)); }
    }
    
    .book-cover {
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 4.2;
      overflow: hidden;
      background: #0d1017;
    }
    .book-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform 0.5s ease, filter 0.5s ease;
    }
    .book-card:hover .book-cover img {
      transform: scale(1.06);
      filter: brightness(0.65) saturate(0.8);
    }
    
    .book-cover-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 16px 18px 14px;
      background: linear-gradient(to top, rgba(8,10,14,0.95) 0%, transparent 100%);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      z-index: 3;
      transition: opacity 0.35s;
    }
    .book-card:hover .book-cover-label { opacity: 0; }
    
    .bcl-genre {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.72rem;
      font-weight: 700;
      color: rgba(255,255,255,0.55);
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .bcl-status {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.66rem;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 5px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .bcl-status.published {
      background: rgba(103,251,148,0.12);
      color: var(--accent, #67fb94);
      border: 1px solid rgba(103,251,148,0.22);
    }
   .bcl-status.coming {
  background: rgba(103,251,148,0.12);
  color: var(--accent, #67fb94);
  border: 1px solid rgba(103,251,148,0.22);
}
    
    .hover-cue {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      opacity: 0;
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      transition: opacity 0.35s, transform 0.35s;
    }
    .hover-cue span {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent, #67fb94);
    }
    .book-card:hover .hover-cue {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    
    .book-drawer {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 10;
      background: rgba(10, 13, 19, 0.97);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-top: 1px solid rgba(103,251,148,0.15);
      transform: translateY(100%);
      opacity: 0;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                  opacity 0.35s ease;
      border-radius: 0 0 20px 20px;
    }
    .book-card:hover .book-drawer {
      transform: translateY(0);
      opacity: 1;
    }
    
    .drawer-inner {
      padding: 26px 24px 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    
    .drawer-tag {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.78rem;
      font-weight: 800;
      color: var(--accent, #67fb94);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    
    .drawer-desc {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.85rem;
      font-weight: 400;
      color: rgba(255,255,255,0.65);
      line-height: 1.75;
      margin: 0;
    }
    .drawer-desc--more {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.48);
    }
    .drawer-desc--center { text-align: center; }
    
    .drawer-meta {
      display: flex;
      gap: 0;
      padding: 12px 0;
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .dmeta-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 3px;
      align-items: center;
      text-align: center;
      padding: 0 8px;
    }
    .dmeta-item + .dmeta-item {
      border-left: 1px solid rgba(255,255,255,0.06);
    }
    .dmeta-label {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.62rem;
      font-weight: 700;
      color: rgba(255,255,255,0.32);
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .dmeta-val {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.78rem;
      font-weight: 800;
      color: rgba(255,255,255,0.82);
    }
    
    .drawer-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 12px 0;
      background: var(--accent, #67fb94);
      color: #080a0e;
      border: none;
      border-radius: 9px;
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.87rem;
      font-weight: 800;
      cursor: pointer;
      letter-spacing: 0.3px;
      transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
    }
    .drawer-btn:hover {
      background: #50f080;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(103,251,148,0.28);
    }
    .drawer-btn--notify {
      background: transparent;
      color: var(--accent, #67fb94);
      border: 1.5px solid rgba(103,251,148,0.35);
    }
    .drawer-btn--notify:hover {
      background: rgba(103,251,148,0.08);
      box-shadow: 0 6px 20px rgba(103,251,148,0.15);
    }
    
    .drawer-inner--soon {
      align-items: center;
      text-align: center;
    }
    .soon-label {
      display: flex;
      align-items: baseline;
      gap: 10px;
      line-height: 1;
      margin-bottom: 4px;
    }
    .soon-coming {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 2rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1px;
    }
    .soon-soon {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 2rem;
      font-weight: 900;
      color: var(--accent, #67fb94);
      letter-spacing: -1px;
    }
    .soon-icons {
      display: flex;
      gap: 14px;
      font-size: 1.5rem;
      filter: drop-shadow(0 2px 8px rgba(103,251,148,0.25));
      animation: iconBounce 2s ease-in-out infinite;
    }
    @keyframes iconBounce {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-5px); }
    }
    .soon-status {
      color: rgba(255,255,255,0.5) !important;
      font-style: italic;
    }
    
    /* Books Responsive */
    @media (max-width: 860px) {
      .books-section { padding: 80px 0 90px; }
      .books-inner   { padding: 0 28px; }
      .books-header  { margin-bottom: 52px; }
      .books-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 440px;
        margin: 0 auto;
      }
      .book-card { max-width: 100%; }
    }
    @media (max-width: 540px) {
      .books-section { padding: 64px 0 72px; }
      .books-inner   { padding: 0 16px; }
      .books-header  { margin-bottom: 40px; }
      .books-title   { font-size: 2rem; }
      .drawer-inner  { padding: 20px 18px 22px; }
      .drawer-desc   { font-size: 0.8rem; }
      .drawer-desc--more { display: none; }
      .soon-coming, .soon-soon { font-size: 1.6rem; }
      .dmeta-label { font-size: 0.58rem; }
      .dmeta-val   { font-size: 0.72rem; }
    }
    @media (hover: none) {
      .book-drawer {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        border-top: 1px solid rgba(103,251,148,0.12);
        border-radius: 0;
      }
      .book-cover img {
        filter: brightness(0.85) !important;
        transform: none !important;
      }
      .book-cover-label { opacity: 0; }
      .hover-cue { display: none; }
      .book-card { transform: none !important; }
    }
    
    
    /* ═══════════════════════════════════════════════════════════
       TESTIMONIALS SECTION
    ═══════════════════════════════════════════════════════════ */
    
    .testi-anim {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
      transition-delay: var(--td, 0s);
    }
    .testi-anim.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .testimonials-section {
      position: relative;
      background: var(--bg, #080a0e);
      padding: 110px 0 120px;
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }
    
    .testi-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      opacity: 0.35;
    }
    
    .testi-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
    }
    .tbg-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(110px);
    }
    .tbg-g1 {
      width: 560px; height: 560px;
      background: radial-gradient(circle, rgba(103, 251, 148, 0.055) 0%, transparent 70%);
      top: -100px; right: -80px;
      animation: tbgPulse 10s ease-in-out infinite alternate;
    }
    .tbg-g2 {
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(103, 251, 148, 0.035) 0%, transparent 70%);
      bottom: -80px; left: -60px;
      animation: tbgPulse 13s 3s ease-in-out infinite alternate;
    }
    @keyframes tbgPulse {
      from { opacity: 0.5; transform: scale(0.88); }
      to   { opacity: 1;   transform: scale(1.12); }
    }
    .tbg-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(103, 251, 148, 0.05) 1px, transparent 1px);
      background-size: 40px 40px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 72%);
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 72%);
    }
    
    .testi-floats {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      overflow: hidden;
    }
    .tf {
      position: absolute;
      font-size: 1.6rem;
      opacity: 0;
      animation: tfloat 8s ease-in-out infinite;
      filter: drop-shadow(0 2px 10px rgba(103, 251, 148, 0.2));
    }
    .tf1  { top: 8%;  left: 4%;   animation-duration: 9s;  animation-delay: 0s;   font-size: 2rem; }
    .tf2  { top: 15%; right: 6%;  animation-duration: 11s; animation-delay: 1.5s; font-size: 1.4rem; }
    .tf3  { top: 40%; left: 2%;   animation-duration: 10s; animation-delay: 0.7s; font-size: 1.8rem; }
    .tf4  { top: 60%; right: 4%;  animation-duration: 8s;  animation-delay: 2.2s; font-size: 1.5rem; }
    .tf5  { bottom: 20%; left: 7%; animation-duration: 12s; animation-delay: 1s;  font-size: 2.2rem; }
    .tf6  { bottom: 10%; right: 8%; animation-duration: 9s; animation-delay: 0.3s; font-size: 1.3rem; }
    .tf7  { top: 75%; left: 90%;  animation-duration: 10s; animation-delay: 3s;   font-size: 1.6rem; }
    .tf8  { top: 28%; left: 88%;  animation-duration: 7s;  animation-delay: 1.8s; font-size: 1.4rem; }
    
    @keyframes tfloat {
      0%   { opacity: 0;    transform: translateY(0px) rotate(0deg) scale(0.7); }
      15%  { opacity: 0.14; }
      50%  { opacity: 0.1;  transform: translateY(-22px) rotate(12deg) scale(1); }
      85%  { opacity: 0.14; }
      100% { opacity: 0;    transform: translateY(-44px) rotate(-6deg) scale(0.7); }
    }
    
    .testi-inner {
      position: relative;
      z-index: 2;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 40px;
    }
    
    .testi-header {
      text-align: center;
      margin-bottom: 70px;
    }
    .testi-title {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: clamp(2.2rem, 3.8vw, 3.4rem);
      font-weight: 900;
      letter-spacing: -1.5px;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 14px;
      margin-top: 6px;
    }
    .testi-title em { font-style: italic; color: var(--accent, #67fb94); }
    .testi-subtitle {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 1rem;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.75;
      max-width: 480px;
      margin: 0 auto;
    }
    
    .testi-block { margin-bottom: 64px; }
    .testi-block:last-child { margin-bottom: 0; }
    
    .testi-block-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--accent, #67fb94);
      padding: 6px 14px 6px 10px;
      background: rgba(103, 251, 148, 0.06);
      border: 1px solid rgba(103, 251, 148, 0.14);
      border-radius: 6px;
      margin-bottom: 24px;
    }
    
    .text-slider-wrap { position: relative; overflow: hidden; }
    .text-slider {
      display: flex;
      gap: 0;
      transition: transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
      will-change: transform;
    }
    
    .review-card {
      min-width: 100%;
      padding: 36px 40px 32px;
      background: rgba(255, 255, 255, 0.025);
      border: 1px solid rgba(103, 251, 148, 0.1);
      border-radius: 18px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: border-color 0.3s;
    }
    .review-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(103, 251, 148, 0.4), transparent);
      border-radius: 18px 18px 0 0;
    }
    
    .rc-quote-icon {
      position: absolute;
      top: 12px; right: 24px;
      font-size: 5rem;
      line-height: 1;
      color: rgba(103, 251, 148, 0.07);
      font-family: Georgia, serif;
      pointer-events: none;
      user-select: none;
    }
    
    .rc-stars { display: flex; gap: 3px; }
    .rc-stars span {
      color: var(--accent, #67fb94);
      font-size: 1.05rem;
      text-shadow: 0 0 8px rgba(103, 251, 148, 0.5);
    }
    
    .rc-text {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: clamp(0.95rem, 1.6vw, 1.08rem);
      font-weight: 400;
      line-height: 1.85;
      color: rgba(255, 255, 255, 0.72);
      font-style: italic;
      max-width: 820px;
      flex: 1;
    }
    
    .rc-author {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 4px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .rc-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(103, 251, 148, 0.12);
      border: 1.5px solid rgba(103, 251, 148, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.78rem;
      font-weight: 900;
      color: var(--accent, #67fb94);
      flex-shrink: 0;
      letter-spacing: 0.5px;
    }
    .rc-info { display: flex; flex-direction: column; gap: 3px; }
    .rc-name {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.92rem;
      font-weight: 800;
      color: #fff;
    }
    .rc-tag {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.66rem;
      font-weight: 700;
      color: var(--accent, #67fb94);
      letter-spacing: 1px;
      text-transform: uppercase;
      opacity: 0.75;
    }
    
    .img-slider-wrap { position: relative; overflow: hidden; }
    .img-slider {
      display: flex;
      gap: 0;
      transition: transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
      will-change: transform;
    }
    
    .img-review-card {
      min-width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding: 28px 0 0;
    }
    
    .irc-stars { display: flex; gap: 5px; }
    .irc-stars span {
      color: var(--accent, #67fb94);
      font-size: 1.15rem;
      text-shadow: 0 0 10px rgba(103, 251, 148, 0.55);
    }
    
    .irc-img-wrap {
      width: 100%;
      max-width: 680px;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(103, 251, 148, 0.12);
      box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03);
      position: relative;
    }
    .irc-img-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 70%, rgba(8, 10, 14, 0.35) 100%);
      pointer-events: none;
      z-index: 1;
    }
    .irc-img-wrap img {
      width: 100%;
      height: auto;
      max-height: 480px;
      object-fit: contain;
      display: block;
      background: #0d1017;
    }
    
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }
    .sdot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.1);
      cursor: pointer;
      transition: background 0.3s, transform 0.3s, width 0.3s;
    }
    .sdot.active {
      background: var(--accent, #67fb94);
      border-color: var(--accent, #67fb94);
      width: 24px;
      border-radius: 4px;
      box-shadow: 0 0 10px rgba(103, 251, 148, 0.4);
    }
    .sdot:hover:not(.active) { background: rgba(103, 251, 148, 0.3); }
    
    /* Testimonials Responsive */
    @media (max-width: 860px) {
      .testimonials-section { padding: 80px 0 90px; }
      .testi-inner   { padding: 0 24px; }
      .testi-header  { margin-bottom: 48px; }
      .testi-block   { margin-bottom: 48px; }
      .review-card { padding: 28px 24px 24px; }
      .rc-text { font-size: 0.96rem; }
      .irc-img-wrap img { max-height: 380px; }
    }
    @media (max-width: 560px) {
      .testimonials-section { padding: 64px 0 72px; }
      .testi-inner   { padding: 0 16px; }
      .testi-title   { font-size: 2rem; }
      .testi-header  { margin-bottom: 36px; }
      .testi-block   { margin-bottom: 40px; }
      .review-card { padding: 24px 18px 20px; gap: 12px; }
      .rc-quote-icon { font-size: 3.5rem; }
      .rc-text { font-size: 0.9rem; line-height: 1.75; }
      .rc-avatar { width: 38px; height: 38px; font-size: 0.7rem; }
      .rc-name { font-size: 0.84rem; }
      .irc-img-wrap img { max-height: 260px; }
      .tf1, .tf5 { display: none; }
    }
    
    
    /* ═══════════════════════════════════════════════════════════
       PODCASTS SECTION — REPLACE the old podcasts CSS block
       (everything between the PODCASTS SECTION markers)
       Keep all other CSS untouched.
    ═══════════════════════════════════════════════════════════ */
    
    .podcast-anim {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.75s ease, transform 0.75s ease;
      transition-delay: var(--pd, 0s);
    }
    .podcast-anim.visible { opacity: 1; transform: translateY(0); }
    
    /* ── Section shell ──────────────────────────────────────── */
    .podcasts-section {
      position: relative;
      background: var(--bg2, #0d1017);
      padding: 110px 0 120px;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.04);
    }
    
    .podcast-canvas {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      pointer-events: none; z-index: 0; opacity: 0.4;
    }
    
    /* ── BG glows + grid (unchanged) ─────────────────────── */
    .podcast-bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
    .pbg-glow { position: absolute; border-radius: 50%; filter: blur(110px); }
    .pbg-g1 {
      width: 620px; height: 620px;
      background: radial-gradient(circle, rgba(103,251,148,0.06) 0%, transparent 70%);
      top: -100px; right: -60px;
      animation: pbgPulse 10s ease-in-out infinite alternate;
    }
    .pbg-g2 {
      width: 460px; height: 460px;
      background: radial-gradient(circle, rgba(103,251,148,0.035) 0%, transparent 70%);
      bottom: -80px; left: -80px;
      animation: pbgPulse 13s 3s ease-in-out infinite alternate;
    }
    @keyframes pbgPulse {
      from { opacity: 0.5; transform: scale(0.88); }
      to   { opacity: 1;   transform: scale(1.12); }
    }
    .pbg-grid {
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(103,251,148,0.05) 1px, transparent 1px);
      background-size: 40px 40px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 72%);
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 72%);
    }
    
    /* ── Floating emoji particles (unchanged) ───────────── */
    .podcast-floats { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
    .pf { position: absolute; font-size: 1.5rem; opacity: 0; animation: pfloat 9s ease-in-out infinite; filter: drop-shadow(0 2px 10px rgba(103,251,148,0.2)); }
    .pf1  { top: 7%;   left: 3%;   animation-duration: 10s; animation-delay: 0s;   font-size: 2rem; }
    .pf2  { top: 18%;  right: 5%;  animation-duration: 12s; animation-delay: 1.4s; font-size: 1.4rem; }
    .pf3  { top: 42%;  left: 2%;   animation-duration: 9s;  animation-delay: 0.6s; font-size: 1.8rem; }
    .pf4  { top: 58%;  right: 3%;  animation-duration: 11s; animation-delay: 2s;   font-size: 1.5rem; }
    .pf5  { bottom: 22%; left: 6%; animation-duration: 13s; animation-delay: 0.9s; font-size: 2.2rem; }
    .pf6  { bottom: 10%; right: 7%; animation-duration: 10s; animation-delay: 0.3s; font-size: 1.3rem; }
    .pf7  { top: 72%;  left: 91%;  animation-duration: 8s;  animation-delay: 2.8s; font-size: 1.6rem; }
    .pf8  { top: 30%;  left: 89%;  animation-duration: 11s; animation-delay: 1.7s; font-size: 1.4rem; }
    @keyframes pfloat {
      0%   { opacity: 0;    transform: translateY(0)    rotate(0deg)   scale(0.6); }
      15%  { opacity: 0.13; }
      50%  { opacity: 0.09; transform: translateY(-24px) rotate(14deg) scale(1); }
      85%  { opacity: 0.13; }
      100% { opacity: 0;    transform: translateY(-48px) rotate(-8deg) scale(0.6); }
    }
    
    /* ── Inner container ────────────────────────────────── */
    .podcasts-inner {
      position: relative; z-index: 2;
      max-width: 1160px; margin: 0 auto; padding: 0 40px;
    }
    
    /* ── Section header (unchanged) ─────────────────────── */
    .podcasts-header { text-align: center; margin-bottom: 72px; }
    .podcasts-title {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: clamp(2.2rem, 3.8vw, 3.4rem);
      font-weight: 900; letter-spacing: -1.5px; line-height: 1.1;
      color: #fff; margin-top: 6px; margin-bottom: 16px;
    }
    .podcasts-title em { font-style: italic; color: var(--accent, #67fb94); }
    .podcasts-subtitle {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 1rem; font-weight: 400;
      color: rgba(255,255,255,0.45); line-height: 1.75;
      max-width: 520px; margin: 0 auto;
    }
    
    /* ════════════════════════════════════════════════════════
       FEATURED PODCAST — Split Layout
    ════════════════════════════════════════════════════════ */
    .podcast-featured {
      display: grid;
      grid-template-columns: 1fr 460px;
      gap: 64px;
      align-items: center;
      background: rgba(255,255,255,0.018);
      border: 1px solid rgba(103,251,148,0.12);
      border-radius: 28px;
      overflow: hidden;
      position: relative;
      box-shadow:
        0 24px 80px rgba(0,0,0,0.45),
        0 0 0 1px rgba(255,255,255,0.03);
      transition: border-color 0.4s, box-shadow 0.4s;
    }
    .podcast-featured::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, rgba(103,251,148,0.5), transparent);
      border-radius: 28px 28px 0 0;
    }
    .podcast-featured:hover {
      border-color: rgba(103,251,148,0.22);
      box-shadow:
        0 36px 100px rgba(0,0,0,0.5),
        0 0 60px rgba(103,251,148,0.06);
    }
    
    /* ── LEFT: Text content ──────────────────────────────── */
    .pf-content {
      padding: 52px 0 52px 52px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    
    /* Episode badge */
    .pf-ep-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: rgba(103,251,148,0.07);
      border: 1px solid rgba(103,251,148,0.2);
      border-radius: 20px;
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent, #67fb94);
      margin-bottom: 22px;
      width: fit-content;
    }
    .pf-ep-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--accent, #67fb94);
      flex-shrink: 0;
      animation: pfDotPulse 2s ease-in-out infinite;
    }
    @keyframes pfDotPulse {
      0%,100% { box-shadow: 0 0 0 2px rgba(103,251,148,0.25); }
      50%      { box-shadow: 0 0 0 6px rgba(103,251,148,0);    }
    }
    
    /* Title */
    .pf-title {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: clamp(2rem, 3.2vw, 3rem);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -1.5px;
      color: #fff;
      margin-bottom: 20px;
    }
    .pf-title em {
      font-style: italic;
      color: var(--accent, #67fb94);
    }
    
    /* Soundwave bar decoration */
    .pf-wave {
      display: flex;
      align-items: center;
      gap: 3px;
      height: 28px;
      margin-bottom: 24px;
    }
    .pf-wave span {
      display: block;
      width: 3px;
      background: rgba(103,251,148,0.4);
      border-radius: 3px;
      animation: pfWaveBar 1.6s ease-in-out infinite alternate;
      transform-origin: bottom;
    }
    .pf-wave span:nth-child(1)  { height: 6px;  animation-delay: 0s;    }
    .pf-wave span:nth-child(2)  { height: 14px; animation-delay: 0.1s;  }
    .pf-wave span:nth-child(3)  { height: 20px; animation-delay: 0.2s;  }
    .pf-wave span:nth-child(4)  { height: 10px; animation-delay: 0.05s; }
    .pf-wave span:nth-child(5)  { height: 24px; animation-delay: 0.3s;  }
    .pf-wave span:nth-child(6)  { height: 16px; animation-delay: 0.15s; }
    .pf-wave span:nth-child(7)  { height: 22px; animation-delay: 0.25s; }
    .pf-wave span:nth-child(8)  { height: 12px; animation-delay: 0.35s; }
    .pf-wave span:nth-child(9)  { height: 18px; animation-delay: 0.1s;  }
    .pf-wave span:nth-child(10) { height: 8px;  animation-delay: 0.4s;  }
    .pf-wave span:nth-child(11) { height: 14px; animation-delay: 0.2s;  }
    .pf-wave span:nth-child(12) { height: 6px;  animation-delay: 0s;    }
    @keyframes pfWaveBar {
      from { transform: scaleY(0.35); opacity: 0.35; }
      to   { transform: scaleY(1);    opacity: 1;    }
    }
    
    /* Description paragraphs */
    .pf-desc {
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: clamp(0.88rem, 1.1vw, 0.98rem);
      font-weight: 400;
      line-height: 1.92;
      color: rgba(255,255,255,0.6);
      margin-bottom: 14px;
    }
    .pf-desc--2 { color: rgba(255,255,255,0.45); margin-bottom: 26px; }
    
    /* Tags */
    .pf-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
    }
    .pf-tag {
      padding: 5px 13px;
      background: rgba(103,251,148,0.05);
      border: 1px solid rgba(103,251,148,0.14);
      border-radius: 6px;
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.72rem;
      font-weight: 700;
      color: rgba(255,255,255,0.65);
      transition: background 0.22s, border-color 0.22s, color 0.22s;
    }
    .pf-tag:hover {
      background: rgba(103,251,148,0.1);
      border-color: rgba(103,251,148,0.3);
      color: var(--accent, #67fb94);
    }
    
    /* CTA row */
    .pf-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    
    .pf-notify-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 28px;
      background: var(--accent, #67fb94);
      color: #080a0e;
      border: none;
      border-radius: 10px;
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.87rem;
      font-weight: 800;
      cursor: pointer;
      letter-spacing: 0.2px;
      transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
    }
    .pf-notify-btn:hover {
      background: #50f080;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(103,251,148,0.3);
    }
    .pf-notify-btn.subscribed {
      background: rgba(103,251,148,0.1);
      color: var(--accent, #67fb94);
      border: 1.5px solid rgba(103,251,148,0.3);
      transform: none;
      box-shadow: none;
    }
    
    .pf-meta {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.74rem;
      font-weight: 700;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.3px;
    }
    
    /* ── RIGHT: Image wrapper ────────────────────────────── */
    .pf-image-wrap {
      position: relative;
      height: 100%;
      min-height: 500px;
      display: flex;
      align-items: stretch;
      overflow: hidden;
    }
    
    /* Ambient rings */
    .pf-img-rings {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      z-index: 0;
    }
    .pf-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(103,251,148,0.07);
      animation: pfRingPulse 8s ease-in-out infinite;
    }
    .pf-ring-1 { width: 340px; height: 340px; animation-delay: 0s; }
    .pf-ring-2 { width: 480px; height: 480px; animation-delay: 3s; border-color: rgba(103,251,148,0.04); }
    @keyframes pfRingPulse {
      0%,100% { transform: scale(1);    opacity: 0.5; }
      50%      { transform: scale(1.05); opacity: 1;   }
    }
    
    /* Corner brackets */
    .pf-corner { position: absolute; z-index: 5; pointer-events: none; }
    .pf-corner-tl { top: 14px; left: 10px; }
    .pf-corner-br { bottom: 14px; right: 10px; }
    
    /* Image frame */
    .pf-img-frame {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 500px;
      z-index: 2;
      overflow: hidden;
    }
    .pf-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      filter: saturate(0.85) brightness(0.9);
      transition: filter 0.5s ease, transform 0.6s ease;
    }
    .podcast-featured:hover .pf-img-frame img {
      filter: saturate(1) brightness(0.96);
      transform: scale(1.03);
    }
    
    /* Bottom fade — blends image into card bg */
    .pf-img-fade-bottom {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 40%;
      background: linear-gradient(to top, rgba(13,16,23,0.85) 0%, transparent 100%);
      pointer-events: none; z-index: 3;
    }
    /* Left fade — softens image-to-text edge */
    .pf-img-fade-left {
      position: absolute;
      top: 0; left: 0; bottom: 0;
      width: 35%;
      background: linear-gradient(to right, rgba(13,16,23,0.7) 0%, transparent 100%);
      pointer-events: none; z-index: 3;
    }
    
    /* Floating chips on image */
    .pf-chip {
      position: absolute;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 8px 14px;
      background: rgba(8,10,14,0.9);
      border: 1px solid rgba(103,251,148,0.2);
      border-radius: 9px;
      backdrop-filter: blur(14px);
      font-family: var(--font, 'Nunito', sans-serif);
      font-size: 0.68rem;
      font-weight: 700;
      color: rgba(255,255,255,0.72);
      letter-spacing: 0.4px;
      white-space: nowrap;
    }
    .pf-chip-top {
      top: 20px; right: 16px;
      animation: pfChipFloat 4s ease-in-out infinite alternate;
    }
    .pf-chip-bottom {
      bottom: 24px; right: 16px;
      animation: pfChipFloat 5s 1.2s ease-in-out infinite alternate;
    }
    @keyframes pfChipFloat {
      from { transform: translateY(0); }
      to   { transform: translateY(-7px); }
    }
    .pf-chip-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--accent, #67fb94);
      flex-shrink: 0;
      animation: pfDotPulse 2s ease-in-out infinite;
    }
    
    /* ═══════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════ */
    @media (max-width: 1024px) {
      .podcasts-inner { padding: 0 32px; }
      .podcast-featured { grid-template-columns: 1fr 380px; gap: 48px; }
      .pf-content { padding: 44px 0 44px 44px; }
      .pf-image-wrap { min-height: 440px; }
      .pf-img-frame { min-height: 440px; }
    }
    
    @media (max-width: 860px) {
      .podcasts-section { padding: 80px 0 90px; }
      .podcasts-inner   { padding: 0 28px; }
      .podcasts-header  { margin-bottom: 52px; }
    
      .podcast-featured {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        border-radius: 22px;
      }
    
      /* Image goes to top on mobile */
      .pf-image-wrap {
        order: -1;
        min-height: 320px;
        max-height: 420px;
      }
      .pf-img-frame { min-height: 320px; max-height: 420px; }
      .pf-img-fade-left { display: none; }
      .pf-img-fade-bottom {
        height: 50%;
        background: linear-gradient(to top, rgba(13,16,23,0.9) 0%, transparent 100%);
      }
    
      .pf-content {
        padding: 0 32px 40px;
        order: 1;
      }
      .pf-corner-tl { top: 10px; left: 8px; }
      .pf-corner-br { bottom: 10px; right: 8px; }
    }
    
    @media (max-width: 600px) {
      .podcasts-section { padding: 64px 0 72px; }
      .podcasts-inner   { padding: 0 16px; }
      .podcasts-header  { margin-bottom: 40px; }
      .podcasts-title   { font-size: 2rem; }
    
      .podcast-featured { border-radius: 18px; }
    
      .pf-image-wrap,
      .pf-img-frame { min-height: 260px; max-height: 340px; }
    
      .pf-content { padding: 0 20px 32px; }
      .pf-title { font-size: 1.8rem; letter-spacing: -1px; }
      .pf-desc { font-size: 0.87rem; }
      .pf-desc--2 { display: none; }
    
      .pf-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
      .pf-notify-btn { width: 100%; justify-content: center; }
    
      .pf-chip-top    { top: 10px; right: 10px; font-size: 0.62rem; padding: 6px 10px; }
      .pf-chip-bottom { bottom: 14px; right: 10px; font-size: 0.62rem; padding: 6px 10px; }
    
      .pf1, .pf5 { display: none; }
    }
    
    @media (max-width: 420px) {
      .pf-title { font-size: 1.6rem; }
      .pf-wave  { display: none; }
    }
    
    /* Touch devices — remove hover effects */
    @media (hover: none) {
      .podcast-featured:hover {
        border-color: rgba(103,251,148,0.12);
        box-shadow: 0 24px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.03);
      }
      .podcast-featured:hover .pf-img-frame img {
        filter: saturate(0.85) brightness(0.9);
        transform: none;
      }
    }
    
    
    /* ═══════════════════════════════════════════════════════════
   BLOG SECTION — The Power Play Blog
   Replace the entire old BLOG SECTION block with this
═══════════════════════════════════════════════════════════ */

.blog-anim { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; transition-delay: var(--bld, 0s); }
.blog-anim.visible { opacity: 1; transform: translateY(0); }

.blog-section {
  position: relative;
  background: var(--bg, #080a0e);
  padding: 110px 0 120px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.4;
}

/* BG glows */
.blog-bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.blbg-glow { position: absolute; border-radius: 50%; filter: blur(110px); }
.blbg-g1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(103,251,148,0.058) 0%, transparent 70%);
  top: -130px; left: -80px;
  animation: blbgPulse 10s ease-in-out infinite alternate;
}
.blbg-g2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(103,251,148,0.035) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  animation: blbgPulse 13s 3s ease-in-out infinite alternate;
}
@keyframes blbgPulse { from { opacity: 0.5; transform: scale(0.88); } to { opacity: 1; transform: scale(1.12); } }

.blbg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(103,251,148,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 72%);
}

/* Floating icons */
.blog-floats { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.blf {
  position: absolute; font-size: 1.5rem; opacity: 0;
  animation: blfloat 9s ease-in-out infinite;
  filter: drop-shadow(0 2px 10px rgba(103,251,148,0.18));
  user-select: none;
}
.blf1  { top: 5%;   left: 2%;   animation-duration: 10s; animation-delay: 0s;    font-size: 2rem; }
.blf2  { top: 14%;  right: 4%;  animation-duration: 13s; animation-delay: 1.2s;  font-size: 1.6rem; }
.blf3  { top: 38%;  left: 1.5%; animation-duration: 9s;  animation-delay: 0.4s;  font-size: 1.9rem; }
.blf4  { top: 58%;  right: 3%;  animation-duration: 11s; animation-delay: 2s;    font-size: 1.5rem; }
.blf5  { bottom: 25%; left: 5%; animation-duration: 14s; animation-delay: 0.7s;  font-size: 2.2rem; }
.blf6  { bottom: 12%; right: 6%;animation-duration: 10s; animation-delay: 0.2s;  font-size: 1.3rem; }
.blf7  { top: 72%;  left: 90%;  animation-duration: 8s;  animation-delay: 2.6s;  font-size: 1.6rem; }
.blf8  { top: 26%;  left: 87%;  animation-duration: 11s; animation-delay: 1.5s;  font-size: 1.4rem; }
.blf9  { top: 48%;  left: 92%;  animation-duration: 12s; animation-delay: 3.1s;  font-size: 1.3rem; }
.blf10 { top: 82%;  left: 15%;  animation-duration: 9s;  animation-delay: 1.8s;  font-size: 1.5rem; }
@keyframes blfloat {
  0%   { opacity: 0;    transform: translateY(0px) rotate(0deg) scale(0.6); }
  15%  { opacity: 0.14; }
  50%  { opacity: 0.10; transform: translateY(-26px) rotate(14deg) scale(1); }
  85%  { opacity: 0.14; }
  100% { opacity: 0;    transform: translateY(-52px) rotate(-8deg) scale(0.6); }
}

/* Inner container */
.blog-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
}

/* Section header */
.blog-header { text-align: center; margin-bottom: 72px; }
.blog-title {
  font-family: var(--font, 'Nunito', sans-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 900; letter-spacing: -1.5px; line-height: 1.1;
  color: #fff; margin-top: 6px; margin-bottom: 16px;
}
.blog-title em { font-style: italic; color: var(--accent, #67fb94); }
.blog-subtitle {
  font-family: var(--font, 'Nunito', sans-serif);
  font-size: 1rem; font-weight: 400;
  color: rgba(255,255,255,0.45); line-height: 1.75;
  max-width: 480px; margin: 0 auto;
}

/* ════════════════════════════════════
   FEATURED BLOG — Split Layout
════════════════════════════════════ */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(103,251,148,0.12);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 24px 80px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.03);
  transition: border-color 0.4s, box-shadow 0.4s;
  margin-bottom: 56px;
}
.blog-featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(103,251,148,0.55), transparent);
  border-radius: 28px 28px 0 0;
  pointer-events: none;
}
.blog-featured:hover {
  border-color: rgba(103,251,148,0.24);
  box-shadow: 0 36px 100px rgba(0,0,0,0.52), 0 0 60px rgba(103,251,148,0.06);
}

/* ── LEFT: Text content ─────────────── */
.bf-content {
  padding: 56px 0 56px 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Badge */
.bf-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(103,251,148,0.07);
  border: 1px solid rgba(103,251,148,0.22);
  border-radius: 20px;
  font-family: var(--font, 'Nunito', sans-serif);
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent, #67fb94);
  margin-bottom: 22px;
  width: fit-content;
}
.bf-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent, #67fb94);
  flex-shrink: 0;
  animation: bfDotPulse 2s ease-in-out infinite;
}
@keyframes bfDotPulse {
  0%,100% { box-shadow: 0 0 0 2px rgba(103,251,148,0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(103,251,148,0);    }
}

/* Decorative large quote mark */
.bf-deco-quote {
  position: absolute;
  top: 48px; left: 50px;
  font-size: 9rem; line-height: 1;
  color: rgba(103,251,148,0.04);
  font-family: Georgia, serif;
  pointer-events: none; user-select: none;
  font-style: italic;
  z-index: 0;
}

/* Heading */
.bf-heading {
  position: relative; z-index: 1;
  font-family: var(--font, 'Nunito', sans-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 18px;
}
.bf-heading em { font-style: italic; color: var(--accent, #67fb94); }

/* Inkline decoration (animated bars) */
.bf-inkline {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  margin-bottom: 24px;
}
.bf-inkline span {
  display: block;
  width: 3px;
  background: rgba(103,251,148,0.38);
  border-radius: 3px;
  animation: bfInkBar 2s ease-in-out infinite alternate;
  transform-origin: bottom;
}
.bf-inkline span:nth-child(1)  { height: 5px;  animation-delay: 0s; }
.bf-inkline span:nth-child(2)  { height: 12px; animation-delay: 0.08s; }
.bf-inkline span:nth-child(3)  { height: 18px; animation-delay: 0.16s; }
.bf-inkline span:nth-child(4)  { height: 9px;  animation-delay: 0.04s; }
.bf-inkline span:nth-child(5)  { height: 22px; animation-delay: 0.24s; }
.bf-inkline span:nth-child(6)  { height: 14px; animation-delay: 0.12s; }
.bf-inkline span:nth-child(7)  { height: 20px; animation-delay: 0.2s;  }
.bf-inkline span:nth-child(8)  { height: 10px; animation-delay: 0.28s; }
.bf-inkline span:nth-child(9)  { height: 16px; animation-delay: 0.08s; }
.bf-inkline span:nth-child(10) { height: 7px;  animation-delay: 0.32s; }
.bf-inkline span:nth-child(11) { height: 13px; animation-delay: 0.16s; }
@keyframes bfInkBar {
  from { transform: scaleY(0.3); opacity: 0.3; }
  to   { transform: scaleY(1);   opacity: 1;   }
}

/* Description */
.bf-desc {
  font-family: var(--font, 'Nunito', sans-serif);
  font-size: clamp(0.87rem, 1.05vw, 0.97rem);
  font-weight: 400;
  line-height: 1.92;
  color: rgba(255,255,255,0.62);
  margin-bottom: 14px;
}
.bf-desc strong { color: rgba(255,255,255,0.88); font-weight: 800; }
.bf-desc--2 { color: rgba(255,255,255,0.46); margin-bottom: 26px; }

/* Tags */
.bf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.bf-tag {
  padding: 5px 13px;
  background: rgba(103,251,148,0.05);
  border: 1px solid rgba(103,251,148,0.14);
  border-radius: 6px;
  font-family: var(--font, 'Nunito', sans-serif);
  font-size: 0.71rem; font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: background 0.22s, border-color 0.22s, color 0.22s;
  cursor: default;
}
.bf-tag:hover {
  background: rgba(103,251,148,0.1);
  border-color: rgba(103,251,148,0.32);
  color: var(--accent, #67fb94);
}

/* CTA row */
.bf-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.bf-notify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--accent, #67fb94);
  color: #080a0e;
  border: none; border-radius: 10px;
  font-family: var(--font, 'Nunito', sans-serif);
  font-size: 0.87rem; font-weight: 800;
  cursor: pointer; letter-spacing: 0.2px;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
}
.bf-notify-btn:hover {
  background: #50f080;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(103,251,148,0.3);
}
.bf-notify-btn.subscribed {
  background: rgba(103,251,148,0.1);
  color: var(--accent, #67fb94);
  border: 1.5px solid rgba(103,251,148,0.3);
  transform: none; box-shadow: none;
}

.bf-coming-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font, 'Nunito', sans-serif);
  font-size: 0.74rem; font-weight: 700;
  color: rgba(255,255,255,0.3);
}

/* Stats strip */
.bf-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 20px;
  background: rgba(103,251,148,0.04);
  border: 1px solid rgba(103,251,148,0.1);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.bf-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}
.bf-stat-num {
  font-family: var(--font, 'Nunito', sans-serif);
  font-size: 1.6rem; font-weight: 900;
  color: var(--accent, #67fb94);
  line-height: 1;
}
.bf-stat-label {
  font-family: var(--font, 'Nunito', sans-serif);
  font-size: 0.62rem; font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px; text-transform: uppercase;
  white-space: nowrap;
}
.bf-stat-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* ── RIGHT: Image wrapper ────────────── */
.bf-image-wrap {
  position: relative;
  height: 100%;
  min-height: 540px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* Ambient rings */
.bf-img-rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 0;
}
.bf-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(103,251,148,0.07);
  animation: bfRingPulse 8s ease-in-out infinite;
}
.bf-ring-1 { width: 360px; height: 360px; animation-delay: 0s; }
.bf-ring-2 { width: 500px; height: 500px; animation-delay: 3s; border-color: rgba(103,251,148,0.04); }
@keyframes bfRingPulse {
  0%,100% { transform: scale(1);    opacity: 0.5; }
  50%      { transform: scale(1.05); opacity: 1;   }
}

/* Corner brackets */
.bf-corner { position: absolute; z-index: 5; pointer-events: none; }
.bf-corner-tl { top: 14px; left: 10px; }
.bf-corner-br { bottom: 14px; right: 10px; }

/* Image frame */
.bf-img-frame {
  position: relative;
  width: 100%; height: 100%;
  min-height: 540px;
  z-index: 2; overflow: hidden;
}
.bf-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.85) brightness(0.88);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.blog-featured:hover .bf-img-frame img {
  filter: saturate(1) brightness(0.96);
  transform: scale(1.03);
}

.bf-img-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10,13,19,0.88) 0%, transparent 100%);
  pointer-events: none; z-index: 3;
}
.bf-img-fade-right {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 18%;
  background: linear-gradient(to left, rgba(10,13,19,0.5) 0%, transparent 100%);
  pointer-events: none; z-index: 3;
}

/* Floating chips */
.bf-chip {
  position: absolute; z-index: 5;
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  background: rgba(8,10,14,0.9);
  border: 1px solid rgba(103,251,148,0.2);
  border-radius: 9px;
  backdrop-filter: blur(14px);
  font-family: var(--font, 'Nunito', sans-serif);
  font-size: 0.68rem; font-weight: 700;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
}
.bf-chip-top {
  top: 20px; right: 16px;
  animation: bfChipFloat 4s ease-in-out infinite alternate;
}
.bf-chip-bottom {
  bottom: 24px; right: 16px;
  animation: bfChipFloat 5s 1.2s ease-in-out infinite alternate;
}
@keyframes bfChipFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-7px); }
}
.bf-chip-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent, #67fb94);
  flex-shrink: 0;
  animation: bfDotPulse 2s ease-in-out infinite;
}

/* Floating pen near image */
.bf-pen-float {
  position: absolute;
  top: 44%;
  left: -20px;
  font-size: 2rem;
  opacity: 0.18;
  z-index: 4;
  pointer-events: none;
  animation: bfPenFloat 6s ease-in-out infinite alternate;
  filter: drop-shadow(0 2px 10px rgba(103,251,148,0.35));
  user-select: none;
}
@keyframes bfPenFloat {
  from { transform: translateY(0) rotate(-15deg); }
  to   { transform: translateY(-14px) rotate(-5deg); }
}

/* Footer hint */
.blog-footer-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.bfh-line {
  height: 1px; flex: 1; max-width: 200px;
  background: linear-gradient(to right, transparent, rgba(103,251,148,0.2));
}
.bfh-line--r {
  background: linear-gradient(to left, transparent, rgba(103,251,148,0.2));
}
.bfh-text {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font, 'Nunito', sans-serif);
  font-size: 0.73rem; font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px; white-space: nowrap;
}
.bfh-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent, #67fb94);
  flex-shrink: 0;
  animation: bfhPulse 2.4s ease-in-out infinite;
}
@keyframes bfhPulse {
  0%,100% { box-shadow: 0 0 0 2px rgba(103,251,148,0.25); opacity: 1; }
  50%      { box-shadow: 0 0 0 7px rgba(103,251,148,0);    opacity: 0.7; }
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1100px) {
  .blog-inner { padding: 0 36px; }
  .blog-featured { grid-template-columns: 1fr 380px; gap: 48px; }
  .bf-content { padding: 44px 0 44px 44px; }
  .bf-image-wrap, .bf-img-frame { min-height: 480px; }
}

@media (max-width: 860px) {
  .blog-section { padding: 80px 0 90px; }
  .blog-inner { padding: 0 28px; }
  .blog-header { margin-bottom: 52px; }

  .blog-featured {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  /* Image goes to top on mobile */
  .bf-image-wrap {
    order: -1;
    min-height: 300px;
    max-height: 400px;
  }
  .bf-img-frame { min-height: 300px; max-height: 400px; }
  .bf-img-fade-right { display: none; }
  .bf-img-fade-bottom {
    height: 50%;
    background: linear-gradient(to top, rgba(10,13,19,0.92) 0%, transparent 100%);
  }
  .bf-content {
    padding: 0 32px 40px;
    order: 1;
  }
  .bf-corner-tl { top: 10px; left: 8px; }
  .bf-corner-br { bottom: 10px; right: 8px; }
  .bf-pen-float { display: none; }
}

@media (max-width: 600px) {
  .blog-section { padding: 64px 0 72px; }
  .blog-inner { padding: 0 16px; }
  .blog-header { margin-bottom: 40px; }
  .blog-title { font-size: 2rem; }

  .blog-featured { border-radius: 18px; }
  .bf-image-wrap, .bf-img-frame { min-height: 240px; max-height: 320px; }
  .bf-content { padding: 0 20px 32px; }
  .bf-heading { font-size: 1.8rem; letter-spacing: -1px; }
  .bf-desc { font-size: 0.86rem; }
  .bf-desc--2 { display: none; }
  .bf-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .bf-notify-btn { width: 100%; justify-content: center; }
  .bf-chip-top { top: 10px; right: 10px; font-size: 0.62rem; padding: 6px 10px; }
  .bf-chip-bottom { bottom: 14px; right: 10px; font-size: 0.62rem; padding: 6px 10px; }
  .bf-stats { flex-wrap: wrap; padding: 12px 14px; }
  .bf-stat-sep { display: none; }
  .bf-stat { flex: 0 0 calc(33% - 6px); }
  .bfh-line { max-width: 60px; }
  .bfh-text { font-size: 0.66rem; white-space: normal; text-align: center; }
  .blf1, .blf5 { display: none; }
}

@media (max-width: 420px) {
  .blog-title { font-size: 1.75rem; }
  .bf-heading { font-size: 1.55rem; }
  .bf-inkline { display: none; }
  .bf-deco-quote { font-size: 6rem; }
}

@media (hover: none) {
  .blog-featured:hover {
    border-color: rgba(103,251,148,0.12);
    box-shadow: 0 24px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.03);
  }
  .blog-featured:hover .bf-img-frame img {
    filter: saturate(0.85) brightness(0.88);
    transform: none;
  }
}
    
    /* ═══════════════════════════════════════════════════════════
       EVENTS SECTION
    ═══════════════════════════════════════════════════════════ */
    
    .event-anim { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; transition-delay: var(--evd, 0s); }
    .event-anim.visible { opacity: 1; transform: translateY(0); }
    
    .events-section { position: relative; background: var(--bg2, #0d1017); padding: 110px 0 120px; overflow: hidden; border-top: 1px solid rgba(255, 255, 255, 0.04); }
    .events-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; opacity: 0.45; }
    .events-bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
    .evbg-glow { position: absolute; border-radius: 50%; filter: blur(110px); }
    .evbg-g1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(103, 251, 148, 0.06) 0%, transparent 70%); top: -120px; right: -80px; animation: evbgPulse 10s ease-in-out infinite alternate; }
    .evbg-g2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(103, 251, 148, 0.035) 0%, transparent 70%); bottom: -80px; left: -70px; animation: evbgPulse 13s 3s ease-in-out infinite alternate; }
    @keyframes evbgPulse { from { opacity: 0.5; transform: scale(0.88); } to { opacity: 1; transform: scale(1.12); } }
    .evbg-grid { position: absolute; inset: 0; background-image: radial-gradient(rgba(103, 251, 148, 0.05) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 72%); -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 72%); }
    
    .events-floats { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
    .evf { position: absolute; font-size: 1.5rem; opacity: 0; animation: evfloat 10s ease-in-out infinite; filter: drop-shadow(0 2px 10px rgba(103, 251, 148, 0.18)); user-select: none; }
    .evf1 { top: 6%; left: 3%; animation-duration: 11s; animation-delay: 0s; font-size: 2rem; }
    .evf2 { top: 18%; right: 5%; animation-duration: 13s; animation-delay: 1.3s; font-size: 1.4rem; }
    .evf3 { top: 38%; left: 2%; animation-duration: 9s; animation-delay: 0.5s; font-size: 1.8rem; }
    .evf4 { top: 60%; right: 3%; animation-duration: 12s; animation-delay: 2.1s; font-size: 1.5rem; }
    .evf5 { bottom: 22%; left: 6%; animation-duration: 14s; animation-delay: 0.8s; font-size: 2.2rem; }
    .evf6 { bottom: 12%; right: 7%; animation-duration: 10s; animation-delay: 0.2s; font-size: 1.3rem; }
    .evf7 { top: 74%; left: 91%; animation-duration: 8s; animation-delay: 2.8s; font-size: 1.6rem; }
    .evf8 { top: 28%; left: 88%; animation-duration: 11s; animation-delay: 1.6s; font-size: 1.4rem; }
    .evf9 { top: 50%; left: 50%; animation-duration: 9s; animation-delay: 3.2s; font-size: 1.2rem; }
    @keyframes evfloat { 0% { opacity: 0; transform: translateY(0px) rotate(0deg) scale(0.6); } 15% { opacity: 0.12; } 50% { opacity: 0.09; transform: translateY(-26px) rotate(14deg) scale(1); } 85% { opacity: 0.12; } 100% { opacity: 0; transform: translateY(-52px) rotate(-8deg) scale(0.6); } }
    
    .events-inner { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; padding: 0 40px; }
    .events-header { text-align: center; margin-bottom: 72px; }
    .events-title { font-family: var(--font, 'Nunito', sans-serif); font-size: clamp(2.2rem, 3.8vw, 3.4rem); font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; color: #fff; margin-top: 6px; margin-bottom: 16px; }
    .events-title em { font-style: italic; color: var(--accent, #67fb94); }
    .events-subtitle { font-family: var(--font, 'Nunito', sans-serif); font-size: 1rem; font-weight: 400; color: rgba(255, 255, 255, 0.45); line-height: 1.75; max-width: 520px; margin: 0 auto; }
    
    .events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    
    .event-card { position: relative; background: rgba(255, 255, 255, 0.025); border-radius: 22px; padding: 0; display: flex; flex-direction: column; overflow: hidden; cursor: pointer; transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s; border: 1px solid rgba(103, 251, 148, 0.12); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03); }
    .event-card::after { content: ''; position: absolute; inset: -1px; border-radius: 23px; background: linear-gradient(135deg, rgba(103, 251, 148, 0.0), rgba(103, 251, 148, 0.28), rgba(103, 251, 148, 0.0)); opacity: 0; transition: opacity 0.45s ease; pointer-events: none; z-index: 0; }
    .event-card:hover::after { opacity: 1; }
    .event-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(103, 251, 148, 0.55), transparent); border-radius: 22px 22px 0 0; opacity: 0; transition: opacity 0.35s; z-index: 1; }
    .event-card:hover { border-color: rgba(103, 251, 148, 0.3); box-shadow: 0 28px 72px rgba(0, 0, 0, 0.5), 0 0 50px rgba(103, 251, 148, 0.07), inset 0 1px 0 rgba(103, 251, 148, 0.06); transform: translateY(-6px); }
    .event-card:hover::before { opacity: 1; }
    
    .ec-glow { position: absolute; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(103, 251, 148, 0.07) 0%, transparent 70%); top: -60px; right: -50px; pointer-events: none; filter: blur(30px); animation: ecGlow 7s ease-in-out infinite alternate; z-index: 0; }
    .ec-glow--alt { top: auto; right: auto; bottom: -50px; left: -50px; animation-delay: 3.5s; }
    @keyframes ecGlow { from { opacity: 0.5; transform: scale(0.85); } to { opacity: 1; transform: scale(1.2); } }
    
    .ec-content { position: relative; z-index: 2; padding: 30px 28px 24px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
    .ec-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
    .ec-type { display: flex; align-items: center; gap: 7px; font-family: var(--font, 'Nunito', sans-serif); font-size: 0.64rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--accent, #67fb94); background: rgba(103, 251, 148, 0.08); border: 1px solid rgba(103, 251, 148, 0.2); border-radius: 6px; padding: 5px 11px; white-space: nowrap; }
    .ec-status { display: flex; align-items: center; gap: 6px; font-family: var(--font, 'Nunito', sans-serif); font-size: 0.62rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 6px; padding: 5px 10px; white-space: nowrap; flex-shrink: 0; }
    .ec-status-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(103, 251, 148, 0.6); flex-shrink: 0; animation: ecDotPulse 2.2s ease-in-out infinite; }
    @keyframes ecDotPulse { 0%, 100% { box-shadow: 0 0 0 2px rgba(103, 251, 148, 0.2); opacity: 0.8; } 50% { box-shadow: 0 0 0 5px rgba(103, 251, 148, 0); opacity: 1; } }
    
    .ec-icon-wrap { position: relative; width: 64px; height: 64px; flex-shrink: 0; }
    .ec-icon-inner { width: 64px; height: 64px; border-radius: 18px; background: rgba(103, 251, 148, 0.07); border: 1px solid rgba(103, 251, 148, 0.18); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; transition: background 0.35s, border-color 0.35s; }
    .event-card:hover .ec-icon-inner { background: rgba(103, 251, 148, 0.13); border-color: rgba(103, 251, 148, 0.38); }
    .ec-icon-ring { position: absolute; inset: -2px; border-radius: 20px; border: 1px solid rgba(103, 251, 148, 0.4); animation: ecIconPing 3.2s ease-out infinite; opacity: 0; }
    @keyframes ecIconPing { 0% { transform: scale(1); opacity: 0.5; } 70% { transform: scale(1.4); opacity: 0; } 100% { transform: scale(1.4); opacity: 0; } }
    
    .ec-body { flex: 1; display: flex; flex-direction: column; gap: 10px; }
    .ec-title { font-family: var(--font, 'Nunito', sans-serif); font-size: 1.05rem; font-weight: 800; line-height: 1.38; color: #fff; letter-spacing: -0.2px; }
    .ec-desc { font-family: var(--font, 'Nunito', sans-serif); font-size: 0.84rem; font-weight: 400; line-height: 1.82; color: rgba(255, 255, 255, 0.52); }
    
    .ec-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.05); gap: 12px; }
    .ec-location { display: flex; align-items: center; gap: 6px; font-family: var(--font, 'Nunito', sans-serif); font-size: 0.72rem; font-weight: 700; color: rgba(255, 255, 255, 0.32); letter-spacing: 0.3px; }
    .ec-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
    .ec-tag { font-family: var(--font, 'Nunito', sans-serif); font-size: 0.63rem; font-weight: 700; color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 5px; padding: 3px 8px; letter-spacing: 0.3px; transition: color 0.2s, border-color 0.2s, background 0.2s; }
    .event-card:hover .ec-tag { color: var(--accent, #67fb94); border-color: rgba(103, 251, 148, 0.2); background: rgba(103, 251, 148, 0.05); }
    
    .ec-drawer { position: absolute; inset: 0; z-index: 10; background: rgba(8, 10, 14, 0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 22px; border: 1px solid rgba(103, 251, 148, 0.22); transform: translateY(100%); opacity: 0; transition: transform 0.50s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.38s ease; }
    .event-card:hover .ec-drawer { transform: translateY(0); opacity: 1; }
    .ec-drawer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent, #67fb94), transparent); border-radius: 22px 22px 0 0; opacity: 0.75; }
    .ec-drawer-inner { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 32px 26px; text-align: center; }
    .ec-coming-label { display: flex; flex-direction: column; align-items: center; gap: 2px; line-height: 1; }
    .ecl-events { font-family: var(--font, 'Nunito', sans-serif); font-size: 0.72rem; font-weight: 900; color: rgba(255, 255, 255, 0.4); letter-spacing: 5px; text-transform: uppercase; }
    .ecl-coming { font-family: var(--font, 'Nunito', sans-serif); font-size: 1.85rem; font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1.1; }
    .ecl-soon { font-family: var(--font, 'Nunito', sans-serif); font-size: 1.85rem; font-weight: 900; color: var(--accent, #67fb94); letter-spacing: -1px; line-height: 1.1; }
    .ec-coming-icon { font-size: 2.6rem; animation: ecIconBounce 2.2s ease-in-out infinite; filter: drop-shadow(0 2px 14px rgba(103, 251, 148, 0.45)); line-height: 1; }
    @keyframes ecIconBounce { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-8px) scale(1.1); } }
    .ec-coming-desc { font-family: var(--font, 'Nunito', sans-serif); font-size: 0.84rem; font-weight: 400; color: rgba(255, 255, 255, 0.55); line-height: 1.78; max-width: 230px; }
    .ec-notify-btn { display: inline-flex; align-items: center; justify-content: center; padding: 11px 28px; background: transparent; color: var(--accent, #67fb94); border: 1.5px solid rgba(103, 251, 148, 0.35); border-radius: 10px; font-family: var(--font, 'Nunito', sans-serif); font-size: 0.85rem; font-weight: 800; cursor: pointer; letter-spacing: 0.3px; transition: background 0.22s, border-color 0.22s, transform 0.22s, box-shadow 0.22s; margin-top: 4px; }
    .ec-notify-btn:hover { background: rgba(103, 251, 148, 0.1); border-color: rgba(103, 251, 148, 0.6); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(103, 251, 148, 0.18); }
    .ec-notify-btn.subscribed { background: var(--accent, #67fb94); color: #080a0e; border-color: var(--accent, #67fb94); transform: none; }
    
    @media (hover: none) {
      .ec-drawer { position: static; transform: none !important; opacity: 1 !important; border-radius: 0 0 22px 22px; border: none; border-top: 1px solid rgba(103, 251, 148, 0.12); backdrop-filter: none; }
      .ec-drawer::before { display: none; }
      .ec-drawer-inner { padding: 20px 20px 24px; gap: 12px; }
      .ecl-coming, .ecl-soon { font-size: 1.5rem; }
      .ec-coming-icon { font-size: 2rem; }
      .event-card { transform: none !important; border-color: rgba(103, 251, 148, 0.12) !important; box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3) !important; }
    }
    @media (max-width: 1024px) { .events-inner { padding: 0 32px; } .events-grid { gap: 22px; } .ec-content { padding: 26px 22px 20px; } }
    @media (max-width: 860px) { .events-section { padding: 80px 0 90px; } .events-inner { padding: 0 28px; } .events-header { margin-bottom: 52px; } .events-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } .event-card:nth-child(3) { grid-column: 1 / -1; max-width: 480px; justify-self: center; width: 100%; } }
    @media (max-width: 600px) { .events-section { padding: 64px 0 72px; } .events-inner { padding: 0 16px; } .events-header { margin-bottom: 40px; } .events-title { font-size: 2rem; } .events-grid { grid-template-columns: 1fr; gap: 20px; } .event-card:nth-child(3) { grid-column: auto; max-width: 100%; justify-self: stretch; } .ec-content { padding: 22px 18px 18px; gap: 14px; } .ec-icon-inner { width: 54px; height: 54px; border-radius: 15px; } .ec-title { font-size: 0.97rem; } .ec-desc { font-size: 0.8rem; } .ec-coming-icon { font-size: 2.2rem; } .ecl-coming, .ecl-soon { font-size: 1.5rem; } .ec-coming-desc { font-size: 0.8rem; } .evf1, .evf5 { display: none; } }
    @media (max-width: 420px) { .events-title { font-size: 1.75rem; } .ec-top { flex-direction: column; align-items: flex-start; gap: 8px; } .ecl-coming, .ecl-soon { font-size: 1.3rem; } }
    
    
    /* ═══════════════════════════════════════════════════════════
       SHORT VIDEOS SECTION
    ═══════════════════════════════════════════════════════════ */
    
    .sv-anim { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; transition-delay: var(--svd, 0s); }
    .sv-anim.visible { opacity: 1; transform: translateY(0); }
    
    .sv-section { position: relative; background: var(--bg, #080a0e); padding: 110px 0 120px; overflow: hidden; border-top: 1px solid rgba(255, 255, 255, 0.04); }
    .sv-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; opacity: 0.4; }
    .sv-bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
    .svbg-glow { position: absolute; border-radius: 50%; filter: blur(110px); }
    .svbg-g1 { width: 580px; height: 580px; background: radial-gradient(circle, rgba(103, 251, 148, 0.06) 0%, transparent 70%); top: -120px; right: -80px; animation: svbgPulse 10s ease-in-out infinite alternate; }
    .svbg-g2 { width: 440px; height: 440px; background: radial-gradient(circle, rgba(103, 251, 148, 0.035) 0%, transparent 70%); bottom: -80px; left: -60px; animation: svbgPulse 13s 3s ease-in-out infinite alternate; }
    @keyframes svbgPulse { from { opacity: 0.5; transform: scale(0.88); } to { opacity: 1; transform: scale(1.12); } }
    .svbg-grid { position: absolute; inset: 0; background-image: radial-gradient(rgba(103, 251, 148, 0.05) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 72%); -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 72%); }
    
    .sv-floats { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
    .svf { position: absolute; font-size: 1.5rem; opacity: 0; animation: svfloat 9s ease-in-out infinite; filter: drop-shadow(0 2px 10px rgba(103, 251, 148, 0.2)); user-select: none; }
    .svf1 { top: 6%; left: 3%; animation-duration: 10s; animation-delay: 0s; font-size: 2rem; }
    .svf2 { top: 18%; right: 5%; animation-duration: 12s; animation-delay: 1.3s; font-size: 1.4rem; }
    .svf3 { top: 40%; left: 2%; animation-duration: 9s; animation-delay: 0.5s; font-size: 1.8rem; }
    .svf4 { top: 60%; right: 4%; animation-duration: 11s; animation-delay: 2.1s; font-size: 1.5rem; }
    .svf5 { bottom: 22%; left: 6%; animation-duration: 13s; animation-delay: 0.8s; font-size: 2.2rem; }
    .svf6 { bottom: 10%; right: 7%; animation-duration: 10s; animation-delay: 0.2s; font-size: 1.3rem; }
    .svf7 { top: 74%; left: 91%; animation-duration: 8s; animation-delay: 2.8s; font-size: 1.6rem; }
    .svf8 { top: 28%; left: 88%; animation-duration: 11s; animation-delay: 1.6s; font-size: 1.4rem; }
    @keyframes svfloat { 0% { opacity: 0; transform: translateY(0px) rotate(0deg) scale(0.6); } 15% { opacity: 0.13; } 50% { opacity: 0.09; transform: translateY(-24px) rotate(12deg) scale(1); } 85% { opacity: 0.13; } 100% { opacity: 0; transform: translateY(-48px) rotate(-7deg) scale(0.6); } }
    
    .sv-inner { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; padding: 0 40px; }
    .sv-header { text-align: center; margin-bottom: 72px; }
    .sv-title { font-family: var(--font, 'Nunito', sans-serif); font-size: clamp(2.2rem, 3.8vw, 3.4rem); font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; color: #fff; margin-top: 6px; margin-bottom: 16px; }
    .sv-title em { font-style: italic; color: var(--accent, #67fb94); }
    .sv-subtitle { font-family: var(--font, 'Nunito', sans-serif); font-size: 1rem; font-weight: 400; color: rgba(255, 255, 255, 0.45); line-height: 1.75; max-width: 520px; margin: 0 auto; }
    
    .sv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; max-width: 880px; margin: 0 auto 56px; }
    
    .sv-card { position: relative; background: rgba(255, 255, 255, 0.025); border: 1px solid rgba(103, 251, 148, 0.1); border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: border-color 0.38s, box-shadow 0.38s, transform 0.38s; box-shadow: 0 16px 52px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.03); }
    .sv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(103, 251, 148, 0.55), transparent); border-radius: 22px 22px 0 0; opacity: 0; transition: opacity 0.35s; z-index: 1; }
    .sv-card:hover { border-color: rgba(103, 251, 148, 0.3); box-shadow: 0 28px 72px rgba(0, 0, 0, 0.52), 0 0 50px rgba(103, 251, 148, 0.08); transform: translateY(-6px); }
    .sv-card:hover::before { opacity: 1; }
    
    .sv-card-glow { position: absolute; width: 230px; height: 230px; border-radius: 50%; background: radial-gradient(circle, rgba(103, 251, 148, 0.07) 0%, transparent 70%); top: -60px; right: -50px; pointer-events: none; filter: blur(32px); animation: svCardGlow 8s ease-in-out infinite alternate; z-index: 0; }
    .sv-card-glow--alt { top: auto; right: auto; bottom: -50px; left: -50px; animation-delay: 4s; }
    @keyframes svCardGlow { from { opacity: 0.5; transform: scale(0.85); } to { opacity: 1; transform: scale(1.2); } }
    
    .sv-thumb { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #0b0e14; overflow: hidden; flex-shrink: 0; }
    .sv-thumb-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(103, 251, 148, 0.04) 0%, transparent 70%); }
    .sv-thumb-icon { width: 130px; height: 130px; opacity: 0.65; transition: opacity 0.35s, transform 0.45s; }
    .sv-card:hover .sv-thumb-icon { opacity: 0.3; transform: scale(1.06); }
    
    .sv-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.85); width: 56px; height: 56px; border-radius: 50%; background: rgba(103, 251, 148, 0.92); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.35s, transform 0.35s, box-shadow 0.35s; z-index: 3; box-shadow: 0 0 0 8px rgba(103, 251, 148, 0.15); }
    .sv-card:hover .sv-play-btn { opacity: 1; transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 14px rgba(103, 251, 148, 0.08), 0 8px 28px rgba(103, 251, 148, 0.35); }
    
    .sv-duration-pill { position: absolute; bottom: 10px; right: 12px; z-index: 3; display: flex; align-items: center; gap: 5px; padding: 4px 10px; background: rgba(8, 10, 14, 0.88); border: 1px solid rgba(103, 251, 148, 0.2); border-radius: 6px; font-family: var(--font, 'Nunito', sans-serif); font-size: 0.65rem; font-weight: 700; color: rgba(255, 255, 255, 0.7); letter-spacing: 0.5px; backdrop-filter: blur(8px); }
    .sv-dur-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent, #67fb94); flex-shrink: 0; animation: svDurPulse 2s ease-in-out infinite; }
    @keyframes svDurPulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 2px rgba(103, 251, 148, 0.2); } 50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(103, 251, 148, 0); } }
    
    .sv-thumb-badge { position: absolute; top: 10px; left: 12px; z-index: 3; padding: 4px 11px; background: rgba(8, 10, 14, 0.85); border: 1px solid rgba(103, 251, 148, 0.2); border-radius: 6px; font-family: var(--font, 'Nunito', sans-serif); font-size: 0.65rem; font-weight: 800; color: var(--accent, #67fb94); letter-spacing: 0.5px; backdrop-filter: blur(8px); }
    
    .sv-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 0%, rgba(103, 251, 148, 0.04) 50%, transparent 100%); transform: translateY(-100%); transition: transform 0s; pointer-events: none; z-index: 2; }
    .sv-card:hover .sv-thumb::after { animation: svScanLine 1.1s ease-out forwards; }
    @keyframes svScanLine { from { transform: translateY(-100%); opacity: 0.7; } to { transform: translateY(120%); opacity: 0; } }
    
    .sv-card-body { position: relative; z-index: 2; padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
    .sv-card-tag { font-family: var(--font, 'Nunito', sans-serif); font-size: 0.64rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--accent, #67fb94); opacity: 0.8; }
    .sv-card-title { font-family: var(--font, 'Nunito', sans-serif); font-size: 1.08rem; font-weight: 800; line-height: 1.38; color: #fff; letter-spacing: -0.2px; }
    .sv-card-desc { font-family: var(--font, 'Nunito', sans-serif); font-size: 0.85rem; font-weight: 400; line-height: 1.8; color: rgba(255, 255, 255, 0.52); }
    .sv-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
    .sv-tag { font-family: var(--font, 'Nunito', sans-serif); font-size: 0.65rem; font-weight: 700; color: rgba(255, 255, 255, 0.45); background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 5px; padding: 3px 9px; letter-spacing: 0.3px; transition: color 0.22s, border-color 0.22s, background 0.22s; }
    .sv-card:hover .sv-tag { color: var(--accent, #67fb94); border-color: rgba(103, 251, 148, 0.22); background: rgba(103, 251, 148, 0.05); }
    
    .sv-overlay { position: absolute; inset: 0; z-index: 12; background: rgba(8, 10, 14, 0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 22px; border: 1px solid rgba(103, 251, 148, 0.22); transform: translateY(100%); opacity: 0; transition: transform 0.50s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.38s ease; }
    .sv-card:hover .sv-overlay { transform: translateY(0); opacity: 1; }
    .sv-overlay::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent, #67fb94), transparent); border-radius: 22px 22px 0 0; opacity: 0.8; }
    .sv-overlay-inner { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 32px 28px; text-align: center; }
    .sv-cs-label { display: flex; align-items: baseline; gap: 12px; line-height: 1; }
    .sv-cs-coming { font-family: var(--font, 'Nunito', sans-serif); font-size: 2rem; font-weight: 900; color: #fff; letter-spacing: -1px; }
    .sv-cs-soon { font-family: var(--font, 'Nunito', sans-serif); font-size: 2rem; font-weight: 900; color: var(--accent, #67fb94); letter-spacing: -1px; }
    .sv-cs-icon { font-size: 2.8rem; animation: svIconBounce 2.2s ease-in-out infinite; filter: drop-shadow(0 2px 14px rgba(103, 251, 148, 0.45)); line-height: 1; }
    @keyframes svIconBounce { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-8px) scale(1.1); } }
    .sv-cs-desc { font-family: var(--font, 'Nunito', sans-serif); font-size: 0.85rem; font-weight: 400; color: rgba(255, 255, 255, 0.55); line-height: 1.78; max-width: 250px; }
    .sv-notify-btn { display: inline-flex; align-items: center; justify-content: center; padding: 11px 28px; background: transparent; color: var(--accent, #67fb94); border: 1.5px solid rgba(103, 251, 148, 0.35); border-radius: 10px; font-family: var(--font, 'Nunito', sans-serif); font-size: 0.86rem; font-weight: 800; cursor: pointer; letter-spacing: 0.3px; transition: background 0.22s, border-color 0.22s, transform 0.22s, box-shadow 0.22s; margin-top: 4px; }
    .sv-notify-btn:hover { background: rgba(103, 251, 148, 0.1); border-color: rgba(103, 251, 148, 0.6); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(103, 251, 148, 0.18); }
    .sv-notify-btn.subscribed { background: var(--accent, #67fb94); color: #080a0e; border-color: var(--accent, #67fb94); transform: none; }
    
    .sv-footer-hint { display: flex; align-items: center; justify-content: center; gap: 16px; }
    .svfh-line { height: 1px; flex: 1; max-width: 160px; background: linear-gradient(to right, transparent, rgba(103, 251, 148, 0.2)); }
    .svfh-line--r { background: linear-gradient(to left, transparent, rgba(103, 251, 148, 0.2)); }
    .svfh-text { display: flex; align-items: center; gap: 8px; font-family: var(--font, 'Nunito', sans-serif); font-size: 0.73rem; font-weight: 700; color: rgba(255, 255, 255, 0.3); letter-spacing: 0.5px; white-space: nowrap; }
    .svfh-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--accent, #67fb94); flex-shrink: 0; animation: svfhPulse 2.4s ease-in-out infinite; }
    @keyframes svfhPulse { 0%, 100% { box-shadow: 0 0 0 2px rgba(103, 251, 148, 0.25); opacity: 1; } 50% { box-shadow: 0 0 0 7px rgba(103, 251, 148, 0); opacity: 0.7; } }
    
    @media (hover: none) {
      .sv-overlay { position: static; transform: none !important; opacity: 1 !important; border-radius: 0 0 22px 22px; border: none; border-top: 1px solid rgba(103, 251, 148, 0.12); backdrop-filter: none; }
      .sv-overlay::before { display: none; }
      .sv-overlay-inner { padding: 20px 20px 26px; gap: 12px; }
      .sv-cs-coming, .sv-cs-soon { font-size: 1.55rem; }
      .sv-cs-icon { font-size: 2.2rem; }
      .sv-card { transform: none !important; border-color: rgba(103, 251, 148, 0.12) !important; box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3) !important; }
      .sv-play-btn { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    }
    @media (max-width: 860px) { .sv-section { padding: 80px 0 90px; } .sv-inner { padding: 0 28px; } .sv-header { margin-bottom: 52px; } .sv-grid { gap: 26px; } }
    @media (max-width: 640px) { .sv-section { padding: 64px 0 72px; } .sv-inner { padding: 0 16px; } .sv-header { margin-bottom: 40px; } .sv-title { font-size: 2rem; } .sv-grid { grid-template-columns: 1fr; gap: 22px; max-width: 100%; } .sv-card-body { padding: 20px 18px 22px; } .sv-card-title { font-size: 0.98rem; } .sv-card-desc { font-size: 0.82rem; } .sv-cs-coming, .sv-cs-soon { font-size: 1.6rem; } .sv-cs-icon { font-size: 2.4rem; } .svf1, .svf5 { display: none; } .svfh-line { max-width: 60px; } .svfh-text { font-size: 0.66rem; white-space: normal; text-align: center; } }
    @media (max-width: 420px) { .sv-title { font-size: 1.75rem; } .sv-cs-label { flex-direction: column; gap: 0; } .sv-cs-coming, .sv-cs-soon { font-size: 1.4rem; } }
    
    
    /* ═══════════════════════════════════════════════════════════
       SITE FOOTER
    ═══════════════════════════════════════════════════════════ */
    
    .site-footer { position: relative; background: #07090d; overflow: hidden; border-top: 1px solid rgba(255, 255, 255, 0.04); }
    .footer-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
    .fbg-top-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(103, 251, 148, 0.35) 30%, rgba(103, 251, 148, 0.55) 50%, rgba(103, 251, 148, 0.35) 70%, transparent 100%); }
    .fbg-glow { position: absolute; border-radius: 50%; filter: blur(120px); }
    .fbg-g1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(103, 251, 148, 0.04) 0%, transparent 70%); top: -160px; left: -80px; animation: fbgPulse 12s ease-in-out infinite alternate; }
    .fbg-g2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(103, 251, 148, 0.03) 0%, transparent 70%); bottom: -80px; right: -60px; animation: fbgPulse 15s 4s ease-in-out infinite alternate; }
    @keyframes fbgPulse { from { opacity: 0.4; transform: scale(0.88); } to { opacity: 1; transform: scale(1.1); } }
    .fbg-grid { position: absolute; inset: 0; background-image: radial-gradient(rgba(103, 251, 148, 0.04) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(ellipse 90% 80% at 40% 40%, black 0%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 90% 80% at 40% 40%, black 0%, transparent 70%); }
    
    .footer-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 80px 48px 64px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; align-items: start; }
    
    .footer-brand { display: flex; flex-direction: column; gap: 20px; padding-right: 20px; }
    .footer-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; width: fit-content; transition: opacity 0.25s; }
    .footer-logo:hover { opacity: 0.8; }
    .footer-logo img { height: 36px; width: auto; object-fit: contain; }
    .footer-logo-text { font-family: var(--font, 'Nunito', sans-serif); font-size: 1.08rem; font-weight: 800; letter-spacing: -0.2px; color: #fff; }
    .footer-logo-text em { font-style: normal; color: var(--accent, #67fb94); }
    .footer-bio { font-family: var(--font, 'Nunito', sans-serif); font-size: 0.83rem; font-weight: 400; line-height: 1.92; color: rgba(255, 255, 255, 0.42); max-width: 320px; text-align: left; }
    
    .footer-socials { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
    .fsocial-label { font-family: var(--font, 'Nunito', sans-serif); font-size: 0.62rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255, 255, 255, 0.28); text-align: left; }
    .fsocial-links { display: flex; gap: 10px; }
    .fsocial-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.45); text-decoration: none; transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease; position: relative; overflow: hidden; }
    .fsocial-icon::before { content: ''; position: absolute; inset: 0; background: rgba(103, 251, 148, 0.1); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; border-radius: 10px; }
    .fsocial-icon:hover::before { transform: scaleX(1); }
    .fsocial-icon:hover { color: var(--accent, #67fb94); border-color: rgba(103, 251, 148, 0.35); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(103, 251, 148, 0.15); }
    .fsocial-icon svg { position: relative; z-index: 1; }
    
    .footer-col { display: flex; flex-direction: column; gap: 0; }
    .footer-col-title { font-family: var(--font, 'Nunito', sans-serif); font-size: 0.78rem; font-weight: 900; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255, 255, 255, 0.85); margin-bottom: 10px; }
    .footer-col-accent { width: 28px; height: 2px; background: var(--accent, #67fb94); border-radius: 2px; margin-bottom: 22px; box-shadow: 0 0 8px rgba(103, 251, 148, 0.4); }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0; }
    .footer-nav-links { gap: 2px; }
    .footer-nav-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font, 'Nunito', sans-serif); font-size: 0.84rem; font-weight: 600; color: rgba(255, 255, 255, 0.42); text-decoration: none; padding: 7px 0; position: relative; transition: color 0.25s ease, padding-left 0.25s ease; }
    .footer-nav-link::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%) scaleY(0); width: 2px; height: 14px; background: var(--accent, #67fb94); border-radius: 2px; transition: transform 0.22s ease, opacity 0.22s; opacity: 0; }
    .footer-nav-link:hover { color: var(--accent, #67fb94); padding-left: 12px; }
    .footer-nav-link:hover::before { transform: translateY(-50%) scaleY(1); opacity: 1; }
    
    .footer-book-link { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; background: rgba(103, 251, 148, 0.03); border: 1px solid rgba(103, 251, 148, 0.08); border-radius: 11px; text-decoration: none; transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease; margin-bottom: 4px; }
    .footer-book-link:hover { background: rgba(103, 251, 148, 0.07); border-color: rgba(103, 251, 148, 0.22); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(103, 251, 148, 0.1); }
    .footer-book-link--upcoming { background: rgba(255, 255, 255, 0.02); border-color: rgba(255, 255, 255, 0.06); }
    .footer-book-link--upcoming:hover { background: rgba(103, 251, 148, 0.05); border-color: rgba(103, 251, 148, 0.16); }
    .flb-icon { font-size: 1.25rem; line-height: 1; flex-shrink: 0; margin-top: 1px; filter: drop-shadow(0 2px 6px rgba(103, 251, 148, 0.2)); }
    .flb-text { display: flex; flex-direction: column; gap: 3px; }
    .flb-text strong { font-family: var(--font, 'Nunito', sans-serif); font-size: 0.84rem; font-weight: 800; color: rgba(255, 255, 255, 0.78); line-height: 1.3; transition: color 0.25s; }
    .footer-book-link:hover .flb-text strong { color: var(--accent, #67fb94); }
    .flb-text small { font-family: var(--font, 'Nunito', sans-serif); font-size: 0.65rem; font-weight: 700; color: rgba(255, 255, 255, 0.28); letter-spacing: 0.5px; text-transform: uppercase; }
    
    .footer-bottom { position: relative; z-index: 2; border-top: 1px solid rgba(255, 255, 255, 0.05); }
    .footer-bottom-inner { max-width: 1240px; margin: 0 auto; padding: 20px 48px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
    .footer-copy { font-family: var(--font, 'Nunito', sans-serif); font-size: 0.75rem; font-weight: 600; color: rgba(255, 255, 255, 0.2); letter-spacing: 0.2px; }
    .footer-tagline { font-family: var(--font, 'Nunito', sans-serif); font-size: 0.65rem; font-weight: 800; color: rgba(103, 251, 148, 0.32); letter-spacing: 2.5px; text-transform: uppercase; }
    
    @media (min-width: 1400px) { .footer-inner { padding: 90px 64px 72px; } }
    @media (max-width: 1100px) { .footer-inner { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; padding: 72px 36px 56px; } }
    @media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 32px; padding: 60px 28px 48px; } .footer-brand { grid-column: 1 / -1; padding-right: 0; max-width: 540px; } .footer-bio { max-width: 100%; } }
    @media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 48px 20px 40px; } .footer-brand { grid-column: auto; } .footer-bottom-inner { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 6px; } .footer-tagline { font-size: 0.6rem; } }
    @media (max-width: 420px) { .footer-col-title { font-size: 0.72rem; } .footer-nav-link { font-size: 0.8rem; } .flb-text strong { font-size: 0.8rem; } }
    .drawer-btns {
  display: flex;
  gap: 10px;
}

.drawer-btns .drawer-btn {
  flex: 1;
  font-size: 0.82rem;
}

.drawer-btn--flipkart {
  background: #2874f0;
  color: #fff;
}

.drawer-btn--flipkart:hover {
  background: #1a5dc8;
  box-shadow: 0 8px 24px rgba(40,116,240,0.3);
}