/* Estilos para noticias y contenido dinámico */
/* Estilos para funcionalidad de Leer más */
.news-content-short,
.news-content-full {
    transition: all 0.3s ease;
    line-height: 1.6;
}

.read-more {
    color: #ff6600;
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff8533;
}

.server-details strong {
    color: #ff6600;
    font-weight: bold;
}

/* FORZAR ESPACIADO MÍNIMO - REGLAS AGRESIVAS */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    padding: 10px !important;
    background: rgba(20, 10, 5, 0.95);
    border: 1px solid #674220;
    border-radius: 5px;
    position: relative;
    top: -10px !important;
}

/* Eliminar TODOS los márgenes de elementos antes de paginación */
.server-info-box:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
}

.game-description:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
}

/* Forzar center-column a no tener espacio extra */
.center-column {
    gap: 10px !important;
}

.center-column > *:last-child:not(.pagination) {
    margin-bottom: 0 !important;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    background: #331a0e;
    color: #e8c88a;
    text-decoration: none;
    border: 1px solid #674220;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-size: 14px;
    min-width: 35px;
    text-align: center;
}

.pagination a:hover {
    background: #90300a;
    color: #fff;
    border-color: #ff6600;
}

.pagination a.active {
    background: #ff6600;
    color: #fff;
    border-color: #ff6600;
    font-weight: bold;
}

.pagination span {
    color: #999;
    padding: 8px 4px;
    font-size: 14px;
}

/* Ajustes para responsive */
@media (max-width: 768px) {
    .server-details h3 {
        font-size: 16px;
    }
    
    .server-details p {
        font-size: 14px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .pagination a {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 30px;
    }
}
