body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;

    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
        url('background.png');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    cursor: url('cursor.png'), auto;
    
    
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 70px; /* 🔥 ALTURA FIJA */
    padding: 0 40px;

    background: rgba(0,0,0,0.7);
}
/* LOGO */
.logo {
    font-size: 22px;
    font-weight: bold;
    color: white;
}

/* NAV */
.nav {
    margin-left: auto; /* 🔥 empuja todo a la derecha */
    display: flex;
    gap: 20px;
    align-items: center;
}
/* HOVER (opcional, más gamer) 
a:hover {
    cursor: url('img/cursor.png'), pointer;
}
*/

/* LINKS */
.nav a {
    color: #00ff00;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
    padding: 5px 10px;
}

/* HOVER */
.nav a:hover {
    color: black;
    background: #00ff00;
    padding: 5px 10px;
    border-radius: 5px;
    
}


/* JOIN NOW */
.join-btn {
    background: linear-gradient(45deg, #00eaff, #0077ff);
    color: white !important;
    padding: 6px 15px;
    border-radius: 6px;
    box-shadow: 0 0 10px #00eaff;
}

.join-btn:hover {
    transform: scale(1.1);
}
/* HERO */
.hero {
    position: relative;
    
    padding-top: 150px; /* 🔥 ajustas altura */
    /*display: flex;
    min-height: 100vh;*/
    justify-content: center;
    align-items: flex-start; /* ✅ lo sube arriba */
    text-align: center;
    min-height: auto; /* 🔥 clave */
    padding: 40px 20px;

    display: block; /* 🔥 quita el flex */
    text-align: center;
}
.hero-content {
    z-index: 2;
    
    color: #00ff00;
}
.hero h2 {
    font-size: 40px;
    color: #00ff00;
    text-shadow: 
        0 0 10px #00ff00,
        0 0 20px #00ff00;
}
.title-main {
    font-size: 60px;
    font-weight: bold;
    text-shadow: 0 0 20px #00ff00;
    margin-bottom: 10px;
    animation: glow 2s infinite alternate;

}

@keyframes glow {
    from { text-shadow: 0 0 10px #00ff00; }
    to   { text-shadow: 0 0 30px #00ff00; }
}

.title-sub {
    font-size: 30px;
    margin-bottom: 15px;
}

.description {
    font-size: 16px;
    color: #ccc;
}
/* CONTENT */
.content {
    padding: 40px;
}
.logo img {
   height: 200px; /* 🔥 más grande que el header */
   margin-top: -10px; /* 🔥 lo sube sin agrandar navbar */
   object-fit: contain;
}
/*ESTILO TABLA */
.online {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    

}

.online h2 {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.online-box {
    display: inline-block;
    padding: 20px;
    border-radius: 10px;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);

    box-shadow: 0 0 15px #00ff00;
   

}
.description {
    max-width: 700px; /* 🔥 limita el ancho */
    margin: 0 auto;   /* centra */
    text-align: center;
    text-shadow: 0 0 5px #00ff00;

    font-size: 15px;
    line-height: 1.6; /* 🔥 espacio entre líneas */
    color: #ccc;
}

#tablaOnline {
    margin-top: 10px;
    border-collapse: collapse;
    width: 300px;
}

#tablaOnline th {
    color: #00ff00;
}

#tablaOnline td {
    padding: 8px;
    border-top: 1px solid #00ff00;
}
/* HOVER */
#tablaOnline tr:hover {
    background: rgba(0,255,0,0.15);
    transform: scale(1.02);
    transition: 0.2s;
}
/* TOP PLAYER */
.top-player {
    color: gold;
    font-weight: bold;
    text-shadow: 0 0 10px gold;
}
/* CONTADOR */
.online-count {
    font-size: 20px;
    color: #00ff00;
    font-weight: bold;
    margin-bottom: 10px;

    text-shadow: 
        0 0 5px #00ff00,
        0 0 10px #00ff00,
        0 0 20px #00ff00;

    animation: glowPulse 1.5s infinite alternate;
    animation: pulse 1.2s infinite alternate;
}
    

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* ANIMACIÓN */
@keyframes glowPulse {
    from {
        text-shadow: 
            0 0 5px #00ff00,
            0 0 10px #00ff00;
    }
    to {
        text-shadow: 
            0 0 10px #00ff00,
            0 0 25px #00ff00,
            0 0 40px #00ff00;
    }
}
.server-status {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;

    text-shadow: 0 0 10px #00ff00;
}
.online-box p {
    margin: 5px 0;
    font-size: 16px;
}

/* MAPA / PING */
#map, #time, #ping {
    color: #ccc;
}
/* PANEL ENTRA SUAVE */
.online-box {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#tablaOnline tr {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.flag {
    width: 28px;
    animation: waveFlag 1.5s infinite ease-in-out;
    transform-origin: left center;
}

@keyframes waveFlag {
    0%   { transform: skewY(0deg) scale(1); }
    25%  { transform: skewY(5deg) scale(1.05); }
    50%  { transform: skewY(0deg) scale(1); }
    75%  { transform: skewY(-5deg) scale(1.05); }
    100% { transform: skewY(0deg) scale(1); }
}
/*FOOTER*/
.footer {
    width: 100%;
    text-align: center;
    padding: 20px 10px;
    margin-top: 40px;

    background: rgba(0, 0, 0, 0.8);
    color: #00ff00;

    font-family: 'Arial', sans-serif;
    font-size: 14px;

    border-top: 1px solid #00ff00;
    box-shadow: 0 -5px 20px rgba(0, 255, 0, 0.3);
}

.footer p {
    margin: 5px 0;
}
/*MAPA.HTML*/
.maps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 50px;
    /*margin-top: -800px; /* 🔥 esto lo sube */
}

.map-card {
    background: #0b0b0b;
    border: 1px solid #222;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.map-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    pointer-events: none;

}

.map-info {
    padding: 15px;
    text-align: center;
}

.map-info h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.map-card:hover {
    transform: scale(1.05);
    transform: translateY(-8px);
    box-shadow: 0 0 15px #00ff00;
}
.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 25px;
    margin-top: 10px;

    background: #1b2838;
    border: none;
    color: #66c0f4;

    font-weight: bold;
    text-decoration: none;

    border-radius: 8px;
    transition: 0.3s;
    position: relative;
    z-index: 10;
    
}

.btn-download:hover {
     background: #66c0f4;
    color: #000;

    box-shadow: 0 0 12px #ff9900;
    transform: scale(1.08);
}
a {
    text-decoration: none;
}
/*VIP.HTML*/
.vip-poster {
    position: relative;
 
    overflow: hidden;
 /* 🔥 esto lo sube */
    background: radial-gradient(circle at center, #1a0000, #000000);
        min-height: 100vh; /* 🔥 permite crecer */

}

/* 🩸 sangre animada */
.vip-poster::after {
     content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 40px;

    background: linear-gradient(to bottom, #ff0000, transparent);
    opacity: 0.3;
}
@keyframes drip {
    0% { height: 60px; }
    50% { height: 120px; }
    100% { height: 60px; }
}
@keyframes drip {
    0% { height: 60px; }
    50% { height: 120px; }
    100% { height: 60px; }
}
.vip-overlay {
    min-height: 100vh; /* 🔥 permite crecer */

    position: relative;
    z-index: 5;

    text-align: center;
    padding: 60px;
    color: #ffae00;
    margin-top: 20px;
    


}

.vip-overlay p {
    color: #ffae00;
    text-shadow: 0 0 5px orange;
    

    animation: glowPulse 1.5s infinite alternate;
}

@keyframes glowPulse {
    from { text-shadow: 0 0 5px orange; }
    to   { text-shadow: 0 0 15px orange; }
}
.blood {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* MUCHAS GOTAS */
.blood span {
    position: absolute;
    top: -50px;
    width: 6px;
    height: 25px;
    background: red;
    border-radius: 50%;
    opacity: 0.8;

    animation: rain 2s linear infinite;
}

/* posiciones random */
.blood span:nth-child(1) { left: 5%; animation-delay: 0s; }
.blood span:nth-child(2) { left: 15%; animation-delay: 0.5s; }
.blood span:nth-child(3) { left: 25%; animation-delay: 1s; }
.blood span:nth-child(4) { left: 35%; animation-delay: 0.2s; }
.blood span:nth-child(5) { left: 45%; animation-delay: 1.2s; }
.blood span:nth-child(6) { left: 55%; animation-delay: 0.7s; }
.blood span:nth-child(7) { left: 65%; animation-delay: 0.3s; }
.blood span:nth-child(8) { left: 75%; animation-delay: 1.5s; }
.blood span:nth-child(9) { left: 85%; animation-delay: 0.9s; }
.blood span:nth-child(10){ left: 95%; animation-delay: 0.4s; }

@keyframes rain {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(800px);
        opacity: 0;
    }
}
.blood {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.smoke {
    position: absolute;
    width: 100%;
    height: 100%;

    background:
        radial-gradient(circle at 30% 40%, rgba(255,0,0,0.2), transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(255,0,0,0.15), transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(255,0,0,0.1), transparent 70%);

    animation: smokeMove 8s infinite alternate;
    filter: blur(20px); /* 🔥 densidad */
}

@keyframes smokeMove {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-50px) scale(1.3);
    }
}
.fire-text {
    color: #ff3c00;
    font-size: 40px;

    text-shadow:
        0 0 10px red,
        0 0 20px orange,
        0 0 40px yellow;

    animation: fireGlow 1s infinite alternate;
}
.glitch {
    position: relative;
    color: #ff3c00;
    font-size: 40px;
    text-transform: uppercase;

    animation: glitch 1s infinite;
}

/* capas duplicadas */
.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
}

/* rojo desplazado */
.glitch::before {
    left: 2px;
    text-shadow: -2px 0 red;
    animation: glitchTop 1s infinite;
}

/* azul desplazado */
.glitch::after {
    left: -2px;
    text-shadow: -2px 0 cyan;
    animation: glitchBottom 1s infinite;
}

@keyframes glitch {
    0% { transform: none; }
    20% { transform: skew(-2deg); }
    40% { transform: skew(2deg); }
    60% { transform: none; }
    80% { transform: scale(1.02); }
    100% { transform: none; }
}

@keyframes glitchTop {
    0% { clip-path: inset(0 0 80% 0); }
    50% { clip-path: inset(0 0 40% 0); }
    100% { clip-path: inset(0 0 80% 0); }
}

@keyframes glitchBottom {
    0% { clip-path: inset(60% 0 0 0); }
    50% { clip-path: inset(20% 0 0 0); }
    100% { clip-path: inset(60% 0 0 0); }
}
.vip-warning {
    margin-top: 30px;

    color: white;
    font-size: 14px;

    background: rgba(0,0,0,0.5);
    padding: 10px;

    border-radius: 6px;
    animation: fadeWarning 2s ease;
    
}

@keyframes fadeWarning {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}
.aviso-title {
    color: #ff4d4d;
    text-shadow: 0 0 10px red;
}
.vip-box {
    max-width: 800px;
    margin: 80px auto;
    padding: 40px;
    /*max-height: 80vh;
   overflow-y: auto;*/

    background: rgba(0,0,0,0.7);
    border: 3px solid #ff0000;

    border-radius: 12px;

    box-shadow:
        0 0 10px red,
        0 0 25px red,
        0 0 50px darkred;

    position: relative;
    z-index: 10;
}
.vip-box p {
    margin: 12px 0;
    line-height: 1.6;
}
.btn-buy {
    display: block;
    margin: 30px auto;

    padding: 12px 30px;

    background: #00ff00;
    color: black;

    font-weight: bold;
    text-align: center;
    text-decoration: none;

    border-radius: 8px;

    transition: 0.3s;
}

.btn-buy:hover {
    background: #00cc00;
    box-shadow: 0 0 15px #00ff00;
    transform: scale(1.05);
}
/*GROUPS.HTML*/
.group {
    text-align: center;
    padding: 80px 20px;
}
.group h1 {
    font-size: 42px; /* 🔥 antes seguro 30-32 */
}
.group-title {
    color: #00ff00;
    font-size: 36px;
    text-shadow: 0 0 10px #00ff00;
}

.group-desc {
    color: white;
    margin: 20px 0;
}

.group-buttons {
    margin-top: 30px;
}



.group-buttons a {
    padding: 14px 30px; /* 🔥 más grandes */
    font-size: 16px;

    position: relative;

    box-shadow: 0 0 5px #00ff00,
                0 0 10px #00ff00,
                0 0 20px #00ff00;

    transition: 0.3s;
    animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
    from {
        box-shadow: 0 0 5px #00ff00;
    }
    to {
        box-shadow: 0 0 20px #00ff00;
    }
}

/* 🔥 HOVER NEÓN MÁS FUERTE */
.group-buttons a:hover {
    box-shadow: 0 0 10px #00ff00,
                0 0 20px #00ff00,
                0 0 40px #00ff00,
                0 0 80px #00ff00;

    transform: scale(1.08);
}


/* BOTONES BASE */
.btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;

    border-radius: 8px;
    text-decoration: none;
    color: white;

    transition: 0.3s;
}

/* COLORES */
/*.discord { background: #5865F2; }
.steam { background: #171a21; }
.facebook { background: #1877f2; }
.tracker { background: darkred;  }
.whatsapp { background: #25D366; }*/
.discord { box-shadow: 0 0 10px #5865F2; }
.steam { box-shadow: 0 0 10px #00adee; }
.facebook { box-shadow: 0 0 10px #1877f2; }
.tracker { box-shadow: 0 0 10px #00ff00; }
.whatsapp { box-shadow: 0 0 10px #25D366; }

/* HOVER */
.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px white;
}

/*RANKING.HTML*/
.ranking {
    text-align: center;
    padding: 80px 20px;
}

.ranking-title {
    color: #00ff00;
    font-size: 36px;
    text-shadow: 0 0 10px #00ff00;
}

/* TABLA */
.ranking-table {
    margin: 40px auto;
    border-collapse: collapse;
    width: 80%;
    max-width: 600px;

    background: rgba(0,0,0,0.7);
    box-shadow: 0 0 20px #00ff00;
}

/* ENCABEZADO */
.ranking-table th {
    padding: 12px;
    color: #00ff00;
    border-bottom: 2px solid #00ff00;
}

/* FILAS */
.ranking-table td {
    padding: 10px;
    color: white;
}

/* EFECTO HOVER */
.ranking-table tr:hover {
    background: rgba(0,255,0,0.1);
}
.ranking-table tr:nth-child(1) td {
    color: gold;
    font-weight: bold;
}

.ranking-table tr:nth-child(2) td {
    color: silver;
}

.ranking-table tr:nth-child(3) td {
    color: #cd7f32; /* bronce */
}
#pagination {
    text-align: center;
    margin-top: 20px;
}

#pagination button {
    margin: 5px;
    padding: 8px 12px;

    background: #222;
    color: white;
    border: none;

    cursor: pointer;
}

#pagination button:hover {
    background: #00ff00;
    color: black;
}
#searchPlayer {
    padding: 10px;
    width: 250px;

    border-radius: 6px;
    border: 1px solid #00ff00;

    background: black;
    color: white;

    margin-bottom: 20px;
}
/*info.html*/



.info-container {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

    max-width: 1000px;
    width: 100%;
}

.info-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 8px;

    border: 1px solid rgba(255,255,255,0.1);
}

.info-box h2 {
    color: #00ff00;
    margin-bottom: 10px;
}

.info-box p {
    color: #ccc;
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    margin: 8px 0;
    color: #eee;
}
/*BANS HTML*/
/* 🔥 CONTENEDOR AISLADO */
.bans-box {
    width: 80%;
    margin: 60px auto;
    background: rgba(0,0,0,0.8);
    border-radius: 10px;
    padding: 20px;

    position: relative;
    z-index: 9999;
}

/* 🔥 TABLA SOLO PARA BANS */
.bansonline{
    width: 100%;
    border-collapse: collapse;
}

.bans-table th {
    color: #00ff00;
    padding: 10px;
    border-bottom: 1px solid #00ff00;
}

.bans-table td {
    padding: 10px;
    color: white;
    cursor: pointer;
}

/* 🔥 HOVER */
.bans-table tr:hover {
    background: rgba(0,255,0,0.1);
}
#bansPlayer {
    margin-top: 10px;
    border-collapse: collapse;
    width: 300px;
}

#bansPlayer th {
    color: #00ff00;
}

/*staff*/
.staff-page {
    padding: 60px 20px;
    text-align: center;
}



.staff-card {
    background: rgba(0,0,0,0.75);
    padding: 20px;
    border-radius: 15px;
    text-align: center;

    border: 2px solid #00ff00;
    box-shadow: 0 0 10px #00ff00;

    transition: 0.3s;
}

.staff-card:hover {
    transform: scale(1.05);
}

.staff-name {
    cursor: pointer;
    color: #00ff00;
}

.staff-name:hover {
    text-shadow: 0 0 5px #00ff00;
}
.staff-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    padding: 20px;
}
