* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    background: url('https://static.planetminecraft.com/files/image/minecraft/project/2025/708/18861022-netherbanneroriginal_xl.webp') no-repeat center center fixed;
    background-size: cover;
    background-color: #0d0d0d;
    overflow-x: hidden;
    position: relative;
    color: white;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.82);
    z-index: 0;
    pointer-events: none;
}

/* Partículas flotantes */
.particle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}

.particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 1s; }
.particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 2s; width: 8px; height: 8px; }
.particle:nth-child(3) { top: 60%; left: 30%; animation-delay: 3s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 4s; width: 5px; height: 5px; }
.particle:nth-child(5) { top: 40%; left: 90%; animation-delay: 0.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.8; }
    50% { transform: translateY(-30px) translateX(10px) rotate(180deg); opacity: 1; }
}

/* Header moderno */
.header {
    position: fixed;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.nav-container {
    display: flex;
    gap: 5px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    padding: 8px;
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-item {
    background: transparent;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
	text-decoration: none !important;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
    border-radius: 25px;
}

.nav-item:hover {
    color: #FFD700;
    transform: translateY(-3px);
}

.nav-item:hover::before {
    transform: scaleX(1);
}


.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 2px;
    background: #FFD700;
    border-radius: 2px;
}

/* Iconos sociales */
.social-icons {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 9999;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Contenedor principal */
.main-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 50;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo flotante */
.floating-logo {
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    animation: floatLogo 3s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.floating-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    position: relative;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px) rotate(-3deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

/* Contenedor de LiteBans */
.litebans-container {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}

/* Estilos para el contenido de LiteBans */
.litebans-index {
    text-align: center;
    margin-bottom: 20px;
}

.litebans-index-main h2 {
    font-size: 2.5rem;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin-bottom: 15px;
    font-weight: bold;
}

.litebans-index-sub p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Botones de moderación */
.mod-buttons {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 60;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    padding: 15px;
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mod-btn {
    background: rgba(30, 30, 30, 0.7);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
	text-decoration: none !important;
}

.mod-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.mod-btn:hover {
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mod-btn:hover::before {
    transform: scaleX(1);
}

.mod-btn.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.1));
    color: #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.mod-btn i {
    font-size: 16px;
}

/* Efectos de luz */
.glow-orb {
    position: fixed;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4), transparent 70%);
    animation: glow 6s ease-in-out infinite;
    filter: blur(10px);
    z-index: 1;
    pointer-events: none;
}

.glow-orb:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 1s;
}

.glow-orb:nth-child(2) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
    width: 200px;
    height: 200px;
}

@keyframes glow {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Efecto de borde brillante para la imagen */
.floating-logo::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
                    #FFD700, 
                    #FF9800, 
                    #FF5722, 
                    #FFD700);
    background-size: 400% 400%;
    z-index: -1;
    animation: gradientBorder 6s ease infinite;
    opacity: 0.7;
    filter: blur(15px);
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* Botones laterales */
.side-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px; /* Reducido de 50px a 20px para acercarlos */
    box-sizing: border-box;
    z-index: 9999;
}

.side-btn {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 12px 15px; /* Padding más compacto */
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px; /* Espacio reducido entre icono y texto */
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 160px; /* Ancho reducido */
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin: 0 5px; /* Margen reducido */
	text-decoration: none !important;

}

.side-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.side-btn:hover {
    color: #FFD700;
    transform: translateY(-5px);
}

.side-btn:hover::before {
    transform: scaleX(1);
}

.side-btn:active {
    transform: translateY(0) scale(0.98);
    transition: transform 0.1s ease;
}

.side-btn i {
    font-size: 24px;
}

.side-btn span {
    font-size: 12px;
    opacity: 0.8;
    text-transform: none;
    font-weight: normal;
    letter-spacing: 0.5px;
}

/* Estilos específicos para los botones */
.side-btn.store {
    background: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

.side-btn.discord {
    background: rgba(88, 101, 242, 0.3);
}

.side-btn.store:hover {
    background: rgba(255, 215, 0, 0.5);
}

.side-btn.discord:hover {
    background: rgba(88, 101, 242, 0.5);
}

/* Responsivo para botones laterales */
@media (max-width: 768px) {
    .side-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
        top: 65%;
    }
    
    .side-btn {
        width: 100%;
        max-width: 250px;
        padding: 15px 20px;
    }
}


/* Responsivo mejorado */
@media (max-width: 768px) {
    .header {
        top: 10px;
    }
    
    .nav-container {
        flex-wrap: wrap;
        padding: 6px;
        gap: 3px;
    }
    
    .nav-item {
        padding: 8px 12px;
        font-size: 12px;
		
    }
    
    .social-icons {
        top: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .floating-logo {
        width: 180px;
        height: 180px;
        margin-bottom: 20px;
    }
    
    .litebans-container {
        padding: 20px;
        width: 95%;
    }
    
    .litebans-index-main h2 {
        font-size: 1.8rem;
    }
    
    .litebans-index-sub p {
        font-size: 1rem;
    }
    
    .mod-buttons {
        flex-wrap: wrap;
        justify-content: center;
        width: 90%;
        bottom: 20px;
        padding: 10px;
    }
    
    .mod-btn {
        padding: 10px 15px;
        min-width: 100px;
        font-size: 12px;
    }
}

/* Contenedor principal del paginador */
.litebans-pager-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* Botones de navegación */
.litebans-pager {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 12px 20px;
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none !important;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.litebans-pager::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.litebans-pager-active:hover {
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.litebans-pager-active:hover::before {
    transform: scaleX(1);
}

.litebans-pager-inactive {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.3);
}

.litebans-pager-inactive:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Iconos de los botones */
.pager-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.litebans-pager-active:hover .pager-icon-container {
    background: rgba(255, 215, 0, 0.4);
    transform: scale(1.1);
}

.pager-text {
    font-size: 12px;
    font-weight: 600;
}

/* Información de página */
.litebans-pager-info {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 15px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.pager-info-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.pager-current-page {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #FFD700;
}

.page-number {
    background: rgba(255, 215, 0, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.total-pages {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.pager-total-records {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Barra de progreso */
.pager-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.pager-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FF9800);
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Páginas numéricas */
.litebans-pager-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pager-number-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none !important;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pager-number-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700, #FF9800);
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
    border-radius: 50%;
}

.pager-number-btn:hover::before,
.pager-number-btn.active::before {
    transform: scale(1);
}

.pager-number-btn:hover,
.pager-number-btn.active {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.pager-dots {
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
    padding: 0 5px;
}

/* Efectos de partículas */
.litebans-pager-info::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: pagerGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pagerGlow {
    0%, 100% { transform: rotate(0deg) scale(0.8); opacity: 0.3; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 0.6; }
}

/* Responsivo */
@media (max-width: 768px) {
    .litebans-pager-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .litebans-pager {
        min-width: 100px;
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .litebans-pager-info {
        padding: 12px 20px;
    }
    
    .litebans-pager-numbers {
        padding: 6px 12px;
    }
    
    .pager-number-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .pager-text {
        display: none;
    }
}
/* Contenedor principal del buscador */
.player-search-container {
    position: relative;
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    z-index: 10;
}

/* Wrapper del buscador */
.search-wrapper {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-wrapper:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

/* Cabecera del buscador */
.search-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.search-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.search-icon svg {
    width: 24px;
    height: 24px;
    color: #FFD700;
}

.search-title {
    font-size: 1.5rem;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    margin: 0;
    font-weight: 600;
}

/* Formulario de búsqueda */
.search-form {
    position: relative;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.search-input:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FF9800);
    transition: width 0.4s ease;
}

.search-input:focus ~ .search-border {
    width: 100%;
}

/* Botón de búsqueda */
.search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.1));
    border: none;
    border-radius: 8px;
    color: #FFD700;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(255, 215, 0, 0.2));
}

.search-button:active {
    transform: translateY(0) scale(0.98);
}

.search-button span {
    position: relative;
    z-index: 2;
}

.search-arrow {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.search-button:hover .search-arrow {
    transform: translateX(5px);
}

.search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.5), rgba(255, 215, 0, 0.3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.search-button:hover::before {
    transform: scaleX(1);
}

/* Botones de acción rápida */
.quick-action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 120px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.quick-action-btn span {
    position: relative;
    z-index: 2;
    margin-left: 8px;
}

.action-icon {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Botón Home */
.home-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.home-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.home-btn:hover {
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.home-btn:hover::before {
    transform: scaleX(1);
}

.home-btn:hover .action-icon {
    transform: translateX(-3px);
}

/* Botón Discord */
.discord-btn {
    background: rgba(88, 101, 242, 0.2);
    color: #FFFFFF;
    border: 1px solid rgba(88, 101, 242, 0.4);
}

.discord-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.4), rgba(88, 101, 242, 0.2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.discord-btn:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover::before {
    transform: scaleX(1);
}

.discord-btn:hover .action-icon {
    transform: scale(1.1);
}

/* Decoraciones */
.search-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    border-radius: 15px;
}

.decoration-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.decoration-particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    width: 8px;
    height: 8px;
}

.decoration-particle:nth-child(2) {
    top: 70%;
    left: 80%;
    animation-delay: 2s;
    width: 6px;
    height: 6px;
}

.decoration-particle:nth-child(3) {
    top: 40%;
    left: 85%;
    animation-delay: 4s;
    width: 5px;
    height: 5px;
}

/* Animaciones */
@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(-20px) translateX(10px) rotate(180deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .player-search-container {
        padding: 15px;
        margin: 20px auto;
    }
    
    .search-wrapper {
        padding: 20px;
    }
    
    .search-header {
        margin-bottom: 20px;
    }
    
    .search-icon {
        width: 40px;
        height: 40px;
    }
    
    .search-title {
        font-size: 1.3rem;
    }
    
    .search-input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .search-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .quick-action-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .quick-action-btn {
        width: 100%;
        padding: 10px 15px;
    }
}

/* =============================================
   BANS SECTION — layout para páginas de sanciones
   ============================================= */

.bans-section-body { height: auto; min-height: 100vh; overflow-y: auto; }

.bans-page-wrapper {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    min-height: 100vh;
}

/* ── Hero section ── */
.bans-hero-section {
    padding: 70px 20px 0;
    text-align: center;
}
.bans-hero-inner {
    max-width: 700px;
    margin: 0 auto 36px;
}
.bans-hero-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 12px 0 14px;
}
.bans-hero-sub { color: #aaa; font-size: 1rem; margin: 0; }

/* Accent color per type */
.bans-type-bans    .bans-hero-title span { color: #ff4444; text-shadow: 0 0 30px rgba(255,60,60,0.5); }
.bans-type-mutes   .bans-hero-title span { color: #ff8c00; text-shadow: 0 0 30px rgba(255,140,0,0.5); }
.bans-type-warnings .bans-hero-title span { color: #FFD700; text-shadow: 0 0 30px rgba(255,215,0,0.5); }
.bans-type-kicks   .bans-hero-title span { color: #a855f7; text-shadow: 0 0 30px rgba(168,85,247,0.5); }

/* section-tag reuse */
.bans-hero-section .section-tag { display: inline-flex; align-items: center; gap: 8px; }

/* ── Tabs row inside hero ── */
.bans-tabs-row {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 10px;
}
.bans-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px 8px 0 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: none;
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.5);
    text-decoration: none !important;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    transition: all .2s;
    position: relative;
}
.bans-tab:hover { color: #fff; background: rgba(255,255,255,0.07); text-decoration: none !important; }

.bans-tab-ban.active  { color: #ff4444; background: rgba(255,60,60,0.12);   border-color: rgba(255,60,60,0.35); }
.bans-tab-ban:hover   { color: #ff4444; background: rgba(255,60,60,0.08);   border-color: rgba(255,60,60,0.2); }
.bans-tab-mute.active { color: #ff8c00; background: rgba(255,140,0,0.12);  border-color: rgba(255,140,0,0.35); }
.bans-tab-mute:hover  { color: #ff8c00; background: rgba(255,140,0,0.08);  border-color: rgba(255,140,0,0.2); }
.bans-tab-warn.active { color: #FFD700; background: rgba(255,215,0,0.12);  border-color: rgba(255,215,0,0.35); }
.bans-tab-warn:hover  { color: #FFD700; background: rgba(255,215,0,0.08);  border-color: rgba(255,215,0,0.2); }
.bans-tab-kick.active { color: #a855f7; background: rgba(168,85,247,0.12); border-color: rgba(168,85,247,0.35); }
.bans-tab-kick:hover  { color: #a855f7; background: rgba(168,85,247,0.08); border-color: rgba(168,85,247,0.2); }

/* ── Content section ── */
.bans-content-section {
    padding: 0 20px 60px;
}
.bans-main-container {
    max-width: 1140px;
    margin: 0 auto;
}

/* ── Search area (override del player-search-container) ── */
.bans-search-area { margin-bottom: 20px; }
.bans-search-area .player-search-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    z-index: auto;
}
.bans-search-area .search-decoration { display: none; }
.bans-search-area .litebans-check { display: none; }
.bans-search-area .search-wrapper {
    background: rgba(10,10,25,0.8) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 0 0 14px 14px !important;
    padding: 20px 24px !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5) !important;
}
.bans-search-area .search-wrapper:hover {
    border-color: rgba(0,212,255,0.25) !important;
    box-shadow: 0 12px 40px rgba(0,212,255,0.06) !important;
}
.bans-search-area .search-header {
    margin-bottom: 14px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    padding-bottom: 12px !important;
}
.bans-search-area .search-icon {
    width: 38px !important; height: 38px !important;
    background: rgba(0,212,255,0.1) !important;
    border-color: rgba(0,212,255,0.25) !important;
    margin-right: 12px !important;
}
.bans-search-area .search-icon svg { color: #00d4ff !important; width: 18px !important; height: 18px !important; }
.bans-search-area .search-title { font-size: 1rem !important; color: #00d4ff !important; text-shadow: none !important; font-weight: 600 !important; }
.bans-search-area .search-form { display: flex !important; gap: 10px !important; align-items: flex-end !important; }
.bans-search-area .form-group { flex: 1 !important; margin-bottom: 0 !important; }
.bans-search-area .search-input {
    padding: 11px 16px !important;
    font-size: .92rem !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,0.05) !important;
    box-shadow: none !important;
}
.bans-search-area .search-input:focus {
    background: rgba(255,255,255,0.08) !important;
    box-shadow: 0 0 0 2px rgba(0,212,255,0.25) !important;
}
.bans-search-area .search-border { background: linear-gradient(90deg,#00d4ff,#0099cc) !important; }
.bans-search-area .search-button {
    width: auto !important;
    padding: 11px 26px !important;
    font-size: .88rem !important;
    background: linear-gradient(135deg,rgba(0,212,255,0.2),rgba(0,153,204,0.1)) !important;
    border: 1px solid rgba(0,212,255,0.3) !important;
    color: #00d4ff !important;
    border-radius: 8px !important;
    flex-shrink: 0;
    box-shadow: none !important;
    transform: none !important;
}
.bans-search-area .search-button:hover {
    background: linear-gradient(135deg,rgba(0,212,255,0.35),rgba(0,153,204,0.2)) !important;
    border-color: rgba(0,212,255,0.5) !important;
    box-shadow: 0 4px 16px rgba(0,212,255,0.2) !important;
    transform: none !important;
}
.bans-search-area .search-button::before { display: none !important; }
.bans-search-area .quick-action-buttons {
    display: flex !important;
    gap: 8px !important;
    margin-top: 14px !important;
    justify-content: flex-start !important;
}
.bans-search-area .quick-action-btn {
    padding: 8px 16px !important;
    font-size: 12px !important;
    min-width: auto !important;
    box-shadow: none !important;
}
.bans-search-area .home-btn {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: rgba(255,255,255,0.7) !important;
}
.bans-search-area .home-btn:hover { color: #fff !important; background: rgba(255,255,255,0.1) !important; transform: none !important; box-shadow: none !important; }
.bans-search-area .home-btn::before { display: none !important; }
.bans-search-area .discord-btn {
    background: rgba(88,101,242,0.15) !important;
    border: 1px solid rgba(88,101,242,0.3) !important;
    color: rgba(255,255,255,0.8) !important;
}
.bans-search-area .discord-btn:hover { transform: none !important; box-shadow: none !important; }
.bans-search-area .discord-btn::before { display: none !important; }

/* ── Table card ── */
.bans-table-card {
    background: rgba(10,10,25,0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.bans-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bans-table-title {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bans-type-bans     .bans-table-title { color: #ff4444; }
.bans-type-mutes    .bans-table-title { color: #ff8c00; }
.bans-type-warnings .bans-table-title { color: #FFD700; }
.bans-type-kicks    .bans-table-title { color: #a855f7; }

/* ── Table ── */
.bans-table-card .table {
    color: rgba(255,255,255,0.85) !important;
    background: transparent !important;
    margin-bottom: 0;
}
.bans-table-card .table thead th {
    background: rgba(255,255,255,0.04) !important;
    color: rgba(255,255,255,0.45) !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 14px 20px;
    white-space: nowrap;
}
.bans-table-card .table tbody tr {
    background: transparent !important;
    transition: background .15s;
    border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}
.bans-table-card .table tbody tr:hover {
    background: rgba(255,255,255,0.04) !important;
    cursor: pointer;
}
.bans-table-card .table-striped tbody tr:nth-of-type(odd) {
    background: rgba(255,255,255,0.02) !important;
}
.bans-table-card .table tbody td {
    border: none !important;
    padding: 14px 20px;
    vertical-align: middle;
    font-size: .9rem;
    color: rgba(255,255,255,0.8) !important;
}
.bans-table-card .table tbody td a {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none !important;
    display: block;
}
.bans-table-card .table tbody td a:hover { color: #fff !important; }
.bans-table-card .table tbody td .avatar-name-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bans-table-card .table img {
    border-radius: 4px;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    image-rendering: pixelated;
}

/* LiteBans badges */
.bans-table-card .badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid transparent;
}
.bans-table-card .badge-danger  { background: rgba(255,60,60,0.15)  !important; color: #ff6b6b !important; border-color: rgba(255,60,60,0.25) !important; }
.bans-table-card .badge-warning { background: rgba(255,215,0,0.12)  !important; color: #FFD700 !important; border-color: rgba(255,215,0,0.25) !important; }
.bans-table-card .badge-success { background: rgba(0,200,80,0.12)   !important; color: #00c850 !important; border-color: rgba(0,200,80,0.25) !important; }
.bans-table-card .badge-info    { background: rgba(0,212,255,0.12)  !important; color: #00d4ff !important; border-color: rgba(0,212,255,0.25) !important; }

/* ── Pager ── */
.bans-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.bans-pager .litebans-pager {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    min-width: auto !important;
    color: rgba(255,255,255,0.75) !important;
    box-shadow: none !important;
    letter-spacing: .5px;
}
.bans-pager .litebans-pager::before { display: none !important; }
.bans-pager .litebans-pager-active:hover {
    background: rgba(0,212,255,0.1) !important;
    border-color: rgba(0,212,255,0.35) !important;
    color: #00d4ff !important;
    transform: none !important;
    box-shadow: none !important;
}
.bans-pager .litebans-pager-inactive { opacity: .3 !important; pointer-events: none; }
.bans-pager .pager-icon-container { background: rgba(0,212,255,0.1) !important; width: 18px !important; height: 18px !important; }
.bans-pager .litebans-pager-active:hover .pager-icon-container { background: rgba(0,212,255,0.2) !important; transform: none !important; }
.bans-pager .litebans-pager-info {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    box-shadow: none !important;
}
.bans-pager .litebans-pager-info::after { display: none !important; }
.bans-pager .pager-current-page { color: #00d4ff !important; font-size: 13px !important; gap: 6px !important; }
.bans-pager .page-number { background: rgba(0,212,255,0.15) !important; color: #00d4ff !important; text-shadow: none !important; font-size: 13px !important; padding: 2px 8px !important; }
.bans-pager .pager-total-records { font-size: 11px !important; }
.bans-pager .pager-progress-fill { background: linear-gradient(90deg,#00d4ff,#0099cc) !important; box-shadow: none !important; }
.bans-pager .litebans-pager-numbers {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 8px !important;
    padding: 5px 10px !important;
    box-shadow: none !important;
    gap: 4px !important;
}
.bans-pager .pager-number-btn { width: 28px !important; height: 28px !important; border-radius: 6px !important; font-size: 12px !important; }
.bans-pager .pager-number-btn::before { background: linear-gradient(135deg,#00d4ff,#0099cc) !important; border-radius: 6px !important; }
.bans-pager .pager-number-btn:hover,
.bans-pager .pager-number-btn.active { transform: none !important; box-shadow: none !important; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .bans-hero-section { padding: 60px 15px 0; }
    .bans-hero-title { font-size: 2rem; }
    .bans-content-section { padding: 0 15px 50px; }
    .bans-tab { padding: 8px 14px; font-size: 12px; }
    .bans-search-area .search-form { flex-direction: column !important; }
    .bans-search-area .search-button { width: 100% !important; }
    .bans-table-card .table { font-size: .82rem !important; }
    .bans-table-card .table thead th,
    .bans-table-card .table tbody td { padding: 10px 12px; }
}

/* ── old classes kept for compatibility (no-op) ── */
.bans-sub-nav, .sanctions-hero, .bans-content-box, .bans-search-bar, .bans-search-strip { display: none; }

/* ── old hero/tab classes previously defined (dead code, hidden) ── */
.bans-hero, .mutes-hero, .warns-hero, .kicks-hero,
.sanctions-hero-icon, .sanctions-hero-title, .sanctions-hero-sub,
.bans-sub-item { display: none !important; }

/* placeholder kept so the grid above isn't triggered */
.bans-type-placeholder { display: none; }


/* =============================================
   STAFF PAGE
   ============================================= */

.staff-wrapper {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    min-height: 100vh;
}

/* ── Hero ── */
.staff-hero {
    padding: 70px 20px 50px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,212,255,0.06) 0%, transparent 100%);
}
.staff-hero-content { max-width: 600px; margin: 0 auto; }
.staff-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 40px rgba(0,212,255,0.3);
    margin: 14px 0 12px;
}
.staff-subtitle { color: #aaa; font-size: 1rem; }

/* ── Layout: sidebar + content ── */
.staff-layout {
    display: flex;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px 60px;
    gap: 40px;
    align-items: flex-start;
}

/* ── Sticky Sidebar ── */
.staff-sidebar {
    width: 160px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.staff-sidebar-link {
    display: block;
    padding: 10px 14px;
    color: rgba(255,255,255,0.4);
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all .2s;
    border-left: 2px solid transparent;
}
.staff-sidebar-link:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.05); text-decoration: none !important; }
.owner-link:hover   { color: #ff4444; border-left-color: #ff4444; background: rgba(255,60,60,0.06); }
.dev-link:hover     { color: #00d4ff; border-left-color: #00d4ff; background: rgba(0,212,255,0.06); }
.manager-link:hover { color: #a855f7; border-left-color: #a855f7; background: rgba(168,85,247,0.06); }
.admin-link:hover   { color: #ff8c00; border-left-color: #ff8c00; background: rgba(255,140,0,0.06); }
.mod-link:hover     { color: #00c850; border-left-color: #00c850; background: rgba(0,200,80,0.06); }

/* ── Main content ── */
.staff-content { flex: 1; min-width: 0; }

/* ── Role section ── */
.staff-role-section {
    margin-bottom: 56px;
    scroll-margin-top: 90px;
}

.role-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.role-bar {
    width: 4px;
    height: 40px;
    border-radius: 2px;
    flex-shrink: 0;
}
.owner-bar   { background: #ff4444; box-shadow: 0 0 12px rgba(255,60,60,0.6); }
.dev-bar     { background: #00d4ff; box-shadow: 0 0 12px rgba(0,212,255,0.6); }
.manager-bar { background: #a855f7; box-shadow: 0 0 12px rgba(168,85,247,0.6); }
.admin-bar   { background: #ff8c00; box-shadow: 0 0 12px rgba(255,140,0,0.6); }
.mod-bar     { background: #00c850; box-shadow: 0 0 12px rgba(0,200,80,0.6); }

.role-title {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

/* ── Staff grid ── */
.staff-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* ── Staff card ── */
.staff-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: default;
    transition: transform .25s;
}
.staff-card:hover { transform: translateY(-6px); }

.staff-skin-wrap {
    width: 110px;
    height: 170px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}
.staff-skin {
    width: auto;
    height: 100%;
    image-rendering: pixelated;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
    transition: filter .25s;
}
.staff-card:hover .staff-skin {
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.5)) drop-shadow(0 0 12px rgba(0,212,255,0.15));
}

.staff-name {
    font-size: .95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-align: center;
}

/* Role badges */
.staff-role-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid transparent;
}
.owner-badge   { background: rgba(255,60,60,0.15);   color: #ff4444; border-color: rgba(255,60,60,0.3); }
.dev-badge     { background: rgba(0,212,255,0.12);   color: #00d4ff; border-color: rgba(0,212,255,0.3); }
.manager-badge { background: rgba(168,85,247,0.12);  color: #a855f7; border-color: rgba(168,85,247,0.3); }
.admin-badge   { background: rgba(255,140,0,0.12);   color: #ff8c00; border-color: rgba(255,140,0,0.3); }
.mod-badge     { background: rgba(0,200,80,0.12);    color: #00c850; border-color: rgba(0,200,80,0.3); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .staff-layout { flex-direction: column; gap: 24px; }
    .staff-sidebar { width: 100%; position: static; flex-direction: row; flex-wrap: wrap; gap: 6px; }
    .staff-sidebar-link { border-left: none; border-bottom: 2px solid transparent; padding: 7px 12px; }
    .owner-link:hover   { border-bottom-color: #ff4444; border-left: none; }
    .dev-link:hover     { border-bottom-color: #00d4ff; border-left: none; }
    .manager-link:hover { border-bottom-color: #a855f7; border-left: none; }
    .admin-link:hover   { border-bottom-color: #ff8c00; border-left: none; }
    .mod-link:hover     { border-bottom-color: #00c850; border-left: none; }
    .staff-title { font-size: 2.8rem; letter-spacing: 5px; }
}
@media (max-width: 480px) {
    .staff-skin-wrap { width: 85px; height: 130px; }
    .staff-title { font-size: 2.2rem; }
}

/* =============================================
   HOMEPAGE — BlinkTC Network
   ============================================= */

.home-wrapper {
    padding-top: 80px;
    overflow-x: hidden;
    position: relative;
    z-index: 2;
}

/* ── HERO ─────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 10;
}
.hero-logo {
    width: 280px;
    height: 280px;
    animation: floatLogo 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 40px rgba(0,210,255,0.3));
}
.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.hero-title span {
    color: #00d4ff;
    text-shadow: 0 0 25px rgba(0,210,255,0.7), 0 0 50px rgba(0,180,255,0.3);
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.hero-ip-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0,212,255,0.35);
    border-radius: 40px;
    padding: 12px 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 0 20px rgba(0,180,255,0.1);
}
.hero-ip-badge i { color: #00d4ff; font-size: 18px; }
.ip-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    font-family: monospace;
}
.copy-btn {
    background: rgba(0,212,255,0.15);
    border: 1px solid rgba(0,212,255,0.4);
    color: #00d4ff;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.25s ease;
}
.copy-btn:hover { background: rgba(0,212,255,0.3); box-shadow: 0 0 15px rgba(0,180,255,0.3); }
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-btn {
    padding: 13px 28px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.discord-btn { background: rgba(88,101,242,0.8); color: #fff; border: 1px solid rgba(88,101,242,0.5); }
.discord-btn:hover { background: rgba(88,101,242,1); transform: translateY(-3px); color: #fff; box-shadow: 0 8px 25px rgba(88,101,242,0.4); }
.store-btn { background: rgba(0,212,255,0.15); color: #00d4ff; border: 1px solid rgba(0,212,255,0.4); }
.store-btn:hover { background: rgba(0,212,255,0.3); transform: translateY(-3px); color: #00d4ff; box-shadow: 0 8px 25px rgba(0,180,255,0.3); }
.hero-scroll-hint {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,215,0,0.6);
    font-size: 22px;
    animation: bounce 2s ease-in-out infinite;
    transition: opacity 0.4s ease;
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(10px); }
}

/* ── SECCIONES GENERALES ───────────────────────── */
.home-section { padding: 80px 20px; position: relative; z-index: 2; }

/* Colores individuales por sección */
.welcome-section  { background: linear-gradient(180deg, #000000 0%, #0b0e1a 40%, #0d1120 100%); }
.gamemode-section { background: linear-gradient(180deg, #0d1120 0%, #100d00 40%, #161000 100%); }
.news-section     { background: linear-gradient(180deg, #161000 0%, #0d0010 40%, #100015 100%); }
.connect-section  { background: linear-gradient(180deg, #100015 0%, #001a0a 40%, #001408 100%); }

/* Separador sutil entre secciones */
.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.15), transparent);
    z-index: 1;
}
.section-container { max-width: 1050px; margin: 0 auto; text-align: center; }
.section-tag {
    display: inline-block;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.35);
    color: #00d4ff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-title { font-size: 2.4rem; font-weight: 900; color: #fff; margin-bottom: 18px; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.section-title span { color: #00d4ff; text-shadow: 0 0 20px rgba(0,180,255,0.4); }
.section-desc { font-size: 1.05rem; color: rgba(255,255,255,0.78); line-height: 1.75; max-width: 720px; margin: 0 auto 40px; }

/* ── STATS ─────────────────────────────────────── */
.welcome-stats { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 10px; }
.stat-card {
    background: rgba(11,14,26,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(100,130,255,0.2);
    border-radius: 14px;
    padding: 22px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(11,14,26,0.5);
}
.stat-card:hover { transform: translateY(-5px); border-color: rgba(100,130,255,0.5); box-shadow: 0 8px 30px rgba(50,80,200,0.2); }
.stat-card i { font-size: 24px; color: #FFD700; }
.stat-num { font-size: 1.8rem; font-weight: 900; color: #fff; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* ── MODO DE JUEGO ─────────────────────────────── */
.gamemode-card {
    background: rgba(16,13,0,0.75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 18px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 60px rgba(255,180,0,0.05);
}
.gamemode-lore {
    display: flex;
    gap: 24px;
    padding: 36px;
    background: rgba(255,215,0,0.04);
    border-bottom: 1px solid rgba(255,215,0,0.12);
    align-items: flex-start;
}
.lore-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255,215,0,0.15);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FFD700;
    margin-top: 4px;
}
.lore-text h3 { font-size: 1.4rem; font-weight: bold; color: #FFD700; margin-bottom: 14px; }
.lore-text p { color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 12px; font-size: 0.98rem; }
.lore-text p:last-child { margin-bottom: 0; }
.gold { color: #FFD700; font-weight: bold; }
.lore-quote { font-style: italic; color: rgba(255,215,0,0.7) !important; border-left: 3px solid rgba(255,215,0,0.4); padding-left: 14px !important; margin-top: 18px !important; }
.gamemode-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.gm-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s ease;
}
.gm-feature:hover { background: rgba(255,215,0,0.05); }
.gm-feature i { font-size: 22px; color: #FFD700; flex-shrink: 0; width: 28px; text-align: center; }
.gm-feature div { display: flex; flex-direction: column; gap: 3px; }
.gm-feature strong { color: #fff; font-size: 14px; }
.gm-feature span { color: rgba(255,255,255,0.55); font-size: 12px; }

/* ── NOTICIAS ──────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 20px; margin-top: 10px; text-align: left; }
.news-card {
    background: rgba(13,0,16,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(180,100,255,0.15);
    border-radius: 14px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(100,0,150,0.15);
}
.news-card:hover { border-color: rgba(200,100,255,0.4); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(150,0,200,0.2); }
.news-card.featured { border-color: rgba(255,215,0,0.3); background: rgba(255,215,0,0.05); box-shadow: 0 8px 30px rgba(255,150,0,0.1); }
.news-tag { position: absolute; top: 16px; right: 16px; background: #FFD700; color: #000; font-size: 10px; font-weight: 900; padding: 3px 10px; border-radius: 12px; letter-spacing: 1px; }
.news-date { font-size: 12px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 5px; }
.news-card h3 { font-size: 1.05rem; font-weight: bold; color: #fff; line-height: 1.3; }
.news-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.65; flex: 1; }
.news-category { font-size: 11px; color: #FFD700; display: flex; align-items: center; gap: 5px; text-transform: uppercase; letter-spacing: 1px; }

/* ── CONECTARSE ────────────────────────────────── */
.connect-steps { display: flex; align-items: flex-start; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.connect-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(0,20,10,0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,200,100,0.15);
    border-radius: 14px;
    padding: 20px 22px;
    max-width: 200px;
    text-align: left;
    flex: 1;
    min-width: 150px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,100,50,0.1);
}
.connect-step:hover { border-color: rgba(0,220,100,0.35); box-shadow: 0 8px 25px rgba(0,150,70,0.2); }
.step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(255,215,0,0.2);
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: #FFD700;
}
.step-content h4 { color: #fff; font-size: 14px; font-weight: bold; margin-bottom: 5px; }
.step-content p { color: rgba(255,255,255,0.6); font-size: 12px; line-height: 1.5; }
.connect-arrow { color: rgba(255,215,0,0.4); font-size: 18px; padding-top: 28px; flex-shrink: 0; }
.connect-ip-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,215,0,0.35);
    border-radius: 18px;
    padding: 24px 36px;
    max-width: 540px;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    flex-wrap: wrap;
}
.ip-label { font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 7px; }
.ip-label i { color: #FFD700; }
.ip-value { font-size: 1.3rem; font-weight: 900; color: #FFD700; letter-spacing: 2px; }
.ip-copy-btn {
    background: rgba(255,215,0,0.2);
    border: 1px solid rgba(255,215,0,0.4);
    color: #FFD700;
    border-radius: 22px;
    padding: 9px 20px;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 7px;
}
.ip-copy-btn:hover { background: rgba(255,215,0,0.35); transform: translateY(-2px); }
.connect-social { text-align: center; }
.connect-social p { color: rgba(255,255,255,0.55); margin-bottom: 14px; font-size: 14px; }
.social-link-btn { display: inline-flex; align-items: center; gap: 9px; padding: 12px 26px; border-radius: 30px; font-weight: bold; font-size: 14px; text-decoration: none !important; transition: all 0.3s ease; }
.social-link-btn.discord { background: rgba(88,101,242,0.8); color: #fff; border: 1px solid rgba(88,101,242,0.5); }
.social-link-btn.discord:hover { background: #5865F2; transform: translateY(-3px); color: #fff; box-shadow: 0 8px 25px rgba(88,101,242,0.4); }

/* ── FOOTER ────────────────────────────────────── */
.home-footer { text-align: center; padding: 30px 20px; border-top: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.35); font-size: 13px; position: relative; z-index: 10; }
.home-footer strong { color: #FFD700; }
.footer-sub { margin-top: 5px; font-size: 11px; }

/* =============================================
   CLAN WARS PAGE
   ============================================= */

.cw-wrapper { padding-top: 80px; overflow-x: hidden; position: relative; z-index: 2; }

/* ── Lista de Clanes ── */
.cw-clans-section {
    background: linear-gradient(180deg, rgba(0,212,255,0.05) 0%, transparent 100%);
}

.cw-no-clans {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}
.cw-no-clans i { font-size: 3rem; display: block; margin-bottom: 14px; }
.cw-no-clans p { font-size: 1rem; }

.cw-clans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.cw-clan-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .2s, border-color .2s;
}
.cw-clan-card:focus,
.cw-clan-card:active {
    outline: 2px solid #00d4ff;
}
.cw-clan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,212,255,0.3);
}

.cw-clan-top {
    background: rgba(0,212,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.cw-clan-tag {
    font-size: .85rem;
    font-weight: 700;
    color: #00d4ff;
    background: rgba(0,212,255,0.12);
    border: 1px solid rgba(0,212,255,0.25);
    border-radius: 6px;
    padding: 3px 10px;
    flex-shrink: 0;
}
.cw-clan-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    flex: 1;
}
.cw-clan-members {
    font-size: .78rem;
    color: #888;
    white-space: nowrap;
}
.cw-clan-members i { margin-right: 4px; }

.cw-clan-roles {
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cw-clan-role {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cw-clan-avatar {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.12);
    image-rendering: pixelated;
    flex-shrink: 0;
}
.cw-clan-role-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cw-role-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #888;
}
.cw-role-label i { margin-right: 4px; }
.cw-clan-role:first-child .cw-role-label { color: #ffd700; }
.cw-clan-role:last-child  .cw-role-label { color: #a855f7; }
.cw-role-name {
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

/* Hero */
.cw-hero {
    min-height: 38vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(180deg, #000 0%, #0a0010 60%, #0d0015 100%);
    position: relative;
}
.cw-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,0.4), transparent);
}
.cw-hero-content { display: flex; flex-direction: column; align-items: center; gap: 14px; z-index: 2; }
.cw-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.cw-title span { color: #00d4ff; text-shadow: 0 0 30px rgba(0,210,255,0.7); }
.cw-subtitle { color: rgba(255,255,255,0.65); font-size: 1rem; letter-spacing: 1px; }

/* Secciones */
.cw-section { padding: 70px 20px; position: relative; z-index: 2; }
.cw-ranking-section { background: linear-gradient(180deg, #0d0015 0%, #08001a 100%); }
.cw-history-section  { background: linear-gradient(180deg, #08001a 0%, #000d1a 100%); }
.cw-rules-section    { background: linear-gradient(180deg, #000d1a 0%, #001408 100%); }
.cw-container { max-width: 1000px; margin: 0 auto; text-align: center; }

/* Lore */
.cw-lore-section { background: linear-gradient(180deg, #0a0010 0%, #0d0015 100%); }
.cw-lore-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 18px;
    padding: 36px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 60px rgba(0,100,255,0.04);
    margin-top: 10px;
}
.cw-lore-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(0,212,255,0.12);
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #00d4ff;
    margin-top: 4px;
}
.cw-lore-text p {
    color: rgba(255,255,255,0.8);
    line-height: 1.85;
    margin-bottom: 14px;
    font-size: 0.98rem;
}
.cw-lore-text p:last-child { margin-bottom: 0; }
.cw-quote {
    font-style: italic;
    color: rgba(0,212,255,0.75) !important;
    border-left: 3px solid rgba(0,212,255,0.4);
    padding-left: 16px !important;
    margin-top: 20px !important;
}

/* Tabla ranking */
.cw-ranking-table {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0,212,255,0.15);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.cw-table-header {
    display: grid;
    grid-template-columns: 80px 1fr 1fr 100px 100px 100px 120px;
    padding: 14px 20px;
    background: rgba(0,212,255,0.08);
    border-bottom: 1px solid rgba(0,212,255,0.15);
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00d4ff;
}
.cw-table-row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr 100px 100px 100px 120px;
    padding: 14px 20px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s ease;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}
.cw-table-row:last-child { border-bottom: none; }
.cw-table-row:hover { background: rgba(0,212,255,0.05); }
.rank-1 { background: rgba(255,215,0,0.05); }
.rank-2 { background: rgba(180,180,180,0.04); }
.rank-3 { background: rgba(180,100,30,0.05); }

.rank-badge { font-weight: bold; font-size: 13px; display: flex; align-items: center; gap: 5px; }
.gold-rank   { color: #FFD700; }
.silver-rank { color: #c0c0c0; }
.bronze-rank { color: #cd7f32; }
.normal-rank { color: rgba(255,255,255,0.5); }

.clan-name { display: flex; align-items: center; gap: 8px; font-weight: bold; }
.clan-tag  { color: #00d4ff; font-size: 12px; font-weight: bold; }
.clan-leader { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); }
.clan-leader img { border-radius: 3px; }
.win-count  { color: #4cff7a; font-weight: bold; }
.loss-count { color: #ff5555; font-weight: bold; }
.points-badge { color: #FFD700; font-weight: bold; }
.points-badge small { color: rgba(255,215,0,0.5); font-size: 10px; }
.cw-update-note { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.35); display: flex; align-items: center; justify-content: center; gap: 6px; }

/* Historial guerras */
.cw-wars-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 10px; text-align: left; }
.cw-war-card {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.cw-war-card:hover { transform: translateY(-4px); }
.war-live    { border-color: rgba(0,255,100,0.3) !important; box-shadow: 0 0 20px rgba(0,200,80,0.1); }
.war-pending { border-color: rgba(255,180,0,0.2); }
.war-finished { border-color: rgba(0,212,255,0.15); }

.war-date { font-size: 12px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 5px; }
.war-teams { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.war-team { display: flex; align-items: center; gap: 8px; flex: 1; }
.war-team.winner .wt-name { color: #fff; font-weight: bold; }
.war-team.loser  .wt-name { color: rgba(255,255,255,0.45); }
.wt-tag  { font-size: 11px; color: #00d4ff; font-weight: bold; white-space: nowrap; }
.wt-name { font-size: 14px; font-weight: bold; color: rgba(255,255,255,0.85); }
.wt-score { font-size: 1.6rem; font-weight: 900; min-width: 30px; text-align: center; }
.wt-score.win  { color: #4cff7a; }
.wt-score.loss { color: #ff5555; }
.war-vs { font-size: 12px; font-weight: bold; color: rgba(255,255,255,0.3); padding: 0 6px; }
.war-map { font-size: 12px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 5px; }

.war-status { font-size: 11px; font-weight: bold; padding: 4px 12px; border-radius: 12px; width: fit-content; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 5px; }
.war-status.ended   { background: rgba(0,212,255,0.1);  color: #00d4ff; }
.war-status.live    { background: rgba(0,255,100,0.15); color: #4cff7a; }
.war-status.live i  { animation: pulse 1s ease-in-out infinite; }
.war-status.pending { background: rgba(255,180,0,0.1);  color: #FFB300; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Reglas */
.cw-rules-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 10px; margin-bottom: 35px; text-align: left; }
.cw-rule-card {
    background: rgba(0,20,10,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,180,80,0.15);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.cw-rule-card:hover { border-color: rgba(0,220,100,0.35); transform: translateY(-4px); }
.rule-icon { font-size: 24px; color: #00d4ff; }
.cw-rule-card h4 { color: #fff; font-size: 15px; font-weight: bold; }
.cw-rule-card p  { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.65; }
.cyan     { color: #00d4ff; }
.red-text { color: #ff5555; }

/* Join box */
.cw-join-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0,212,255,0.25);
    border-radius: 16px;
    padding: 24px 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 40px rgba(0,150,255,0.05);
}
.cw-join-box > i { font-size: 32px; color: #00d4ff; flex-shrink: 0; }
.cw-join-box div { flex: 1; }
.cw-join-box h3 { color: #fff; font-size: 1.1rem; font-weight: bold; margin-bottom: 4px; }
.cw-join-box p  { color: rgba(255,255,255,0.55); font-size: 13px; margin: 0; }
.cw-join-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(88,101,242,0.8);
    color: #fff;
    border: 1px solid rgba(88,101,242,0.5);
    border-radius: 25px;
    padding: 12px 22px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.cw-join-btn:hover { background: #5865F2; transform: translateY(-2px); color: #fff; box-shadow: 0 8px 25px rgba(88,101,242,0.4); }

/* =============================================
   CLAN PAGE (clan.php)
   ============================================= */

.clan-page-wrapper {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    min-height: 100vh;
}

/* ── Hero ── */
.clan-hero {
    padding: 60px 20px 50px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,212,255,0.07) 0%, transparent 100%);
    position: relative;
}
.clan-hero-inner { max-width: 700px; margin: 0 auto; }

.clan-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    text-decoration: none !important;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 24px;
    padding: 7px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: all .2s;
}
.clan-back-btn:hover { color: #fff; border-color: rgba(0,212,255,0.4); background: rgba(0,212,255,0.06); text-decoration: none !important; }

.clan-hero-tag {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00d4ff;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 8px;
    display: inline-block;
    padding: 5px 16px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.clan-hero-name {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 0 40px rgba(0,212,255,0.25);
    margin: 0 0 18px;
}
.clan-hero-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #888;
    font-size: .88rem;
}
.clan-hero-meta span { display: flex; align-items: center; gap: 7px; }
.clan-hero-meta i { color: #00d4ff; }

/* ── Layout ── */
.clan-layout {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* ── Section wrapper ── */
.clan-section {}
.clan-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.clan-section-bar {
    width: 4px;
    height: 32px;
    border-radius: 2px;
    background: #00d4ff;
    box-shadow: 0 0 10px rgba(0,212,255,0.6);
    flex-shrink: 0;
}
.clan-section-title {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.clan-section-title i { color: #00d4ff; font-size: 1rem; }

/* ── Lore ── */
.clan-lore-section .clan-section-bar { background: #a855f7; box-shadow: 0 0 10px rgba(168,85,247,0.6); }
.clan-lore-body {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 28px 32px;
    line-height: 1.85;
    color: rgba(255,255,255,0.75);
    font-size: .97rem;
}
.clan-lore-body p { margin-bottom: 14px; }
.clan-lore-body p:last-child { margin-bottom: 0; }
.clan-lore-body strong { color: #fff; }
.clan-lore-body em { color: #00d4ff; font-style: normal; }
.clan-lore-body .cw-quote {
    border-left: 3px solid #00d4ff;
    padding: 10px 20px;
    margin: 14px 0;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    background: rgba(0,212,255,0.05);
    border-radius: 0 8px 8px 0;
}

/* ── Liderazgo ── */
.clan-leaders-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.clan-leader-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform .25s;
}
.clan-leader-card:hover { transform: translateY(-6px); }

.clan-leader-skin-wrap {
    width: 100px;
    height: 160px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.clan-leader-skin {
    height: 100%;
    width: auto;
    image-rendering: pixelated;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
    transition: filter .25s;
}
.clan-leader-card:hover .clan-leader-skin {
    filter: drop-shadow(0 10px 24px rgba(0,0,0,0.5)) drop-shadow(0 0 14px rgba(0,212,255,0.2));
}
.clan-leader-info { text-align: center; }
.clan-leader-name { font-size: .95rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-top: 4px; }

/* Role badges */
.clan-leader-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid transparent;
}
.leader-badge    { background: rgba(255,215,0,0.12);   color: #ffd700; border-color: rgba(255,215,0,0.3); }
.subleader-badge { background: rgba(168,85,247,0.12);  color: #a855f7; border-color: rgba(168,85,247,0.3); }
.camp-badge      { background: rgba(0,212,255,0.12);   color: #00d4ff; border-color: rgba(0,212,255,0.3); }
.def-badge       { background: rgba(0,200,80,0.12);    color: #00c850; border-color: rgba(0,200,80,0.3); }
.atk-badge       { background: rgba(255,60,60,0.12);   color: #ff4444; border-color: rgba(255,60,60,0.3); }

/* ── Miembros ── */
.clan-member-count {
    background: rgba(0,212,255,0.12);
    color: #00d4ff;
    border: 1px solid rgba(0,212,255,0.25);
    border-radius: 20px;
    font-size: .75rem;
    padding: 2px 10px;
    font-weight: 700;
    margin-left: 4px;
}
.clan-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}
.clan-member-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 10px 14px;
    transition: all .2s;
}
.clan-member-card:hover { background: rgba(0,212,255,0.06); border-color: rgba(0,212,255,0.2); }
.clan-member-avatar {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    image-rendering: pixelated;
    border: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.clan-member-name { font-size: .87rem; font-weight: 600; color: rgba(255,255,255,0.8); }

/* ── Responsive ── */
@media (max-width: 600px) {
    .clan-hero-name { font-size: 2rem; letter-spacing: 2px; }
    .clan-lore-body { padding: 20px; }
    .clan-leader-skin-wrap { width: 80px; height: 130px; }
}

/* =============================================
   TERMS PAGE
   ============================================= */

.terms-wrapper { padding-top: 80px; overflow-x: hidden; position: relative; z-index: 2; }

.terms-hero {
    min-height: 32vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(180deg, #000 0%, #000d0a 60%, #001008 100%);
    position: relative;
}
.terms-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
}
.terms-hero-content { display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 2; }
.terms-title { font-size: 3rem; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 3px; }
.terms-title span { color: #00d4ff; text-shadow: 0 0 25px rgba(0,210,255,0.6); }
.terms-subtitle { color: rgba(255,255,255,0.45); font-size: 13px; letter-spacing: 1px; }

.terms-section {
    background: linear-gradient(180deg, #001008 0%, #000d14 50%, #0a000f 100%);
    padding: 60px 20px 80px;
    position: relative;
    z-index: 2;
}

.terms-container {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: flex-start;
}

/* Índice lateral */
.terms-index {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,212,255,0.15);
    border-radius: 14px;
    padding: 20px;
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.terms-index-title {
    color: #00d4ff;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.terms-index a {
    color: rgba(255,255,255,0.5);
    text-decoration: none !important;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}
.terms-index a:hover {
    color: #00d4ff;
    background: rgba(0,212,255,0.07);
    border-left-color: rgba(0,212,255,0.4);
    padding-left: 14px;
}

/* Bloques de contenido */
.terms-content { display: flex; flex-direction: column; gap: 8px; }

.terms-block {
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 28px 30px;
    transition: border-color 0.3s ease;
}
.terms-block:hover { border-color: rgba(0,212,255,0.2); }

.terms-block h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.terms-num {
    background: rgba(0,212,255,0.12);
    border: 1px solid rgba(0,212,255,0.3);
    color: #00d4ff;
    font-size: 11px;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    flex-shrink: 0;
}
.terms-block p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 12px;
}
.terms-block p:last-child { margin-bottom: 0; }
.terms-link { color: #00d4ff; text-decoration: underline; }
.terms-link:hover { color: #fff; }

/* Listas */
.terms-list { list-style: none; padding: 0; margin: 12px 0; display: flex; flex-direction: column; gap: 8px; }
.terms-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.terms-list li i { color: #4cff7a; flex-shrink: 0; margin-top: 2px; }
.terms-list.red li i { color: #ff5555; }

/* Alertas */
.terms-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 14px 0;
    font-size: 14px;
    line-height: 1.6;
}
.terms-alert.danger { background: rgba(255,50,50,0.1); border: 1px solid rgba(255,80,80,0.25); color: rgba(255,200,200,0.9); }
.terms-alert.danger i { color: #ff5555; flex-shrink: 0; margin-top: 2px; font-size: 16px; }
.terms-alert.info { background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); color: rgba(200,240,255,0.85); }
.terms-alert.info i { color: #00d4ff; flex-shrink: 0; margin-top: 2px; font-size: 16px; }

/* Sanciones */
.terms-sanctions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0;
}
.sanction-card {
    flex: 1;
    min-width: 100px;
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.2s ease;
}
.sanction-card:hover { transform: translateY(-3px); }
.sanction-card i  { font-size: 20px; }
.sanction-card strong { font-size: 12px; color: #fff; display: block; }
.sanction-card span   { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.4; }
.sanction-card.warn    { border-color: rgba(255,200,0,0.2);  } .sanction-card.warn i    { color: #FFD700; }
.sanction-card.mute    { border-color: rgba(100,150,255,0.2); } .sanction-card.mute i    { color: #7090ff; }
.sanction-card.kick    { border-color: rgba(255,150,0,0.2);  } .sanction-card.kick i    { color: #ff9500; }
.sanction-card.ban     { border-color: rgba(255,80,80,0.2);  } .sanction-card.ban i     { color: #ff5555; }
.sanction-card.permban { border-color: rgba(180,0,0,0.3);    } .sanction-card.permban i { color: #cc0000; }

/* Responsive */
@media (max-width: 768px) {
    .terms-container { grid-template-columns: 1fr; }
    .terms-index { position: static; }
    .terms-title { font-size: 2rem; }
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 900px) {
    .gamemode-features { grid-template-columns: repeat(2,1fr); }
    .news-grid { grid-template-columns: 1fr; }
    .cw-rules-grid { grid-template-columns: repeat(2,1fr); }
    .cw-table-header, .cw-table-row { grid-template-columns: 60px 1fr 1fr 80px 80px; }
    .cw-table-header span:nth-child(6),
    .cw-table-row span:nth-child(6) { display: none; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .gamemode-lore { flex-direction: column; padding: 22px; }
    .gamemode-features { grid-template-columns: 1fr 1fr; }
    .connect-steps { flex-direction: column; align-items: center; }
    .connect-arrow { display: none; }
    .connect-step { max-width: 100%; width: 100%; }
    .connect-ip-box { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .gamemode-features { grid-template-columns: 1fr; }
    .hero-ip-badge { flex-direction: column; gap: 8px; }
}

/* ══════════════════════════════════════════════════════
   SUPPORT PAGE
══════════════════════════════════════════════════════ */

.support-wrapper {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

/* ── Hero ── */
.support-hero {
    padding: 80px 20px 60px;
    text-align: center;
}
.support-hero-content { max-width: 700px; margin: 0 auto; }
.support-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 12px 0 16px;
    text-shadow: 0 0 30px rgba(0,212,255,0.5);
}
.support-title span { color: #00d4ff; }
.support-subtitle { color: #aaa; font-size: 1.1rem; }

/* ── Generic section container ── */
.support-section { padding: 60px 20px; }
.support-container { max-width: 1000px; margin: 0 auto; }

/* ── Quick access grid ── */
.support-quick-section { background: linear-gradient(180deg,rgba(0,212,255,0.05) 0%,transparent 100%); }
.support-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.support-quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 12px;
    padding: 24px 16px;
    text-decoration: none;
    color: #fff;
    transition: all .25s;
    text-align: center;
}
.support-quick-card:hover {
    background: rgba(0,212,255,0.1);
    border-color: #00d4ff;
    transform: translateY(-4px);
    color: #fff;
    text-decoration: none;
}
.support-quick-card i { font-size: 1.8rem; color: #00d4ff; }
.support-quick-card strong { font-size: .95rem; }
.support-quick-card span { font-size: .8rem; color: #aaa; }

/* ── FAQ ── */
.support-faq-section { background: linear-gradient(180deg,rgba(30,30,60,0.5) 0%,rgba(10,10,30,0.3) 100%); }
.faq-list { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item.open { border-color: rgba(0,212,255,0.4); }
.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: .97rem;
    user-select: none;
    transition: background .2s;
}
.faq-question:hover { background: rgba(0,212,255,0.06); }
.faq-arrow {
    color: #00d4ff;
    transition: transform .25s;
    flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(90deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s;
    padding: 0 20px;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 20px 16px;
}
.faq-answer p { color: #ccc; line-height: 1.7; font-size: .93rem; }
.faq-answer code {
    background: rgba(0,212,255,0.15);
    color: #00d4ff;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

/* ── Info card (report / appeal) ── */
.support-report-section { background: linear-gradient(180deg,rgba(255,60,60,0.05) 0%,transparent 100%); }
.support-appeal-section { background: linear-gradient(180deg,rgba(255,165,0,0.05) 0%,transparent 100%); }

.support-info-card {
    display: flex;
    gap: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 32px;
    margin-top: 28px;
    align-items: flex-start;
}
.support-info-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.report-icon { background: rgba(255,60,60,0.15); color: #ff4444; border: 2px solid rgba(255,60,60,0.3); }
.appeal-icon { background: rgba(255,165,0,0.15); color: #ffa500; border: 2px solid rgba(255,165,0,0.3); }
.support-info-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.support-info-body > p { color: #bbb; font-size: .93rem; margin-bottom: 20px; }

/* Steps */
.support-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.support-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.support-step-num {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg,#00d4ff,#0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
    color: #000;
}
.support-step strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.support-step p { color: #aaa; font-size: .87rem; margin: 0; }
.support-step code {
    background: rgba(0,212,255,0.15);
    color: #00d4ff;
    padding: 1px 5px;
    border-radius: 3px;
    font-family: monospace;
}

/* Appeal rules */
.appeal-rules { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.appeal-rule {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
    padding: 8px 12px;
    border-radius: 8px;
}
.appeal-rule.allowed { background: rgba(0,200,80,0.08); color: #ccc; }
.appeal-rule.allowed i { color: #00c850; }
.appeal-rule.denied { background: rgba(255,60,60,0.08); color: #ccc; }
.appeal-rule.denied i { color: #ff4444; }

.appeal-include {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
}
.appeal-include-title {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 10px;
    color: #ffa500;
}
.appeal-include-title i { margin-right: 6px; }
.appeal-include ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.appeal-include li { color: #bbb; font-size: .9rem; padding-left: 14px; position: relative; }
.appeal-include li::before { content: '›'; position: absolute; left: 0; color: #ffa500; }

/* Action buttons */
.support-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: all .2s;
}
.report-btn { background: linear-gradient(135deg,#7289da,#5b6eae); color: #fff; }
.report-btn:hover { background: linear-gradient(135deg,#8a9fe8,#6d82c0); color: #fff; text-decoration: none; transform: translateY(-2px); }
.appeal-btn { background: linear-gradient(135deg,#7289da,#5b6eae); color: #fff; }
.appeal-btn:hover { background: linear-gradient(135deg,#8a9fe8,#6d82c0); color: #fff; text-decoration: none; transform: translateY(-2px); }

/* ── Server status ── */
.support-status-section { background: linear-gradient(180deg,rgba(0,200,80,0.05) 0%,transparent 100%); }
.server-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 16px;
}
.server-status-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 18px 20px;
    transition: border-color .2s;
}
.server-status-card.online { border-color: rgba(0,200,80,0.3); }
.server-status-card.offline { border-color: rgba(255,60,60,0.3); }
.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}
.server-status-card.online .status-indicator { background: #00c850; box-shadow: 0 0 8px rgba(0,200,80,0.6); }
.server-status-card.offline .status-indicator { background: #ff4444; box-shadow: 0 0 8px rgba(255,60,60,0.6); }
@keyframes pulse-dot {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: .7; }
}
.status-info { flex: 1; }
.status-info strong { display: block; font-size: .95rem; }
.status-info span { font-size: .82rem; color: #888; }
.status-badge {
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}
.online-badge { background: rgba(0,200,80,0.15); color: #00c850; }
.online-badge i { font-size: .6rem; }
.offline-badge { background: rgba(255,60,60,0.15); color: #ff4444; }
.status-note { color: #888; font-size: .87rem; }
.status-note i { color: #00d4ff; margin-right: 6px; }

/* ── Contact ── */
.support-contact-section { background: linear-gradient(180deg,rgba(114,137,218,0.06) 0%,transparent 100%); }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 28px;
    margin-bottom: 24px;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 24px;
    text-decoration: none;
    color: #fff;
    transition: all .25s;
}
.contact-card:hover { transform: translateY(-4px); text-decoration: none; color: #fff; }
.contact-card i { font-size: 2rem; flex-shrink: 0; }
.discord-card i { color: #7289da; }
.discord-card:hover { border-color: rgba(114,137,218,0.5); background: rgba(114,137,218,0.08); }
.twitter-card i { color: #1da1f2; }
.twitter-card:hover { border-color: rgba(29,161,242,0.5); background: rgba(29,161,242,0.08); }
.staff-card { cursor: default; }
.staff-card i { color: #ffa500; }
.staff-card:hover { border-color: rgba(255,165,0,0.4); background: rgba(255,165,0,0.06); transform: none; }
.contact-card div strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.contact-card div span { display: block; font-size: .85rem; color: #aaa; margin-bottom: 6px; line-height: 1.5; }
.contact-card div em { font-size: .8rem; color: #666; font-style: normal; }
.contact-card code {
    background: rgba(255,165,0,0.15);
    color: #ffa500;
    padding: 1px 5px;
    border-radius: 3px;
    font-family: monospace;
    font-size: .85em;
}
.contact-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,60,60,0.07);
    border: 1px solid rgba(255,60,60,0.25);
    border-radius: 10px;
    padding: 16px 20px;
}
.contact-warning i { color: #ff6b6b; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-warning p { color: #ccc; font-size: .9rem; margin: 0; line-height: 1.6; }

/* ── Responsive support ── */
@media (max-width: 768px) {
    .support-title { font-size: 2.2rem; }
    .support-info-card { flex-direction: column; }
    .support-info-icon { align-self: center; }
    .support-quick-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── Partidas en curso (clanwars) ── */
.cw-active-games .cw-container { max-width: 900px; }

.cw-active-game-card {
    background: linear-gradient(145deg, rgba(20,20,30,0.95), rgba(10,10,15,0.98));
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 0 40px rgba(255,215,0,0.1), inset 0 0 60px rgba(0,0,0,0.5);
}

.cw-game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cw-game-map {
    color: #aaa;
    font-size: 0.95rem;
}

.cw-game-map i { margin-right: 6px; color: #ffd700; }

.cw-game-phase {
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.cw-game-teams {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.cw-game-team {
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-color-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.team-red .team-color-bar { background: linear-gradient(90deg, #e74c3c, #c0392b); }
.team-blue .team-color-bar { background: linear-gradient(90deg, #3498db, #2980b9); }
.team-green .team-color-bar { background: linear-gradient(90deg, #2ecc71, #27ae60); }
.team-yellow .team-color-bar { background: linear-gradient(90deg, #f1c40f, #f39c12); }

.team-red .team-name { color: #e74c3c; }
.team-blue .team-name { color: #3498db; }
.team-green .team-name { color: #2ecc71; }
.team-yellow .team-name { color: #f1c40f; }

.cw-game-team .team-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.team-nexus {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.team-nexus i {
    color: #9b59b6;
    margin-right: 4px;
}

.team-players {
    color: #888;
    font-size: 0.85rem;
}

.team-players i { margin-right: 4px; }

.team-player-list {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

.player-tag {
    background: rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    color: #aaa;
}

.cw-game-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.status-badge.live {
    background: rgba(46,204,113,0.2);
    color: #2ecc71;
    border: 1px solid rgba(46,204,113,0.4);
}

.status-badge.live i {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.cw-spectate-btn {
    background: linear-gradient(90deg, #9b59b6, #8e44ad);
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cw-spectate-btn:hover {
    background: linear-gradient(90deg, #8e44ad, #9b59b6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(155,89,182,0.4);
}

@media (max-width: 768px) {
    .cw-game-teams { grid-template-columns: repeat(2, 1fr); }
}

/* ── BANS PAGE ── */
.bans-page-wrapper {
    min-height: 100vh;
    padding: 0 0 60px 0;
}

.bans-hero-section {
    background: linear-gradient(180deg, rgba(20,15,30,0.95) 0%, rgba(10,10,15,0.98) 100%);
    padding: 50px 20px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bans-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 10px 0 8px;
    letter-spacing: -0.5px;
}

.bans-hero-title span { color: #e74c3c; }

.bans-hero-sub {
    color: #888;
    font-size: 1rem;
    margin-bottom: 25px;
}

.bans-tabs-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bans-tab {
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    color: #888;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s;
}

.bans-tab:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.bans-tab.active {
    background: rgba(231,76,60,0.15);
    border-color: rgba(231,76,60,0.4);
    color: #e74c3c;
}

.bans-content-section {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bans-main-container {
    background: rgba(20,20,28,0.9);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px;
}

.bans-search-area {
    margin-bottom: 20px;
}

.bans-table-card {
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    overflow: hidden;
}

.bans-table-header {
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bans-table-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.bans-table-title i {
    margin-right: 8px;
    color: #e74c3c;
}

.bans-empty {
    text-align: center;
    padding: 50px 20px;
    color: #888;
}

.bans-empty i {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 15px;
}

.bans-empty p {
    font-size: 1.1rem;
}

.table-responsive {
    overflow-x: auto;
}

.bans-pager {
    padding: 16px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bans-table {
    width: 100%;
    border-collapse: collapse;
}

.bans-table th {
    text-align: left;
    padding: 14px 16px;
    color: #888;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bans-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: #ccc;
    font-size: 0.9rem;
}

.bans-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.bans-table .player-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bans-table .player-cell img {
    width: 28px;
    height: 28px;
    border-radius: 4px;
}

.bans-table .reason-cell {
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bans-table .expired-cell {
    color: #e74c3c;
}

.bans-table .active-cell {
    color: #2ecc71;
}

.bans-pager a,
.bans-pager span {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 3px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
}

.bans-pager a {
    background: rgba(255,255,255,0.08);
    color: #aaa;
}

.bans-pager a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.bans-pager span.current {
    background: rgba(231,76,60,0.2);
    color: #e74c3c;
    font-weight: 600;
}

@media (max-width: 768px) {
    .bans-hero-title { font-size: 2rem; }
    .bans-tab { padding: 8px 14px; font-size: 0.8rem; }
    .bans-table th, .bans-table td { padding: 10px 8px; font-size: 0.8rem; }
}

/* ── STORE PAGE ── */
.store-page-wrapper {
    min-height: 100vh;
    padding-bottom: 60px;
}

.store-hero-section {
    background: linear-gradient(180deg, rgba(20,15,30,0.97) 0%, rgba(10,10,15,0.98) 100%);
    padding: 60px 20px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.store-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(155,89,182,0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.store-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin: 15px 0 10px;
    letter-spacing: -1px;
}

.store-hero-title span { color: #9b59b6; }

.store-hero-sub {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.store-discount-badge {
    display: inline-block;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    animation: pulse 2s ease-in-out infinite;
}

.store-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.store-categories-section {
    background: rgba(20,20,28,0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.store-categories-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.store-category-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    text-decoration: none;
    color: #888;
    font-weight: 600;
    transition: all 0.25s;
}

.store-category-card:hover, .store-category-card.active {
    background: rgba(155,89,182,0.15);
    border-color: rgba(155,89,182,0.4);
    color: #fff;
    transform: translateY(-2px);
}

.store-category-card i { font-size: 1.1rem; }

.store-products-section {
    padding: 60px 20px;
}

.store-bg-alt {
    background: rgba(15,15,20,0.5);
}

.store-section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.store-section-title span { color: #9b59b6; }

.store-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.store-product-card {
    background: rgba(25,25,35,0.95);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.store-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(155,89,182,0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.store-product-card.featured {
    border-color: rgba(155,89,182,0.5);
    box-shadow: 0 0 30px rgba(155,89,182,0.15);
}

.store-product-card.small {
    padding: 25px 20px;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.product-icon.coins-icon { background: linear-gradient(135deg, #f1c40f, #f39c12); }
.product-icon.keys-icon { background: linear-gradient(135deg, #3498db, #2980b9); }

.product-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #fff;
}

.product-desc {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    color: #aaa;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.product-features li i {
    color: #2ecc71;
    margin-right: 10px;
}

.product-price {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.price-period {
    color: #666;
    font-size: 0.9rem;
}

.price-discount {
    background: rgba(46,204,113,0.2);
    color: #2ecc71;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 8px;
}

.product-buy-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 25px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s;
}

.product-buy-btn:hover {
    background: rgba(155,89,182,0.3);
    border-color: rgba(155,89,182,0.5);
    transform: translateY(-2px);
}

.product-buy-btn.featured-btn {
    background: linear-gradient(90deg, #9b59b6, #8e44ad);
    border-color: transparent;
}

.product-buy-btn.featured-btn:hover {
    background: linear-gradient(90deg, #8e44ad, #9b59b6);
}

.store-faq-section {
    padding: 60px 20px;
    background: rgba(15,15,20,0.5);
}

.store-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.store-faq-item {
    background: rgba(25,25,35,0.8);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.05);
}

.store-faq-item h3 {
    color: #9b59b6;
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-faq-item p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .store-hero-title { font-size: 2.2rem; }
    .store-products-grid { grid-template-columns: 1fr; }
    .store-category-card { padding: 10px 16px; font-size: 0.85rem; }
}

