/* ================================================================
   LANDING PAGE - "VOLVER AL CIBER" EDITION
   Nostalgia-driven design for 28-35yo Latin American ciber veterans
   ================================================================ */

/* ---- CRT SCANLINE OVERLAY (global) ---- */
.crt-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    mix-blend-mode: multiply;
}

/* ---- HERO ---- */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px 80px;
    text-align: center;
    background: #0a0a0f;
}

/* CRT scanlines on hero */
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 1px,
        rgba(0, 240, 255, 0.015) 1px,
        rgba(0, 240, 255, 0.015) 2px
    );
    pointer-events: none;
    z-index: 1;
    animation: scanlineScroll 8s linear infinite;
}
@keyframes scanlineScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* Vignette */
.lp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* Monitor glow box */
.lp-monitor-frame {
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 48px 40px 44px;
    position: relative;
    background: rgba(10, 10, 15, 0.7);
    box-shadow:
        0 0 30px rgba(0, 240, 255, 0.08),
        0 0 80px rgba(0, 240, 255, 0.04),
        inset 0 0 60px rgba(0, 240, 255, 0.02);
    animation: monitorGlow 4s ease-in-out infinite;
}
@keyframes monitorGlow {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(0, 240, 255, 0.08),
            0 0 80px rgba(0, 240, 255, 0.04),
            inset 0 0 60px rgba(0, 240, 255, 0.02);
        border-color: rgba(0, 240, 255, 0.2);
    }
    50% {
        box-shadow:
            0 0 40px rgba(0, 240, 255, 0.15),
            0 0 120px rgba(0, 240, 255, 0.06),
            inset 0 0 80px rgba(0, 240, 255, 0.03);
        border-color: rgba(0, 240, 255, 0.35);
    }
}

/* Monitor "stand" detail */
.lp-monitor-frame::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 16px;
    background: rgba(0, 240, 255, 0.06);
    border-radius: 0 0 8px 8px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-top: none;
}

/* Terminal-style subtitle above main title */
.lp-terminal-line {
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.85rem;
    color: rgba(0, 240, 255, 0.6);
    margin-bottom: 20px;
    letter-spacing: 0.06em;
}
.lp-terminal-line .cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: var(--accent, #00f0ff);
    margin-left: 4px;
    animation: cursorBlink 1s step-end infinite;
    vertical-align: text-bottom;
}
@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Hero title with glitch effect */
.lp-hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    text-shadow:
        0 0 40px rgba(0, 240, 255, 0.3),
        0 0 80px rgba(0, 240, 255, 0.1);
}
.lp-hero-title .title-ciber {
    color: var(--accent, #00f0ff);
    text-shadow:
        0 0 20px rgba(0, 240, 255, 0.8),
        0 0 60px rgba(0, 240, 255, 0.4),
        0 0 100px rgba(0, 240, 255, 0.2);
    position: relative;
    display: inline-block;
    animation: glitchText 5s ease-in-out infinite;
}
@keyframes glitchText {
    0%, 94%, 100% { transform: none; text-shadow: 0 0 20px rgba(0,240,255,.8), 0 0 60px rgba(0,240,255,.4); }
    95% { transform: translate(-2px, 1px); text-shadow: 2px 0 #ff4757, -2px 0 #00ff88; }
    96% { transform: translate(2px, -1px); text-shadow: -2px 0 #ff4757, 2px 0 #00ff88; }
    97% { transform: translate(-1px, 2px); text-shadow: 1px 0 #00ff88, -1px 0 #ff4757; }
    98% { transform: none; text-shadow: 0 0 20px rgba(0,240,255,.8), 0 0 60px rgba(0,240,255,.4); }
}
.lp-hero-title .title-cs {
    color: var(--accent-green, #00ff88);
    text-shadow:
        0 0 20px rgba(0, 255, 136, 0.6),
        0 0 60px rgba(0, 255, 136, 0.2);
}

.lp-hero-subtitle {
    font-size: clamp(1.1rem, 2.8vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 20px auto 12px;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 400;
}
.lp-hero-subtitle em {
    font-style: normal;
    color: var(--accent, #00f0ff);
    font-weight: 600;
}

.lp-hero-tagline {
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.88rem;
    color: rgba(0, 255, 136, 0.7);
    letter-spacing: 0.1em;
    margin-bottom: 36px;
}

/* Hero buttons */
.lp-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent, #00f0ff);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    padding: 15px 34px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.2s ease;
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.5), 0 4px 16px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    font-family: 'Courier New', 'Consolas', monospace;
    text-decoration: none;
}
.lp-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
}
.lp-btn-primary:hover {
    background: #33f3ff;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.7), 0 6px 24px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
    color: #000;
}
.lp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--accent-green, #00ff88);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 34px;
    border-radius: 4px;
    border: 1.5px solid var(--accent-green, #00ff88);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.2s ease;
    font-family: 'Courier New', 'Consolas', monospace;
    text-decoration: none;
}
.lp-btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 28px rgba(0, 255, 136, 0.35);
    transform: translateY(-2px);
    color: var(--accent-green, #00ff88);
}

/* Live player count below buttons */
.lp-live-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}
.lp-live-count .live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-green, #00ff88);
    box-shadow: 0 0 8px var(--accent-green, #00ff88);
    animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}
.lp-live-count strong {
    color: var(--accent-green, #00ff88);
}

/* Scroll indicator */
.lp-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
    font-family: 'Courier New', 'Consolas', monospace;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBob 2.4s ease-in-out infinite;
}
@keyframes scrollBob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- SECTION BASE ---- */
.lp-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.lp-section-full {
    padding: 80px 20px;
}
.lp-section-header {
    text-align: center;
    margin-bottom: 52px;
}
.lp-section-label {
    display: inline-block;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent, #00f0ff);
    margin-bottom: 10px;
    font-weight: 600;
}
.lp-section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fff;
    line-height: 1.2;
}
.lp-section-title .accent { color: var(--accent, #00f0ff); }
.lp-section-title .accent-green { color: var(--accent-green, #00ff88); }
.lp-section-desc {
    margin-top: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.lp-sep {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--accent, #00f0ff), var(--accent-green, #00ff88));
    border-radius: 10px;
    margin: 14px auto 0;
}

/* ---- SERVERS - "ELEGI TU MAQUINA" ---- */
.lp-servers-bg {
    background: linear-gradient(180deg, transparent 0%, rgba(0,240,255,0.02) 50%, transparent 100%);
}
.lp-servers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 900px) { .lp-servers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .lp-servers-grid { grid-template-columns: 1fr; } }

.lp-srv-card {
    background: var(--bg-card, #12121a);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 22px 20px 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* "PC number" label */
.lp-srv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    border-radius: 8px 8px 0 0;
}
.lp-srv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.lp-srv-pc-num {
    position: absolute;
    top: 8px; right: 10px;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.15);
    letter-spacing: 0.08em;
}

/* Mode color accents */
.lp-srv-card.mode-dm   { --srv-color: var(--accent, #00f0ff); }
.lp-srv-card.mode-dm::before { background: var(--accent, #00f0ff); box-shadow: 0 0 12px rgba(0,240,255,0.5); }
.lp-srv-card.mode-dm:hover   { border-color: rgba(0,240,255,0.3); }

.lp-srv-card.mode-zombie { --srv-color: var(--accent-green, #00ff88); }
.lp-srv-card.mode-zombie::before { background: var(--accent-green, #00ff88); box-shadow: 0 0 12px rgba(0,255,136,0.5); }
.lp-srv-card.mode-zombie:hover   { border-color: rgba(0,255,136,0.3); }

.lp-srv-card.mode-gg { --srv-color: #ffd700; }
.lp-srv-card.mode-gg::before { background: #ffd700; box-shadow: 0 0 12px rgba(255,215,0,0.5); }
.lp-srv-card.mode-gg:hover   { border-color: rgba(255,215,0,0.3); }

.lp-srv-card.mode-surf { --srv-color: #38bdf8; }
.lp-srv-card.mode-surf::before { background: #38bdf8; box-shadow: 0 0 12px rgba(56,189,248,0.5); }
.lp-srv-card.mode-surf:hover   { border-color: rgba(56,189,248,0.3); }

.lp-srv-card.mode-1v1 { --srv-color: var(--accent-red, #ff4757); }
.lp-srv-card.mode-1v1::before { background: var(--accent-red, #ff4757); box-shadow: 0 0 12px rgba(255,71,87,0.5); }
.lp-srv-card.mode-1v1:hover   { border-color: rgba(255,71,87,0.3); }

.lp-srv-card.mode-classic { --srv-color: #a855f7; }
.lp-srv-card.mode-classic::before { background: #a855f7; box-shadow: 0 0 12px rgba(168,85,247,0.5); }
.lp-srv-card.mode-classic:hover   { border-color: rgba(168,85,247,0.3); }

.lp-srv-card.mode-other { --srv-color: rgba(255,255,255,0.4); }
.lp-srv-card.mode-other::before { background: rgba(255,255,255,0.4); }

.lp-srv-top {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-srv-icon {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--srv-color, rgba(255,255,255,0.2));
    color: var(--srv-color, #00f0ff);
    border-radius: 8px;
    flex-shrink: 0;
    font-family: var(--font-mono, monospace);
}
.lp-srv-name-wrap { flex: 1; min-width: 0; }
.lp-srv-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}
.lp-srv-mode-tag {
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--srv-color, var(--accent, #00f0ff));
    font-weight: 600;
}
.lp-srv-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
}
.lp-srv-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.srv-online .lp-srv-dot  { background: var(--accent-green, #00ff88); box-shadow: 0 0 6px var(--accent-green, #00ff88); animation: blink 1.8s ease-in-out infinite; }
.srv-offline .lp-srv-dot { background: var(--accent-red, #ff4757); }
.srv-online .lp-srv-status-text  { color: var(--accent-green, #00ff88); }
.srv-offline .lp-srv-status-text { color: var(--accent-red, #ff4757); }

.lp-srv-players { display: flex; flex-direction: column; gap: 5px; }
.lp-srv-player-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}
.lp-srv-player-count {
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
    font-family: 'Courier New', 'Consolas', monospace;
}
.lp-srv-fill-track {
    height: 4px;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    overflow: hidden;
}
.lp-srv-fill-bar {
    height: 100%;
    border-radius: 10px;
    background: var(--srv-color, var(--accent, #00f0ff));
    transition: width 0.5s ease;
    box-shadow: 0 0 6px var(--srv-color, var(--accent, #00f0ff));
}
.lp-srv-map {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Courier New', 'Consolas', monospace;
}
.lp-srv-map span.map-label { color: rgba(255,255,255,0.3); }
.lp-srv-connect {
    display: block;
    text-align: center;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--srv-color, var(--accent, #00f0ff));
    border-radius: 4px;
    padding: 9px 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'Courier New', 'Consolas', monospace;
    transition: all 0.2s ease;
    margin-top: auto;
    text-decoration: none;
}
.lp-srv-connect:hover {
    background: var(--srv-color, var(--accent, #00f0ff));
    color: #000;
    box-shadow: 0 0 16px var(--srv-color, var(--accent, #00f0ff));
}
.srv-offline .lp-srv-connect {
    opacity: 0.35;
    pointer-events: none;
    cursor: default;
}
.lp-see-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent, #00f0ff);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: gap 0.2s ease;
    text-decoration: none;
}
.lp-see-all:hover { gap: 10px; color: #66f7ff; }

/* ---- STATS BAR ---- */
.lp-stats-section {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(0, 240, 255, 0.08);
    border-bottom: 1px solid rgba(0, 240, 255, 0.08);
}
.lp-stats-bar {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 36px 20px;
}
.lp-stat-item {
    text-align: center;
    padding: 0 36px;
    position: relative;
}
.lp-stat-item + .lp-stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 36px;
    background: rgba(255,255,255,0.08);
}
.lp-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    font-family: 'Courier New', 'Consolas', monospace;
    color: var(--accent, #00f0ff);
    line-height: 1;
    text-shadow: 0 0 16px rgba(0, 240, 255, 0.4);
}
.lp-stat-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
    font-family: 'Courier New', 'Consolas', monospace;
}

/* ---- TOP PLAYERS - "LOS CRACKS DEL CIBER" ---- */
.lp-top-bg {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.02) 50%, transparent 100%);
}

/* Podium visual for top 3 */
.lp-podium-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    padding: 0 20px;
}
.lp-podium-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.lp-podium-col:hover { transform: translateY(-4px); }

.lp-podium-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lp-podium-medal {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 8px;
}
.lp-podium-kd {
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.75rem;
    color: var(--accent, #00f0ff);
    margin-bottom: 8px;
}

.lp-podium-bar {
    width: 100px;
    border-radius: 6px 6px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', 'Consolas', monospace;
    font-weight: 900;
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    padding-top: 12px;
}
.lp-podium-col.place-1 .lp-podium-bar {
    height: 140px;
    background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
.lp-podium-col.place-2 .lp-podium-bar {
    height: 100px;
    background: linear-gradient(180deg, #c0c0c0 0%, #808080 100%);
    box-shadow: 0 0 16px rgba(192, 192, 192, 0.2);
}
.lp-podium-col.place-3 .lp-podium-bar {
    height: 70px;
    background: linear-gradient(180deg, #cd7f32 0%, #8b4513 100%);
    box-shadow: 0 0 16px rgba(205, 127, 50, 0.2);
}

@media (max-width: 480px) {
    .lp-podium-bar { width: 70px; }
    .lp-podium-col.place-1 .lp-podium-bar { height: 100px; }
    .lp-podium-col.place-2 .lp-podium-bar { height: 70px; }
    .lp-podium-col.place-3 .lp-podium-bar { height: 50px; }
}

/* Player list under podium */
.lp-ranking-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card, #12121a);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
}
.lp-ranking-table thead tr { background: rgba(0,0,0,0.3); }
.lp-ranking-table th {
    padding: 12px 16px;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp-ranking-table td {
    padding: 13px 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(30, 30, 48, 0.6);
    vertical-align: middle;
    color: rgba(255,255,255,0.8);
}
.lp-ranking-table tbody tr:last-child td { border-bottom: none; }
.lp-ranking-table tbody tr { transition: background 0.15s ease; }
.lp-ranking-table tbody tr:hover { background: rgba(0, 240, 255, 0.03); }
.lp-ranking-table tbody tr.rank-1 td:first-child { color: #ffd700; font-size: 1.2rem; }
.lp-ranking-table tbody tr.rank-2 td:first-child { color: #c0c0c0; font-size: 1.1rem; }
.lp-ranking-table tbody tr.rank-3 td:first-child { color: #cd7f32; font-size: 1.1rem; }

.lp-rank-num { font-weight: 800; text-align: center; width: 44px; }
.lp-player-link {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    transition: color 0.15s ease;
    text-decoration: none;
}
.lp-player-link:hover { color: var(--accent, #00f0ff); }
.lp-kd-positive { color: var(--accent-green, #00ff88); font-weight: 700; }
.lp-kd-negative { color: var(--accent-red, #ff4757); }
.lp-kills { color: var(--accent, #00f0ff); font-weight: 700; font-variant-numeric: tabular-nums; font-family: 'Courier New', 'Consolas', monospace; }

/* ---- NOSTALGIA SECTION - "TE ACORDAS?" ---- */
.lp-nostalgia-bg {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 240, 255, 0.015) 30%, rgba(0, 255, 136, 0.01) 70%, transparent 100%);
    border-top: 1px solid rgba(0, 240, 255, 0.06);
    border-bottom: 1px solid rgba(0, 240, 255, 0.06);
}
.lp-nostalgia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 700px) { .lp-nostalgia-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .lp-nostalgia-grid { grid-template-columns: 1fr; } }

.lp-nostalgia-card {
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.08);
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
    cursor: default;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.lp-nostalgia-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lp-nostalgia-card:hover {
    border-color: rgba(0, 240, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 240, 255, 0.06);
}
.lp-nostalgia-card:hover::before { opacity: 1; }

.lp-nostalgia-emoji {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 14px;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}
.lp-nostalgia-card:hover .lp-nostalgia-emoji {
    transform: scale(1.15) rotate(-5deg);
}
.lp-nostalgia-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    position: relative;
    z-index: 1;
    font-style: italic;
}
.lp-nostalgia-card:hover .lp-nostalgia-text {
    color: rgba(255, 255, 255, 0.85);
}

/* ---- FEATURES GRID ---- */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 860px) { .lp-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lp-features-grid { grid-template-columns: 1fr; } }

.lp-feat-card {
    background: var(--bg-card, #12121a);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 28px 20px 24px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.lp-feat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,240,255,0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lp-feat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,240,255,0.2);
    box-shadow: 0 12px 36px rgba(0,0,0,0.4), 0 0 20px rgba(0,240,255,0.06);
}
.lp-feat-card:hover::before { opacity: 1; }
.lp-feat-icon { font-size: 2.2rem; line-height: 1; position: relative; z-index: 1; }
.lp-feat-name { font-weight: 700; font-size: 1rem; color: #fff; position: relative; z-index: 1; }
.lp-feat-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; position: relative; z-index: 1; }
.lp-feat-arrow {
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.75rem;
    color: var(--accent, #00f0ff);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-top: auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s, transform 0.2s;
}
.lp-feat-card:hover .lp-feat-arrow { opacity: 1; transform: translateY(0); }

/* ---- ACTIVITY FEED ---- */
.lp-activity-inner {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-card, #12121a);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
}
.lp-activity-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.2);
}
.lp-activity-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-green, #00ff88);
    box-shadow: 0 0 8px var(--accent-green, #00ff88);
    animation: blink 1.4s ease-in-out infinite;
}
.lp-activity-title {
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}
.lp-activity-inner .feed-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 4px 0;
}

/* ---- VIP CTA - "HACETE SOCIO DEL CIBER" ---- */
.lp-vip-section {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.04) 0%, rgba(0, 255, 136, 0.03) 100%);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}
.lp-vip-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}
.lp-vip-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff9500);
    color: #000;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.lp-vip-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
}
.lp-vip-title .accent { color: var(--accent, #00f0ff); text-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }
.lp-vip-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.98rem;
    margin-bottom: 28px;
    line-height: 1.7;
}
.lp-vip-perks {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.lp-vip-perk {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Courier New', 'Consolas', monospace;
    transition: border-color 0.2s ease;
}
.lp-vip-perk:hover { border-color: rgba(0, 240, 255, 0.2); }
.lp-vip-perk .pk-icon { font-size: 0.9rem; }

/* ---- DISCORD CTA ---- */
.lp-discord-section {
    background: linear-gradient(135deg, rgba(88,101,242,0.1) 0%, rgba(168,85,247,0.08) 50%, rgba(88,101,242,0.06) 100%);
    border-top: 1px solid rgba(88,101,242,0.15);
    border-bottom: 1px solid rgba(88,101,242,0.15);
}
.lp-discord-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 70px 20px;
    text-align: center;
}
.lp-discord-logo {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 18px;
    display: block;
    filter: drop-shadow(0 0 16px rgba(88,101,242,0.6));
    animation: discordFloat 3.5s ease-in-out infinite;
}
@keyframes discordFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.lp-discord-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.lp-discord-sub {
    color: rgba(255,255,255,0.5);
    font-size: 0.98rem;
    margin-bottom: 32px;
    line-height: 1.65;
}
.lp-btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5865f2;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 36px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: 'Courier New', 'Consolas', monospace;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(88,101,242,0.4);
    text-decoration: none;
}
.lp-btn-discord:hover {
    background: #4752c4;
    box-shadow: 0 6px 28px rgba(88,101,242,0.6);
    transform: translateY(-2px);
    color: #fff;
}

/* ---- Count-up animation ---- */
.count-up-done { transition: none; }

/* ---- Mobile responsive adjustments ---- */
@media (max-width: 640px) {
    .lp-monitor-frame {
        padding: 32px 20px 28px;
        margin: 0 10px;
    }
    .lp-stats-bar {
        flex-direction: column;
        gap: 20px;
    }
    .lp-stat-item + .lp-stat-item::before {
        display: none;
    }
    .lp-stat-item {
        padding: 0;
    }
    .lp-podium-visual {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .lp-hero {
        padding: 80px 12px 60px;
    }
    .lp-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
