    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #0a0a0a;
      --surface: #111;
      --surface2: #181818;
      --border: rgba(255,255,255,0.07);
      --text: #e8e8e8;
      --muted: #666;
      --accent: #e8ff47;
      --accent2: #ff4f1f;
      --red: #ff2020;
      --font-display: 'Bebas Neue', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --radius: 12px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── 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: .4;
    }

    /* ── HEADER ── */
    header.top {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background: rgba(10,10,10,0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    header.top a[aria-label="EJDRIVES"] {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-text {
      font-family: var(--font-display);
      font-size: 2rem;
      letter-spacing: 0.05em;
      color: var(--accent);
      line-height: 1;
    }

    nav.social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      margin-left: 12px;
      transition: transform .2s ease, color .2s ease;
    }

    nav.social a:hover {
      transform: scale(1.15);
      color: #ff5555;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      padding: 6rem 2rem 5rem;
      max-width: 1100px;
      margin: 0 auto;
      overflow: hidden;
    }

    .hero-bg-text {
      position: absolute;
      top: -1rem;
      left: -1rem;
      font-family: var(--font-display);
      font-size: clamp(6rem, 18vw, 14rem);
      color: rgba(255,255,255,0.025);
      line-height: 1;
      pointer-events: none;
      white-space: nowrap;
      user-select: none;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5rem);
      line-height: 1.05;
      letter-spacing: 0.02em;
      color: #fff;
      max-width: 750px;
      position: relative;
      animation: fadeUp .8s ease both;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--accent);
    }

    .hero p {
      margin-top: 1.5rem;
      font-size: 1rem;
      line-height: 1.75;
      color: #999;
      max-width: 560px;
      font-weight: 300;
      position: relative;
      animation: fadeUp .8s .15s ease both;
    }

    .hero-tags {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
      margin-top: 2rem;
      animation: fadeUp .8s .3s ease both;
    }

    .tag {
      font-family: var(--font-display);
      font-size: .85rem;
      letter-spacing: .1em;
      padding: .3rem .8rem;
      border: 1px solid var(--border);
      border-radius: 100px;
      color: var(--muted);
    }

    .tag.active {
      background: var(--accent);
      color: #000;
      border-color: var(--accent);
    }

    /* ── MAIN ── */
    main {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem 4rem;
    }

    /* ── REGION SECTION ── */
    .region {
      margin-top: 4rem;
      animation: fadeUp .6s ease both;
    }

    .region-header {
      display: flex;
      align-items: baseline;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
    }

    .region-header h2 {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      letter-spacing: .04em;
      color: #fff;
      line-height: 1;
    }

    .region-num {
      font-family: var(--font-display);
      font-size: 1rem;
      color: var(--accent);
      letter-spacing: .1em;
    }

    /* ── GRID ── */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
      gap: 16px;
    }

    /* ── CARD ── */
    .card {
      display: block;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--surface);
      text-decoration: none;
      color: var(--text);
      border: 1px solid var(--border);
      transition: transform .3s cubic-bezier(.25,.46,.45,.94),
                  box-shadow .3s ease,
                  border-color .3s ease;
      position: relative;
    }

    .card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--radius);
      background: linear-gradient(135deg, rgba(232,255,71,0) 0%, rgba(232,255,71,0.04) 100%);
      opacity: 0;
      transition: opacity .3s ease;
      pointer-events: none;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(0,0,0,.6), 0 0 0 1px rgba(232,255,71,0.15);
      border-color: rgba(232,255,71,0.2);
      text-decoration: none;
    }

    .card:hover::after { opacity: 1; }

    .thumb {
      aspect-ratio: 16/9;
      background: #000;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      display: block;
      position: relative;
      overflow: hidden;
    }

    .thumb::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.7) 100%);
      opacity: 0;
      transition: opacity .3s ease;
    }

    .card:hover .thumb::before { opacity: 1; }

    /* play icon on hover */
    .thumb::after {
      content: '▶';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      color: var(--accent);
      opacity: 0;
      transition: opacity .3s ease;
      text-shadow: 0 2px 20px rgba(0,0,0,.8);
    }

    .card:hover .thumb::after { opacity: 1; }

    .card-body {
      padding: .9rem 1rem 1.1rem;
    }

    .card h3 {
      font-size: .88rem;
      font-weight: 400;
      line-height: 1.5;
      color: #ccc;
      transition: color .2s ease;
    }

    .card:hover h3 { color: #fff; }

    /* ── FOOTER ── */
    .site-footer {
      margin-top: 5rem;
      padding: 2.5rem 1rem;
      text-align: center;
      font-size: .85rem;
      color: var(--muted);
      border-top: 1px solid var(--border);
      background: var(--bg);
    }

    .footer-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .footer-divider span {
      font-family: var(--font-display);
      font-size: 1.2rem;
      letter-spacing: .15em;
      color: #333;
    }

    .footer-divider::before, .footer-divider::after {
      content: '';
      width: 60px;
      height: 1px;
      background: var(--border);
    }

    .footer-social { margin-bottom: 1rem; }

    .footer-social a {
      display: inline-block;
      margin: 0 10px;
      color: #555;
      transition: color .2s ease, transform .2s ease;
      text-decoration: none;
    }

    .footer-social a:hover { color: #fff; transform: translateY(-2px); }

    .footer-social svg {
      width: 22px;
      height: 22px;
      fill: currentColor;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .region:nth-child(1) { animation-delay: .05s; }
    .region:nth-child(2) { animation-delay: .1s; }
    .region:nth-child(3) { animation-delay: .15s; }
    .region:nth-child(4) { animation-delay: .2s; }
    .region:nth-child(5) { animation-delay: .25s; }

    /* ── SCROLL LINE ── */
    .scroll-line {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      background: var(--accent);
      z-index: 9998;
      width: 0%;
      transition: width .1s linear;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 600px) {
      header.top { padding: .75rem 1rem; }
      .hero { padding: 3rem 1rem 2.5rem; }
      main { padding: 0 1rem 3rem; }
      .grid { grid-template-columns: 1fr; }
    }

/* ── DRIVE DETAIL PAGE ──────────────────────────────────── */

/* Hero del drive */
.drive-hero {
  padding: 3rem 0 2rem;
  animation: fadeUp .8s ease both;
}

.drive-hero-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.drive-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: .02em;
  color: #fff;
}

.h1-sub {
  color: var(--muted);
  font-size: .65em;
  display: block;
  margin-top: .2em;
  letter-spacing: .04em;
}

/* Vídeo */
.video-wrap {
  margin: 2rem 0 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  border: 1px solid var(--border);
  animation: fadeUp .8s .1s ease both;
}

.video-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Grid de contenido */
.drive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  animation: fadeUp .8s .2s ease both;
}

@media (max-width: 720px) {
  .drive-grid { grid-template-columns: 1fr; }
}

/* Secciones */
.drive-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.drive-section h3 {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.drive-section p {
  font-size: .95rem;
  line-height: 1.8;
  color: #aaa;
  font-weight: 300;
  margin-bottom: 1rem;
}

.drive-section p:last-child { margin-bottom: 0; }

.drive-section strong { color: #ddd; font-weight: 500; }
.drive-section em { color: #bbb; font-style: italic; }
.drive-section a { color: var(--accent); }
.drive-section a:hover { text-decoration: underline; }

/* Lista de detalles */
.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.detail-list li {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
}

.detail-list li:last-child { border-bottom: none; }

.detail-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.detail-value {
  font-size: .9rem;
  color: #ccc;
  font-weight: 300;
  line-height: 1.5;
}

/* Nav de vuelta */
.drive-nav {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  animation: fadeUp .8s .3s ease both;
}

/* Back link */
.back-link {
  font-size: .85rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .05em;
  transition: color .2s ease;
}

.back-link:hover {
  color: var(--accent);
  text-decoration: none;
}