/* --- MUOFWAR ESTRUCTURA PROFESIONAL --- */

body {
    background-color: #000000;
    /* Un degradado sutil para dar profundidad al fondo del navegador */
    background-image: radial-gradient(circle, #151515 0%, #000000 100%);
    color: #FFFFFF;
    font-family: "Tahoma", sans-serif;
    margin: 0;
    padding: 0;
}

/* CONTENEDOR PRINCIPAL: Envuelve toda la web */
.main-wrapper {
    width: 1000px;
    margin: 25px auto; /* Margen superior e inferior para despegar del borde */
    background: #050505;
    border: 1px solid #1a1a1a;
    box-shadow: 0 0 40px rgba(0,0,0,0.9);
    border-radius: 5px;
    overflow: hidden;
}

/* ÁREA DE CONTENIDO: Organiza las 3 columnas */
.content-area {
    display: flex;
    padding: 20px;
    gap: 15px;
    background: #050505;
}

/* Columnas Laterales (User Panel y Server Info) */
.col-side {
    width: 200px;
    flex-shrink: 0;
}

/* Columna Central (Noticias/Contenido) */
.col-main {
    flex-grow: 1;
    min-height: 500px;
}

/* Menú Superior Modernizado */
.top_menu {
    list-style: none;
    margin: 0;
    padding: 12px;
    background: #0a0a0a;
    border-top: 1px solid #d4af37;
    border-bottom: 1px solid #d4af37;
    text-align: center;
}

.top_menu li {
    display: inline-block;
    margin: 0 5px;
}

.top_menu a {
    color: #d4af37;
    text-decoration: none;
    border: 1px solid #333;
    padding: 5px 12px;
    background: #111;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.2s;
}

.top_menu a:hover {
    background: #d4af37;
    color: #000;
    border-color: #f9e27d;
}

/* Títulos de Bloques */
.title {
    background: linear-gradient(90deg, #1a1a1a 0%, #050505 100%);
    border-bottom: 1px solid #d4af37;
    color: #cccc00;
    height: 28px;
    line-height: 28px;
    padding-left: 10px;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
}

/* Estilo para Server Info y tablas de status */
.status_left { padding: 4px 8px; background: #111; font-size: 11px; border-bottom: 1px solid #000; }
.status_right { padding: 4px 8px; color: #d4af37; background: #080808; font-weight: bold; font-size: 11px; border-bottom: 1px solid #000; }

/* --- CORRECCIÓN ENLACES PANEL USUARIO --- */

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    margin-bottom: 2px;
}

/* Forzamos el color dorado y eliminamos el violeta */
.menu a, .menu a:link, .menu a:visited {
    color: #d4af37 !important; /* Color dorado MuOfWar */
    display: block;
    text-decoration: none;
    border: 1px solid #1a1a1a;
    padding: 6px 10px;
    background: #0a0a0a;
    font-size: 11px;
    transition: all 0.3s ease;
}

/* Efecto al pasar el mouse */
.menu a:hover {
    background: #151515;
    color: #f9e27d !important; /* Dorado más brillante */
    border-color: #d4af37;
    padding-left: 15px; /* Pequeño efecto de desplazamiento */
}