    :root {
      --bg:        #080808;
      --surface:   #0f0f0f;
      --surface2:  #141414;
      --red:       #c0392b;
      --red-hot:   #ff2a1a;
      --amber:     #e67e00;
      --steel:     #2c2c2c;
      --muted:     #5a5a5a;
      --off-white: #d4cfc9;
      --font-display: 'Black Ops One', cursive;
      --font-heading: 'Bebas Neue', cursive;
      --font-mono:    'Share Tech Mono', monospace;
      --font-body:    'Barlow Condensed', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--off-white);
      font-family: var(--font-body);
      overflow-x: hidden;
    }

    /* NOISE */
    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='1'/%3E%3C/svg%3E");
      opacity: 0.035; pointer-events: none; z-index: 9999;
    }

    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--red); }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 3rem; height: 64px;
      background: rgba(8,8,8,0.96);
      border-bottom: 1px solid rgba(192,57,43,0.25);
      backdrop-filter: blur(10px);
    }
    .nav-logo {
      font-family: var(--font-display); font-size: 1.35rem;
      letter-spacing: 0.06em; color: var(--off-white);
      text-decoration: none; display: flex; align-items: center; gap: 10px;
    }
    .nav-logo span.rage { color: var(--red-hot); }
    .nav-logo .logo-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
    .nav-links { display: flex; gap: 0; list-style: none; }
    .nav-links a {
      font-family: var(--font-heading); font-size: 1rem; letter-spacing: 0.12em;
      color: var(--muted); text-decoration: none;
      padding: 0 1.2rem; height: 64px; display: flex; align-items: center;
      position: relative; transition: color 0.25s;
    }
    .nav-links a.active { color: var(--off-white); }
    .nav-links a.active::after,
    .nav-links a:hover::after {
      content: ''; position: absolute; bottom: 0; left: 1.2rem; right: 1.2rem;
      height: 2px; background: var(--red);
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 1.2rem; right: 1.2rem;
      height: 2px; background: var(--red);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    }
    .nav-links a:hover { color: var(--off-white); }
    .nav-links a:hover::after,
    .nav-links a.active::after { transform: scaleX(1); }

    /* ── HERO ── */
    .bio-hero {
      position: relative; min-height: 100vh;
      display: flex; flex-direction: column;
      justify-content: flex-end;
      overflow: hidden; padding: 64px 0 0;
    }

    /* Animated scanlines */
    .hero-scanlines {
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent, transparent 3px,
        rgba(0,0,0,0.08) 3px, rgba(0,0,0,0.08) 4px
      );
      pointer-events: none; z-index: 2;
    }

    /* BIG background text */
    .hero-bg-text {
      position: absolute;
      bottom: -0.12em; left: -0.04em;
      font-family: var(--font-display);
      font-size: clamp(12rem, 28vw, 28rem);
      line-height: 2.5;
      color: transparent;
      -webkit-text-stroke: 3px rgba(255, 40, 17, 0.12);
      white-space: nowrap;
      pointer-events: none;
      z-index: 1;
      user-select: none;
    }

    /* Diagonal red slash */
    .hero-slash {
      position: absolute;
      top: 0; right: 15%;
      width: 2px; height: 100%;
      background: linear-gradient(to bottom, transparent 0%, var(--red) 30%, var(--red) 70%, transparent 100%);
      opacity: 0.2;
      transform: skewX(-8deg);
    }
    .hero-slash2 {
      position: absolute;
      top: 0; right: calc(15% + 20px);
      width: 1px; height: 100%;
      background: linear-gradient(to bottom, transparent 0%, var(--amber) 40%, var(--amber) 60%, transparent 100%);
      opacity: 0.1;
      transform: skewX(-8deg);
    }

    .hero-content {
      position: relative; z-index: 3;
      padding: 4rem 6rem 5rem;
      max-width: 1500px;
    }

    .hero-pre {
      font-family: var(--font-mono); font-size: 0.72rem;
      letter-spacing: 0.35em; color: var(--red);
      text-transform: uppercase; margin-bottom: 1.2rem;
      display: flex; align-items: center; gap: 1rem;
      opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
    }
    .hero-pre::before {
      content: ''; display: block; width: 40px; height: 1px; background: var(--red);
    }

    .hero-h1 {
      font-family: var(--font-display);
      font-size: clamp(3.5rem, 9vw, 8rem);
      line-height: 0.92; letter-spacing: -0.01em;
      color: var(--off-white);
      opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
    }
    .hero-h1 em {
      font-style: normal; color: var(--red);
      -webkit-text-stroke: 0;
    }

    .hero-year-badge {
      display: inline-flex; align-items: center; gap: 0.6rem;
      font-family: var(--font-mono); font-size: 0.7rem;
      letter-spacing: 0.2em; color: var(--amber);
      border: 1px solid rgba(230,126,0,0.3);
      padding: 5px 12px; margin-top: 1.8rem;
      opacity: 0; animation: fadeUp 0.7s 0.65s forwards;
    }
    .hero-year-badge::before {
      content: ''; width: 6px; height: 6px;
      background: var(--amber); border-radius: 50%;
      animation: pulse 1.5s ease-in-out infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.4; transform: scale(0.7); }
    }

    /* Bottom red bar */
    .hero-bottom-bar {
      position: relative; z-index: 3;
      background: var(--red);
      height: 5px;
      box-shadow: 0 0 40px 8px rgba(192,57,43,0.5);
    }

    /* ── SECTION LAYOUT ── */
    .section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 6rem 3rem;
    }

    .section-header {
      display: flex; align-items: baseline; gap: 1.2rem;
      margin-bottom: 3.5rem;
    }
    .s-num {
      font-family: var(--font-mono); font-size: 0.68rem;
      letter-spacing: 0.25em; color: var(--red);
    }
    .s-title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 5vw, 3.5rem);
      letter-spacing: 0.07em; color: var(--off-white);
      line-height: 1;
    }
    .s-line {
      flex: 1; height: 1px;
      background: linear-gradient(90deg, var(--steel), transparent);
    }

    /* ── SECTION 1 — HISTORIA ── */
    .historia-grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 5rem;
      align-items: start;
    }

    .historia-text p {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.9;
      color: #b8b3ad;
      margin-bottom: 1.5rem;
      position: relative;
    }
    .historia-text p:first-child {
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--off-white);
      padding-left: 1.5rem;
      border-left: 3px solid var(--red);
    }
    .historia-text strong {
      color: var(--red-hot); font-weight: 700;
    }

    .historia-manifesto {
      margin-top: 2.5rem;
      padding: 1.5rem 2rem;
      background: var(--surface);
      border: 1px solid var(--steel);
      border-left: 3px solid var(--amber);
      position: relative;
      overflow: hidden;
    }
    .historia-manifesto::before {
      content: '"';
      position: absolute;
      top: -0.4em; left: 0.3em;
      font-family: var(--font-display);
      font-size: 8rem;
      color: rgba(192,57,43,0.06);
      line-height: 1;
      pointer-events: none;
    }
    .historia-manifesto p {
      font-family: var(--font-mono);
      font-size: 0.8rem;
      line-height: 1.7;
      letter-spacing: 0.05em;
      color: var(--muted);
      position: relative; z-index: 1;
    }
    .historia-manifesto p em { color: var(--amber); font-style: italic; }

    /* Band image placeholder */
    .band-img-frame {
      position: sticky; top: 100px;
    }
    .band-img {
      position: relative;
      aspect-ratio: 1/1;
      background: var(--surface);
      overflow: hidden;
    }
    .band-img-inner {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 1rem;
    }

    /* Etiqueta debajo de imagen */
    .band-img-caption {
      margin-top: 1rem;
      padding: 0.75rem 1rem;
      background: var(--surface);
      border: 1px solid var(--steel);
      display: flex; justify-content: space-between; align-items: center;
    }
    .band-img-caption span {
      font-family: var(--font-mono); font-size: 0.65rem;
      letter-spacing: 0.2em; color: var(--muted);
    }
    .band-img-caption strong {
      font-family: var(--font-heading); font-size: 1rem;
      letter-spacing: 0.1em; color: var(--off-white);
    }

    /* ── SECTION 2 — INTEGRANTES ── */
    .members-section {
      background: var(--surface);
      border-top: 1px solid var(--steel);
      border-bottom: 1px solid var(--steel);
      padding: 6rem 3rem;
    }
    .members-section .section-header { max-width: 1200px; margin: 0 auto 3.5rem; }

    .members-layout {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Top row: 2 guitars flanking center vocalist */
    .members-top {
      display: grid;
      grid-template-columns: 1fr 1.3fr 1fr;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    /* Bottom row: drums + bass centered */
    .members-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      max-width: 680px;
      margin: 0 auto;
    }

    .member-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .member-photo {
      position: relative;
      width: 100%;
      overflow: hidden;
    }
    .member-photo-inner {
      width: 100%; 
      background: var(--bg);
      display: flex; align-items: flex-end; justify-content: center;
      position: relative;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .member-card:hover .member-photo-inner {
      transform: scale(1.04);
    }

    /* vocalist taller */
    .member-card.vocalist .member-photo-inner, .member-card.guitarist .member-photo-inner, .member-card.bassist .member-photo-inner, .member-card.drummer .member-photo-inner { height: 500px; }

    /* Unique gradient per role */
    .member-card.guitarist .member-photo-inner, .member-card.vocalist .member-photo-inner, .member-card.guitarist .member-photo-inner, .member-card.bassist .member-photo-inner, .member-card.drummer .member-photo-inner {
      background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(80,20,10,0.5) 0%, transparent 60%),
        linear-gradient(180deg, #100808 0%, #080808 100%);
    }

    /* Hover overlay */
    .member-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to top,
        rgba(192,57,43,0.92) 0%,
        rgba(8,8,8,0.6) 60%,
        transparent 100%
      );
      opacity: 0;
      transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
      display: flex; flex-direction: column;
      justify-content: flex-end;
      padding: 2rem 1.5rem;
    }
    .member-card:hover .member-overlay { opacity: 1; }

    .member-overlay-name {
      font-family: var(--font-display);
      font-size: clamp(1.2rem, 2.5vw, 1.8rem);
      color: #fff;
      line-height: 1;
      transform: translateY(12px);
      transition: transform 0.4s 0.05s cubic-bezier(0.4,0,0.2,1);
    }
    .member-card:hover .member-overlay-name { transform: translateY(0); }

    .member-overlay-role {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.3em;
      color: rgba(255,255,255,0.75);
      text-transform: uppercase;
      margin-top: 4px;
      transform: translateY(10px);
      transition: transform 0.4s 0.1s cubic-bezier(0.4,0,0.2,1);
    }
    .member-card:hover .member-overlay-role { transform: translateY(0); }

    .member-overlay-line {
      width: 0; height: 2px;
      background: #fff;
      margin-top: 8px;
      transition: width 0.4s 0.15s cubic-bezier(0.4,0,0.2,1);
    }
    .member-card:hover .member-overlay-line { width: 40px; }

    /* vocalist special badge */
    .vocalist-badge {
      position: absolute; top: 1rem; left: 50%; transform: translateX(-50%);
      font-family: var(--font-mono); font-size: 0.55rem;
      letter-spacing: 0.3em; color: var(--red);
      border: 1px solid rgba(192,57,43,0.4);
      padding: 3px 10px; background: rgba(8,8,8,0.8);
      white-space: nowrap; z-index: 2;
    }

    /* ── SECTION 3 — DISCOGRAFÍA ── */
    .discografia-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 2rem;
    }

    .album-card {
      position: relative; overflow: hidden;
      background: var(--surface);
      border: 1px solid var(--steel);
      transition: border-color 0.3s, transform 0.3s;
      cursor: pointer;
    }
    .album-card:hover {
      border-color: rgba(192,57,43,0.5);
      transform: translateY(-6px);
    }

    .album-art {
      aspect-ratio: 1;
      position: relative; overflow: hidden;
    }
    .album-art-inner {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.4s;
    }
    .album-card:hover .album-art-inner { transform: scale(1.06); }

    /* Each album unique art */
    .album-card:nth-child(1) .album-art-inner {
      background: radial-gradient(circle at 30% 35%, rgba(192,57,43,0.5), rgba(8,8,8,0.95));
    }
    .album-card:nth-child(2) .album-art-inner {
      background: radial-gradient(circle at 65% 40%, rgba(230,126,0,0.4), rgba(8,8,8,0.95));
    }
    .album-card:nth-child(3) .album-art-inner {
      background: radial-gradient(circle at 50% 30%, rgba(80,40,120,0.35), rgba(8,8,8,0.95));
    }

    .album-art-svg {
      width: 55%; opacity: 0.3;
      transition: opacity 0.4s;
    }
    .album-card:hover .album-art-svg { opacity: 0.15; }

    .album-year-tag {
      position: absolute; top: 1rem; right: 1rem;
      font-family: var(--font-mono); font-size: 0.6rem;
      letter-spacing: 0.2em;
      padding: 3px 8px;
      border: 1px solid;
    }
    .album-card:nth-child(1) .album-year-tag { color: var(--red); border-color: rgba(192,57,43,0.4); }
    .album-card:nth-child(2) .album-year-tag { color: var(--amber); border-color: rgba(230,126,0,0.4); }
    .album-card:nth-child(3) .album-year-tag { color: #a080f0; border-color: rgba(160,128,240,0.35); }

    .album-info { padding: 1.5rem; }
    .album-type {
      font-family: var(--font-mono); font-size: 0.62rem;
      letter-spacing: 0.25em; color: var(--muted);
      text-transform: uppercase; margin-bottom: 0.4rem;
    }
    .album-title {
      font-family: var(--font-display);
      font-size: 1.5rem; letter-spacing: 0.04em;
      color: var(--off-white); line-height: 1.1;
    }
    .album-meta {
      font-size: 0.82rem; font-weight: 300;
      color: var(--muted); margin-top: 0.4rem;
    }

    .album-tracks {
      list-style: none;
      border-top: 1px solid var(--steel);
      margin-top: 1rem; padding-top: 1rem;
      display: flex; flex-direction: column; gap: 0.3rem;
    }
    .album-tracks li {
      display: flex; align-items: center; gap: 0.6rem;
      font-size: 0.82rem; font-weight: 300;
      color: var(--muted); transition: color 0.2s;
    }
    .album-tracks li:hover { color: var(--off-white); }
    .track-n {
      font-family: var(--font-mono); font-size: 0.62rem;
      color: var(--red); min-width: 18px;
    }

    .album-listen {
      display: block; width: 100%;
      margin-top: 1.2rem;
      font-family: var(--font-heading); font-size: 0.9rem;
      letter-spacing: 0.15em; color: var(--off-white);
      border: 1px solid var(--steel); padding: 0.6rem;
      text-align: center; text-decoration: none;
      transition: all 0.25s;
      clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    }
    .album-listen:hover {
      background: var(--red); border-color: var(--red);
      box-shadow: 0 0 20px rgba(192,57,43,0.35);
    }

    /* ── SECTION 4 — VIDEOS ── */
    .videos-section {
      background: var(--surface2);
      border-top: 1px solid var(--steel);
    }
    .videos-section .section { padding-bottom: 6rem; }

    .videos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.5rem;
    }

    .video-card {
      position: relative; overflow: hidden;
      background: var(--surface);
      border: 1px solid var(--steel);
      cursor: pointer;
      transition: border-color 0.3s;
    }
    .video-card:hover { border-color: rgba(192,57,43,0.5); }

    .video-thumb {
      aspect-ratio: 16/9;
      position: relative; overflow: hidden;
    }
    .video-thumb-inner {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.4s;
    }
    .video-card:hover .video-thumb-inner { transform: scale(1.05); }

    .video-card:nth-child(1) .video-thumb-inner {
      background: radial-gradient(ellipse at 40% 40%, rgba(192,57,43,0.3), rgba(8,8,8,0.95));
    }
    .video-card:nth-child(2) .video-thumb-inner {
      background: radial-gradient(ellipse at 60% 40%, rgba(230,126,0,0.2), rgba(8,8,8,0.95));
    }
    .video-card:nth-child(3) .video-thumb-inner {
      background: radial-gradient(ellipse at 50% 50%, rgba(192,57,43,0.2), rgba(8,8,8,0.95));
    }
    .video-card:nth-child(4) .video-thumb-inner {
      background: radial-gradient(ellipse at 30% 60%, rgba(80,80,180,0.2), rgba(8,8,8,0.95));
    }

    .yt-play {
      width: 56px; height: 56px;
      border: 2px solid rgba(192,57,43,0.6);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.3s; background: rgba(8,8,8,0.5);
    }
    .video-card:hover .yt-play {
      background: var(--red); border-color: var(--red);
      box-shadow: 0 0 24px rgba(192,57,43,0.6);
    }
    .yt-play svg { width: 20px; fill: #fff; margin-left: 3px; }

    .video-duration {
      position: absolute; bottom: 8px; right: 10px;
      font-family: var(--font-mono); font-size: 0.62rem;
      letter-spacing: 0.1em;
      background: rgba(8,8,8,0.85); color: var(--off-white);
      padding: 2px 6px;
    }

    .video-info { padding: 1rem 1.2rem 1.2rem; }
    .video-label {
      font-family: var(--font-mono); font-size: 0.6rem;
      letter-spacing: 0.25em; color: var(--red);
      text-transform: uppercase; margin-bottom: 4px;
    }
    .video-title {
      font-family: var(--font-heading);
      font-size: 1.1rem; letter-spacing: 0.05em;
      color: var(--off-white); line-height: 1.2;
    }
    .video-views {
      font-family: var(--font-mono); font-size: 0.62rem;
      color: var(--muted); margin-top: 4px; letter-spacing: 0.1em;
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--steel);
      padding: 3rem;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-brand {
      font-family: var(--font-display); font-size: 1.2rem;
      letter-spacing: 0.05em; color: var(--off-white);
    }
    .footer-brand span { color: var(--red); }
    .footer-copy {
      font-family: var(--font-mono); font-size: 0.65rem;
      letter-spacing: 0.15em; color: var(--muted); margin-top: 6px;
    }
    .footer-socials { display: flex; gap: 1rem; }
    .social-link {
      width: 38px; height: 38px;
      border: 1px solid var(--steel);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; transition: all 0.25s;
      clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    }
    .social-link:hover { border-color: var(--red); background: rgba(192,57,43,0.15); }
    .social-link svg { width: 16px; fill: var(--off-white); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .historia-grid { grid-template-columns: 1fr; }
      .band-img-frame { position: static; max-width: 340px; }
      .members-top { grid-template-columns: 1fr 1fr 1fr; }
      nav { padding: 0 1.5rem; }
      .nav-links { display: none; }
      .hero-content { padding: 3rem 1.5rem 4rem; }
      .section { padding: 4rem 1.5rem; }
    }
    @media (max-width: 600px) {
      .members-top { grid-template-columns: 1fr; }
      .members-bottom { grid-template-columns: 1fr; max-width: 100%; }
      footer { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
    }