:root {
    --black: #03010a;
    --deep: #07030f;
    --panel: #0d0820;
    --accent: #ff00f5;
    --accent2: #00f0ff;
    --blood: #ff2b2b;
    --muted: #3a2a55;
    --text: #b8a8d8;
    --white: #f0e8ff;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Crimson Pro', serif;
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: crosshair;
  }

  /* ─── 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='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.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    background: linear-gradient(to bottom, rgba(5,5,6,0.95), transparent);
    backdrop-filter: blur(2px);
  }

  .nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    filter: drop-shadow(0 0 8px rgba(255,0,245,0.4));
    transition: filter 0.2s;
  }
  .nav-logo:hover {
    filter: drop-shadow(0 0 14px rgba(255,0,245,0.7));
  }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }

  /* ─── HERO ─── */
  #hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255,0,245,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 50% 40% at 80% 10%, rgba(0,240,255,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 40% 30% at 10% 80%, rgba(0,240,255,0.06) 0%, transparent 60%),
      linear-gradient(180deg, #03010a 0%, #07030f 100%);
  }

  /* Grid lines */
  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,240,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,0,245,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridScroll 20s linear infinite;
  }

  @keyframes gridScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
  }

  /* Diagonal slash decoration */
  .hero-slash {
    position: absolute;
    top: 0; left: -10%;
    width: 120%;
    height: 3px;
    background: var(--accent);
    transform: rotate(-8deg) translateY(340px);
    opacity: 0.15;
  }
  .hero-slash:nth-child(2) { transform: rotate(-8deg) translateY(360px); opacity: 0.07; }
  .hero-slash:nth-child(3) { transform: rotate(-8deg) translateY(380px); opacity: 0.04; }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
  }

  .hero-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    letter-spacing: 0.4em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s ease both;
    animation-delay: 0.2s;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 14vw, 12rem);
    line-height: 0.88;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 0.1em;
    animation: fadeUp 1s ease both;
    animation-delay: 0.4s;
  }

  .hero-title span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0,240,255,0.7);
  }

  .hero-sub {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    margin-top: 1.5rem;
    animation: fadeUp 1s ease both;
    animation-delay: 0.6s;
  }

  .hero-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease both;
    animation-delay: 0.8s;
  }

  .btn {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2.2rem;
    border: 1px solid;
    transition: all 0.25s;
    cursor: pointer;
  }

  .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
    box-shadow: 0 0 20px rgba(255,0,245,0.4), 0 0 60px rgba(255,0,245,0.15);
  }
  .btn-primary:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 30px rgba(255,0,245,0.6), 0 0 80px rgba(255,0,245,0.2);
  }

  .btn-ghost {
    background: transparent;
    border-color: var(--muted);
    color: var(--muted);
  }
  .btn-ghost:hover { border-color: var(--white); color: var(--white); }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--muted);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    animation: fadeUp 1s ease both;
    animation-delay: 1.2s;
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── SECTION SHARED ─── */
  section { position: relative; }

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem 2.5rem;
  }

  .labeled {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;

    text-shadow: 0 0 12px rgba(255,0,245,0.5);
  }

  .section-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 0 0 12px rgba(255,0,245,0.5);
  }
  .section-label::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
    box-shadow: 0 0 6px var(--accent);
  }

  .section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 2.5rem;
  }

  /* ─── ABOUT ─── */
  #about {
    background: var(--deep);
    border-top: 1px solid rgba(200,255,0,0.08);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .about-text p {
    margin-bottom: 1.2rem;
    color: var(--text);
    font-size: 1.4rem;
  }

  .about-text p:first-of-type {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--muted);
    margin-top: 2.5rem;
  }

  .stat {
    padding: 1.8rem 1.5rem;
    border-right: 1px solid var(--muted);
    border-bottom: 1px solid var(--muted);
  }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--accent2);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0,240,255,0.5);
  }

  .stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.3rem;
  }

  .about-right { position: relative; }

  .band-portrait {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--panel);
    border: 1px solid var(--muted);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .portrait {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--panel);
    border: 1px solid var(--muted);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .portrait-placeholder {
    text-align: center;
    padding: 2rem;
  }

  .portrait-placeholder svg {
    width: 120px;
    height: 120px;
    opacity: 0.15;
    margin-bottom: 1rem;
  }

  .portrait-placeholder p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .cover {
    width: 100%;
    height: auto;
  }
  /* Corner decorations */
  .band-portrait::before, .band-portrait::after {
    content: '';
    position: absolute;
    width: 30px; height: 30px;
  }
  .band-portrait::before {
    top: -1px; left: -1px;
    border-top: 2px solid var(--accent2);
    border-left: 2px solid var(--accent2);
  }
  .band-portrait::after {
    bottom: -1px; right: -1px;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
  }

  .members-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--muted);
  }

  .member {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid var(--muted);
    transition: background 0.2s;
  }
  .member:last-child { border-bottom: none; }
  .member:hover { background: rgba(200,255,0,0.03); }

  .member-name {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: var(--white);
    letter-spacing: 0.05em;
  }

  .member-role {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ─── MUSIC ─── */
  #music {
    background: var(--black);
    border-top: 1px solid rgba(200,255,0,0.08);
  }

  .music-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
  }

  .music-tabs {
    display: flex;
    gap: 0;
    border: 1px solid var(--muted);
  }

  .tab {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.7rem 1.4rem;
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: crosshair;
    border-right: 1px solid var(--muted);
    transition: all 0.2s;
  }
  .tab:last-child { border-right: none; }
  .tab.active, .tab:hover { background: var(--accent); color: var(--black); }

  .videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5px;
    background: var(--muted);
    border: 1px solid var(--muted);
  }

  .video-card {
    background: var(--panel);
    position: relative;
    overflow: hidden;
  }

  .video-embed {
    aspect-ratio: 16/9;
    width: 100%;
    position: relative;
    background: #000;
  }

  .video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }

  .audio-embed {
    aspect-ratio: 16/9;
    position: relative;
    background: #000;
  }

  .audio-embed iframe {
    width: 100%;
    border: none;
    display: block;
  }
  /* Placeholder for empty slots */
  .video-placeholder {
    aspect-ratio: 16/9;
    background: var(--panel);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.8rem;
    cursor: crosshair;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .video-placeholder:hover { background: rgba(200,255,0,0.04); }

  .play-icon {
    width: 50px; height: 50px;
    border: 1px solid rgba(200,255,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }

  .video-placeholder:hover .play-icon {
    border-color: var(--accent);
    background: rgba(200,255,0,0.1);
  }

  .play-icon svg { fill: var(--accent); width: 18px; margin-left: 3px; }

  .video-meta {
    padding: 1.2rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(200,255,0,0.08);
  }

  .video-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 0.2rem;
  }

  .video-desc {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
  }

  /* Featured video */
  .video-card.featured {
    grid-column: 1 / -1;
  }

  .video-card.featured .video-embed {
    aspect-ratio: 21/9;
  }

  
  /* ─── DIVIDER ─── */
  .glitch-divider {
    padding: 4rem 2.5rem;
    text-align: center;
    overflow: hidden;
    background: var(--panel);
    border-top: 1px solid rgba(200,255,0,0.05);
    border-bottom: 1px solid rgba(200,255,0,0.05);
  }

  .glitch-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(0,240,255,0.2);
    letter-spacing: 0.2em;
    position: relative;
    user-select: none;
  }

  .glitch-text::before, .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0; right: 0;
    color: transparent;
    animation: glitch 4s infinite;
  }

  .glitch-text::before {
    -webkit-text-stroke: 1px var(--accent);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    animation-delay: 0s;
    filter: drop-shadow(0 0 8px var(--accent));
  }
  .glitch-text::after {
    -webkit-text-stroke: 1px var(--accent2);
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    animation-delay: 0.5s;
    filter: drop-shadow(0 0 8px var(--accent2));
  }

  @keyframes glitch {
    0%, 90%, 100% { transform: translate(0); opacity: 0; }
    92% { transform: translate(-3px, 1px); opacity: 1; }
    94% { transform: translate(3px, -1px); opacity: 1; }
    96% { transform: translate(-2px, 2px); opacity: 0.8; }
    98% { transform: translate(2px, -2px); opacity: 1; }
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--deep);
    border-top: 1px solid rgba(200,255,0,0.08);
    padding: 3rem 2.5rem;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 0.05em;
  }

  .footer-brand span {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(255,0,245,0.5);
  }

  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
  }

  .footer-links a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--accent); }

  .footer-copy {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    width: 100%;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-transform: uppercase;
  }

  /* ─── SCROLL ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }
  .reveal-delay-3 { transition-delay: 0.45s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-logo svg { width: 180px; height: 32px;}
    .nav-links { display: none; gap: 1.5rem; font-size: 0.75rem; }
    .hero-eyebrow { font-size: 0.75rem;}
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-text{font-size: .75rem;}
    .about-right { order: -1; }
    .music-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .video-card.featured .video-embed { aspect-ratio: 16/9; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
  }