:root {
    --neon-cyan: #00f5ff;
    --neon-magenta: #ff006e;
    --neon-gold: #ffd60a;
    --dark-base: #020409;
    --dark-mid: #0a0f1e;
    --dark-card: #0d1528;
    --glass: rgba(255,255,255,0.04);
    --glass-border: rgba(0,245,255,0.15);
    --text-main: #e8f4fd;
    --text-muted: #6b8fa8;
}

  * { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-base);
    color: var(--text-main);
    overflow-x: hidden;
    cursor: none;
}

  /* CUSTOM CURSOR */
.cursor {
    width: 12px; height: 12px;
    background: var(--neon-cyan);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, background 0.2s;
    box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}
.cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(0,245,255,0.5);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
    width: 60px; height: 60px;
    border-color: var(--neon-magenta);
}

  /* NOISE OVERLAY */
body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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: 1; opacity: 0.4;
}

  /* GRID BACKGROUND */
body::after {
    content: '';
    position: fixed; inset: 0;
    background-image:
    linear-gradient(rgba(0,245,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none; z-index: 0;
}

  /* NAVBAR */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 4rem;
    height: 70px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(2,4,9,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s;
}
nav.scrolled {
    background: rgba(2,4,9,0.97);
    box-shadow: 0 0 30px rgba(0,245,255,0.08);
}
.nav-logo {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0,245,255,0.5);
    text-decoration: none;
}
.nav-logo span { color: var(--neon-magenta); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--neon-cyan);
    transition: width 0.3s;
    box-shadow: 0 0 6px var(--neon-cyan);
}
.nav-links a:hover { color: var(--neon-cyan); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    padding: 0.5rem 1.4rem;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan) !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s !important;
    position: relative; overflow: hidden;
}
.nav-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--neon-cyan);
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: -1;
}
.nav-cta:hover { color: var(--dark-base) !important; }
.nav-cta:hover::before { transform: translateX(0); }
.nav-cta::after { display: none !important; }

  /* HERO */
#hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 0 4rem;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,245,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(255,0,110,0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--dark-base) 0%, var(--dark-mid) 100%);
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,245,255,0.08), transparent 70%);
    right: -100px; top: 50%;
    transform: translateY(-50%);
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,0,110,0.06), transparent 70%);
    right: 200px; top: 20%;
    animation-delay: -4s;
}
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(0,245,255,0.3);
    background: rgba(0,245,255,0.05);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease both;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.9s 0.2s ease both;
}
.hero-title .line-2 {
    color: transparent;
    -webkit-text-stroke: 1px rgba(0,245,255,0.4);
}
.hero-title .accent { color: var(--neon-cyan); }
.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 3rem;
    animation: fadeInUp 1s 0.4s ease both;
}
.hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeInUp 1s 0.6s ease both;
}
.btn-primary {
    padding: 0.85rem 2.2rem;
    background: var(--neon-cyan);
    color: var(--dark-base);
    font-family: 'Orbitron', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: none;
    text-decoration: none;
    display: inline-block;
    position: relative; overflow: hidden;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 40px rgba(0,245,255,0.5);
    transform: translateY(-2px);
}
.btn-secondary {
    padding: 0.85rem 2.2rem;
    background: transparent;
    color: var(--text-main);
    font-family: 'Orbitron', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.15);
    cursor: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-secondary:hover {
    border-color: var(--neon-magenta);
    color: var(--neon-magenta);
    box-shadow: 0 0 20px rgba(255,0,110,0.2);
    transform: translateY(-2px);
}
.hero-stats {
    position: absolute; bottom: 4rem; right: 4rem;
    display: flex; gap: 3rem;
    z-index: 2;
    animation: fadeInRight 1s 0.8s ease both;
}
.stat { text-align: center; }
.stat-num {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0,245,255,0.4);
    display: block;
}
.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.65rem; letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeIn 1s 1.2s ease both;
    z-index: 2;
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--neon-cyan), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

  /* SECTIONS GENERAL */
section { position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--neon-magenta);
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
  }
  .section-title span { color: var(--neon-cyan); }
  .section-line {
    width: 60px; height: 2px;
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-magenta));
    margin: 1.5rem auto 0;
    box-shadow: 0 0 10px rgba(0,245,255,0.5);
  }

  /* CATALOG / GAMES */
  #catalogo {
    padding: 8rem 4rem;
    background: linear-gradient(180deg, var(--dark-base) 0%, var(--dark-mid) 50%, var(--dark-base) 100%);
  }
  .games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px; margin: 0 auto;
  }
  .game-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    position: relative; overflow: hidden;
    cursor: none;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  }
  .game-card::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, transparent 40%, rgba(0,245,255,0.03) 100%);
    transition: opacity 0.4s;
  }
  .game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,245,255,0.4);
    box-shadow: 0 20px 60px rgba(0,245,255,0.1), 0 0 0 1px rgba(0,245,255,0.1);
  }
  .game-card:hover::before { opacity: 0; }
  .game-img {
    width: 100%; height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
    filter: saturate(0.7) brightness(0.85);
  }
  .game-card:hover .game-img {
    transform: scale(1.06);
    filter: saturate(1) brightness(1);
  }
  .game-img-placeholder {
    width: 100%; height: 220px;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    transition: transform 0.6s;
    position: relative; overflow: hidden;
  }
  .game-img-placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: inherit;
    transition: transform 0.6s;
  }
  .game-card:hover .game-img-placeholder { transform: scale(1.04); }
  .game-body { padding: 1.5rem; }
  .game-genre {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--neon-magenta);
    margin-bottom: 0.5rem;
  }
  .game-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }
  .game-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }
  .game-meta {
    display: flex; align-items: center; justify-content: space-between;
  }
  .game-status {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 0;
  }
  .status-available { background: rgba(0,245,255,0.1); color: var(--neon-cyan); border: 1px solid rgba(0,245,255,0.3); }
  .status-coming { background: rgba(255,214,10,0.1); color: var(--neon-gold); border: 1px solid rgba(255,214,10,0.3); }
  .status-dev { background: rgba(255,0,110,0.1); color: var(--neon-magenta); border: 1px solid rgba(255,0,110,0.3); }
  .game-platforms { display: flex; gap: 0.5rem; font-size: 0.75rem; color: var(--text-muted); }

  /* SLIDESHOW SECTION */
  #slideshow {
    padding: 0;
    height: 500px;
    position: relative; overflow: hidden;
  }
  .slide {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 1s ease, transform 1.5s ease;
    transform: scale(1.05);
  }
  .slide.active { opacity: 1; transform: scale(1); }
  .slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
  }
  .slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(2,4,9,0.9) 0%, rgba(2,4,9,0.3) 100%);
  }
  .slide-content {
    position: relative; z-index: 2;
    text-align: center; padding: 2rem;
  }
  .slide-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 40px rgba(0,245,255,0.4);
  }
  .slide-content p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; }
  .slide-dots {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 0.6rem; z-index: 10;
  }
  .dot {
    width: 8px; height: 8px;
    border: 1px solid rgba(0,245,255,0.4);
    background: transparent;
    cursor: none;
    transition: all 0.3s;
  }
  .dot.active { background: var(--neon-cyan); box-shadow: 0 0 8px var(--neon-cyan); }

  /* ABOUT */
  #acerca {
    padding: 8rem 4rem;
    background: var(--dark-base);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px; margin: 0 auto;
    align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-box {
    aspect-ratio: 1;
    max-width: 440px;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .about-box::before {
    content: '';
    position: absolute; top: -1px; left: 30px; right: 30px; height: 2px;
    background: linear-gradient(to right, transparent, var(--neon-cyan), transparent);
  }
  .about-box::after {
    content: '';
    position: absolute; bottom: -1px; left: 30px; right: 30px; height: 2px;
    background: linear-gradient(to right, transparent, var(--neon-magenta), transparent);
  }
  .about-icon-large {
    font-size: 8rem;
    opacity: 0.15;
    filter: hue-rotate(160deg);
  }
  .about-corner {
    position: absolute;
    width: 20px; height: 20px;
    border-color: var(--neon-cyan);
    border-style: solid;
  }
  .about-corner-tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
  .about-corner-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
  .about-corner-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
  .about-corner-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
  .about-floating {
    position: absolute;
    padding: 1rem 1.5rem;
    background: var(--dark-base);
    border: 1px solid var(--glass-border);
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
  }
  .about-floating-1 { top: -20px; right: -30px; color: var(--neon-cyan); }
  .about-floating-2 { bottom: 30px; right: -50px; color: var(--neon-magenta); font-size: 0.7rem; }
  .about-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--neon-magenta);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .about-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .about-text p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }
  .values-list {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-top: 2rem;
  }
  .value-item {
    display: flex; align-items: flex-start; gap: 0.8rem;
    padding: 1rem;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    transition: border-color 0.3s, transform 0.3s;
  }
  .value-item:hover { border-color: rgba(0,245,255,0.3); transform: translateX(4px); }
  .value-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
  .value-item h4 {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--neon-cyan);
    margin-bottom: 0.3rem;
  }
  .value-item p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

  /* TEAM */
  #equipo {
    padding: 8rem 4rem;
    background: linear-gradient(180deg, var(--dark-base) 0%, var(--dark-mid) 100%);
  }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1200px; margin: 0 auto;
  }
  .team-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative; overflow: hidden;
    cursor: none;
    transition: transform 0.4s, border-color 0.4s;
  }
  .team-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, transparent, var(--neon-cyan), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
  }
  .team-card:hover { transform: translateY(-6px); border-color: rgba(0,245,255,0.3); }
  .team-card:hover::before { transform: scaleX(1); }
  .team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    border: 2px solid transparent;
    box-shadow: 0 0 0 1px var(--glass-border), 0 0 20px rgba(0,245,255,0.1);
    transition: box-shadow 0.4s;
  }
  .team-card:hover .team-avatar {
    box-shadow: 0 0 0 1px var(--neon-cyan), 0 0 30px rgba(0,245,255,0.3);
  }
  .team-name {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
  }
  .team-role {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon-magenta);
    margin-bottom: 1rem;
  }
  .team-bio { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

  /* CONTACT */
  #contacto {
    padding: 8rem 4rem;
    background: var(--dark-base);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    max-width: 1100px; margin: 0 auto;
    align-items: start;
  }
  .contact-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2.5rem; font-size: 0.95rem; }
  .contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
  .contact-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    transition: border-color 0.3s;
  }
  .contact-item:hover { border-color: rgba(0,245,255,0.3); }
  .contact-item-icon { font-size: 1.2rem; }
  .contact-item-text { font-size: 0.85rem; color: var(--text-muted); }
  .contact-item-text strong { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--neon-cyan); margin-bottom: 0.2rem; }
  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-group { position: relative; }
  .form-group label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    -webkit-appearance: none;
  }
  .form-group textarea { min-height: 130px; resize: vertical; }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 2px rgba(0,245,255,0.08), inset 0 0 20px rgba(0,245,255,0.02);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--text-muted); opacity: 0.5; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .btn-submit {
    padding: 1rem 2.5rem;
    background: var(--neon-cyan);
    color: var(--dark-base);
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: none;
    align-self: flex-start;
    position: relative; overflow: hidden;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .btn-submit::after {
    content: '';
    position: absolute; top: -50%; left: -60%;
    width: 30%; height: 200%;
    background: rgba(255,255,255,0.3);
    transform: rotate(25deg) translateX(-100%);
    transition: transform 0.5s;
  }
  .btn-submit:hover { background: #fff; box-shadow: 0 0 30px rgba(0,245,255,0.4); }
  .btn-submit:hover::after { transform: rotate(25deg) translateX(500%); }

  /* FOOTER */
  footer {
    background: var(--dark-mid);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 4rem 2rem;
    position: relative; z-index: 2;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px; margin: 0 auto 3rem;
  }
  .footer-brand .footer-logo {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--neon-cyan);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0,245,255,0.3);
  }
  .footer-brand .footer-logo span { color: var(--neon-magenta); }
  .footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
  .social-links { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
  .social-link {
    width: 38px; height: 38px;
    border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
  }
  .social-link:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); box-shadow: 0 0 15px rgba(0,245,255,0.2); }
  .footer-col h4 {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 1.5rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--neon-cyan); }
  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.78rem; color: var(--text-muted);
  }
  .footer-bottom .made-with { display: flex; align-items: center; gap: 0.4rem; }
  .footer-bottom .made-with span { color: var(--neon-magenta); }

  /* ANIMATIONS */
  @keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* GLITCH TEXT */
  .glitch {
    position: relative;
  }
  .glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
  }
  .glitch::before {
    color: var(--neon-cyan);
    animation: glitch1 4s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
  }
  .glitch::after {
    color: var(--neon-magenta);
    animation: glitch2 4s infinite;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  }
  @keyframes glitch1 {
    0%,90%,100% { transform: none; opacity: 0; }
    92% { transform: translate(-2px, 1px); opacity: 0.6; }
    94% { transform: translate(2px, -1px); opacity: 0.6; }
    96% { transform: none; opacity: 0; }
  }
  @keyframes glitch2 {
    0%,90%,100% { transform: none; opacity: 0; }
    93% { transform: translate(2px, 2px); opacity: 0.5; }
    95% { transform: translate(-2px, -1px); opacity: 0.5; }
    97% { transform: none; opacity: 0; }
  }

  /* MOBILE NAV */
  .hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: none; background: none; border: none; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 1px;
    background: var(--neon-cyan);
    transition: all 0.3s;
  }

  @media (max-width: 900px) {
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
      display: flex; flex-direction: column; gap: 1.5rem;
      position: fixed; top: 70px; left: 0; right: 0;
      background: rgba(2,4,9,0.98);
      padding: 2rem; border-bottom: 1px solid var(--glass-border);
    }
    #hero { padding: 0 1.5rem; }
    .hero-stats { position: static; margin-top: 3rem; flex-wrap: wrap; gap: 1.5rem; }
    .hero-content { max-width: 100%; }
    #catalogo, #acerca, #equipo, #contacto { padding: 5rem 1.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 3rem 1.5rem 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .hero-stats { right: auto; bottom: auto; }
  }

  /* SCANLINES EFFECT */
  .scanlines {
    position: fixed; inset: 0; pointer-events: none; z-index: 3;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.08) 2px,
      rgba(0,0,0,0.08) 4px
    );
}