  :root {
    color-scheme: dark;
    --bg: #0a0a0a;
    --bg-elevated: #111111;
    --text: #e8e4df;
    --text-dim: #8a8580;
    --text-bright: #ffffff;
    --accent: #c9a87c;
    --font-logo: 'Tourney', sans-serif;
    --font-display: 'Bungee Tint', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--text-dim) var(--bg);
  }

  * {
    cursor: url('../icons/cursor.svg') 6 1, auto;
  }

  html {
    background: #000000;
  }

  body {
    background: #000000;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: inherit;
    -webkit-text-fill-color: currentColor;
  }

  #safe-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: env(safe-area-inset-top, 0px);
    background: #000000;
    z-index: 9999;
    pointer-events: none;
  }

  /* ─── NAV ─── */
  nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    mix-blend-mode: difference;
  }


  nav h1 { margin: 0; font-size: inherit; font-weight: inherit; line-height: inherit; }

  .nav-logo {
    font-family: var(--font-logo);
    font-size: 1.6rem;
    color: var(--text-bright);
    text-decoration: none;
    letter-spacing: 0.08em;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-out-expo) 2s forwards;
  }


  /* ─── HERO ─── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
  }

  .hero-image-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  .hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    filter: brightness(0.55) saturate(0.9);
    opacity: 0;
    transition: opacity 1.5s ease;
  }

  .hero-image-wrap img.loaded {
    opacity: 1;
    animation: heroZoom 20s var(--ease-out-expo) forwards;
  }

  @keyframes heroZoom {
    to { transform: scale(1); }
  }

  .hero-gradient {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to top, var(--bg) 0%, transparent 50%),
      linear-gradient(to right, rgba(10,10,10,0.6) 0%, transparent 60%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 3rem 5rem;
    max-width: 900px;
  }

  .hero-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease-out-expo) 1.3s forwards;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.05;
    white-space: nowrap;
    color: var(--text-bright);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s var(--ease-out-expo) 1.6s forwards;
  }

  .hero-title em {
    font-style: italic;
    color: var(--accent);
  }

  .hero-streaming {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease-out-expo) 2.2s forwards;
  }

  .hero-streaming a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.3rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: background 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
    overflow: hidden;
  }

  .hero-streaming a:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
  }

  /* Pre-release teaser — remove .pre-release class to go live */
  .pre-release .hero-streaming {
    display: none !important;
  }

  .hero-release-date {
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease-out-expo) 1.9s forwards;
  }

  .hero-streaming .hero-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }


  /* ─── SECTION COMMON ─── */
  section {
    padding: 8rem 3rem;
  }

  .section-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4.5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-bright);
    margin-bottom: 3rem;
  }

  /* ─── DISCOGRAPHY ─── */
  .discography {
    max-width: 1400px;
    margin: 0 auto;
  }

  .disco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
  }

  .disco-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    cursor: url('../icons/cursor.svg') 6 1, auto;
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.5s var(--ease-out-expo);
  }

  .disco-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  }



  .disco-card:hover .disco-overlay {
    opacity: 1;
  }

  .disco-card:hover .disco-links {
    opacity: 1;
    transform: translateY(0);
  }

  .disco-art {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg);
  }


  .disco-art img {
    display: block;
    width: 100%;
    height: auto;
    transition: filter 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
  }

  .disco-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -2px;
    background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
  }

  .disco-vibe {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .disco-vibe-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.3rem;
    opacity: 0;
  }

  .disco-vibe-text {
    font-size: 0.82rem;
    color: var(--text-bright);
    line-height: 1.4;
    letter-spacing: 0.01em;
  }

  .disco-vibe-text span {
    display: inline-block;
    opacity: 0;
  }

  .disco-track-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--text-bright);
    margin-bottom: 0.3rem;
    line-height: 1.2;
  }


  .disco-links {
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s var(--ease-out-expo) 0.1s, transform 0.5s var(--ease-out-expo) 0.1s;
  }

  .disco-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 0.3s var(--ease-out-expo);
    white-space: nowrap;
  }

  .disco-links a:hover {
    color: var(--accent);
  }

  .disco-links .sep-group {
    white-space: nowrap;
  }

  .disco-links .sep {
    color: var(--text);
    opacity: 0.5;
    margin: 0 0.3rem;
    font-size: 0.9rem;
  }

  .disco-view-more {
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    margin-top: 0.8rem;
    cursor: url('../icons/cursor.svg') 6 1, auto;
    transition: color 0.3s var(--ease-out-expo);
  }

  .disco-view-more .arrow {
    display: inline-block;
    transition: transform 0.3s var(--ease-out-expo);
  }

  .disco-view-more:hover {
    color: var(--accent);
  }

  .disco-view-more:hover .arrow {
    transform: translateX(4px);
  }

  .disco-info {
    padding: 1rem 0.2rem;
  }

  .disco-info-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--text-bright);
    margin-bottom: 0.15rem;
  }

  .disco-info-year {
    font-size: 0.82rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
  }

  /* ─── LYRICS MODAL ─── */
  .modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
  }

  .modal-backdrop.active {
    pointer-events: all;
    perspective: 1200px;
  }

  .modal {
    width: calc(min(80vh, 800px) + 400px);
    max-width: 95vw;
  }

  .modal-inner {
    position: relative;
    display: flex;
    align-items: stretch;
    border-radius: 8px;
    overflow: visible;
  }

  .modal-art {
    flex: 0 0 auto;
    overflow: visible;
    position: relative;
    border-radius: 8px 0 0 8px;
    background: var(--bg);
    z-index: 2;
  }

  .modal-art img {
    height: 80vh;
    max-height: 800px;
    width: auto;
    aspect-ratio: 1;
    display: block;
  }

  /* ─── GALLERY ─── */
  .gallery {
    position: relative;
    height: 80vh;
    max-height: 800px;
    aspect-ratio: 1;
    overflow: hidden;
  }

  .gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
  }

  .gallery-slide:first-child {
    opacity: 1;
  }

  .gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .gallery-note {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.2rem 1.2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: var(--text);
    font-size: 0.82rem;
    font-style: italic;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }

  .gallery-navs {
    position: absolute;
    bottom: 0;
    left: 1rem;
    display: flex;
    z-index: 5;
    transform: translateY(100%);
  }

  .gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 38px;
    background: var(--bg-elevated);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: none;
    border-radius: 0 0 6px 6px;
    color: var(--text-dim);
    font-size: 1.1rem;
    cursor: url('../icons/cursor.svg') 6 1, auto;
    transition: background 0.3s var(--ease-out-expo), color 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo);
    margin-left: -1px;
  }

  .gallery-nav:first-child { margin-left: 0; }

  .gallery-nav:hover {
    background: rgba(255,255,255,0.15);
    color: var(--text-bright);
    height: 44px;
  }


  .modal-body {
    flex: 0 0 400px;
    max-height: min(80vh, 800px);
    background: var(--bg-elevated);
    border-left: 1px solid rgba(255,255,255,0.06);
    padding: 2rem 2rem 4rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--text-dim) transparent;
    transform-origin: left center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    border-radius: 0 8px 8px 0;
  }

  .modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 10;
    background: rgba(17,17,17,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-dim);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: url('../icons/cursor.svg') 6 1, auto;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: color 0.3s, border-color 0.3s;
  }

  .modal-close:hover {
    color: var(--text-bright);
    border-color: rgba(255,255,255,0.4);
  }

  .modal-header {
    margin-bottom: 1.5rem;
    padding-right: 3rem;
  }

  .prerelease-badge {
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.8rem 1.2rem;
  }

  .char-inline {
    display: inline-block;
  }

  .char-inline-rel {
    display: inline-block;
    position: relative;
  }

  .modal-title {
    font-family: var(--font-display);
    font-size: 2.3rem;
    color: var(--text-bright);
    line-height: 1.15;
  }

  .modal-year {
    font-size: 0.82rem;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    margin-top: 0.4rem;
  }

  .modal-lyrics {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 2rem;
  }

  .lyrics-voice {
    font-style: italic;
    opacity: 0.5;
    font-size: 0.92rem;
  }


  .modal-credits {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
  }

  .modal-credits a {
    color: var(--accent);
    text-decoration: none;
  }

  .credit-author {
    color: var(--text);
  }

  .modal-streaming {
    position: absolute;
    bottom: 0;
    right: 2rem;
    display: none;
    z-index: 5;
    transform: translateY(100%);
  }

  .modal-streaming a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 46px;
    background: var(--bg-elevated);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: none;
    border-radius: 0 0 6px 6px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0;
    transition: background 0.3s var(--ease-out-expo), color 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo);
    margin-left: -1px;
    overflow: hidden;
  }

  .modal-streaming a:first-child {
    margin-left: 0;
  }

  .modal-streaming a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  .modal-streaming a:hover {
    background: rgba(255,255,255,0.15);
    height: 52px;
  }

  /* ─── BIO ─── */
  .about-section {
    background: var(--bg-elevated);
  }

  .bio {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }

  .bio-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text);
  }

  .bio-text a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-color: rgba(255,255,255,0.4);
    transition: text-decoration-color 0.2s;
  }

  .bio-text a:hover {
    text-decoration-color: rgba(255,255,255,0.9);
  }

  .bio-aside {
    position: sticky;
    top: 8rem;
  }

  .bio-influences {
    margin-top: 2rem;
  }

  .bio-influences-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .bio-influences-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .project-title {
    color: var(--accent);
  }

  .bio-influences-list span {
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.03em;
    transition: border-color 0.3s, color 0.3s;
  }

  .bio-influences-list span:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .bio-location {
    margin-top: 2.5rem;
    padding-top: 2rem;
    position: relative;
    overflow: hidden;
  }

  .bio-location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
  }

  .bio-location::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: var(--accent);
    opacity: 0.1;
    animation: linePulse 10s ease-in-out infinite;
  }

  @keyframes linePulse {
    0% { left: -100%; }
    25% { left: 100%; }
    100% { left: 100%; }
  }

  .bio-location-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
  }

  .bio-location-text {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--text-bright);
  }

  /* ─── FOOTER ─── */
  footer {
    padding: 4rem 3rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }

  .footer-left {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-dim);
    isolation: isolate;
  }

  .footer-socials {
    display: flex;
    gap: 1.5rem;
  }

  .footer-socials a[href] {
    color: #8a8580 !important;
    -webkit-text-fill-color: #8a8580 !important;
    text-decoration: none !important;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  @supports (-webkit-touch-callout: none) {
    .footer-socials a { color: #8a8580 !important; -webkit-text-fill-color: #8a8580 !important; }
  }

  .footer-socials a:hover { color: var(--accent); -webkit-text-fill-color: var(--accent); }

  .footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
  }

  .shooting-star {
    position: fixed;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    box-shadow:
      0 0 6px var(--accent),
      -6px 0 4px rgba(201,168,124,0.7),
      -14px 0 4px rgba(201,168,124,0.4),
      -24px 0 3px rgba(201,168,124,0.2),
      -36px 0 2px rgba(201,168,124,0.05);
    filter: blur(0.5px);
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  }

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

  /* ─── RESPONSIVE ─── */
  /* ─── TABLET ─── */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    section { padding: 5rem 1.5rem; }
    .hero-content { padding: 0 1.5rem 3.5rem; max-width: 100%; }
    .hero-streaming { flex-wrap: wrap; gap: 0.6rem; }
    .hero-streaming a { padding: 0.5rem 1rem; font-size: 0.8rem; }
    .bio { grid-template-columns: 1fr; gap: 3rem; }
    .bio-aside { position: static; }
    .disco-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; }
    .disco-overlay { display: none; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 3rem 1.5rem; }

    /* Modal stacks vertically */
    .modal-backdrop { place-items: start center; padding: env(safe-area-inset-top, 1rem) 0 env(safe-area-inset-bottom, 1rem); overflow-y: auto; }
    .modal { height: auto; max-height: none; max-width: 95vw; }
    .modal-inner { flex-direction: column; max-height: none; border-radius: 8px; }
    .modal-backdrop.active .modal { max-width: 95vw; }
    .modal-art { width: 100%; max-width: none; height: auto; border-radius: 8px 8px 0 0; }
    .modal-art img { height: auto; max-height: none; width: 100%; aspect-ratio: 1; }
    .modal-body { flex: none; width: 100%; max-height: none; padding: 2rem 1.5rem 2.5rem; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); border-radius: 0 0 8px 8px; }
    .modal-close { top: 0.8rem; right: 0.8rem; background: rgba(0,0,0,0.6); }
    .modal-streaming { position: static; display: flex; gap: 0.5rem; padding: 1rem 1.5rem; justify-content: center; transform: none; }
    .modal-streaming a { border-radius: 6px; border-top: 1px solid rgba(255,255,255,0.08); }
    .gallery { height: auto; max-height: none; width: 100%; }
    .gallery-navs { display: none; }
  }

  /* ─── MOBILE ─── */
  @media (max-width: 600px) {
    nav { padding: 1rem 1.2rem; }
    .nav-logo { font-size: 1.48rem; }

    section { padding: 4rem 1.2rem; }

    .hero { min-height: 600px; }
    .hero-content { padding: 0 1.2rem 3rem; }
    .hero-title { font-size: clamp(1.98rem, 5vw, 3.18rem); }
    .hero-label { font-size: 0.94rem; }
    .hero-streaming a { padding: 0.45rem 0.8rem; font-size: 0.96rem; gap: 0.35rem; }
    .hero-streaming .hero-icon { width: 16px; height: 16px; }

    /* Skip hero entrance animations on mobile for page-speed */
    .hero-image-wrap img { opacity: 1; transition: none; }
    .hero-label,
    .hero-title,
    .hero-release-date,
    .hero-streaming { opacity: 1; transform: none; animation: none; }

    .section-title { font-size: clamp(2.08rem, 5vw, 3.08rem); }

    .disco-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .disco-info-title { font-size: 1.24rem; }
    .disco-info-year { font-size: 0.94rem; }
    /* Hide overlay on mobile — touch users tap to open modal directly */
    .disco-overlay { display: none; }

    .bio-text p { font-size: 1.19rem; }
    .bio-influences-list span { font-size: 1.02rem; padding: 0.35rem 0.75rem; }
    .bio-location-text { font-size: 1.44rem; }

    .modal-inner { max-height: 92vh; }
    .modal-body { padding: 1.5rem 1.2rem 2rem; }
    .modal-title { font-size: 1.84rem; }
    .modal-year { font-size: 0.99rem; }
    .modal-lyrics { font-size: 1.14rem; line-height: 1.75; }
    .modal-credits { font-size: 1.04rem; }
    .modal-streaming { position: static; display: flex; gap: 0.5rem; padding: 1rem 1.2rem; justify-content: center; transform: none; }
    .modal-streaming a { width: 44px; height: 40px; border-radius: 6px; }

    .gallery { height: auto; max-height: none; }
    .gallery-navs { display: none; }

    .hero-release-date { font-size: 0.99rem; }

    footer { padding: 2.5rem 1.2rem; }
    .footer-left { font-size: 1.24rem; }
    .footer-socials { flex-wrap: wrap; justify-content: center; gap: 0.8rem 1.2rem; }
    .footer-socials a { font-size: 0.96rem; color: #8a8580 !important; -webkit-text-fill-color: #8a8580 !important; }
    .footer-copy { font-size: 0.92rem; }
  }

  /* ─── NOISE TEXTURE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
  }
