
/* Home Ranking Box */
.home-ranking-box {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #550000;
    -webkit-box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    -moz-box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.home-ranking-box .rankings-table {
    margin-top: 10px;
}

.home-news-block-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.home-news-block-header > [class*="col-"] {
    float: none;
    width: 100%;
    text-align: center;
}
.home-news-block .home-news-block-header h2 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 2px;
    margin: 0;
    transition: transform 0.3s ease;
}
.home-news-block .home-news-block-header a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 0;
    text-decoration: none !important;
    cursor: pointer;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}
.home-news-block .home-news-block-header a:hover h2 {
    transform: scale(1.1);
}

.home-news-block .we-card--news {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    border: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    transition: background-size 0.35s ease, background-position 0.35s ease;
    filter: brightness(0.8);
}
.home-news-block .we-card--news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
    transition: background 0.35s ease;
}
.home-news-block .we-card--news:hover {
    background-size: 105% 105%;
}
.home-news-block .we-card--news:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.75) 10%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.home-news-block .we-card-body--news {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px !important;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.home-news-block .we-card--news .we-card-title a {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
}
.home-news-block .we-card--news .we-card-summary {
    font-size: 14px;
    color: #cccccc;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
    margin: 8px 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-news-block .we-card--news .we-card-meta {
    font-size: 12px;
    color: #ffcc00;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
}
.home-news-block .we-card-button--news {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    background: transparent !important;
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none !important;
}
.home-news-block .we-card-button--news:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

/* Event Schedule Modern Gamer */
.event-schedule-box {
    background: #0d0d0d;
    border: 1px solid #550000;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.event-schedule-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff9e00, transparent);
}

.event-schedule-title {
    text-align: center;
    color: #ff9e00;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    border-bottom: 1px solid #ff9e00;
    padding-bottom: 15px;
}

.event-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 0, 0, 0.4);
    border: 1px solid #330000;
    border-left: 3px solid #ff0000;
    padding: 12px 15px;
    margin-bottom: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.event-card:last-child {
    margin-bottom: 0;
}

.event-card:hover {
    background: rgba(255, 0, 0, 0.1);
    border-left-color: #ff9e00;
    border-color: #ff9e00;
    transform: translateX(5px);
    box-shadow: -5px 0 15px rgba(255, 0, 0, 0.2);
}

.event-info {
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.event-name {
    color: #ff9e00;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.event-card:hover .event-name {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.event-status {
    color: #888;
    font-size: 10px;
    text-transform: uppercase;
}

.event-time {
    text-align: right;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.event-timer {
    color: #ffcc00; /* Dorado brillante */
    font-weight: bold;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px rgba(255, 158, 0, 0.5);
}

.event-next {
    color: #666;
    font-size: 10px;
    margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .event-card {
        padding: 10px;
    }
    .event-name {
        font-size: 12px;
    }
    .event-timer {
        font-size: 13px;
    }
}

/* Modern Gamer Rankings */
.ranking-box {
    background: #0d0d0d;
    border: 1px solid #550000;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}
.home-rankings-row {
    margin-top: 20px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.home-rankings-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}
.home-rankings-row .ranking-box {
    width: 100%;
}
.home-rankings-row .castle-siege-home {
    width: 100%;
    flex: 1;
}

.ranking-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff9e00, transparent);
}

.ranking-title {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9e00;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
    min-height: 40px;
    text-shadow: 0 0 5px rgba(255, 158, 0, 0.5);
    border-bottom: 1px solid #330000;
    padding: 10px 10px 15px;
}

.ranking-header-row {
    display: flex;
    padding: 5px 10px 10px 10px;
    border-bottom: 1px solid #550000;
    margin-bottom: 10px;
    background: rgba(50, 0, 0, 0.5); /* Fondo rojo oscuro para cabecera */
    border-radius: 4px;
    color: #ffcc00; /* Texto dorado */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ranking-col-rank { width: 30px; text-align: center; }
.ranking-col-name { flex-grow: 1; padding-left: 10px; }
.ranking-col-class { width: 80px; text-align: center; }
.ranking-col-stat { width: 60px; text-align: right; }

.ranking-card {
    display: flex;
    align-items: center;
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 10px;
    margin-bottom: 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
}

.ranking-card:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateX(2px);
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

/* Rank Specific Styles */
.rank-1 {
    border: 1px solid #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}
.rank-1 .ranking-col-rank { 
    font-size: 0 !important; /* Oculta el número */
    line-height: 0;
}
.rank-1 .ranking-col-rank::before {
    content: '🏆'; /* Icono de Copa */
    font-size: 20px;
    line-height: 20px;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    display: inline-block;
}
.rank-1:hover { background: rgba(255, 215, 0, 0.1); border-color: #ffd700; }

.rank-2 {
    border: 1px solid #c0c0c0;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.1);
}
.rank-2 .ranking-col-rank { 
    font-size: 0 !important;
    line-height: 0;
}
.rank-2 .ranking-col-rank::before {
    content: '🥇'; /* Medalla de Oro */
    font-size: 20px;
    line-height: 20px;
    color: #ffd700; /* Dorado para la medalla de oro */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    display: inline-block;
}
.rank-2:hover { background: rgba(192, 192, 192, 0.1); border-color: #c0c0c0; }

.rank-3 {
    border: 1px solid #cd7f32;
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.1);
}
.rank-3 .ranking-col-rank { 
    font-size: 0 !important;
    line-height: 0;
}
.rank-3 .ranking-col-rank::before {
    content: '🥈'; /* Medalla de Plata */
    font-size: 20px;
    line-height: 20px;
    color: #e0e0e0; /* Plata */
    text-shadow: 0 0 10px rgba(224, 224, 224, 0.8);
    display: inline-block;
}
.rank-3:hover { background: rgba(205, 127, 50, 0.1); border-color: #cd7f32; }

.rank-4 {
    border: 1px solid #cd7f32; /* Bronce para el #4 también */
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.1);
}
.rank-4 .ranking-col-rank { 
    font-size: 0 !important;
    line-height: 0;
}
.rank-4 .ranking-col-rank::before {
    content: '🥉'; /* Medalla de Bronce */
    font-size: 20px;
    line-height: 20px;
    color: #cd7f32; /* Bronce */
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.8);
    display: inline-block;
}
.rank-4:hover { background: rgba(205, 127, 50, 0.1); border-color: #cd7f32; }

/* Content Styles */
.ranking-name {
    color: #ffcc00; /* Dorado suave */
    font-weight: 600;
    font-size: 12px;
}
.ranking-card:hover .ranking-name { color: #fff; text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }

.ranking-class {
    color: #888;
    font-size: 11px;
}

.ranking-stat {
    color: #ff0000; /* Rojo vibrante para Stats */
    font-weight: bold;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.game-button {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(180deg, #550000 0%, #330000 100%); /* Rojo oscuro */
    border: 1px solid #770000;
    color: #ccc;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-top: 10px;
    float: right;
}

.game-button:hover {
    color: #fff;
    border-color: #ff0000;
    background: linear-gradient(180deg, #ff0000 0%, #990000 100%);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    text-decoration: none;
}

/* =========================================
   SERVER INFO - PROFESSIONAL LIST STYLE
   ========================================= */

/* Título del módulo Server Info */
.server-info-title {
    text-align: center;
    color: #00ff00; /* Rojo neón */
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    padding-bottom: 10px;
}

/* Contenedor principal de Online y Máximo */
.online-stats-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    margin: 0 10px 8px;
    gap: 12px;
}

.stat-box {
    flex: 1;
}

.stat-label {
    display: block;
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    font-family: 'Courier New', monospace;
}

.online-color {
    color: #00ff00; /* Verde neón */
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* Lista de detalles descriptivos */
.server-details-list {
    padding: 0 15px 15px;
}

.detail-row {
    margin-bottom: 14px;
    border-left: 2px solid #ff0000; /* Línea Roja de acento */
    padding-left: 12px;
    transition: all 0.3s ease;
}

.detail-row:hover {
    border-left: 2px solid #ffcc00; /* Dorado al hover */
    background: rgba(255, 0, 0, 0.05);
}

.detail-main {
    font-weight: bold;
    font-size: 13px;
    color: #ffcc00; /* Dorado vibrante para títulos */
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-sub {
    font-size: 11px;
    color: #ccc; /* Gris claro para descripciones */
    margin-top: 2px;
    line-height: 1.3;
}

/* Fila de Tiempos (Relojes) */
.time-row {
    border-left: none !important;
    padding-left: 0 !important;
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px !important;
    border-radius: 4px;
    margin-top: 15px;
    border: 1px solid #330000;
}
.time-row-compact {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}
.time-row-compact .time-item {
    font-size: 10px;
}

.time-item {
    font-size: 11px;
    color: #999;
}

.time-item strong {
    color: #ccc;
    text-transform: uppercase;
    margin-right: 5px;
}

.time-item span {
    color: #ffcc0f; /* Cian suave para Server Time */
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

#localTime {
    color: #ffcc00; /* Dorado para Tu Hora */
}

/* Barra de progreso y porcentaje */
.progress-bar-container {
    background: #0d0d0d; /* Fondo de la barra */
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #330000;
}

.progress-bar {
    height: 100%;
    transition: width 1s ease-in-out;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ff00; /* Resplandor verde */
    background: #00ff00; /* Verde neón */
}

.progress-percent {
    pointer-events: none; /* Click through */
    font-family: 'Arial', sans-serif;
}

/* Botón Más Información */
.info-button-container {
    text-align: center;
    margin-top: 20px;
}

.btn-more-info {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(180deg, #ff0000 0%, #990000 100%); /* Rojo Intenso */
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #ff9e00; /* Borde dorado */
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); /* Sombra neón roja */
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-more-info:hover {
    background: linear-gradient(180deg, #ff3333 0%, #cc0000 100%);
    box-shadow: 0 0 15px rgba(255, 158, 0, 0.8); /* Sombra dorada al hover */
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    border-color: #fff;
}

/* =========================================
   SIDEBAR - GAMER LOGIN STYLE
   ========================================= */

.panel-gamer {
    background: #0d0d0d !important;
    border: 1px solid #550000 !important;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.panel-gamer .panel-heading {
    background: transparent !important;
    border-bottom: 1px solid #550000 !important;
}

.panel-gamer .panel-title {
    color: #ff0000 !important;
    font-weight: 800;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.panel-gamer .btn-primary {
    background: linear-gradient(180deg, #330000 0%, #1a0000 100%);
    border: 1px solid #550000;
    color: #ccc;
    font-weight: bold;
    text-transform: uppercase;
}

.panel-gamer .btn-primary:hover {
    background: linear-gradient(180deg, #ff0000 0%, #990000 100%);
    border-color: #ff9e00;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}
.login-panel-modern {
    background: #0d0d0d;
    border: 1px solid #550000;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
}
.login-panel-heading .panel-title {
    color: #ff9e00;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.login-panel-heading {
    border-bottom: 1px solid #330000;
    padding: 10px 10px 12px;
}
.login-forgot-link {
    color: #ffcc00;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.login-forgot-link:hover {
    color: #ffffff;
}
.login-field {
    position: relative;
}
.login-field-icon {
    position: absolute;
    left: 12px;
    margin-left: 2px;
    top: 50%;
    transform: translateY(-50%);
    color: #9a9a9a;
    font-size: 14px;
    pointer-events: none;
}
.login-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}
.login-field-input {
    background: #0a0a0a;
    border: 1px solid #222;
    color: #cfcfcf;
    border-radius: 10px;
    width: 100%;
    display: block;
}
.login-field-input:focus {
    border-color: #ff0000;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.35);
    background: #111111;
    color: #ffffff;
}
.login-button-modern {
    width: 100%;
    border-radius: 4px;
    background: linear-gradient(180deg, #550000 0%, #330000 100%);
    border: 1px solid #770000;
    color: #ccc;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.login-button-modern:hover {
    color: #fff;
    border-color: #ff0000;
    background: linear-gradient(180deg, #ff0000 0%, #990000 100%);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}
/* Stacking: asegurar que idioma/login queden por encima del navbar */
.global-top-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 100000 !important;
    background: rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(5px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.global-top-bar a {
    color: #00ff00 !important;
}
.global-top-bar a:hover {
    color: #ff0000 !important;
}
.webengine-language-switcher li {
    background: rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 4px !important;
    padding: 2px 6px !important;
}
.webengine-language-switcher li:hover {
    background: rgba(255, 0, 0, 0.07) !important;
    border-color: #ff0000 !important;
}
.webengine-language-switcher li a {
    color: #00ff00 !important;
}
.webengine-language-switcher li a:hover {
    color: #ff0000 !important;
}
/* Navbar fijo bajo la top bar, conservando hover/transform existentes */
#navbar {
    position: fixed !important;
    top: 30px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
}
#navbar ul li a {
    transform-origin: center center !important;
    transition: transform 0.25s ease !important;
    will-change: transform;
    color: #e0e0e0 !important;
    border: 1px solid rgba(180, 0, 0, 0.35) !important;
    border-radius: 6px !important;
    background: rgba(30, 0, 0, 0.45) !important;
    box-shadow: 0 0 8px rgba(120, 0, 0, 0.35) !important;
    display: inline-block !important;
    width: 175px !important;
    height: 50px !important;
    line-height: 50px !important;
    font-size: 13px !important;
    text-align: center !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    margin: 6px 8px !important;
    padding: 0 !important;
}
#navbar ul li a:hover {
    transform: scale(1.15) !important;
    color: #ffffff !important;
    border-color: rgba(255, 80, 80, 0.6) !important;
    background: rgba(60, 0, 0, 0.6) !important;
    box-shadow: 0 0 12px rgba(160, 0, 0, 0.5) !important;
}
.server-info-glass {
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 215, 128, 0.2);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    margin-bottom: 24px;
}
.server-info-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffe9b3;
    text-shadow: 0 0 8px rgba(255, 215, 128, 0.4);
}
.server-info-header p {
    margin: 0 0 18px 0;
    color: rgba(255, 235, 200, 0.75);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff6dc;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
.info-table thead th {
    background: rgba(255, 215, 128, 0.12);
    color: #ffe9b3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 12px;
    border: 1px solid rgba(255, 215, 128, 0.35);
    padding: 10px 12px;
}
.info-table td {
    border: 1px solid rgba(220, 220, 220, 0.2);
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
}
.info-table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.08);
}
.info-table tbody tr:hover td {
    background: rgba(255, 215, 128, 0.08);
}
.chaos-table {
    table-layout: fixed;
}
.chaos-table th,
.chaos-table td {
    font-size: 12px;
}
.server-info-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.server-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.info-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}
.info-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}
.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}
.info-value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}
.info-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}
.server-info-meta {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}
.meta-value {
    font-size: 13px;
    font-weight: 700;
    color: #ffd36a;
}
.downloads-section {
    margin-bottom: 28px;
}
.downloads-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.download-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(12, 14, 22, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.download-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.download-provider {
    display: flex;
    align-items: center;
    gap: 10px;
}
.download-provider-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    color: #ffffff;
    background: #333;
}
.provider-mega .download-provider-badge {
    background: linear-gradient(135deg, #ff2d2d, #a10000);
}
.provider-mediafire .download-provider-badge {
    background: linear-gradient(135deg, #1b62ff, #0a2e7a);
}
.provider-gdrive .download-provider-badge {
    background: linear-gradient(135deg, #00c853, #00897b);
}
.provider-direct .download-provider-badge {
    background: linear-gradient(135deg, #8a8a8a, #3a3a3a);
}
.download-provider-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.download-provider-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}
.download-status {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00e676;
    box-shadow: 0 0 8px rgba(0, 230, 118, 0.8);
}
.download-size {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}
.download-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.download-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}
.download-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}
.download-card-actions {
    display: flex;
    justify-content: flex-end;
}
.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff9a00, #ff3b3b);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 12px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(255, 80, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.download-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 80, 0, 0.45);
}
.login-panel-modern {
    background: #0d0d0d;
    border: 1px solid #550000;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
}
.login-panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-bottom: 1px solid #330000;
    padding: 10px 10px 12px;
}
.login-panel-heading .panel-title {
    color: #ff9e00;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: 700;
}
.login-forgot-link {
    color: #ffcc00;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.login-forgot-link:hover {
    color: #ffffff;
}
.login-panel-body {
    padding: 15px;
}
.login-form-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.login-label {
    font-size: 11px;
    color: #ffcc00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    display: block;
}
.login-input .input-group-addon {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 215, 128, 0.25);
    color: #ffd36a;
}
.login-input .form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 128, 0.25);
    color: #fff6dc;
}
.login-input .form-control::placeholder {
    color: rgba(255, 235, 200, 0.6);
}
.login-captcha .form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 128, 0.25);
    color: #fff6dc;
}
.login-button-modern {
    background: linear-gradient(180deg, #550000 0%, #330000 100%);
    border: 1px solid #770000;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.login-button-modern:hover {
    color: #fff;
    border-color: #ff0000;
    background: linear-gradient(180deg, #ff0000 0%, #990000 100%);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}
.login-page-modern {
    max-width: 520px;
    margin: 30px auto;
    padding: 24px;
    background: rgba(10, 12, 20, 0.92);
    border: 1px solid rgba(255, 215, 128, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}
.login-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}
.login-form-header h2 {
    margin: 0;
    color: #ffe9b3;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 22px;
}
.we-news--single {
    padding: 20px 0 30px;
}
.we-news-single-card {
    max-width: 900px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    padding: 0;
}
.we-news-single-layout {
    display: block;
}
.we-news-single-media {
    width: 100%;
}
.we-news-single-media img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 8px;
}
.we-news-single-body {
    padding: 30px;
    color: #f0f0f0;
    line-height: 1.6;
}
.we-news-single-title {
    font-size: 36px;
    text-transform: uppercase;
    color: #ffd54f;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    margin: 0 0 10px 0;
}
.we-news-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #ff9e00;
    font-size: 13px;
    margin: 0 0 16px 0;
}
.we-news-single-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.we-news-single-content {
    color: #f0f0f0;
    font-size: 15px;
    line-height: 1.6;
}
.we-news-single-content .we-extended-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
}
.full-news-body img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 0 20px 0;
}
.we-news-single-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
.we-news-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 12px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.we-news-back-link:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-1px);
}
.news-list {
    display: flex;
    flex-direction: column;
}
.news-list-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
}
.news-list-row--no-image {
    display: block;
}
.news-list-image {
    width: 70%;
    min-height: 260px;
}
.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.news-list-text {
    width: 30%;
    padding: 20px;
    color: #cccccc;
}
.news-list-title {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 700;
}
.news-list-title a {
    color: #f5f5f5;
    text-decoration: none;
}
.news-list-meta {
    font-size: 12px;
    color: #ff9e00;
    margin: 0 0 12px 0;
}
.news-list-summary {
    color: #cccccc;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .news-list-row {
        flex-direction: column;
    }
    .news-list-image,
    .news-list-image img {
        width: 100%;
        height: 220px;
    }
    .news-list-text {
        width: 100%;
    }
}
