:root {
    --neon-red: #ff003c;
    --neon-blue: #00f0ff;
    --bg-dark: #050505;
    --panel-bg: #0a0a0a;
    --text-main: #ffffff;
    --text-dim: #cccccc;
    --neon-green: #39ff14;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

body::after {
    content: " ";
    display: block;
    position: fixed;
    inset: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    z-index: 9999;
    pointer-events: none;
    background-size: 100% 2px, 3px 100%;
}

h1, h2, h3, h4, h5 {
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

a { text-decoration: none; }

.navbar {
    background: rgba(0,0,0,0.95);
    border-bottom: 2px solid var(--neon-red);
    backdrop-filter: blur(10px);
}

.nav-link {
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--neon-blue) !important;
    text-shadow: 0 0 8px var(--neon-blue);
}

.btn-cyber {
    position: relative;
    background: var(--neon-red);
    color: #fff;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    padding: 15px 40px;
    border: none;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
    display: inline-block;
    text-decoration: none;
}

.btn-cyber:hover {
    background: #ff3366;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 0, 60, 0.8);
}

.btn-outline-neon {
    border: 1px solid var(--neon-blue);
    color: #fff;
    padding: 13px 28px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.3s;
}

.btn-outline-neon:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.6);
}

.seo-hero {
    min-height: 72vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #222;
}

.seo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,5,5,0.94), rgba(5,5,5,0.68)),
        url('https://www.juegosescape.com.ar/ImagenesVERSUS/fondoheroweb.webp') center/cover no-repeat;
    opacity: 0.95;
}

.seo-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-cyber {
    color: var(--neon-blue);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.breadcrumb-cyber a {
    color: var(--neon-blue);
}

.seo-eyebrow {
    display: inline-block;
    border: 1px solid var(--neon-red);
    color: var(--neon-red);
    background: rgba(0,0,0,0.65);
    padding: 8px 14px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    margin-bottom: 18px;
}

.seo-title {
    font-size: clamp(2.6rem, 8vw, 5.6rem);
    line-height: 0.95;
    text-shadow: 0 0 25px rgba(0, 240, 255, 0.45);
}

.seo-lead {
    color: #f3f3f3;
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    max-width: 860px;
    margin: 24px 0 0;
}

.tactical-section {
    padding: 70px 0;
    border-bottom: 1px solid #222;
}

.section-title {
    font-size: 2.35rem;
    margin-bottom: 28px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    margin: 10px auto 0;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.content-panel {
    background: rgba(10,10,10,0.9);
    border: 1px solid #333;
    border-left: 4px solid var(--neon-blue);
    padding: 28px;
    height: 100%;
    box-shadow: 0 0 20px rgba(0,0,0,0.35);
}

.content-panel.red {
    border-left-color: var(--neon-red);
}

.content-panel h2,
.content-panel h3 {
    color: #fff;
    margin-bottom: 16px;
}

.content-panel p,
.content-panel li {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.65;
}

.content-panel ul {
    padding-left: 1.1rem;
    margin-bottom: 0;
}

.content-panel li {
    margin-bottom: 10px;
}

.stat-line {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.stat-line i {
    color: var(--neon-blue);
    font-size: 1.25rem;
    margin-top: 4px;
}

.link-card {
    background: #0a0a0a;
    border: 1px solid #333;
    border-top: 3px solid var(--neon-blue);
    padding: 24px;
    height: 100%;
    transition: 0.3s;
}

.link-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.12);
}

.link-card i {
    color: var(--neon-red);
    font-size: 2rem;
    margin-bottom: 14px;
}

.link-card p {
    color: var(--text-dim);
}

.inline-link {
    color: var(--neon-blue);
    font-weight: 700;
}

.inline-link:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--neon-blue);
}

.cta-band {
    background: repeating-linear-gradient(45deg, #1a0005, #1a0005 10px, #2b000a 10px, #2b000a 20px);
    border-top: 2px solid var(--neon-red);
    border-bottom: 2px solid var(--neon-red);
    padding: 60px 20px;
    text-align: center;
}

.footer-versus {
    background: #000;
    border-top: 1px solid #222;
    padding: 45px 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
}

.footer-links a {
    color: var(--text-dim);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--neon-blue);
}

.floating-fab {
    position: fixed;
    bottom: 25px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.fab-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.2);
    transition: transform 0.2s;
}

.fab-res { background: var(--neon-red); }
.fab-wsp { background: #25D366; }
.fab-btn:hover { transform: scale(1.1); color: white; border-color: white; }

@media (max-width: 767px) {
    .seo-hero {
        min-height: auto;
        padding: 115px 0 62px;
    }

    .content-panel {
        padding: 22px;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .btn-cyber,
    .btn-outline-neon {
        width: 100%;
        text-align: center;
    }
}
