:root {
    --gold: #C9A84C;
    --gold-light: #F5D98A;
    --gold-dark: #7A5E1A;
    --black: #050505;
    --dark: #0A0A0A;
    --red: #8B0000;
    --red-bright: #CC1111;
    --white: #F0EDE6;
    --grey: #1A1A1A;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    overflow-x: hidden;
    cursor: crosshair;
  }

  /* ===== CUSTOM CURSOR ===== */
  .cursor-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: all 0.18s ease;
    opacity: 0.6;
  }

  /* ===== NOISE OVERLAY ===== */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: linear-gradient(180deg, rgba(5,5,5,0.98) 0%, transparent 100%);
  }
  .nav-logo {
    font-family: 'UnifrakturMaguntia', cursive;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(201,168,76,0.5);
    text-decoration: none;
  }
  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }
  .nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a.active { color: var(--gold); }
  .nav-links a.active::after { width: 100% !important; }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  /* ===== PAGES ===== */
  .page { display: none; min-height: 100vh; }
  .page.active { display: block; }

  /* ===== HERO ===== */
  #page-home {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  /* ===== HERO SLIDER ===== */
  .hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    filter: brightness(0.35) contrast(1.2);
    opacity: 0;
    transform: scale(1.04);
    transition:
      opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1),
      transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      filter 1.4s ease;
    will-change: opacity;
  }

  .hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
  }

  /* Exiting slide: zoom in slightly as it fades out for a cinematic feel */
  .hero-slide.exiting {
    opacity: 0;
    transform: scale(1.05);
    z-index: 0;
    filter: brightness(0.2) contrast(1.1);
  }

  /* Overlay: dark vignette + red tint + gradient */
  .hero-slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      radial-gradient(ellipse 60% 80% at 70% 50%, rgba(139,0,0,0.28) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.1) 0%, transparent 60%),
      linear-gradient(180deg, rgba(5,5,5,0.15) 0%, rgba(5,5,5,0.55) 100%);
  }

  /* Slide indicator dots */
  .hero-slider-dots {
    position: absolute;
    bottom: 40px;
    right: 80px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(240,237,230,0.3);
    border: 1px solid rgba(240,237,230,0.2);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
  }

  .slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(201,168,76,0.7);
    height: 22px;
    border-radius: 3px;
  }

  .slider-dot:hover:not(.active) {
    background: rgba(201,168,76,0.5);
    border-color: rgba(201,168,76,0.5);
  }

  .hero-kente {
    position: absolute;
    top: 0; right: 0;
    width: 35%;
    height: 100%;
    background:
      repeating-linear-gradient(
        90deg,
        transparent 0, transparent 8px,
        rgba(201,168,76,0.06) 8px, rgba(201,168,76,0.06) 10px
      ),
      repeating-linear-gradient(
        0deg,
        transparent 0, transparent 8px,
        rgba(201,168,76,0.04) 8px, rgba(201,168,76,0.04) 10px
      );
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  }

  .hero-content {
    position: relative;
    z-index: 3;
    padding: 160px 80px 80px;
    max-width: 900px;
  }

  .hero-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-tag::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .hero-name {
    font-family: 'UnifrakturMaguntia', cursive;
    font-size: clamp(5rem, 12vw, 11rem);
    line-height: 0.85;
    color: var(--white);
    text-shadow:
      3px 3px 0px var(--gold-dark),
      0 0 80px rgba(201,168,76,0.3),
      0 0 120px rgba(139,0,0,0.4);
    letter-spacing: -2px;
    animation: flickerIn 1.2s ease forwards;
  }

  .hero-name span {
    display: block;
    color: var(--gold);
    -webkit-text-stroke: 1px var(--gold-dark);
  }

  @keyframes flickerIn {
    0% { opacity: 0; transform: translateY(30px); filter: blur(10px); }
    60% { opacity: 0.8; }
    70% { opacity: 0.6; }
    80% { opacity: 1; }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
  }

  .hero-sub {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: 1rem;
    letter-spacing: 8px;
    color: var(--white);
    margin-top: 24px;
    opacity: 0.7;
    text-transform: uppercase;
  }

  .hero-cta {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .btn-gold {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 16px 44px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    text-decoration: none;
    display: inline-block;
  }
  .btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201,168,76,0.4);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(240,237,230,0.4);
    padding: 16px 44px;
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
  }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    animation: bounce 2s infinite;
  }
  .hero-scroll span {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--gold);
    opacity: 0.6;
  }
  .hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--gold), transparent);
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
  }

  .hero-stats {
    position: absolute;
    right: 130px;
    bottom: 80px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: right;
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: rgba(240,237,230,0.4);
    text-transform: uppercase;
  }

  /* ===== SECTION SHARED ===== */
  .section {
    padding: 120px 80px;
    position: relative;
  }

  .section-header {
    margin-bottom: 70px;
  }

  .section-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  .section-eyebrow::before {
    content: '◆';
    font-size: 0.5rem;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.9;
    letter-spacing: 2px;
    color: var(--white);
  }

  /* ===== MUSIC PAGE ===== */
  #page-music { background: var(--black); }

  .music-hero-strip {
    height: 50vh;
    background:
      linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.95) 100%),
      url('https://images.unsplash.com/photo-1598387993441-a364f854cffd?w=1800&q=80') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 60px 80px;
  }

  .albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2px;
    margin-bottom: 80px;
  }

  .album-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--grey);
  }

  .album-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.7);
    transition: all 0.5s ease;
  }

  .album-card:hover img {
    filter: grayscale(0%) brightness(0.9) scale(1.08);
    transform: scale(1.08);
  }

  .album-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5,5,5,0.95) 0%, transparent 60%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s;
  }

  .album-card:hover .album-overlay {
    background: linear-gradient(0deg, rgba(5,5,5,0.98) 0%, rgba(139,0,0,0.3) 100%);
  }

  .album-type {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .album-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: 1px;
  }

  .album-year {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: rgba(240,237,230,0.4);
    margin-top: 6px;
  }

  .album-play {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
    font-size: 1rem;
    color: var(--gold);
  }

  .album-card:hover .album-play {
    opacity: 1;
    transform: scale(1.1);
  }

  /* SINGLES TRACK LIST */
  .track-list { border-top: 1px solid rgba(201,168,76,0.2); }
  .track-item {
    display: grid;
    grid-template-columns: 50px 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(240,237,230,0.05);
    transition: all 0.3s;
    cursor: pointer;
  }
  .track-item:hover {
    background: rgba(201,168,76,0.04);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 -20px;
    border-color: rgba(201,168,76,0.15);
  }
  .track-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: rgba(240,237,230,0.3);
    text-align: center;
  }
  .track-item:hover .track-num { color: var(--gold); }
  .track-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
  }
  .track-feat {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: 0.85rem;
    color: rgba(240,237,230,0.4);
    margin-left: 8px;
  }
  .track-duration {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: rgba(240,237,230,0.3);
  }
  .track-badge {
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 2px;
    padding: 4px 8px;
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    text-transform: uppercase;
  }

  /* ===== SHOP PAGE ===== */
  #page-shop { background: var(--black); }

  .shop-banner {
    height: 40vh;
    background:
      linear-gradient(135deg, rgba(139,0,0,0.6) 0%, rgba(5,5,5,0.8) 60%),
      url('https://images.unsplash.com/photo-1503249023995-51b0f3778ccf?w=1800&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 80px;
  }

  .shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }

  .shop-card {
    background: var(--grey);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s;
  }
  .shop-card:hover { transform: translateY(-8px); }

  .shop-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    transition: all 0.5s;
    display: block;
    background: #111;
  }
  .shop-card:hover .shop-card-img { filter: brightness(0.9); }

  .shop-card-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #111, #1a1a1a);
    transition: all 0.5s;
  }

  .shop-sold-out {
    position: absolute;
    top: 16px;
    right: 0;
    background: var(--red);
    color: var(--white);
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 3px;
    padding: 6px 14px;
    text-transform: uppercase;
  }

  .shop-new {
    position: absolute;
    top: 16px;
    right: 0;
    background: var(--gold);
    color: var(--black);
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 3px;
    padding: 6px 14px;
    text-transform: uppercase;
  }

  .shop-card-body {
    padding: 24px;
  }

  .shop-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }

  .shop-card-desc {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: 0.85rem;
    color: rgba(240,237,230,0.5);
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .shop-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .shop-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 2px;
  }

  .btn-add {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    padding: 10px 20px;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
  }
  .btn-add:hover {
    background: var(--gold);
    color: var(--black);
  }

  /* ===== TOUR PAGE ===== */
  #page-tour { background: var(--black); }

  .tour-hero {
    height: 55vh;
    background:
      linear-gradient(180deg, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.97) 100%),
      url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?w=1800&q=80') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 60px 80px;
  }

  .tour-list { max-width: 1000px; margin: 0 auto; }

  .tour-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
  }

  .tour-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s;
  }

  .tour-item:hover { padding-left: 20px; }
  .tour-item:hover::before { transform: scaleY(1); }

  .tour-date-block { text-align: center; }
  .tour-day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
  }
  .tour-month {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(240,237,230,0.5);
    text-transform: uppercase;
  }

  .tour-venue {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 6px;
  }
  .tour-location {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: 0.9rem;
    color: rgba(240,237,230,0.5);
    letter-spacing: 2px;
  }

  .tour-status { text-align: right; }
  .status-pill {
    display: inline-block;
    padding: 6px 16px;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .status-pill.on-sale {
    border: 1px solid var(--gold);
    color: var(--gold);
  }
  .status-pill.sold-out {
    border: 1px solid var(--red-bright);
    color: var(--red-bright);
  }
  .status-pill.few-left {
    border: 1px solid rgba(240,237,230,0.3);
    color: rgba(240,237,230,0.5);
  }

  /* ===== FOOTER ===== */
  footer {
    background: #030303;
    padding: 80px;
    border-top: 1px solid rgba(201,168,76,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .footer-brand {
    font-family: 'UnifrakturMaguntia', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(201,168,76,0.3);
    display: block;
    text-decoration: none;
  }

  .footer-tagline {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(240,237,230,0.3);
    text-transform: uppercase;
  }

  .footer-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    color: rgba(240,237,230,0.5);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold); }

  .social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240,237,230,0.6);
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
  }
  .social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.05);
  }

  .footer-bottom {
    background: #030303;
    padding: 20px 80px;
    border-top: 1px solid rgba(240,237,230,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: rgba(240,237,230,0.2);
    text-transform: uppercase;
  }

  /* ===== DIVIDER ===== */
  .gold-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 30px 0;
  }

  /* ===== MARQUEE ===== */
  .marquee-strip {
    background: var(--gold);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-inner {
    display: inline-block;
    animation: marquee 25s linear infinite;
  }
  .marquee-inner span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 4px;
    color: var(--black);
    padding: 0 30px;
  }
  .marquee-inner span::before { content: '◆ '; }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ===== TABS ===== */
  .tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    margin-bottom: 60px;
  }

  .tab-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 16px 36px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240,237,230,0.4);
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: -1px;
  }
  .tab-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }
  .tab-btn:hover { color: var(--white); }

  .tab-panel { display: none; }
  .tab-panel.active { display: block; }

  /* ABOUT SECTION ON HOME */
  .about-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
  }

  .about-img {
    background:
      url('../img/oseikrom2.png') center/cover no-repeat;
    position: relative;
    filter: brightness(0.7) contrast(1.2);
  }
  .about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 70%, var(--black) 100%);
  }

  .about-content {
    padding: 100px 80px;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
  }
  .about-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--gold);
    font-family: 'UnifrakturMaguntia', cursive;
    line-height: 1;
  }

  .about-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(240,237,230,0.6);
    letter-spacing: 1px;
  }

  /* ===== SOUNDWAVE ANIMATION ===== */
  .soundwave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 40px;
  }

  .soundwave .bar {
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, #1DB954, rgba(29,185,84,0.3));
    animation: wave 1.2s ease-in-out infinite;
    transform-origin: bottom;
  }

  .soundwave .bar:nth-child(1)  { height: 20%; animation-delay: 0s;    }
  .soundwave .bar:nth-child(2)  { height: 55%; animation-delay: 0.1s;  }
  .soundwave .bar:nth-child(3)  { height: 80%; animation-delay: 0.2s;  }
  .soundwave .bar:nth-child(4)  { height: 100%; animation-delay: 0.15s; }
  .soundwave .bar:nth-child(5)  { height: 65%; animation-delay: 0.05s; }
  .soundwave .bar:nth-child(6)  { height: 90%; animation-delay: 0.25s; }
  .soundwave .bar:nth-child(7)  { height: 45%; animation-delay: 0.1s;  }
  .soundwave .bar:nth-child(8)  { height: 75%; animation-delay: 0.3s;  }
  .soundwave .bar:nth-child(9)  { height: 55%; animation-delay: 0.12s; }
  .soundwave .bar:nth-child(10) { height: 85%; animation-delay: 0.22s; }
  .soundwave .bar:nth-child(11) { height: 40%; animation-delay: 0.08s; }
  .soundwave .bar:nth-child(12) { height: 70%; animation-delay: 0.18s; }
  .soundwave .bar:nth-child(13) { height: 30%; animation-delay: 0.28s; }
  .soundwave .bar:nth-child(14) { height: 60%; animation-delay: 0.14s; }
  .soundwave .bar:nth-child(15) { height: 25%; animation-delay: 0.06s; }
  .soundwave .bar:nth-child(16) { height: 50%; animation-delay: 0.24s; }
  .soundwave .bar:nth-child(17) { height: 80%; animation-delay: 0.16s; }
  .soundwave .bar:nth-child(18) { height: 35%; animation-delay: 0.32s; }
  .soundwave .bar:nth-child(19) { height: 65%; animation-delay: 0.04s; }
  .soundwave .bar:nth-child(20) { height: 20%; animation-delay: 0.2s;  }

  @keyframes wave {
    0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
    50%       { transform: scaleY(1);   opacity: 1;   }
  }

  /* Wide ambient wave that sits behind the section content */
  .soundwave-ambient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    padding: 0 20px;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.18;
  }

  .soundwave-ambient .bar {
    flex: 1;
    max-width: 6px;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(180deg, #1DB954, transparent);
    animation: wave-ambient 2s ease-in-out infinite;
    transform-origin: bottom;
  }

  @keyframes wave-ambient {
    0%, 100% { transform: scaleY(0.15); }
    50%       { transform: scaleY(1); }
  }

  /* Generate varied delays for 60 ambient bars */
  .soundwave-ambient .bar:nth-child(3n+1)  { animation-delay: calc(var(--i, 0) * 0.04s); }
  .soundwave-ambient .bar:nth-child(3n+2)  { animation-delay: calc(var(--i, 0) * 0.07s + 0.3s); }
  .soundwave-ambient .bar:nth-child(3n)    { animation-delay: calc(var(--i, 0) * 0.05s + 0.6s); }

  /* ===== LATEST RELEASE — REDESIGNED WITH SPOTIFY EMBED ===== */
  .latest-release {
    position: relative;
    background:
      linear-gradient(135deg, rgba(5,5,5,0.97) 0%, rgba(139,0,0,0.12) 50%, rgba(5,5,5,0.97) 100%),
      url('https://images.unsplash.com/photo-1571330735066-03aaa9429d89?w=1400&q=80') center/cover no-repeat;
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    overflow: hidden;
  }

  /* Left col: label + Spotify embed + Buy Merch */
  .latest-spotify-col {
    display: flex;
    flex-direction: column;
  }

  .latest-spotify-col .latest-label {
    margin-bottom: 20px;
  }

  .latest-spotify-wrap {
    border: 1px solid rgba(30, 215, 96, 0.3);
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
      0 0 0 1px rgba(30,215,96,0.08),
      0 30px 80px rgba(0,0,0,0.7),
      0 0 60px rgba(30,215,96,0.12);
    background: #1DB954;
    transition: box-shadow 0.4s;
    max-width: 380px;
  }

  .latest-spotify-wrap:hover {
    box-shadow:
      0 0 0 1px rgba(30,215,96,0.4),
      0 30px 80px rgba(0,0,0,0.8),
      0 0 80px rgba(30,215,96,0.2);
  }

  /* Right col: title, desc, tracklist preview */
  .latest-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .latest-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
  }

  .latest-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.9;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .latest-desc {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: 1rem;
    color: rgba(240,237,230,0.6);
    line-height: 1.7;
    max-width: 500px;
  }

  /* Tracklist preview */
  .latest-tracklist-preview {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .latest-track-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    transition: all 0.25s;
    cursor: default;
  }

  .latest-track-row:first-child {
    border-top: 1px solid rgba(201,168,76,0.08);
  }

  .latest-track-row:hover {
    padding-left: 8px;
    border-color: rgba(201,168,76,0.2);
  }

  .latest-track-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--gold);
    opacity: 0.7;
    min-width: 24px;
    text-align: center;
  }

  .latest-track-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: rgba(240,237,230,0.7);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    nav { padding: 20px 30px; }
    .nav-links { gap: 20px; }
    .section { padding: 80px 30px; }
    .hero-content { padding: 140px 30px 80px; }
    .hero-stats { right: 30px; bottom: 30px; }
    .about-strip { grid-template-columns: 1fr; }
    .about-img { height: 400px; }
    .about-content { padding: 60px 30px; }
    .latest-release {
      grid-template-columns: 1fr;
      padding: 60px 30px;
      gap: 40px;
    }
    footer { grid-template-columns: 1fr; padding: 60px 30px; }
    .footer-bottom { padding: 20px 30px; flex-direction: column; gap: 10px; }
    .tour-item { grid-template-columns: 80px 1fr; }
    .tour-status { display: none; }
    .hero-kente { display: none; }
    .music-hero-strip { padding: 60px 30px; }
    .shop-banner { padding: 40px 30px; }
    .tour-hero { padding: 40px 30px; }
  }
  /* ===== MERCH PREVIEW SECTION ===== */
  .merch-preview {
    background:
      linear-gradient(180deg, var(--black) 0%, #0d0800 60%, var(--black) 100%);
    border-top: 1px solid rgba(201,168,76,0.08);
    position: relative;
    overflow: hidden;
  }
  .merch-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  .merch-preview-inner {
    padding: 100px 80px;
  }
  .merch-preview-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .merch-preview-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.9;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 14px;
  }
  .merch-preview-sub {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: 0.95rem;
    letter-spacing: 5px;
    color: rgba(240,237,230,0.35);
    text-transform: uppercase;
  }
  .merch-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 280px));
    gap: 24px;
    margin-bottom: 0;
    justify-content: center;
  }
  .merch-card {
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s, border-color 0.3s;
    border: 1px solid rgba(201,168,76,0.07);
    cursor: pointer;
  }
  .merch-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.25);
  }
  .merch-badge {
    position: absolute;
    top: 14px;
    right: 0;
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 3px;
    padding: 5px 14px;
    text-transform: uppercase;
    z-index: 1;
  }
  .merch-badge--new  { background: var(--gold);  color: var(--black); }
  .merch-badge--sold { background: var(--red);   color: var(--white); }
  .merch-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #111, #1a1100);
  }
  .merch-card-body { padding: 22px 24px 26px; }
  .merch-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
  }
  .merch-card-desc {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    font-size: 0.8rem;
    color: rgba(240,237,230,0.4);
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .merch-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .merch-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    color: var(--gold);
    letter-spacing: 2px;
  }
  .btn-add {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    padding: 9px 18px;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
  }
  .btn-add:hover { background: var(--gold); color: var(--black); }

  @media (max-width: 900px) {
    .merch-preview-inner { padding: 60px 30px; }
    .merch-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; justify-content: unset; }
  }

/* ===== MOBILE HAMBURGER NAV ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(80vw, 320px);
    height: 100vh;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(201,168,76,0.12);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 60px 48px;
    list-style: none;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
  }
  .nav-links.open { right: 0; }

  .nav-links li { width: 100%; border-bottom: 1px solid rgba(201,168,76,0.07); }

  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 1.1rem;
    letter-spacing: 5px;
  }

  /* Overlay behind drawer */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1040;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  .nav-overlay.open { display: block; }
}