body {
    background: #0a0a0a;
    color: #e8e8e8;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* ── BAN SCREEN ── */
.ban-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 0;
    text-align: center;
}
.ban-icon { font-size: 48px; }
.ban-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 6px;
    text-transform: uppercase;
}
.ban-desc  { font-size: 15px; color: var(--text-mid); font-weight: 500; }
.ban-timer {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--text-dim);
    letter-spacing: 2px;
    margin-top: 8px;
}

/* ── PARTICLES ── */
.particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 2px; height: 2px;
    background: #c0392b;
    border-radius: 50%;
    opacity: 0;
    animation: float linear infinite;
}
@keyframes float {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.2; }
    100% { transform: translateY(-10px) scale(1); opacity: 0; }
}

/* ── BLOOD OVERLAY ── */
.blood-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at top left, rgba(120,0,0,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(80,0,0,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ── NAVBAR ── */
.navbar-landing {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,10,0.95);
    border-bottom: 1px solid rgba(192,57,43,0.3);
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 4px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}
.logo-bracket { color: #c0392b; }
.logo-text    { color: #e8e8e8; }
.logo-accent  { color: #e74c3c; }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 50px 80px 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        linear-gradient(135deg, rgba(192,57,43,0.05) 0%, transparent 60%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(192,57,43,0.02) 60px,
            rgba(192,57,43,0.02) 61px
        );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: #e74c3c;
    letter-spacing: 3px;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.6s 0.2s forwards;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 14vw, 10rem);
    line-height: 0.9;
    letter-spacing: 4px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.6s 0.4s forwards;
    text-shadow: 0 0 60px rgba(192,57,43,0.3);
    color: #e8e8e8;
}
.hero-title .accent { color: #e74c3c; }

.hero-subtitle {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.6s 0.6s forwards;
}

/* ── BOTONES HERO ── */
.hero-buttons {
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.6s 0.8s forwards;
}

.hero-buttons-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-steam-img {
    display: inline-flex;
    align-items: center;
    transition: opacity .15s, transform .15s;
}
.btn-steam-img:hover { opacity: 0.85; transform: scale(1.02); }
.btn-steam-img img   { height: 44px; display: block; }

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all .2s;
    border: 1px solid transparent;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    height: 44px;
}
.btn-social-discord {
    background: rgba(88,101,242,0.15);
    color: #7289da;
    border-color: rgba(88,101,242,0.3);
}
.btn-social-discord:hover {
    background: #5865f2;
    color: #fff;
    box-shadow: 0 0 20px rgba(88,101,242,0.4);
}
.btn-social-kick {
    background: rgba(83,252,31,0.1);
    color: #53fc1f;
    border-color: rgba(83,252,31,0.2);
}
.btn-social-kick:hover {
    background: #53fc1f;
    color: #000;
    box-shadow: 0 0 20px rgba(83,252,31,0.4);
}

/* ── STATS ── */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0;
    animation: fadeUp 0.6s 1s forwards;
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #e74c3c;
    letter-spacing: 2px;
}
.stat-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #888;
    font-family: 'Share Tech Mono', monospace;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(192,57,43,0.3);
}

/* ── GIF HERO ── */
.hero-art {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: auto;
    z-index: 0;
}
.hero-gif {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 40px rgba(192,57,43,0.3));
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── FOOTER ── */
.footer-landing {
    border-top: 1px solid rgba(192,57,43,0.3);
    padding: 20px 40px;
    text-align: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .navbar-landing { padding: 0 16px; }
    .hero           { padding: 100px 24px 60px; }
    .hero-art       { display: none; }
    .hero-buttons-row { flex-direction: column; align-items: flex-start; }
}