

    /* ============================================
       HOME — MINIMAL HERO
       ============================================ */

    #page-home {
      height: 100vh;
      overflow: hidden;
    }

    .home-hero {
      height: 100%;
      display: flex;
      align-items: center;
      padding: 0 100px;
      position: relative;
      background: var(--bg);
    }

    /* Subtle noise texture overlay */
    .home-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      pointer-events: none;
      opacity: 0.6;
    }

    /* Thin accent line on the left edge */
    .home-hero::after {
      content: '';
      position: absolute;
      left: 60px;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 120px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      pointer-events: none;
    }

    .hh-inner {
      position: relative;
      z-index: 1;
      max-width: 680px;
    }

    /* Eyebrow */
    .hh-eye {
      font-family: var(--f-ui);
      font-size: 9px;
      letter-spacing: 0.45em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeUp 1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    /* Main title */
    .hh-title {
      font-family: var(--f-head);
      font-size: clamp(72px, 9vw, 120px);
      font-weight: 700;
      color: var(--cream);
      line-height: 0.9;
      letter-spacing: -0.03em;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeUp 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .hh-title em {
      font-style: italic;
      font-weight: 300;
      color: var(--gold);
    }

    /* Identity statement */
    .hh-identity {
      font-family: var(--f-body);
      font-size: 15px;
      color: var(--muted);
      line-height: 1.8;
      font-weight: 300;
      letter-spacing: 0.01em;
      word-break: keep-all;
      max-width: 480px;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeUp 1s 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    /* Pillars in home context */
    .hh-pillars {
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeUp 1s 0.44s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    /* CTA */
    .hh-cta {
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeUp 1s 0.56s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    /* Quick links on home */
    .hh-inner .h-quick-links {
      opacity: 0;
      animation: fadeUp 1s 0.68s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    /* ============================================
       SHARED: QUICK LINKS & PILLARS
       ============================================ */

    .h-quick-links {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .h-ql-label {
      font-family: var(--f-ui);
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: var(--muted);
      font-weight: 600;
      margin-right: 4px;
    }

    .h-ql-item {
      width: 18px;
      height: 18px;
      fill: var(--muted);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .h-ql-item svg {
      width: 100%;
      height: 100%;
    }

    .h-ql-item:hover {
      transform: translateY(-3px) scale(1.15);
      fill: var(--pc);
      filter: drop-shadow(0 4px 8px color-mix(in srgb, var(--pc) 30%, transparent));
    }

    /* ============================================
       HOME RESPONSIVE
       ============================================ */

    @media (max-width: 768px) {
      .home-hero {
        padding: 0 28px;
        align-items: flex-end;
        padding-bottom: 72px;
      }

      .home-hero::after {
        display: none;
      }

      .hh-title {
        font-size: clamp(60px, 16vw, 88px);
      }

      .hh-inner .h-quick-links {
        flex-wrap: wrap;
      }
    }

    /* ============================================
       BRAND INTRO (Music Page)
       ============================================ */

    .m-intro {
      position: relative;
      width: 100%;
      padding: 0;
      margin-bottom: 80px;
    }

    /* Brand Content */
    .m-brand {
      max-width: 100%;
    }

    .m-eye-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }

    .m-eye-line {
      width: 32px;
      height: 1px;
      background: var(--accent);
    }

    .m-eye {
      font-family: var(--f-ui);
      font-size: 11px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 700;
    }

    .m-title {
      font-family: var(--f-head);
      font-size: clamp(64px, 8vw, 96px);
      font-weight: 700;
      line-height: 0.9;
      letter-spacing: -0.04em;
      margin-bottom: 32px;
      color: var(--cream);
    }

    .m-title em {
      font-style: italic;
      color: var(--gold);
      font-weight: 400;
    }

    .m-identity {
      font-family: var(--f-body);
      font-size: 16px;
      line-height: 1.8;
      color: var(--muted);
      padding-left: 20px;
      border-left: 2px solid var(--border);
      margin-bottom: 48px;
    }

    /* Showcase Card (Glassmorphism) */
    .m-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 32px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
    }

    .m-card:hover {
      transform: translateY(-10px) rotate(1deg);
      border-color: rgba(233, 196, 106, 0.3);
      background: rgba(255, 255, 255, 0.08);
    }

    .m-card-cover {
      width: 100%;
      aspect-ratio: 1;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 24px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.3);
      position: relative;
    }

    .m-card-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1s;
    }

    .m-card:hover .m-card-cover img {
      transform: scale(1.05);
    }

    .m-tag {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(4px);
      padding: 6px 12px;
      border-radius: 100px;
      font-size: 9px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 0.1em;
      border: 1px solid rgba(233, 196, 106, 0.3);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .m-tag-dot {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { opacity: 0.4; transform: scale(0.8); }
      50% { opacity: 1; transform: scale(1.1); }
      100% { opacity: 0.4; transform: scale(0.8); }
    }

    @keyframes m-wave {
      0% { height: 10%; opacity: 0.3; }
      100% { height: 100%; opacity: 1; }
    }

    .m-card-title {
      font-family: var(--f-head);
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .m-card-desc {
      font-family: var(--f-body);
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.5;
      margin-bottom: 24px;
    }

    /* Animated Waveform */
    .m-waveform {
      display: flex;
      align-items: flex-end;
      gap: 3px;
      height: 40px;
    }

    .m-bar {
      flex: 1;
      background: var(--accent);
      opacity: 0.6;
      border-radius: 2px;
      min-height: 4px;
    }

    /* Pillars & Links */
    .m-pillars {
      display: flex;
      gap: 20px;
      margin-bottom: 40px;
    }

    .m-pillar {
      display: flex;
      flex-direction: column;
    }

    .m-pillar span {
      font-family: var(--f-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: #fff;
    }

    .m-pillar em {
      font-family: var(--f-body);
      font-size: 9px;
      color: rgba(255, 255, 255, 0.4);
      font-style: normal;
    }

    .m-ql {
      display: flex;
      gap: 16px;
    }

    .m-ql-item {
      width: 18px;
      height: 18px;
      fill: rgba(255, 255, 255, 0.5);
      transition: all 0.3s;
    }

    .m-ql-item:hover {
      fill: var(--accent);
      transform: translateY(-3px);
    }

    @media (max-width: 1024px) {
      .m-hero {
        padding: 60px 40px;
      }
      .m-hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
      }
      .m-card {
        max-width: 400px;
        margin: 0 auto;
      }
    }

    @media (max-width: 768px) {
      .m-hero {
        padding: 40px 24px;
        border-radius: 24px;
      }
      .m-title {
        font-size: 48px;
      }
      .m-card {
        padding: 24px;
      }
    }

    /* ============================================
       FEATURED MUSIC SECTION
       ============================================ */
    .featured-release {
      margin-bottom: 80px;
      padding: 60px;
      background: var(--bg2);
      border-radius: 24px;
      border: 1px solid var(--border);
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .featured-release::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 80%;
      height: 200%;
      background: radial-gradient(circle, rgba(51, 92, 129, 0.05) 0%, transparent 70%);
      transform: rotate(-15deg);
      pointer-events: none;
    }

    .f-img {
      width: 320px;
      height: 320px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border);
      z-index: 1;
    }

    .f-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .f-content {
      z-index: 1;
    }

    .f-tag {
      display: inline-block;
      font-family: var(--f-ui);
      font-size: 10px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      font-weight: 700;
    }

    .f-title {
      font-family: var(--f-head);
      font-size: clamp(32px, 4vw, 56px);
      font-weight: 700;
      color: var(--cream);
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .f-desc {
      font-family: var(--f-body);
      font-size: 17px;
      line-height: 1.8;
      color: var(--muted);
      margin-bottom: 32px;
      max-width: 500px;
    }

    /* SMOOTH PAGE TRANSITION */
    .page {
      display: none;
      min-height: 100vh;
      opacity: 0;
      transition: opacity 0.8s ease;
    }

    .page.active {
      display: block;
      opacity: 1;
    }

    /* STICKY MOBILE MENU BUTTON */
    @media(max-width:768px) {
      .featured-release {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
        text-align: center;
      }

      .f-img {
        width: 200px;
        height: 200px;
        margin: 0 auto;
      }

      .f-desc {
        margin: 0 auto 32px;
      }

      .mob-header {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        background: rgba(255, 255, 255, 0.8);
      }

      .mob-toggle {
        width: 40px;
        height: 40px;
        background: var(--gold);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        box-shadow: 0 4px 12px rgba(51, 92, 129, 0.3);
      }
    }

    :root {
      --bg: #ffffff;
      --bg2: #f8fafc;
      --sw: 280px;
      --cream: #1e293b;
      --gold: #335c81;
      /* Harbor Blue */
      --gold-light: #5891ad;
      /* Sky Blue */
      --muted: #64748b;
      --border: rgba(51, 92, 129, 0.12);
      --accent: #e9c46a;
      /* Harbor Yellow */
      /* Modern Shadows */
      --shadow-sm: 0 2px 4px rgba(51, 92, 129, 0.04);
      --shadow-md: 0 12px 24px -10px rgba(51, 92, 129, 0.12);
      --shadow-lg: 0 40px 80px -20px rgba(51, 92, 129, 0.15);
      /* MODERN CLASSIC FONTS */
      --f-head: 'Playfair Display', serif;
      --f-body: 'Pretendard', 'Noto Sans KR', sans-serif;
      --f-ui: 'Lora', serif;
    }

    @media (prefers-color-scheme: dark) {
      :root {
        --bg: #0f172a;
        --bg2: #1e293b;
        --cream: #f8fafc;
        --gold: #7ba8c9;
        /* Lighter Harbor Blue for contrast */
        --gold-light: #94b8cc;
        --muted: #94a3b8;
        --border: rgba(255, 255, 255, 0.1);
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
        --shadow-md: 0 12px 24px -10px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
      }
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    html {
      scroll-behavior: smooth;
    }

    html,
    body {
      height: 100%;
      overflow: hidden;
    }

    body {
      background: var(--bg);
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
      color: var(--cream);
      font-family: var(--f-body);
      font-weight: 300;
      display: flex;
      line-height: 1.8;
      word-break: keep-all;
    }

    /* SIDEBAR REDESIGN */
    .sidebar {
      width: var(--sw);
      min-width: var(--sw);
      height: 100vh;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      padding: 64px 48px;
      position: fixed;
      left: 0;
      top: 0;
      z-index: 10;
    }

    .s-logo {
      font-family: var(--f-head);
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--gold);
      cursor: pointer;
      margin-bottom: 12px;
      text-decoration: none;
      display: block;
    }

    .s-sub {
      font-family: var(--f-ui);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 64px;
      font-weight: 500;
      opacity: 0.7;
    }

    .s-nav {
      list-style: none;
      margin-bottom: auto;
      /* Pushes the next section to bottom */
    }

    .s-nav li {
      margin-bottom: 8px;
    }

    .s-nav a {
      display: block;
      font-family: var(--f-ui);
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      padding: 12px 0;
      font-weight: 500;
      transition: all 0.4s ease;
      cursor: pointer;
      position: relative;
    }

    .s-nav a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 8px;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.4s ease;
    }

    .s-nav a:hover {
      color: var(--gold);
      transform: translateX(4px);
    }

    .s-nav a.active {
      color: var(--gold);
      font-weight: 700;
    }

    .s-nav a.active::after {
      width: 20px;
    }

    

    

    .s-btn:hover {
      background: var(--bg2);
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(51, 92, 129, 0.08);
    }

    

    

    

    .s-player {
      margin-top: auto;
      padding: 24px;
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid var(--border);
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
      transition: all 0.4s ease;
    }

    .s-player:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: rgba(51, 92, 129, 0.2);
    }

    .sp-label {
      font-family: var(--f-ui);
      font-size: 9px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
      display: block;
      font-weight: 600;
    }

    .sp-title {
      font-family: var(--f-head);
      font-size: 18px;
      color: var(--cream);
      margin-bottom: 8px;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .sp-desc {
      font-family: var(--f-body);
      font-size: 11px;
      color: var(--muted);
      margin-bottom: 18px;
      font-weight: 300;
      letter-spacing: 0.05em;
    }

    .sp-wave {
      display: flex;
      gap: 3px;
      align-items: center;
      margin-bottom: 12px;
    }

    .wb {
      width: 2px;
      background: var(--gold);
      border-radius: 2px;
      animation: wave 1.2s ease-in-out infinite;
      opacity: 0.5;
    }

    .wb:nth-child(1) {
      height: 6px;
      animation-delay: 0s
    }

    .wb:nth-child(2) {
      height: 12px;
      animation-delay: .15s
    }

    .wb:nth-child(3) {
      height: 18px;
      animation-delay: .3s
    }

    .wb:nth-child(4) {
      height: 10px;
      animation-delay: .45s
    }

    .wb:nth-child(5) {
      height: 16px;
      animation-delay: .6s
    }

    .wb:nth-child(6) {
      height: 8px;
      animation-delay: .75s
    }

    .wb:nth-child(7) {
      height: 14px;
      animation-delay: .9s
    }

    .sp-link {
      font-family: var(--f-ui);
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      padding-bottom: 1px;
      font-weight: 600;
    }

    .sp-link:hover {
      border-color: var(--gold);
    }

    /* Sidebar release platform links */
    .sp-links {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 4px;
    }

    .sp-platform {
      font-family: var(--f-ui);
      font-size: 9px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      font-weight: 600;
      padding: 4px 10px;
      border: 1px solid var(--border);
      border-radius: 100px;
      transition: all 0.3s ease;
    }

    .sp-platform:hover {
      color: var(--pc);
      border-color: var(--pc);
      background: color-mix(in srgb, var(--pc) 8%, transparent);
    }

    /* MAIN */
    .main {
      margin-left: var(--sw);
      flex: 1;
      height: 100vh;
      overflow-y: auto;
      scroll-behavior: smooth;
    }

    /* PAGES */
    .page {
      display: none;
      min-height: 100vh;
    }

    .page.active {
      display: block;
    }

    /* REVEAL ANIMATIONS */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }


    /* BUTTONS */

    .btn-p {
      font-family: var(--f-ui);
      padding: 14px 44px;
      background: var(--gold);
      color: var(--bg);
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      cursor: pointer;
      border: 1px solid var(--gold);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-block;
      font-weight: 500;
      border-radius: 4px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(51, 92, 129, 0.2);
    }

    .btn-p:hover {
      background: transparent;
      color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 12px 25px rgba(51, 92, 129, 0.15);
    }

    .btn-s {
      font-family: var(--f-ui);
      padding: 14px 44px;
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.5);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-block;
      font-weight: 500;
      border-radius: 4px;
      text-align: center;
    }

    .btn-s:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-4px);
      background: rgba(51, 92, 129, 0.05);
      box-shadow: 0 8px 20px rgba(51, 92, 129, 0.1);
    }

    /* PAGE INNER */
    .pi {
      padding: 100px;
      max-width: 1200px;
    }

    .p-header {
      margin-bottom: 80px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
    }

    .p-eye {
      font-family: var(--f-ui);
      font-size: 11px;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      font-weight: 500;
    }

    .p-title {
      font-family: var(--f-head);
      font-size: clamp(44px, 6vw, 84px);
      font-weight: 700;
      color: var(--cream);
      line-height: 1.1;
      letter-spacing: -0.01em;
    }

    .p-desc {
      font-family: var(--f-body);
      font-size: 15px;
      line-height: 1.8;
      color: var(--muted);
      margin-top: 16px;
      max-width: 600px;
      font-weight: 300;
      letter-spacing: 0.01em;
      white-space: pre-wrap;
    }

    /* ALBUMS */
    .album-item {
      display: grid;
      grid-template-columns: 140px 140px 1fr;
      gap: 60px;
      padding: 64px 0;
      border-bottom: 1px solid var(--border);
      align-items: start;
      cursor: pointer;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .album-item:hover {
      background: rgba(51, 92, 129, 0.02);
    }

    .a-img {
      width: 140px;
      height: 140px;
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--bg2);
      box-shadow: var(--shadow-sm);
    }

    .a-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .a-year {
      font-family: var(--f-head);
      font-size: 52px;
      font-weight: 700;
      color: rgba(51, 92, 129, 0.08);
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .a-genre {
      display: inline-block;
      font-family: var(--f-ui);
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid var(--border);
      padding: 4px 12px;
      margin-top: 12px;
      font-weight: 600;
      border-radius: 2px;
    }

    .a-title {
      font-family: var(--f-head);
      font-size: 32px;
      color: var(--cream);
      margin-bottom: 14px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .a-desc {
      font-family: var(--f-body);
      font-size: 15px;
      line-height: 2.1;
      color: var(--muted);
      margin-bottom: 14px;
      font-weight: 300;
    }

    .a-credit {
      font-family: var(--f-ui);
      font-size: 12px;
      color: rgba(100, 116, 139, 0.4);
      font-style: italic;
      letter-spacing: 0.02em;
    }

    /* SUB HEADER */
    .sub-h {
      margin: 100px 0 40px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border);
    }

    .sub-h h3 {
      font-family: var(--f-head);
      font-size: 40px;
      font-weight: 700;
      color: var(--cream);
      letter-spacing: -0.01em;
    }

    /* ACTIVITY */
    .act-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      border-top: 1px solid var(--border);
      border-left: 1px solid var(--border);
      margin-bottom: 100px;
    }

    .act-item {
      background: var(--bg);
      padding: 48px 40px;
      border-bottom: 1px solid var(--border);
      border-right: 1px solid var(--border);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .act-item:hover {
      background: rgba(248, 250, 252, 0.5);
    }

    .act-period {
      font-family: var(--f-ui);
      font-size: 10px;
      letter-spacing: 0.25em;
      color: var(--gold);
      margin-bottom: 16px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .act-name {
      font-family: var(--f-head);
      font-size: 24px;
      color: var(--cream);
      margin-bottom: 12px;
      font-weight: 700;
    }

    .act-desc {
      font-family: var(--f-body);
      font-size: 14px;
      line-height: 2.0;
      color: var(--muted);
      margin-bottom: 20px;
      font-weight: 300;
    }

    .act-award {
      display: inline-block;
      font-family: var(--f-ui);
      font-size: 10px;
      color: var(--gold);
      border: 1px solid var(--border);
      padding: 5px 14px;
      border-radius: 2px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* ABOUT */
    .about-image {
      margin-bottom: 80px;
      max-width: 720px;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: var(--shadow-lg);
    }

    .about-image img {
      width: 100%;
      height: auto;
      display: block;
      filter: grayscale(10%) contrast(105%);
      transition: transform 2s ease;
    }

    .about-image:hover img {
      transform: scale(1.05);
    }

    .about-verse {
      margin-bottom: 100px;
      padding: 80px 60px;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(5px);
      max-width: 720px;
      border-radius: 8px;
      text-align: center;
      box-shadow: var(--shadow-md);
    }

    .v-text {
      font-family: var(--f-body);
      font-size: 24px;
      font-weight: 500;
      color: var(--cream);
      line-height: 1.8;
      margin-bottom: 28px;
      letter-spacing: -0.02em;
    }

    .v-ref {
      font-family: var(--f-ui);
      font-size: 11px;
      letter-spacing: 0.4em;
      color: var(--muted);
      font-weight: 600;
      text-transform: uppercase;
    }

    .about-body {
      max-width: 720px;
      margin-bottom: 100px;
    }

    .about-body p {
      font-family: var(--f-body);
      font-size: 16px;
      line-height: 2.2;
      color: var(--muted);
      margin-bottom: 48px;
      text-align: justify;
      font-weight: 300;
      letter-spacing: -0.01em;
    }

    .about-close {
      padding-top: 64px;
      border-top: 1px solid var(--border);
    }

    .close-text {
      font-family: var(--f-head);
      font-size: 40px;
      font-style: italic;
      font-weight: 400;
      color: var(--gold);
      letter-spacing: -0.01em;
    }

    /* BLOG */
    .blog-grid {
      display: grid;
      gap: 24px;
      padding-bottom: 24px;
    }

    .blog-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      text-decoration: none;
      display: flex;
      flex-direction: column;
    }

    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--gold-light);
    }

    .blog-img {
      width: 100%;
      height: 160px;
      background: rgba(51, 92, 129, 0.05);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-family: var(--f-ui);
      font-size: 11px;
    }

    .blog-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .blog-card:hover .blog-img img {
      transform: scale(1.05);
    }

    .blog-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
      justify-content: space-between;
      gap: 12px;
    }

    .blog-title {
      font-family: var(--f-body);
      font-size: 16px;
      font-weight: 600;
      color: var(--cream);
      line-height: 1.4;
      word-break: keep-all;
    }

    .blog-date {
      font-family: var(--f-ui);
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.1em;
    }

    @media(min-width:768px) {
      .blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(min-width:1024px) {
      .blog-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* STREAMING LINKS */
    .stream-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .stream-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--f-ui);
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      font-weight: 500;
      padding: 7px 14px;
      border: 1px solid var(--border);
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.5);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .stream-btn svg {
      width: 14px;
      height: 14px;
      fill: var(--muted);
      flex-shrink: 0;
      transition: fill 0.3s;
    }

    .stream-btn:hover {
      color: var(--platform-color);
      border-color: var(--platform-color);
      background: color-mix(in srgb, var(--platform-color) 6%, transparent);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px color-mix(in srgb, var(--platform-color) 20%, transparent);
    }

    .stream-btn:hover svg {
      fill: var(--platform-color);
    }

    .no-links {
      font-family: var(--f-ui);
      font-size: 10px;
      letter-spacing: 0.15em;
      color: var(--muted);
      opacity: 0.4;
      margin-top: 12px;
      text-transform: uppercase;
    }

    /* HERO PILLARS */
    .h-pillars {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
      opacity: 0;
      animation: fadeUp 1.2s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .hp {
      font-family: var(--f-ui);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 400;
    }

    .hp em {
      color: rgba(51, 92, 129, 0.4);
      font-style: normal;
      font-size: 9px;
      display: block;
      margin-top: 2px;
    }

    .hp-dot {
      color: rgba(51, 92, 129, 0.15);
      font-size: 14px;
    }

    /* ABOUT CTA */
    .about-cta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 48px;
      padding-top: 48px;
      border-top: 1px solid var(--border);
    }

    /* MODAL PREVIEW */
    .mdl-wrap {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      padding: 24px;
    }

    .mdl-wrap.active {
      opacity: 1;
      pointer-events: auto;
    }

    .mdl-box {
      background: var(--bg);
      width: 100%;
      max-width: 860px;
      max-height: 90vh;
      border-radius: 16px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-lg);
      overflow-y: auto;
      transform: translateY(20px) scale(0.98);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
    }

    .mdl-box.mdl-wide {
      max-width: 1200px;
      will-change: transform, opacity;
      transform: translateZ(0);
    }

    .blog-modal-wrap {
      width: 100%;
      height: 85vh;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: #fff; /* Ensure solid background for text clarity */
    }
    .blog-modal-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
      /* Clarity optimizations */
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
      backface-visibility: hidden;
      -webkit-font-smoothing: antialiased;
      transform: translateZ(0);
    }

    .mdl-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 32px;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
    }

    @media (prefers-color-scheme: dark) {
      .mdl-head {
        background: rgba(15, 23, 42, 0.9);
      }
    }

    .mdl-title {
      font-family: var(--f-head);
      font-size: 24px;
      color: var(--cream);
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .mdl-close {
      background: none;
      border: none;
      font-size: 32px;
      color: var(--muted);
      cursor: pointer;
      transition: color 0.3s;
      line-height: 1;
      margin-top: -4px;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mdl-close:hover {
      color: var(--gold);
    }

    .mdl-body {
      padding: 32px;
      display: grid;
      gap: 40px;
    }

    .mdl-youtube {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 12px;
      background: #000;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border);
    }

    .mdl-youtube iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .mdl-cover img {
      width: 100%;
      border-radius: 12px;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border);
    }

    .mdl-info {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    @media (min-width: 768px) {
      .mdl-body {
        grid-template-columns: 280px 1fr;
        align-items: start;
      }
    }

    /* BLOG READER CSS */
    .blog-reader-content img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 16px 0;
    }



    .blog-img.placeholder {
      background: linear-gradient(135deg, rgba(30, 41, 59, 1) 0%, rgba(206, 174, 117, 0.15) 100%);
      position: relative;
    }

    .ph-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(206, 174, 117, 0.3) 1px, transparent 1px);
      background-size: 16px 16px;
      opacity: 0.5;
    }

    .ph-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--f-head);
      color: var(--gold);
      font-size: 14px;
      letter-spacing: 0.2em;
      opacity: 0.9;
      text-align: center;
      line-height: 1.6;
    }

    /* MICRO ANIMATIONS */
    .btn-p,
    .btn-s,
    .stream-btn,
    .sp-platform {
      position: relative;
      overflow: hidden;
    }

    .btn-p::after,
    .btn-s::after,
    .stream-btn::after,
    .sp-platform::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
      opacity: 0;
      transform: scale(0.5);
      transition: opacity 0.4s, transform 0.4s;
      pointer-events: none;
    }

    .btn-p:active::after,
    .btn-s:active::after,
    .stream-btn:active::after,
    .sp-platform:active::after {
      opacity: 0.3;
      transform: scale(2);
      transition: 0s;
    }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes wave {

      0%,
      100% {
        transform: scaleY(1);
        opacity: .5
      }

      50% {
        transform: scaleY(.4);
        opacity: 1
      }
    }

    /* MOBILE */
    .mob-header {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.97);
      border-bottom: 1px solid var(--border);
      padding: 16px 24px;
      justify-content: space-between;
      align-items: center;
    }

    .mob-logo {
      font-family: var(--f-head);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--gold);
      cursor: pointer;
    }

    .mob-toggle {
      background: none;
      border: none;
      color: var(--cream);
      font-size: 24px;
      cursor: pointer;
    }

    @media(max-width:768px) {

      html,
      body {
        overflow: auto
      }

      .sidebar {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        width: 280px;
        min-width: 280px;
        max-width: 85vw; /* Prevent it from being too wide on very small screens */
        z-index: 100; /* Higher z-index to stay on top */
        top: 0; /* Align with top */
        padding: 80px 32px 40px; /* More padding for mobile items */
        height: 100vh;
        overflow-y: auto; /* Enable scrolling for long menus */
        box-shadow: 20px 0 60px rgba(15, 23, 42, 0.2);
      }

      .sidebar.open {
        transform: translateX(0);
      }

      .sidebar .s-logo {
        display: block; /* Show logo in mobile sidebar too */
        font-size: 24px;
        margin-bottom: 8px;
      }

      .sidebar .s-sub {
        margin-top: 0;
        margin-bottom: 40px;
        font-size: 9px;
      }

      .main {
        margin-left: 0;
        height: auto;
        overflow-y: auto;
        padding-top: 56px;
      }

      .mob-header {
        display: flex;
      }

      .pi {
        padding: 48px 24px;
      }



      .album-item {
        grid-template-columns: 100px 1fr;
        gap: 16px;
      }

      .a-img {
        width: 100px;
        height: 100px;
        grid-row: span 2;
      }

      .a-year {
        font-size: 28px;
      }

      .a-title {
        font-size: 22px;
      }

      .act-grid {
        grid-template-columns: 1fr;
      }

      .about-id {
        gap: 12px;
      }
    }

    /* FAITH DETAIL VIEW */
    .faith-detail {
      animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .faith-back-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--f-ui);
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      font-weight: 600;
      margin-bottom: 32px;
      cursor: pointer;
      padding: 8px 0;
      transition: 0.3s;
      border: none;
      background: none;
    }

    .faith-back-btn:hover {
      color: var(--gold-light);
      transform: translateX(-4px);
    }

    .faith-iframe-wrap {
      width: 100%;
      height: 700px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--bg2);
      box-shadow: var(--shadow-md);
      margin-top: 32px;
      position: relative;
    }

    .faith-iframe-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .faith-external-link {
        margin-top: 16px;
        display: flex;
        justify-content: flex-end;
    }

    @media (max-width: 768px) {
      .faith-iframe-wrap {
        height: 500px;
      }
    }
  
    /* BLOG EMBED */
    .blog-embed-container {
      width: 100%;
      height: 800px;
      margin-top: 40px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      background: #fff;
    }

    .blog-embed-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    @media (max-width: 768px) {
      .blog-embed-container {
        height: 600px;
      }
    }
    
/* MONETIZATION CTA */
    .s-support {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .s-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: var(--f-ui);
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 600;
      padding: 14px 20px;
      border-radius: 8px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      text-align: center;
    }

    .s-btn-primary {
      background: var(--bg);
      color: var(--gold);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .s-btn-primary:hover {
      background: var(--gold);
      color: var(--bg);
      border-color: var(--gold);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(51, 92, 129, 0.15);
    }


    #btn-linkbio:hover {
      background: #FF5A4F;
      border-color: #FF5A4F;
      color: #fff;
      box-shadow: 0 8px 25px rgba(255, 90, 79, 0.4);
    }

    #btn-coffee:hover {
      background: #FFDD00;
      border-color: #FFDD00;
      color: #000;
    }

    .s-btn svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
    }
  

