/* ===== VARIABLES ===== */
:root {
    --black:      #0a0e1a;
    --dark:       #0d1420;
    --dark-card:  #111c2e;
    --amber:      #C8860A;
    --amber-lt:   #E09A20;
    --amber-glow: rgba(200, 134, 10, 0.12);
    --cream:      #E8E0D0;
    --cream-md:   #a09890;
    --muted:      #524e4a;
    --border:     rgba(200, 134, 10, 0.18);
    --display:    'Bebas Neue', sans-serif;
    --mono:       'Courier Prime', monospace;
    --body:       'Inter', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #050d22; }
body {
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%, #18305a 0%, transparent 55%),
      radial-gradient(ellipse 70% 50% at 50% 100%, #020610 0%, transparent 60%),
      linear-gradient(180deg, #0a1838 0%, #050d22 60%, #020610 100%);
    background-attachment: fixed;
    background-size: cover;
    color: var(--cream);
    font-family: var(--body);
    font-weight: 300;
    line-height: 1.65;
    overflow-x: hidden;
    cursor: none;
    min-height: 100vh;
}
a { text-decoration: none; color: inherit; cursor: none; }
img { max-width: 100%; display: block; }
button { cursor: none; }

/* Film grain */
body::after {
    content: '';
    position: fixed;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
    animation: grain 8s steps(10) infinite;
}
@keyframes grain {
    0%   { transform: translate(0,0); }
    10%  { transform: translate(-5%,-10%); }
    20%  { transform: translate(-15%,5%); }
    30%  { transform: translate(7%,-25%); }
    40%  { transform: translate(-5%,25%); }
    50%  { transform: translate(-15%,10%); }
    60%  { transform: translate(15%,0%); }
    70%  { transform: translate(0%,15%); }
    80%  { transform: translate(3%,35%); }
    90%  { transform: translate(-10%,10%); }
    100% { transform: translate(0,0); }
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ===== CUSTOM CURSOR ===== */
#cursor {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    color: var(--amber);
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.2s;
    opacity: 0;
}
#cursorDot {
    position: fixed;
    width: 5px; height: 5px;
    background: var(--amber);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.05s ease;
    opacity: 0;
}
body:hover #cursor,
body:hover #cursorDot { opacity: 1; }

/* ===== SCROLL PROGRESS ===== */
#progressBar {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    background: var(--amber);
    z-index: 10001;
    transition: width 0.1s linear;
}

/* ===== SPLASH ===== */
#splash {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: opacity 1s ease;
}
#splash.hidden { opacity: 0; pointer-events: none; }
.splash-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
}
.splash-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(9,8,8,0.05) 0%, rgba(9,8,8,0.3) 50%, rgba(9,8,8,0.9) 100%);
}
.splash-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem 8vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}
.splash-label {
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    color: var(--amber);
    text-transform: uppercase;
}
.splash-name {
    font-family: var(--display);
    font-size: clamp(4rem, 14vw, 11rem);
    line-height: 0.88;
    letter-spacing: 0.08em;
    color: var(--cream);
    text-shadow: 0 2px 60px rgba(0,0,0,0.9);
}
.splash-enter {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 3rem;
    background: var(--amber);
    color: var(--black);
    font-family: var(--mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border: none;
    cursor: none;
    margin-top: 0.5rem;
    transition: background 0.2s, transform 0.2s, gap 0.2s;
}
.splash-enter:hover { background: var(--amber-lt); transform: translateY(-2px); gap: 1rem; }

/* ===== NAV ===== */
#navbar {
    position: fixed; top: 0; left: 0;
    width: 100%; z-index: 1000;
    padding: 1.6rem 0;
    transition: background 0.3s, padding 0.3s, border-color 0.3s;
    border-bottom: 1px solid transparent;
}
#navbar.scrolled {
    background: rgba(9,8,8,0.94);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom-color: var(--border);
}
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--display); font-size: 1.55rem; letter-spacing: 0.18em; color: var(--cream); transition: color 0.2s; }
.nav-logo:hover { color: var(--amber); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-md); transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--amber); transition: width 0.2s; }
.nav-links a:hover { color: var(--amber); }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { position: relative; height: 100vh; min-height: 680px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('../images/hero-bg.jpg'); background-size: cover; background-position: center 20%; transform: scale(1.08); will-change: transform; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(9,8,8,0.25) 0%, rgba(9,8,8,0.55) 55%, rgba(9,8,8,0.95) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 2rem; }
.hero-label { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.35em; color: var(--amber); text-transform: uppercase; margin-bottom: 1.2rem; opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards; }
.hero-name { font-family: var(--display); font-size: clamp(5.5rem, 18vw, 15rem); line-height: 0.88; letter-spacing: 0.06em; color: var(--cream); margin-bottom: 1.5rem; text-shadow: 0 4px 80px rgba(200,134,10,0.15); }
.hero-word { display: block; opacity: 0; transform: translateY(40px); animation: fadeUp 0.9s ease forwards; }
.hero-word:nth-child(1) { animation-delay: 0.5s; }
.hero-word:nth-child(2) { animation-delay: 0.75s; }
.hero-release { font-family: var(--mono); font-size: 0.85rem; color: var(--cream-md); letter-spacing: 0.12em; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 0.8s ease 1s forwards; }
.hero-release span { color: var(--cream); font-style: italic; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s ease 1.2s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.scroll-line { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); width: 1px; height: 60px; background: linear-gradient(to bottom, var(--amber), transparent); animation: scrollFade 2s ease-in-out infinite; z-index: 2; }
@keyframes scrollFade { 0%,100% { opacity: 0.8; } 50% { opacity: 0.2; } }

/* ===== PHOTO STRIP ===== */
.photo-strip { width: 100%; overflow: hidden; height: 280px; position: relative; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.strip-track { display: flex; gap: 4px; animation: stripScroll 30s linear infinite; width: max-content; }
.strip-track:hover { animation-play-state: paused; }
.strip-item { width: 240px; height: 280px; flex-shrink: 0; background-size: cover; background-position: center; filter: grayscale(20%) brightness(0.85); transition: filter 0.3s; }
.strip-item:hover { filter: grayscale(0%) brightness(1); }
@keyframes stripScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 0.85rem 2.2rem; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; transition: all 0.2s ease; cursor: none; border: none; }
.btn-primary { background: var(--amber); color: var(--black); font-weight: 700; }
.btn-primary:hover { background: var(--amber-lt); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(232,224,208,0.4); }
.btn-outline:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.75rem; }

/* ===== SECTION COMMON ===== */
.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.35em; color: var(--amber); text-transform: uppercase; margin-bottom: 0.6rem; }
.section-title { font-family: var(--display); font-size: clamp(3rem, 8vw, 5.5rem); letter-spacing: 0.1em; color: var(--cream); line-height: 1; }

/* ===== STAR DIVIDER ===== */
.star-divider {
    display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding: 2rem 0;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background:
      radial-gradient(ellipse 60% 100% at 50% 50%, rgba(60,90,160,0.12) 0%, transparent 70%),
      linear-gradient(180deg, #081530 0%, #050d22 50%, #081530 100%);
}
.star-divider span { font-size: 0.7rem; color: var(--amber); opacity: 0.6; letter-spacing: 0.1em; }
.star-divider span:nth-child(3) { font-size: 1rem; opacity: 1; }

/* ===== ABOUT ===== */
.about-section {
    background:
      radial-gradient(ellipse 70% 50% at 50% 0%, rgba(60,90,160,0.15) 0%, transparent 65%),
      radial-gradient(ellipse 100% 50% at 50% 100%, rgba(13,29,64,0.4) 0%, transparent 70%),
      linear-gradient(180deg, #0c1d3a 0%, #081530 50%, #050d22 100%);
}
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; filter: brightness(0.9); }
.about-photo-border { position: absolute; inset: 12px; border: 1px solid var(--amber); opacity: 0.3; pointer-events: none; transform: translate(10px, 10px); }
.about-text .section-title { text-align: left; margin-bottom: 1rem; }
.about-text .section-label { text-align: left; }
.about-divider { display: flex; gap: 0.75rem; margin: 1.2rem 0; }
.about-divider span { color: var(--amber); font-size: 0.7rem; }
.about-bio { color: var(--cream-md); font-size: 0.95rem; line-height: 1.9; margin-bottom: 1.2rem; }
.about-bio:first-of-type { font-style: italic; border-left: 2px solid var(--amber); padding-left: 1.2rem; }
.about-links { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ===== MUSIC ===== */
.music-section {
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(60,90,160,0.14) 0%, transparent 60%),
      linear-gradient(180deg, #050d22 0%, #030820 50%, #050d22 100%);
}
.latest-release { display: grid; grid-template-columns: 380px 1fr; gap: 4rem; align-items: start; }
.release-art { position: relative; }
.release-art img { width: 100%; aspect-ratio: 1; object-fit: cover; box-shadow: 0 25px 70px rgba(0,0,0,0.6); }
.vinyl-ring { position: absolute; inset: -8px; border: 1px solid var(--amber); opacity: 0.2; pointer-events: none; }
.release-label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.35em; color: var(--amber); text-transform: uppercase; margin-bottom: 0.5rem; }
.release-title { font-family: var(--display); font-size: 3rem; letter-spacing: 0.04em; color: var(--cream); margin-bottom: 1rem; line-height: 1; }
.release-bio { color: var(--cream-md); font-size: 0.95rem; line-height: 1.85; margin-bottom: 2rem; font-style: italic; border-left: 2px solid var(--amber); padding-left: 1.2rem; }
.streaming-links { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.stream-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.1rem; border: 1px solid var(--border); background: transparent; color: var(--cream-md); font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.1em; transition: all 0.2s; }
.stream-btn:hover { border-color: var(--amber); color: var(--amber); background: var(--amber-glow); }
.spotify-embed { margin-top: 1.5rem; }

/* ===== VIDEOS ===== */
.videos-section {
    background:
      radial-gradient(ellipse 80% 50% at 50% 0%, rgba(60,90,160,0.15) 0%, transparent 65%),
      linear-gradient(180deg, #0c1d3a 0%, #081530 50%, #050d22 100%);
}
.videos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: var(--dark-card); border: 1px solid var(--border); }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.video-placeholder p { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; }
.video-title { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.12em; color: var(--cream-md); margin-top: 0.8rem; text-transform: uppercase; }

/* ===== SHOWS ===== */
.shows-section { position: relative; padding: 7rem 0; overflow: hidden; }
.shows-bg { position: absolute; inset: 0; background-image: url('../images/gallery-3.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.shows-overlay { position: absolute; inset: 0; background: rgba(9,8,8,0.88); }
.shows-inner { position: relative; z-index: 2; text-align: center; }
.shows-inner .section-title { margin-bottom: 3rem; }
.shows-list { max-width: 700px; margin: 0 auto 2rem; display: flex; flex-direction: column; gap: 1px; }
.show-item { display: flex; align-items: center; gap: 2rem; padding: 1.5rem 2rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border); text-align: left; transition: background 0.2s, border-color 0.2s; }
.show-item:hover { background: var(--amber-glow); border-color: var(--amber); }
.show-date { text-align: center; min-width: 60px; }
.show-month { display: block; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--amber); text-transform: uppercase; }
.show-day { display: block; font-family: var(--display); font-size: 2rem; color: var(--cream); line-height: 1; }
.show-info { flex: 1; }
.show-venue { font-family: var(--mono); font-size: 0.9rem; font-weight: 700; color: var(--cream); letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.show-location { font-family: var(--mono); font-size: 0.75rem; color: var(--cream-md); letter-spacing: 0.1em; text-transform: uppercase; }
.shows-note { font-family: var(--mono); font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; margin-top: 1.5rem; }

/* ===== MERCH ===== */
.merch-section {
    background:
      radial-gradient(ellipse 80% 50% at 50% 0%, rgba(60,90,160,0.16) 0%, transparent 65%),
      linear-gradient(180deg, #0c1d3a 0%, #081530 50%, #050d22 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.merch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.merch-item { cursor: none; }
.merch-image { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--dark-card); border: 1px solid var(--border); margin-bottom: 1rem; }
.merch-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.merch-item:hover .merch-image img { transform: scale(1.06); }
.merch-overlay { position: absolute; inset: 0; background: rgba(9,8,8,0.72); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.merch-item:hover .merch-overlay { opacity: 1; }
.merch-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1.4rem; letter-spacing: 0.08em; color: var(--muted); text-align: center; line-height: 1.3; }
.placeholder-card { border-style: dashed; }
.merch-info h4 { font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); margin-bottom: 0.3rem; }
.merch-price { font-family: var(--display); font-size: 1.2rem; color: var(--amber); }

/* ===== FAN CLUB ===== */
.fanclub-section { position: relative; padding: 9rem 0; overflow: hidden; }
.fanclub-bg { position: absolute; inset: 0; background-image: url('../images/fanclub-bg.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.fanclub-overlay { position: absolute; inset: 0; background: rgba(9,8,8,0.84); }
.fanclub-inner { position: relative; z-index: 2; text-align: center; }
.fanclub-stars { display: flex; justify-content: center; gap: 1rem; margin: 1rem 0; }
.fanclub-stars span { color: var(--amber); font-size: 0.8rem; }
.fanclub-desc { font-size: 1rem; color: var(--cream-md); max-width: 480px; margin: 1.5rem auto 3rem; line-height: 1.85; }
.email-form .form-row { display: flex; gap: 0.75rem; max-width: 620px; margin: 0 auto 1rem; flex-wrap: wrap; justify-content: center; }
.email-form input { flex: 1; min-width: 190px; padding: 0.85rem 1.25rem; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--cream); font-family: var(--body); font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
.email-form input:focus { border-color: var(--amber); }
.email-form input::placeholder { color: var(--muted); }
.form-note { font-size: 0.72rem; color: var(--muted); font-family: var(--mono); letter-spacing: 0.05em; }

/* ===== CONTACT ===== */
.contact-section {
    background:
      radial-gradient(ellipse 80% 50% at 50% 0%, rgba(60,90,160,0.14) 0%, transparent 65%),
      linear-gradient(180deg, #0c1d3a 0%, #081530 50%, #030820 100%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.contact-info h3 { font-family: var(--display); font-size: 2.2rem; letter-spacing: 0.04em; color: var(--cream); margin-bottom: 0.8rem; }
.contact-info p { color: var(--cream-md); font-size: 0.9rem; margin-bottom: 0.8rem; }
.contact-email { font-family: var(--mono); font-size: 1rem; color: var(--amber); transition: color 0.2s; display: block; margin-bottom: 2.5rem; }
.contact-email:hover { color: var(--amber-lt); }
.social-label { font-family: var(--mono) !important; font-size: 0.68rem !important; letter-spacing: 0.3em; color: var(--muted) !important; margin-bottom: 1rem !important; }
.social-icons { display: flex; gap: 0.75rem; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--border); color: var(--cream-md); transition: all 0.2s; }
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { border-color: var(--amber); color: var(--amber); background: var(--amber-glow); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea { padding: 0.85rem 1.25rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border); color: var(--cream); font-family: var(--body); font-size: 0.9rem; outline: none; transition: border-color 0.2s; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--amber); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); }

/* ===== FOOTER ===== */
.footer { background: var(--black); border-top: 1px solid var(--border); padding: 3rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.footer-stars { display: flex; gap: 1rem; }
.footer-stars span { color: var(--amber); font-size: 0.7rem; opacity: 0.6; }
.footer-name { font-family: var(--display); font-size: 2rem; letter-spacing: 0.22em; color: var(--cream); }
.footer-social { display: flex; gap: 2.5rem; }
.footer-social a { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; transition: color 0.2s; }
.footer-social a:hover { color: var(--amber); }
.footer-copy { font-family: var(--mono); font-size: 0.68rem; color: var(--muted); letter-spacing: 0.1em; }

/* ===== FADE IN ===== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .latest-release { grid-template-columns: 1fr; }
    .release-art img { max-width: 380px; margin: 0 auto; }
    .merch-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-photo img { max-width: 400px; aspect-ratio: 4/3; }
}
@media (max-width: 768px) {
    .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: 72%; background: var(--dark); flex-direction: column; justify-content: center; align-items: center; gap: 2.2rem; transition: right 0.3s ease; border-left: 1px solid var(--border); }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1rem; }
    .hamburger { display: flex; }
    .videos-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .section { padding: 4rem 0; }
    .fanclub-section, .shows-section { padding: 5rem 0; }
    .fanclub-bg, .shows-bg { background-attachment: scroll; }
    #cursor, #cursorDot { display: none; }
    body, a, button { cursor: auto; }
}
@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; text-align: center; }
    .streaming-links { flex-direction: column; }
    .stream-btn { justify-content: center; }
    .merch-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .photo-strip { height: 180px; }
    .strip-item { width: 160px; height: 180px; }
    .show-item { flex-wrap: wrap; gap: 1rem; }
}
