:root {
    --bg-main: #0B0E14;
    --card-bg: rgba(19, 23, 34, 0.85);
    --text-white: #FFFFFF;
    --text-dim: #CBD5E1;
    
    --accent-blue-soft: #818CF8;
    --accent-purple-soft: #C084FC;
    --accent-cyan-soft: #38BDF8;
    --accent-orange-soft: #FF9E7D;
    --accent-plasma-crimson: #FF2E63;
    --blood-violet: #8B0032;
    --blood-dark-crimson: #4A001A;
    
    /* Variables de Color para Etiquetas de Saokai */
    --accent-violet-neon: #C084FC;
    --accent-cyan-neon: #38BDF8;
    --accent-amber-bronze: #D97706;
    --accent-gray-subtle: #64748B;
}

/* Desplazamiento Suave General */
html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
}

/* --- BARRA DE DESPLAZAMIENTO (SCROLLBAR) CYBERPUNK --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0B0E14;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #A855F7, #FF2E63);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #C084FC, #FF5E85);
}

/* Resplandores Ambientales Sutiles de Fondo */
.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(140px);
    opacity: 0.15;
}

.glow-top-left {
    top: -200px;
    left: -150px;
    background: radial-gradient(circle, var(--accent-cyan-soft), var(--accent-blue-soft));
}

.glow-bottom-right {
    bottom: -200px;
    right: -150px;
    background: radial-gradient(circle, var(--accent-purple-soft), var(--accent-orange-soft));
}

/* Malla Cyber Subliminal */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Fondo animado */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Capa superior */
.navbar, .hero, .ticker-container, .systems-section, .features-section, .architecture-section, .licenses-section, .faq-section, .community-section, .footer-main {
    position: relative;
    z-index: 3;
}

/* Navbar Fija Superior */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--card-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2.5px;
    background: linear-gradient(270deg, var(--accent-blue-soft), var(--accent-purple-soft), var(--accent-orange-soft), var(--accent-cyan-soft));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-links a {
    color: #94A3B8;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-white);
}

/* Sección Central Equilibrada */
.hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    padding: 40px 20px 80px 20px;
    box-sizing: border-box;
}

/* --- EFECTO INK-SPLATTER CARMESÍ ARRIBA --- */
.tagline-container {
    position: relative;
    display: inline-block;
}

.hero > .tagline-container {
    margin-bottom: 25px;
}

.ink-splatter-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    position: relative;
    color: #FFFFFF;
    text-shadow: 
        0 0 2px #FFFFFF,
        -1px 1px 0px rgba(255, 46, 99, 0.8),
        2px -1px 0px rgba(139, 0, 50, 0.8),
        0 0 12px rgba(255, 46, 99, 0.4);
        
    animation: animeEnergyPulse 3.5s infinite ease-in-out;
}

.ink-splatter-text::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: var(--accent-plasma-crimson);
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-1.5px, 1px);
    opacity: 0.7;
    filter: blur(0.5px);
    animation: brushGlitch 4s infinite alternate;
}

@keyframes animeEnergyPulse {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 4px rgba(255, 46, 99, 0.3)); }
    50% { filter: brightness(1.3) drop-shadow(0 0 10px rgba(255, 46, 99, 0.7)); }
}

@keyframes brushGlitch {
    0%, 92%, 100% { transform: translate(0, 0); opacity: 0.2; }
    94% { transform: translate(-2px, 1px); opacity: 0.8; }
    96% { transform: translate(2px, -1px); opacity: 0.9; }
}

/* Micro-Salpicaduras Carmesí */
.splatter-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-plasma-crimson);
    box-shadow: 0 0 6px var(--accent-plasma-crimson);
    pointer-events: none;
    opacity: 0.7;
}

.p1 { width: 3px; height: 3px; top: -4px; left: 15%; animation: floatSplatter 2.8s infinite ease-in-out; }
.p2 { width: 2px; height: 2px; bottom: -3px; right: 22%; animation: floatSplatter 3.4s infinite ease-in-out 0.5s; }
.p3 { width: 3px; height: 2px; top: 50%; right: -8px; animation: floatSplatter 2.2s infinite ease-in-out 1.1s; }
.p4 { width: 2px; height: 3px; top: -6px; right: 40%; animation: floatSplatter 3.9s infinite ease-in-out 0.8s; }

@keyframes floatSplatter {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-4px) scale(1.4); opacity: 0.9; }
}

/* --- TÍTULO PRINCIPAL SANGRE VIOLETA --- */
.hero-title {
    font-size: 46px;
    font-weight: 900;
    margin: 0 0 25px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    color: #E2E8F0;
    text-shadow: 
        -2px 2px 0px var(--blood-violet),
        2px -1px 0px var(--blood-dark-crimson),
        0 0 10px rgba(139, 0, 50, 0.45);
        
    animation: bloodPulse 4s infinite ease-in-out;
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #A31243;
    clip-path: polygon(0 20%, 100% 20%, 100% 48%, 0 48%);
    transform: translate(-2px, 1px);
    opacity: 0.7;
    filter: contrast(1.4);
    animation: bloodGlitch 6s infinite alternate;
}

@keyframes bloodPulse {
    0%, 100% {
        text-shadow: 
            -2px 2px 0px var(--blood-violet),
            2px -1px 0px var(--blood-dark-crimson),
            0 0 10px rgba(139, 0, 50, 0.3);
    }
    50% {
        text-shadow: 
            -2.5px 2.5px 0px #A31243,
            2.5px -1.5px 0px #3D0014,
            0 0 16px rgba(163, 18, 67, 0.55);
    }
}

@keyframes bloodGlitch {
    0%, 91%, 100% { transform: translate(0, 0); opacity: 0.3; }
    93% { transform: translate(-2.5px, 1px); opacity: 0.85; }
    96% { transform: translate(2px, -1px); opacity: 0.8; }
}

/* Descripción */
.hero p {
    color: var(--text-dim);
    font-size: 16.5px;
    line-height: 1.65;
    margin: 0 0 35px 0;
    max-width: 680px;
}

/* Resaltados Sincronizados */
.highlight {
    font-weight: 800;
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(163, 18, 67, 0.5);
}

/* Botón Principal */
.btn-main {
    position: relative;
    display: inline-block;
    background: #131722;
    color: #FFFFFF;
    padding: 15px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    background-image: linear-gradient(#131722, #131722), linear-gradient(90deg, var(--accent-blue-soft), var(--accent-purple-soft), var(--accent-orange-soft));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 158, 125, 0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-main:hover::before {
    left: 150%;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(129, 140, 248, 0.35);
}

/* --- TEXTO INFERIOR: VIOLETA NEÓN / SAOKAI --- */
.feature-announcement {
    margin-top: 25px;
    pointer-events: none;
}

.blue-ink-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    position: relative;
    color: #FFFFFF;
    
    text-shadow: 
        0 0 2px #FFFFFF,
        -1px 1px 0px rgba(192, 132, 252, 0.85),
        2px -1px 0px rgba(168, 85, 247, 0.85),
        0 0 12px rgba(192, 132, 252, 0.5);
        
    animation: violetEnergyPulse 3.5s infinite ease-in-out;
}

.blue-ink-text::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: var(--accent-violet-neon);
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-1.5px, 1px);
    opacity: 0.7;
    filter: blur(0.5px);
    animation: violetBrushGlitch 4s infinite alternate;
}

@keyframes violetEnergyPulse {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 4px rgba(192, 132, 252, 0.3)); }
    50% { filter: brightness(1.3) drop-shadow(0 0 10px rgba(192, 132, 252, 0.7)); }
}

@keyframes violetBrushGlitch {
    0%, 92%, 100% { transform: translate(0, 0); opacity: 0.2; }
    94% { transform: translate(-2px, 1px); opacity: 0.8; }
    96% { transform: translate(2px, -1px); opacity: 0.9; }
}

/* Partículas Flotantes Violetas */
.blue-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-violet-neon);
    box-shadow: 0 0 6px var(--accent-violet-neon);
    pointer-events: none;
    opacity: 0.7;
}

.bp1 { width: 3px; height: 3px; top: -4px; left: 15%; animation: floatSplatter 2.8s infinite ease-in-out; }
.bp2 { width: 2px; height: 2px; bottom: -3px; right: 22%; animation: floatSplatter 3.4s infinite ease-in-out 0.5s; }
.bp3 { width: 3px; height: 2px; top: 50%; right: -8px; animation: floatSplatter 2.2s infinite ease-in-out 1.1s; }
.bp4 { width: 2px; height: 3px; top: -6px; right: 40%; animation: floatSplatter 3.9s infinite ease-in-out 0.8s; }

/* Marquesina Entre Secciones */
.ticker-container {
    width: 100%;
    overflow: hidden;
    background: rgba(11, 14, 20, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    backdrop-filter: blur(10px);
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
    animation: tickerMove 30s linear infinite;
    gap: 25px;
    align-items: center;
}

.ticker-item {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #475569;
}

.highlight-game {
    color: #E2E8F0;
}

@keyframes tickerMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- SECCIÓN 1: SISTEMAS COMPATIBLES --- */
.systems-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px 60px 20px;
}

.systems-header {
    text-align: center;
    margin-bottom: 50px;
}

/* --- TÍTULO SEÑAL DE RED CYBERPUNK --- */
.section-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #F8FAFC;
    margin: 0 0 12px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
    animation: networkPing 4s infinite ease-in-out;
}

.section-title::before,
.section-title::after {
    content: '';
    display: inline-block;
    width: 45px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-violet-neon));
    box-shadow: 0 0 8px var(--accent-violet-neon);
    border-radius: 2px;
}

.section-title::after {
    background: linear-gradient(90deg, var(--accent-cyan-neon), transparent);
    box-shadow: 0 0 8px var(--accent-cyan-neon);
}

@keyframes networkPing {
    0%, 90%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
    }
    94% {
        color: #FFFFFF;
        text-shadow: 
            0 0 12px rgba(192, 132, 252, 0.8),
            0 0 25px rgba(56, 189, 248, 0.6);
    }
}

.section-subtitle {
    color: #94A3B8;
    font-size: 15px;
    margin: 0;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.system-card {
    background: rgba(19, 23, 34, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.system-card:hover {
    transform: translateY(-4px);
    border-color: rgba(192, 132, 252, 0.4);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.15);
    background: rgba(25, 30, 45, 0.85);
}

.system-name {
    font-size: 16px;
    font-weight: 700;
    color: #F1F5F9;
    margin-bottom: 12px;
}

.system-badge {
    align-self: flex-start;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid transparent;
}

/* 🟣 Morado Neón: Rollback Netplay */
.badge-rollback {
    background: rgba(168, 85, 247, 0.15);
    color: var(--accent-violet-neon);
    border-color: rgba(192, 132, 252, 0.3);
    text-shadow: 0 0 6px rgba(192, 132, 252, 0.4);
}

/* 💙 Azul Cyan: Dedicated Netplay */
.badge-dedicated {
    background: rgba(56, 189, 248, 0.15);
    color: var(--accent-cyan-neon);
    border-color: rgba(56, 189, 248, 0.3);
    text-shadow: 0 0 6px rgba(56, 189, 248, 0.4);
}

/* 🟤 Ámbar/Bronce: Offline (Nintendo Modernas) */
.badge-offline {
    background: rgba(217, 119, 6, 0.15);
    color: #FBBF24;
    border-color: rgba(217, 119, 6, 0.35);
    text-shadow: 0 0 6px rgba(251, 191, 36, 0.3);
}

/* ⚪ Gris Oscuro: Soportado (Single-Player / Retro) */
.badge-supported {
    background: rgba(255, 255, 255, 0.05);
    color: #94A3B8;
    border-color: rgba(255, 255, 255, 0.08);
}

/* --- SECCIÓN 2: CARACTERÍSTICAS DE RED --- */
.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 60px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(19, 23, 34, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-violet-neon), var(--accent-cyan-neon));
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 132, 252, 0.4);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.18);
    background: rgba(25, 30, 45, 0.9);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-cyan-neon);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.feature-title {
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 14.5px;
    color: #94A3B8;
    line-height: 1.65;
    margin: 0;
}

/* --- SECCIÓN 3: ARQUITECTURA Y TRANSPARENCIA LEGAL --- */
.architecture-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 60px 20px;
}

.arch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.arch-card-full {
    grid-column: 1 / -1;
}

.arch-desc-spacing {
    margin-bottom: 16px;
}

.arch-list {
    margin: 0;
    padding-left: 20px;
    color: #94A3B8;
    font-size: 14px;
    line-height: 1.75;
}

.arch-list li {
    margin-bottom: 12px;
}

.arch-list li:last-child {
    margin-bottom: 0;
}

.highlight-list {
    color: #F1F5F9;
    font-weight: 700;
}

@media (max-width: 768px) {
    .arch-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SECCIÓN 4: LICENCIAS Y DIRECTORIO --- */
.licenses-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 60px 20px;
}

.licenses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.license-card {
    background: rgba(19, 23, 34, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 22px;
    transition: all 0.3s ease;
}

.license-card:hover {
    background: rgba(25, 30, 45, 0.7);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-2px);
}

.license-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.license-name {
    font-size: 18px;
    font-weight: 800;
    color: #F8FAFC;
    letter-spacing: 0.5px;
}

.license-badge {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-gpl { background: rgba(168, 85, 247, 0.15); color: var(--accent-violet-neon); border: 1px solid rgba(192, 132, 252, 0.3); }
.badge-permissive { background: rgba(56, 189, 248, 0.15); color: var(--accent-cyan-neon); border: 1px solid rgba(56, 189, 248, 0.3); }
.badge-mixed { background: rgba(255, 255, 255, 0.1); color: #CBD5E1; border: 1px solid rgba(255, 255, 255, 0.2); }
.badge-noncom { background: rgba(255, 46, 99, 0.15); color: var(--accent-plasma-crimson); border: 1px solid rgba(255, 46, 99, 0.3); }

.license-category {
    font-size: 12px;
    color: var(--accent-cyan-neon);
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.license-desc {
    font-size: 13.5px;
    color: #94A3B8;
    line-height: 1.6;
    margin: 0;
}

/* Panel de Blindaje Legal */
.legal-disclaimer {
    background: linear-gradient(90deg, rgba(139, 0, 50, 0.15), rgba(19, 23, 34, 0.6));
    border-left: 4px solid var(--accent-plasma-crimson);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    backdrop-filter: blur(5px);
}

.disclaimer-icon {
    font-size: 28px;
    line-height: 1;
}

.disclaimer-text {
    flex: 1;
}

.disclaimer-title {
    color: #F8FAFC;
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.disclaimer-text p {
    color: #CBD5E1;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.disclaimer-text strong {
    color: #FFFFFF;
}

/* --- SECCIÓN 5: FAQ ACORDEÓN --- */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 60px 20px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(19, 23, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.faq-item[open] {
    background: rgba(25, 30, 45, 0.85);
    border-color: rgba(192, 132, 252, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #F8FAFC;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-arrow {
    font-size: 14px;
    color: var(--accent-cyan-neon);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-arrow {
    transform: rotate(90deg);
    color: var(--accent-violet-neon);
}

.faq-answer {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-answer p {
    color: #94A3B8;
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

.faq-answer strong {
    color: #FFFFFF;
}

/* --- SECCIÓN 6: COMUNIDAD Y DISCORD --- */
.community-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 80px 20px;
}

.community-card {
    background: linear-gradient(135deg, rgba(19, 23, 34, 0.9), rgba(30, 27, 75, 0.6));
    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.community-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--accent-violet-neon);
    margin-bottom: 12px;
}

.community-title {
    font-size: 28px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    letter-spacing: 1px;
}

.community-desc {
    color: #CBD5E1;
    font-size: 15px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 30px auto;
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #5865F2;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.6);
}

.discord-icon {
    font-size: 18px;
}

/* --- FOOTER PRINCIPAL DE 3 COLUMNAS --- */
.footer-main {
    background: rgba(11, 14, 20, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 20px 20px 20px;
    backdrop-filter: blur(10px);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-cyan-neon);
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

/* Columna 1: Redes Sociales */
.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(19, 23, 34, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 16px;
    border-radius: 8px;
    color: #CBD5E1;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateX(4px);
    color: #FFFFFF;
}

.facebook-btn:hover { border-color: #1877F2; box-shadow: 0 0 12px rgba(24, 119, 242, 0.3); }
.tiktok-btn:hover { border-color: #FF0050; box-shadow: 0 0 12px rgba(255, 0, 80, 0.3); }
.x-btn:hover { border-color: #FFFFFF; box-shadow: 0 0 12px rgba(255, 255, 255, 0.3); }

.social-icon {
    font-size: 16px;
    width: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* Columna 2: Apoyo & Email */
.footer-subtext {
    font-size: 13px;
    color: #94A3B8;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.donate-btns-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.donate-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 8px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.patreon-btn {
    background: linear-gradient(90deg, rgba(255, 66, 77, 0.2), rgba(19, 23, 34, 0.8));
    border: 1px solid rgba(255, 66, 77, 0.4);
}

.patreon-btn:hover {
    background: rgba(255, 66, 77, 0.35);
    border-color: #FF424D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 66, 77, 0.3);
}

.kofi-btn {
    background: linear-gradient(90deg, rgba(41, 171, 226, 0.2), rgba(19, 23, 34, 0.8));
    border: 1px solid rgba(41, 171, 226, 0.4);
}

.kofi-btn:hover {
    background: rgba(41, 171, 226, 0.35);
    border-color: #29ABE2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(41, 171, 226, 0.3);
}

.footer-email-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--accent-violet-neon);
    font-size: 12.5px;
    font-weight: 600;
}

/* Columna 3: Créditos de Raybel V. */
.dev-credits-card {
    background: rgba(19, 23, 34, 0.6);
    border: 1px solid rgba(192, 132, 252, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.dev-name {
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(192, 132, 252, 0.4);
}

.dev-roles-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #94A3B8;
    font-size: 12.5px;
    line-height: 1.8;
}

/* Barrita Inferior */
.footer-bottom-bar {
    text-align: center;
    padding-top: 25px;
}

.footer-bottom-bar p {
    color: #64748B;
    font-size: 12px;
    margin: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}
/* --- AJUSTES PARA CELULARES --- */
@media (max-width: 768px) {
    /* Menú superior ordenado */
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        font-size: 0.85rem;
    }

    /* Ajustar títulos grandes para que no se corten */
    .hero h1, 
    h1, .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
        padding: 0 10px;
    }
    /* Título principal adaptado sin tocar los data-text pequeños */
    .tagline-container [data-text] {
        font-size: 0.7rem !important;
    }

    .hero-title, 
    .hero h1 {
        font-size: 1.5rem !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .tagline-container {
        font-size: 0.75rem;
    }

    /* Subtítulo y botones */
    .hero p {
        font-size: 0.95rem;
        padding: 0 15px;
    }
}