/*!
    
 =========================================================
 * WebEngine CMS
 * https://webenginecms.org/
 =========================================================
 
 * Author Lautaro Angelico (https://lautaroangelico.com/)
 * Copyright (c) 2013-2022 Lautaro Angelico, All Rights Reserved
 
 * Licensed under the MIT license
 * http://opensource.org/licenses/MIT
 
 =========================================================
 
*/
html {
	min-width: 1040px;
	height: 100%;
}

body {
	background: #C20808 url('../img/background.jpg') no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	color: #333;
	font-family: 'PT Sans', sans-serif;
	font-size: 14px;
	margin: 0;
	height: 100%;
}

@media only screen and (min-width: 2000px) {
	body {
		background: #C20808 url('../img/background-2600.jpg') no-repeat center center !important;
		background-size: cover !important;
		background-attachment: fixed !important;
	}
}

a {
	color: #777;
	text-decoration: none;
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

a:hover {
	color: #ffda8a;
}

img {
	border: 0px;
}

input[type=text], input[type=password], input[type=number] {
	background: #1a1a1a;
	border: 1px solid #333;
	color: #ccc;
	padding: 5px;
}
input[type=text]:focus, input[type=password]:focus, input[type=number]:focus {
	border: 1px solid #ff0000;
	background: #222;
	color: #fff;
}
.login-field-input {
	padding-left: 55px !important;
}
.login-input {
	padding-left: 55px !important;
}

#header {
	width: 100%;
	margin: 0px auto;
	padding: 80px 0px 10px 0px;
	text-align: center;
	color: #fff;
}

/* =========================================================================
   PRUEBA DE DIMENSIONES ULTRA-WIDE (ROJO METÁLICO)
   ========================================================================= */

#container {
    width: 95% !important;
    max-width: 1700px !important;
    min-width: 1000px;
    
    margin: 10px auto !important;
    padding: 25px 20px !important;
    height: auto;
    position: relative;
    overflow: hidden;

    background: rgba(15, 15, 15, 0.4) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45) !important;
    border-radius: 16px 16px 0 0;
}

/* Ajuste preventivo para que el fondo de la web no se corte */
html, body {
    width: 100% !important;
    min-width: 100% !important;
    background-color: transparent !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

/* Ajuste para el contenido interno (columnas de Bootstrap) */
#container .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.social-widgets-top {
	display: flex;
	gap: 12px;
	width: 100%;
	margin-bottom: 20px;
}
.social-widgets-top .social-widget {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 12px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: #ffffff;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.social-widgets-top .social-widget:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
	filter: brightness(1.08);
}
.social-widgets-top .social-icon {
	width: 20px;
	height: 20px;
	margin-right: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.social-widgets-top .social-icon svg {
	width: 20px;
	height: 20px;
	display: block;
}
.social-widgets-top .social-widget.facebook {
	background: #1877f2;
}
.social-widgets-top .social-widget.whatsapp {
	background: #25d366;
}
.social-widgets-top .social-widget.tiktok {
	background: linear-gradient(135deg, #0b0b0b 0%, #0b0b0b 55%, #ff0050 100%);
	border: 1px solid #00f2ea;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25), 0 0 10px rgba(0, 242, 234, 0.35);
}
.footer {
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	font-family: 'Segoe UI', 'Lucida Sans Unicode', 'Lucida Grande', 'Tahoma', 'Arial', 'sans-serif';
    width: 95% !important;
    max-width: 1700px !important;
    min-width: 1000px;
	font-size: 12px;
	color: #f5e6b8;
	padding: 40px;
	overflow: auto;
	margin: 0px auto 100px auto;
	-webkit-border-radius: 0px 0px 5px 5px;
	-moz-border-radius: 0px 0px 5px 5px;
	border-radius: 0px 0px 5px 5px;
	-khtml-border-radius: 0px 0px 5px 5px;
	border-top: 1px solid rgba(255, 204, 0, 0.25);
}
	.footer > .footer-container {
		width: 100%;
		margin: 0px auto;
	}
		.footer > .footer-container a:hover {
			text-decoration: underline !important;
			color: #ffcc00;
		}
	.footer hr {
		border-top: 1px solid rgba(255, 255, 255, 0.15);
	}
	.footer .footer-social-link {
		filter: grayscale(100%);
		transition: all .3s ease;
	}
	.footer .footer-social-link:hover {
		filter: grayscale(0%);
	}

#navbar {
	width: 100%;
	background: transparent;
	border-bottom: none;
	box-shadow: none;
}

#navbar ul{
	text-align: center;
	margin: 0px;
	-webkit-padding-start: 0px;
	background: transparent;
}

#navbar ul li {
	list-style-type: none;
	display: inline-block;
	font-size: 16px;
}

#navbar ul li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 35px;
	padding: 0 18px;
	margin: 0 6px;
	background: #260606 !important;
	border: 1px solid #770000 !important;
	opacity: 1;
	border-radius: 4px;
	color: #ccc !important;
	text-decoration: none;
	transition: all .3s ease;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 11px;
}

#navbar ul li a:active, #navbar ul li a:focus, #navbar ul li a:hover {
	background: #B22222 !important;
	color: #ffffff !important;
	box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
	border-color: #ff5555 !important;
	text-decoration: none;
}

.admincp-button {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #ffffff !important;
	border: 2px solid #000000 !important;
	color: #000000 !important;
	font-weight: bold !important;
	z-index: 9999;
}

/* =========================================================
   ESTILO DE TÍTULO PRINCIPAL (PAGE TITLE)
   ========================================================= */
.page-title {
    font-family: 'Cinzel', serif;
    font-size: 32px; /* Tamaño original solicitado */
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;

    /* Degradado Dorado Metálico */
    background: linear-gradient(to bottom, #ff9e00 0%, #ffcc00 45%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.8));
    display: block;
}

.page-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background: linear-gradient(to right, transparent, #ff0000, transparent);
    margin: 8px auto 0;
    box-shadow: 0 0 8px #ff0000;
}

/* =========================================================
   MENÚ DE RANKINGS (BOTONES TOP LEVEL, KILLERS, ETC)
   ========================================================= */
.rankings_menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centra los botones en el contenedor */
    align-items: center;
    gap: 10px;
    margin: 20px 0px;
}

.rankings_menu span {
    display: block;
    width: 100%;
    text-align: center;
    color: #ffda8a;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.rankings_menu a {
    display: flex;          /* Flex para centrar texto internamente */
    justify-content: center; 
    align-items: center;
    width: 150px;
    height: 35px;           /* Altura fija para alineación perfecta */
    border: 1px solid #770000;
    background: #260606;    /* Fondo oscuro Dark Blood */
    color: #ccc;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 11px;        /* Tamaño para evitar desbordamiento */
    text-decoration: none;
    transition: all 0.3s ease;
}

.rankings_menu a:hover, .rankings_menu a.active {
    background: #B22222;    /* Rojo intenso al activar */
    color: #ffffff !important;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
    border-color: #ff5555;
}

/* =========================================================
   RANKINGS MODULE - VERSIÓN COMPACTA
   ========================================================= */

.rankings-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
    background: transparent;
    display: block;
}

.rankings-table tbody {
    display: block;
    width: 100%;
}

/* =========================================================
   HEADER ROW (Primera fila)
   ========================================================= */
.rankings-table tr:first-child {
    display: flex;
    padding: 0 10px 10px 10px;
    border-bottom: 1px solid #222;
    margin-bottom: 10px;
    color: #a0a0a0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: transparent !important;
}

.rankings-table tr:first-child td {
    background: transparent !important;
    border: none !important;
    color: inherit !important;
    padding: 0 5px !important;
    text-align: left;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================================
   RANKING CARDS (Filas de datos)
   ========================================================= */
.rankings-table tr:not(:first-child) {
    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;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.rankings-table tr:not(:first-child):hover {
    background: rgba(255, 158, 0, 0.05);
    transform: translateX(2px);
    border-color: #ff9e00;
    box-shadow: 0 0 15px rgba(255, 158, 0, 0.1);
    z-index: 10;
}

/* Celdas dentro de la tarjeta */
.rankings-table tr td {
    border: none !important;
    padding: 0 10px !important;
    color: #e0e0e0 !important;
    font-size: 13px !important;
    background: transparent !important;
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

/* Ajuste específico para la columna de Nombre (asumiendo que es la 2da o 3ra) */
/* Generalmente: Rank | Name | Class | Level | Guild */
.rankings-table tr td:nth-child(2) {
    flex: 2; /* Más espacio para el nombre */
    justify-content: flex-start;
    font-weight: 600;
    color: #fff !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.rankings-table tr td a {
    color: #e0e0e0 !important;
    text-decoration: none;
    transition: color 0.2s;
}

.rankings-table tr:not(:first-child):hover td a {
    color: #fff !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.rankings-class-image {
    width: 24px !important;
    height: auto;
    border-radius: 3px;
}

.rankings-table img[src*="country"] {
    height: 12px !important;
    width: auto;
}

/* =========================================================
   TOP 4 MEDALS & STYLES
   ========================================================= */

/* Rank 1 (Fila 2) */
.rankings-table tr:nth-child(2) {
    border: 1px solid #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}
.rankings-table tr:nth-child(2):hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}
.rankings-table tr:nth-child(2) .rankings-table-place {
    font-size: 0 !important;
}
.rankings-table tr:nth-child(2) .rankings-table-place::before {
    content: '🏆';
    font-size: 20px !important;
    line-height: 20px;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    display: inline-block;
}

/* Rank 2 (Fila 3) */
.rankings-table tr:nth-child(3) {
    border: 1px solid #c0c0c0;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.1);
}
.rankings-table tr:nth-child(3):hover {
    background: rgba(192, 192, 192, 0.1);
    border-color: #c0c0c0;
}
.rankings-table tr:nth-child(3) .rankings-table-place {
    font-size: 0 !important;
}
.rankings-table tr:nth-child(3) .rankings-table-place::before {
    content: '🥇';
    font-size: 20px !important;
    line-height: 20px;
    color: #ffd700; /* Siguiendo override.css */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    display: inline-block;
}

/* Rank 3 (Fila 4) */
.rankings-table tr:nth-child(4) {
    border: 1px solid #cd7f32;
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.1);
}
.rankings-table tr:nth-child(4):hover {
    background: rgba(205, 127, 50, 0.1);
    border-color: #cd7f32;
}
.rankings-table tr:nth-child(4) .rankings-table-place {
    font-size: 0 !important;
}
.rankings-table tr:nth-child(4) .rankings-table-place::before {
    content: '🥈';
    font-size: 20px !important;
    line-height: 20px;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(224, 224, 224, 0.8);
    display: inline-block;
}

/* Rank 4 (Fila 5) */
.rankings-table tr:nth-child(5) {
    border: 1px solid #cd7f32;
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.1);
}
.rankings-table tr:nth-child(5):hover {
    background: rgba(205, 127, 50, 0.1);
    border-color: #cd7f32;
}
.rankings-table tr:nth-child(5) .rankings-table-place {
    font-size: 0 !important;
}
.rankings-table tr:nth-child(5) .rankings-table-place::before {
    content: '🥉';
    font-size: 20px !important;
    line-height: 20px;
    color: #cd7f32;
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.8);
    display: inline-block;
}
/* MY ACCOUNT MODULE */
.myaccount-table {
	width: 100%;
	background: #f1f1f1;
	border: 1px solid #e3e3e3;
}
.myaccount-table tr td:first-child {
	color: #666;
	font-weight: bold;
}
.myaccount-table tr td {
	border-bottom: 1px solid #e3e3e3;
	padding: 15px !important;
}
.myaccount-table tr:last-child td {
	border: 0px;
}

/* GENERAL TABLE UI */
.general-table-ui {
	width: 100%;
	table-layout: fixed;
	background: #f1f1f1;
	border: 1px solid #e3e3e3;
	padding: 10px;
	margin: 10px 0px;
}
.general-table-ui tr td {
	padding: 5px;
	vertical-align: middle !important;
}
.general-table-ui tr:first-child td {
	color: #3f6588;
}
.general-table-ui tr:nth-child(2n+2) td {
	background: #fafafa;
}
.general-table-ui tr td {
	text-align: center;
}
.general-table-ui img {
	width: 50px;
	height: auto;
	-moz-box-shadow: 0 0 5px #666;
	-webkit-box-shadow: 0 0 5px #666;
	box-shadow: 0 0 5px #666;
	-moz-border-radius: 0px;
	border-radius: 0px;
}


/* TERMS OF SERVICE PAGE */
.tos_list li {
	color: #aa0000;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 40px;
}
.tos_list li p {
	color: #444;
	text-align: justify;
	text-justify: inter-word;
	text-transform: none;
	padding-right: 35px;
	font-size: 14px;
	font-weight: normal;
}

/* PAYPAL */
.paypal-gateway-container {
	width: 100%;
}

.paypal-gateway-content {
	background: #fef2da;
	border: 3px solid #f79433;
	padding: 15px;
	overflow: auto;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-weight: bold;
}

.paypal-gateway-logo {
	width: 100%;
	height: 100px;
	background: #fff9ec url('../img/paypal-logo-200-68.png') no-repeat center;
	background-size: contain;
	margin-bottom: 15px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.paypal-gateway-conversion-rate {
	margin: 0px auto;
	text-align: center;
	color: #000;
	font-size: 18px;
	padding: 10px 0px;
}

.paypal-gateway-form {
	width: 100%;
	margin: 20px auto;
	text-align: center;
}

.paypal-gateway-form div {
	display: inline-block;
	padding: 0px 10px;
	color: #000;
	font-size: 24px;
}

.paypal-gateway-form input[type=text] {
	width: 60px;
	font-size: 24px;
	border: 3px solid #f79433;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: #f79433;
}

.paypal-gateway-continue {
	margin: 0px auto;
	text-align: center;
}

.paypal-gateway-continue input[type=submit] {
	background: url('../img/paypal-submit.jpg') no-repeat;
	width: 200px;
	height: 40px;
	border: 0px;
}

.module-requirements {
	font-size: 12px;
	margin-top: 20px;
}

/* SIDEBAR */
.panel-sidebar {
	background: #f1f1f1;
	border: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: 0 0 10px #e3e3e3;
	-webkit-box-shadow: 0 0 10px #e3e3e3;
	box-shadow: 0 0 10px #e3e3e3;
}

.panel-sidebar > .panel-heading {
	background: #fff;
	color: #3f6588;
	font-family: 'PT Sans', sans-serif;
	border: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border-bottom: 3px solid #3f6588;
}

.panel-usercp {
	background: url('../img/usercp_bg.jpg') no-repeat top center;
	background-size: cover;
}

.panel-usercp ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

.panel-usercp ul li {
	display: table;
	width: 100%;
	vertical-align: middle;
	line-height: 30px;
}

.panel-usercp ul li a {
	color: #444 !important;
	font-weight: bold;
}
.panel-usercp ul li a:active, .panel-usercp ul li a:hover {
	color: #3f6588 !important;
}

.panel-usercp ul li img {
	position: relative;
	top: -2px;
	width: 25px;
	height: 25px;
	margin-right: 5px;
}

.sidebar-banner {
	margin: 20px 0px;
	border: 0px;
}

.sidebar-banner img {
	-moz-box-shadow: 0 0 10px #e3e3e3;
	-webkit-box-shadow: 0 0 10px #e3e3e3;
	box-shadow: 0 0 10px #e3e3e3;
	border: 0px;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -khtml-border-radius: 5px;
}

/* GENERAL PANEL STYLING */
.panel-general {
	margin-bottom: 30px;
	background: #f1f1f1;
	border: 1px solid #e3e3e3;
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: #333;
}

.panel-body .panel-title {
	color: #666;
	font-family: 'PT Sans', sans-serif;
	font-size: 14px;
	border-bottom: 1px solid #e3e3e3;
	margin-bottom: 20px !important;
	font-weight: bold;
}

/* ADD STATS MODULE */
.panel-addstats {
	margin-bottom: 30px;
	background: #f1f1f1;
	border: 1px solid #e3e3e3;
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: #333;
}
.panel-addstats .character-avatar img {
	width: 100px;
	height: auto;
	-moz-box-shadow: 0 0 5px #666;
	-webkit-box-shadow: 0 0 5px #666;
	box-shadow: 0 0 5px #666;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.panel-addstats .character-name {
	color: #666;
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
	border-bottom: 1px solid #e3e3e3;
	padding: 20px 0px;
	margin-bottom: 20px !important;
	font-weight: bold;
}

/* DOWNLOADS */
.panel-downloads {
	margin-bottom: 30px;
	background: #f1f1f1;
	border: 1px solid #e3e3e3;
	-moz-border-radius: 0px;
	border-radius: 0px;
	color: #333;
}
	.download-description {
		font-size: 11px;
		position: relative;
		top: -7px;
		color: #777;
	}

.online-status-indicator {
	margin-left: 5px;
}

/* WEBENGINE CMS */
.webengine-powered { color: #777 !important; }
.webengine-powered:active, .webengine-powered:hover { color: #ff3214 !important; }

/* GLOBAL TOP BAR */
.global-top-bar {
	width: 100%;
	background: #101010;
	color: #777777;
	padding: 7px 0px 2px 0px;
	text-transform: uppercase;
	font-size: 12px;
}
	.global-top-bar .global-top-bar-content {
		width: 1040px;
		margin: 0px auto;
	}
		.global-top-bar .global-top-bar-content .row {
			margin: 0px;
			padding: 0px;
		}
	.global-top-bar a.logout {
		color: #ff0000 !important;
	}
	.global-top-bar a {
		color: #999999 !important;
	}
	.global-top-bar a:hover {
		color: #ffffff !important;
	}
.global-top-bar-nopadding {
	padding: 0px !important;
}
.global-top-bar-separator {
	padding: 0px 5px;
}

/* LANGUAGE PICKER */
.webengine-language-switcher {
	display: inline-block;
	list-style: none;
	padding: 0px !important;
	margin: 0px !important;
	width: 46px;
	height: 19px;
	overflow: hidden;
	transition: all .3s ease;
}
.webengine-language-switcher:hover {
	width: 400px;
}
	.webengine-language-switcher li {
		display: inline-block;
		list-style-type: none;
		background: #333333;
		padding: 0px 5px 2px 5px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
		-khtml-border-radius: 3px;
		transition: all .3s ease;
	}
	.webengine-language-switcher li:hover {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}
	.webengine-language-switcher li a {
		color: #999999;
	}
	.webengine-language-switcher li a:hover {
		color: #ffffff !important;
	}

/* WEBSITE LOGO */
.webengine-mu-logo {
	transition: all .3s ease;
}
	.webengine-mu-logo:hover {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}

/* HEADER INFO */
.header-info-container {
	width: 1040px;
	margin: 0px auto;
	text-align: right;
}
	.header-info-container .header-info {
		display: inline-block;
		width: 350px;
		background: rgba(0, 0, 0, 0.3);
		backdrop-filter: blur(5px);
		margin: 0px;
		padding: 20px;
		overflow: auto;
		-moz-box-shadow: 0 0 15px rgba(0,0,0,0.7);
		-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.7);
		box-shadow: 0 0 15px rgba(0,0,0,0.7);
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		-khtml-border-radius: 5px;
		text-shadow: 1px 1px 3px #000000;
		color: #ffffff;
		border: 1px solid rgba(255,255,255,0.1);
		font-size: 12px;
	}
		.header-info-container .header-info .header-info-block {
			padding: 0px;
			color: #aaaaaa;
		}
		.header-info-container .header-info .header-info-block #tServerTime, .header-info-container .header-info .header-info-block #tLocalTime {
			color: #ffffff;
		}
		.header-info-container .header-info .header-info-block #tServerDate, .header-info-container .header-info .header-info-block #tLocalDate {
			color: #cccccc;
		}
		.header-info-container .header-info .header-info-block .online-count {
			color: #00ff00;
		}
	
/* ONLINE BAR */
.webengine-online-bar {
	width: 100%;
	background: #000000;
	border: 1px solid #555555;
	height: 8px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 0px;
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -khtml-border-radius: 4px;
	overflow: hidden;
	transition: all .3s ease;
}
	.webengine-online-bar .webengine-online-bar-progress {
		height: 8px;
		background: #00ff00 url('../img/online_progress_bar.jpg') no-repeat left center;
		-webkit-border-radius: 0px 1px 1px 0px;
		-moz-border-radius: 0px 1px 1px 0px;
		-khtml-border-radius: 0px 1px 1px 0px;
		border-radius: 0px 1px 1px 0px;
	}
	.webengine-online-bar:hover {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}

/* =========================================================
   BOTONES SOCIALES (Header)
   ========================================================= */
.social-buttons-container {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.social-btn {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background: #0a0a0a; /* Fondo negro metálico */
    border: 1px solid #ff0000; /* Borde rojo neón */
    color: #fff;
    margin-right: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 0 5px rgba(0,0,0,0.8);
}

.social-btn:hover {
    color: #fff;
    background: #1a0a0a;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6), inset 0 0 5px rgba(255, 0, 0, 0.4);
    border-color: #ff3333;
    transform: translateY(-2px);
    text-shadow: 0 0 5px #fff;
}

.social-btn:last-child {
    margin-right: 0;
}

/* =========================================================
   MÓDULO SERVER INFO (Home)
   ========================================================= */
.server-info-box {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.server-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    /* Azul Neón para diferenciar del Ranking (Naranja) y Eventos (Verde) */
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

.server-info-title {
    text-align: center;
    color: #00ffff; /* Azul Neón */
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 15px;
}

.server-info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #222;
    font-size: 13px;
}

.server-info-row:last-child {
    border-bottom: none;
}

.server-info-label {
    color: #aaa;
    font-weight: 600;
}

.server-info-value {
    color: #fff;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

/* Estilo para el header info modificado */
.header-info-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.myaccount-character-block {
	background: #333;
	border: 1px solid #666;
	padding: 5px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: inline-block;
	margin: 0px auto;
	-moz-box-shadow: 0 0 10px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.5);
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
	.myaccount-character-block img {
		width: 100px;
		height: auto;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		-moz-box-shadow: 0 0 5px #000;
		-webkit-box-shadow: 0 0 5px #000;
		box-shadow: 0 0 5px #000;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
		.myaccount-character-block img:hover {
			-webkit-filter: brightness(120%);
			filter: brightness(120%);
		}
.myaccount-character-block-location {
	font-size: 12px;
	color: #000;
	margin-bottom: 20px;
	margin-top: 2px;
	line-height: 1.2;
}
.myaccount-character-block-level {
	position: relative;
	top: -77px;
	display: inline-block;
	background: rgba(0,0,0,0.5);
	padding: 0px 5px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #fff;
	font-size: 10px;
}
.myaccount-character-name a {
	font-weight: bold;
	color: #000;
	font-size: 16px;
}

/* =========================================================
   RANKINGS FILTER BY CLASS - ESTILO DARK BLOOD (NOTICIAS)
   ========================================================= */

.rankings-class-filter {
    display: inline-block;
    list-style-type: none;
    margin: 20px auto;
    padding: 15px 25px;
    
    /* Fondo inspirado en el recuadro de noticias */
    background: #260606 !important; 
    border: 1px solid #ff0000 !important;
    border-radius: 10px;
    
    /* Resplandor rojo sutil igual al container */
    box-shadow: 0 0 15px rgba(178, 34, 34, 0.3);
}

    .rankings-class-filter li {
        display: inline-block;
        margin-bottom: 10px;
        transition: all 0.3s ease-in-out;
    }
    
    /* Efecto al pasar el mouse por el item de la lista */
    .rankings-class-filter li:hover {
        transform: scale(1.1);
    }

.rankings-class-filter-selection {
    display: inline-block;
    width: 75px;
    text-align: center;
    color: #FFFFFF; /* Texto blanco como en noticias */
    font-size: 11px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

    /* Cuando pasas el mouse, el nombre de la clase brilla en rojo */
    .rankings-class-filter-selection:hover {
        color: #ff0000 !important;
        text-shadow: 0 0 5px #000;
    }

    .rankings-class-filter-selection:hover img {
        -webkit-filter: brightness(130%) grayscale(0%);
        filter: brightness(130%) grayscale(0%);
        border-color: #ff0000;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    }

.rankings-class-filter-selection img {
    width: 45px; /* Un poco más grandes para resaltar */
    height: auto;
    border-radius: 50%;
    margin-bottom: 8px;
    border: 2px solid #4d0000; /* Borde metálico oscuro */
    transition: all 0.3s ease;
    
    /* Sombra inicial */
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.8);
}

/* Estado inactivo (Escala de grises) */
.rankings-class-filter-grayscale {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.6;
}

/* Clase activa: Si una clase está seleccionada, que brille siempre */
.rankings-class-filter-selection.active img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}
/* =========================================================
   REFINAMIENTO DE NOTICIAS
   ========================================================= */

/* 1. Títulos Superiores en Rojo */
.home-news-block .home-news-block-header h2 {
    color: #ff0000 !important;
    text-shadow: 1px 1px 2px #000;
}

.home-news-block .home-news-block-header a {
    background: transparent !important;
    color: inherit !important;
    border: none !important;
    display: inline-block;
    text-decoration: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}
.castle-siege-widget {
	background: #0b0b0b url('../img/castle_owner_bg.jpg') no-repeat right center;
	background-size: cover;
	border: 1px solid #1a1a1a;
	border-radius: 10px;
	padding: 20px;
	margin-top: 20px;
	color: #ffffff;
	box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
}
.castle-siege-title {
	font-size: 22px;
	font-weight: 800;
	text-transform: uppercase;
	color: #ff9e00;
	text-align: center;
	margin-bottom: 16px;
	text-shadow: 1px 1px 3px #000;
}
.castle-siege-body {
	display: flex;
	gap: 18px;
	align-items: center;
}
.castle-siege-logo img {
	width: 90px;
	height: auto;
	display: block;
}
.castle-siege-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.castle-siege-row {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.castle-siege-label {
	font-size: 12px;
	text-transform: uppercase;
	color: #ff9e00;
	letter-spacing: 0.6px;
	font-weight: 700;
}
.castle-siege-value {
	font-size: 14px;
	color: #ffffff;
}
.castle-siege-button {
	display: inline-block;
	margin-top: 16px;
	padding: 6px 12px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: #ffffff;
	text-decoration: none;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	border-radius: 4px;
	transition: all 0.2s ease;
}
.castle-siege-button:hover {
	color: #000000 !important;
	background: #ffffff !important;
	border-color: #ffffff !important;
}
.home-news-block {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
.home-news-block-body {
	flex: 1;
	min-height: 320px;
	padding-bottom: 24px;
}
.home-news-block-body > .col-xs-12 {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.news-module {
}
.news-module .news-card {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-module .news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}
.news-module .news-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
}
.news-module .news-card-content {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    color: #fff;
}
.news-module .news-card-title {
    margin: 0 0 6px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.news-module .news-card-title a {
    color: #fff;
    text-decoration: none;
}
.news-module .news-card-meta {
    font-size: 12px;
    opacity: 0.9;
}
.news-module .news-body {
    background: #0f0f10;
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
}
.home-news-block .home-news-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 6px 2px 10px 2px;
    scrollbar-width: auto;
    scrollbar-color: #777 rgba(255,255,255,0.12);
}
.home-news-block .home-news-slider::-webkit-scrollbar {
    height: 14px;
}
.home-news-block .home-news-slider::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
}
.home-news-block .home-news-slider::-webkit-scrollbar-thumb {
    background: #777;
    border-radius: 14px;
    border: 3px solid rgba(0,0,0,0.3);
}
.home-news-slider-item {
    scroll-snap-align: start;
    min-width: calc(50% - 6px);
}

/* 2. Recuadro de la Noticia (Caja de luz) */
.home-news-block-article {
    background: #260606 !important; /* Gris claro para que resalte el texto negro */
    border: 1px solid #ff0000 !important;
    border-radius: 5px;
    padding: 10px !important;
}

/* 3. Etiqueta NOTICE (Vuelve a Rojo) */
.home-news-block-article .home-news-block-article-type {
    background: #b22222 !important; /* Rojo original */
    color: #ffffff !important;
    padding: 3px 10px !important;
    font-weight: bold;
    text-transform: uppercase;
    border: none !important;
}

/* 4. Título de la noticia "PROXIMAMENTE" en Negro/Gris */
.home-news-block-article .home-news-block-article-title {
    color: #FFFFFF !important; /* Negro/Gris muy oscuro */
    font-weight: bold !important;
    font-size: 18px !important;
}

/* 5. Fecha en Gris */
.home-news-block-article .home-news-block-article-date {
    color: #FFFFFF !important;
}
/* Event Timer Block */

.event-schedule-open {
	color: green;
}

.event-schedule-inprogress {
	color: orange;
}

.panel-sidebar-events .smalltext {
	font-size: 11px;
	position: relative;
	top: -5px;
}
.we-guides,
.we-events {
    margin-top: 10px;
}
.we-guides-grid,
.we-events-grid {
    margin-top: 10px;
}
.we-card-col {
    margin-bottom: 20px;
}
.we-card {
    background: rgba(10, 10, 10, 0.85);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 120, 0.18);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.we-card:hover {
    transform: scale(1.03);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.75);
}
.we-card-cover {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.we-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}
.we-card-body {
    padding: 20px;
}
.we-card-title a {
    font-size: 18px;
    font-weight: 700;
    color: #ffd54f;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.we-card-meta {
    font-size: 12px;
    color: #c0c6cc;
    margin: 6px 0;
}
.we-card-summary {
    font-size: 13px;
    color: #e0e0e0;
    line-height: 1.55;
    margin-bottom: 12px;
    min-height: 54px;
}
.we-event-card-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Orbitron', 'Digital-7', 'Courier New', monospace;
    font-size: 13px;
    letter-spacing: 1px;
    margin: 10px 0 12px;
    text-transform: uppercase;
}
.we-event-card-label {
    color: #39ff65;
    font-weight: 600;
    text-shadow: 0 0 6px rgba(57, 255, 101, 0.4);
}
.we-event-card-clock {
    color: #39ff65;
    text-shadow: 0 0 6px rgba(57, 255, 101, 0.4);
}
.we-event-card-timer.is-active .we-event-card-label,
.we-event-card-timer.is-active .we-event-card-clock {
    color: #ffd54f;
    text-shadow: 0 0 8px rgba(255, 213, 79, 0.5);
}
.we-card-button {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffd54f;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 213, 79, 0.3);
    transition: background 0.2s ease, transform 0.2s ease;
}
.we-card-button:hover {
    background: rgba(255, 213, 79, 0.12);
    transform: translateY(-1px);
}
.we-guides--single,
.we-events--single,
.we-news--single {
    display: flex;
    justify-content: center;
}
.we-guides-single-card,
.we-events-single-card,
.we-news-single-card {
    background: rgba(10, 10, 10, 0.85);
    border-radius: 14px;
    padding: 26px;
    max-width: 880px;
    width: 100%;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 255, 120, 0.2);
}
.we-guides-single-title,
.we-events-single-title,
.we-news-single-title {
    color: #ffd54f;
    margin: 0 0 16px 0;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.we-news-single-meta {
    font-size: 12px;
    color: #c0c6cc;
    margin: 0 0 12px 0;
}
.we-guides-single-cover img,
.we-events-single-cover img,
.we-news-single-cover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-bottom: 16px;
}
.we-guides-single-content,
.we-events-single-content,
.we-news-single-content {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.75;
}
.we-event-multi {
    margin: 18px 0 20px;
    background: rgba(6, 6, 6, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}
.we-event-multi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.we-event-multi-title {
    color: #c0c6cc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}
.we-event-multi-status {
    font-weight: 700;
    color: #ffd54f;
    text-shadow: 0 0 6px rgba(255, 213, 79, 0.35);
}
.we-event-multi-clock {
    font-family: 'Orbitron', 'Digital-7', 'Courier New', monospace;
    font-size: 32px;
    color: #9bffcf;
    text-shadow: 0 0 12px rgba(0, 255, 180, 0.35);
    letter-spacing: 2px;
    text-align: center;
}
.we-event-multi-next {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 6px;
    color: #9aa1a8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.we-event-multi-next-value {
    color: #e0e0e0;
    font-weight: 600;
}
.we-event-multi.is-active {
    border-color: rgba(255, 0, 92, 0.6);
    box-shadow: 0 0 20px rgba(255, 0, 92, 0.25), 0 12px 25px rgba(0, 0, 0, 0.7);
}
.we-event-multi.is-active .we-event-multi-status {
    color: #ff3b3b;
    text-shadow: 0 0 10px rgba(255, 59, 59, 0.6);
}
.we-event-multi.is-active .we-event-multi-clock {
    color: #ff3b3b;
    text-shadow: 0 0 16px rgba(255, 59, 59, 0.65);
}
.we-extended-content {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 12px;
}
.we-guides-single-content h2,
.we-guides-single-content h3,
.we-guides-single-content h4,
.we-events-single-content h2,
.we-events-single-content h3,
.we-events-single-content h4,
.we-news-single-content h2,
.we-news-single-content h3,
.we-news-single-content h4 {
    color: #7CFF6B;
    margin-top: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}
.we-guides-single-content h2,
.we-events-single-content h2,
.we-news-single-content h2 {
    font-size: 20px;
}
.we-guides-single-content h3,
.we-events-single-content h3,
.we-news-single-content h3 {
    font-size: 18px;
}
.we-guides-single-content h4,
.we-events-single-content h4,
.we-news-single-content h4 {
    font-size: 16px;
}
.we-guides-single-content img,
.we-events-single-content img,
.we-news-single-content img {
    max-width: 100%;
    height: auto;
    display: block;
}
