/*
 * responsive.css — SOLO contiene estilos responsivos y overrides de ranking.
 * Los estilos base fueron removidos aquí (están en style.css).
 */

/* .rankings_menu base — overridden by style.css and responsive.css premium block */
.rankings_menu {
    width: 90%;
    overflow: auto;
    text-align: center;
    margin: 0px auto 30px auto;
    background: linear-gradient(145deg, #0a0f1e, #0f1a33);
    border: 1px solid rgba(61, 147, 255, 0.25);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.rankings_menu span {
    width: 100%;
    display: inline-block;
    padding: 10px 0px;
    color: #e2e8f0;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    text-shadow: 0 0 10px rgba(61, 147, 255, 0.5);
}

.rankings_menu a {
    display: inline-block;
    min-width: 140px;
    border: 1px solid rgba(61, 147, 255, 0.3);
    text-align: center;
    padding: 12px 5px;
    margin: 5px;
    background: rgba(15, 23, 42, 0.8);
    -moz-border-radius: 8px;
    border-radius: 8px;
    color: #94a3b8;
    font-weight: bold;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.rankings_menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.rankings_menu a:hover::before {
    left: 100%;
}

.rankings_menu a:hover {
    background: rgba(61, 147, 255, 0.2);
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(61, 147, 255, 0.3);
    border-color: rgba(61, 147, 255, 0.6);
}

.rankings_menu a.active {
    background: linear-gradient(135deg, rgba(61, 147, 255, 0.3), rgba(0, 201, 47, 0.2));
    color: #ffffff !important;
    border-color: rgba(61, 147, 255, 0.6);
    box-shadow: 0 2px 8px rgba(61, 147, 255, 0.3);
}

/* Logos de guild */
.rankings_guild_logo tr td {
    border: 0px !important;
    padding: 10px !important;
    margin: 0px !important;
}

/* Imágenes de Gens mejoradas */
.rankings-gens-img {
    width: auto !important;
    height: 35px !important;
    border: 2px solid #0048b3 !important;
    -moz-box-shadow: 0 0 8px rgba(3, 104, 255, 0.5) !important;
    -webkit-box-shadow: 0 0 8px rgba(3, 104, 255, 0.5) !important;
    box-shadow: 0 0 8px rgba(3, 104, 255, 0.5) !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
}

.rankings-gens-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(3, 104, 255, 0.7) !important;
}

/* Estilos para diferentes tipos de ranking */
.ranking-level {
    color: #28a745 !important;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(40, 167, 69, 0.3);
}

.ranking-reset {
    color: #dc3545 !important;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(220, 53, 69, 0.3);
}

.ranking-gr {
    color: #6f42c1 !important;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(111, 66, 193, 0.3);
}

.ranking-pk {
    color: #e83e8c !important;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(232, 62, 140, 0.3);
}

/* Filtros de clase mejorados */
.rankings-class-filter {
    display: inline-block;
    list-style-type: none;
    margin: 20px auto;
    padding: 15px 20px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -khtml-border-radius: 10px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #0368ff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.rankings-class-filter li {
    display: inline-block;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.rankings-class-filter li:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    transform: translateY(-3px);
}

.rankings-class-filter-selection {
    display: inline-block;
    width: 80px;
    text-align: center;
    color: #0368ff;
    font-size: 11px;
    cursor: pointer;
    font-weight: bold;
    padding: 8px 5px;
    background: #ffffff;
    border: 2px solid #0368ff;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.rankings-class-filter-selection:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #0368ff, #0048b3);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(3, 104, 255, 0.3);
}

.rankings-class-filter-selection:hover img {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
}

.rankings-class-filter-selection img {
    width: 45px;
    height: auto;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -khtml-border-radius: 50%;
    margin-bottom: 5px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(3, 104, 255, 0.4);
    -moz-box-shadow: 0px 0px 8px 0px rgba(3, 104, 255, 0.4);
    box-shadow: 0px 0px 8px 0px rgba(3, 104, 255, 0.4);
    border: 2px solid #0368ff;
}

.rankings-class-filter-grayscale {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

/* Estado vacío mejorado */
.rankings-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border: 2px solid #e3e3e3;
    border-radius: 8px;
    margin: 20px 0;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.rankings-empty i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 15px;
    display: block;
    animation: emptyPulse 2s ease-in-out infinite;
}

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

/* Efecto brillante sutil para toda la tabla */
.rankings-table::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(3, 104, 255, 0.05),
        transparent
    );
    transform: rotate(45deg);
    animation: tableShine 8s linear infinite;
    pointer-events: none;
}

@keyframes tableShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
/* ========================================
   MENÚ DE RANKINGS - VERSIÓN MEJORADA
   ======================================== */

.rankings_menu {
    width: 90%;
    overflow: hidden;
    text-align: center;
    margin: 0px auto 30px auto;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 3px solid #0368ff;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(3, 104, 255, 0.3);
    position: relative;
    animation: menuGlow 4s ease-in-out infinite;
}

@keyframes menuGlow {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 30px rgba(3, 104, 255, 0.3);
        border-color: #0368ff;
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 40px rgba(3, 104, 255, 0.5);
        border-color: #0048b3;
    }
}

/* Efecto de brillo animado en el fondo */
.rankings_menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(3, 104, 255, 0.2),
        transparent
    );
    animation: menuShine 3s linear infinite;
    pointer-events: none;
    border-radius: 15px;
}

@keyframes menuShine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.rankings_menu span {
    width: 100%;
    display: inline-block;
    padding: 10px 0px 20px 0px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(3, 104, 255, 0.8),
        0 0 20px rgba(3, 104, 255, 0.5),
        0 0 30px rgba(3, 104, 255, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: titlePulse 3s ease-in-out infinite;
    position: relative;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(3, 104, 255, 0.8),
            0 0 20px rgba(3, 104, 255, 0.5),
            0 0 30px rgba(3, 104, 255, 0.3),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(3, 104, 255, 1),
            0 0 30px rgba(3, 104, 255, 0.7),
            0 0 45px rgba(3, 104, 255, 0.5),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

/* Icono decorativo antes del título */
.rankings_menu span::before {
    content: '🏆';
    margin-right: 15px;
    font-size: 30px;
    animation: trophyFloat 2s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

@keyframes trophyFloat {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    50% { 
        transform: translateY(-5px) scale(1.1); 
    }
}

/* Icono decorativo después del título */
.rankings_menu span::after {
    content: '🏆';
    margin-left: 15px;
    font-size: 30px;
    animation: trophyFloat 2s ease-in-out infinite 0.5s;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

/* Botones del menú mejorados */
.rankings_menu a {
    display: inline-block;
    min-width: 160px;
    border: 2px solid #0368ff;
    text-align: center;
    padding: 14px 20px;
    margin: 8px;
    background: linear-gradient(145deg, #ffffff, #f0f8ff);
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #0048b3;
    font-weight: 800;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Efecto de onda al hacer hover */
.rankings_menu a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(3, 104, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.rankings_menu a:hover::before {
    width: 300px;
    height: 300px;
}

/* Efecto de brillo deslizante en los botones */
.rankings_menu a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.5s;
}

.rankings_menu a:hover::after {
    left: 150%;
}

.rankings_menu a:hover {
    background: linear-gradient(135deg, #0368ff 0%, #0048b3 50%, #0252cc 100%);
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 20px rgba(3, 104, 255, 0.5),
        0 0 30px rgba(3, 104, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #00d4ff;
}

/* Botón activo (seleccionado) */
.rankings_menu a.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    color: #ffffff !important;
    border-color: #FFD700;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.5),
        0 0 25px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-weight: 900;
    animation: activeButtonGlow 2s ease-in-out infinite;
}

@keyframes activeButtonGlow {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(255, 215, 0, 0.5),
            0 0 25px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(255, 215, 0, 0.7),
            0 0 35px rgba(255, 215, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.rankings_menu a.active::before {
    content: '⭐';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    animation: starRotate 2s linear infinite;
}

@keyframes starRotate {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

.rankings_menu a.active::after {
    content: '⭐';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    animation: starRotate 2s linear infinite reverse;
}

/* Efecto hover para botón activo */
.rankings_menu a.active:hover {
    background: linear-gradient(135deg, #FFE55C 0%, #FFB700 50%, #FF9500 100%);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 
        0 10px 25px rgba(255, 215, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .rankings_menu {
        width: 95%;
        padding: 20px 15px;
    }
    
    .rankings_menu span {
        font-size: 22px;
        padding: 8px 0px 15px 0px;
    }
    
    .rankings_menu a {
        min-width: 140px;
        padding: 12px 15px;
        margin: 5px;
        font-size: 13px;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 480px) {
    .rankings_menu span {
        font-size: 18px;
    }
    
    .rankings_menu a {
        min-width: 120px;
        padding: 10px 12px;
        font-size: 12px;
    }
}

/* 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: #5d8ec9;
}
.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: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -khtml-border-radius: 50%;
}

/* TERMS OF SERVICE PAGE */
.tos_list li {
	color: #5d8ec9;
	margin-bottom: 40px;
}
.tos_list li p {
	color: #555;
	text-align: justify;
	text-justify: inter-word;
	text-transform: none;
	padding-right: 35px;
}

/* 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: 18px;
}

.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: rgba(10, 15, 30, 0.88) !important;
	background-image: none !important;
	border: 1px solid rgba(255,255,255,0.09) !important;

}

.panel-sidebar > .panel-heading {
	background: rgba(15, 23, 42, 0.75) !important;
	background-image: none !important;
	color: #e2e8f0 !important;
	font-family: 'Lato', sans-serif;
	border: 0px;
	border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.panel-sidebar > .panel-heading > .panel-title {
	font-weight: bold;
}

.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: #fff !important;
	font-weight: bold;
}
.panel-usercp ul li a:active, .panel-usercp ul li a:hover {
	color: #5d8ec9 !important;
}

.panel-usercp ul li img {
	position: relative;
	top: -2px;
	padding-right: 10px;
	width: 30px;
	height: auto;
}

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

.sidebar-banner img {
	border: 0px;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -khtml-border-radius: 5px;
	width: 100%;
	height: auto;
}

/* PANEL SIDEBAR EVENT TIMERS */
.panel-sidebar-events {
	background: rgba(10, 15, 30, 0.88) !important;
	background-image: none !important;
	border: 1px solid rgba(255,255,255,0.09) !important;
}
	.panel-sidebar-events > .panel-heading {
		background: rgba(15, 23, 42, 0.75) !important;
		background-image: none !important;
		color: #e2e8f0 !important;
		font-family: 'Lato', sans-serif;
		border: 0px;
		border-bottom: 1px solid rgba(255,255,255,0.08) !important;
	}

	.panel-sidebar-events > .panel-heading > .panel-title {
		font-weight: bold;
	}
	.panel-sidebar-events > .panel-body {
		color: #ccc;
	}
		.panel-sidebar-events > .panel-body > .table {
			margin-bottom: 0px !important;
		}

.event-schedule-open {
	color: #00ff00;
}

.event-schedule-inprogress {
	color: #ffff00;
}

.panel-sidebar-events .smalltext {
	font-size: 11px;
	position: relative;
	top: -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: 'Lato', 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: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -khtml-border-radius: 50%;
}
.panel-addstats .character-name {
	color: #666;
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	border-bottom: 1px solid #e3e3e3;
	padding: 20px 0px;
	margin-bottom: 20px !important;
	font-weight: bold;
}

/* HELPER CLASSES */
.rounded_corners_image {
	-moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -khtml-border-radius: 50%;
}

/* DOWNLOADS - ESTILO MODERNO */
.panel-downloads {
    margin-bottom: 24px;
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    color: #1a1a1a;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.panel-downloads:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-1px);
    border-color: #c8d1e0;
}

.download-description {
    font-size: 1.5125rem;
    color: #64748b;
    line-height: 1.5;
    margin: 6px 0 0 0;
    padding: 0;
}

.online-status-indicator {
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 16px;
    background: #f1f5f9;
    color: #475569;
}

/* Estado en línea */
.online-status-indicator.online {
    background: #f0f9ff;
    color: #0369a1;
}

/* Estado offline */
.online-status-indicator.offline {
    background: #fef2f2;
    color: #dc2626;
}

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

/* LANGUAGE PICKER */
.webengine-language-switcher {
	display: inline-block;
	list-style: none;
	padding: 0px !important;
	margin: 0px !important;
	overflow: hidden;
	transition: all .3s ease;
}
	.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;
	}

/* MY ACCOUNT CHARACTER LIST */
.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 */

.rankings-class-filter {
	display: inline-block;
	list-style-type: none;
	margin: 20px auto;
	padding: 10px 20px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
}

	.rankings-class-filter li {
		display: inline-block;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
		margin-bottom: 10px;
	}
	
	.rankings-class-filter li:hover {
		-webkit-filter: grayscale(0%);
		filter: grayscale(0%);
	}

.rankings-class-filter-selection {
	display: inline-block;
	width: 75px;
	text-align: center;
	color: #000000;
	font-size: 11px;
	cursor: pointer;
}

	.rankings-class-filter-selection:hover {
		color: #000000 !important;
	}

	.rankings-class-filter-selection:hover img {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}

.rankings-class-filter-selection img {
	width: 40px;
	height: auto;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-khtml-border-radius: 50%;
	margin-bottom: 5px;
	-moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
}

.rankings-class-filter-grayscale {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

#header img {
  width: 670px;
  height: auto;
  display: block;
  margin: 0 auto;
}

#header img {
  display: block;
  margin: 0 auto;

  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.9));
  transition: transform 0.3s ease, filter 0.3s ease;
}

#header img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.9));
}


@media (max-width: 768px) {
  #header img {
    width: 90%;
    max-width: 380px;
  }
}

#header a {
  display: inline-block;
  width: fit-content;
  height: fit-content;
}

#header a {
  pointer-events: none;
}

#header a img {
  pointer-events: auto;
}

@media (max-width: 1024px) {
  #content {
    flex-direction: column;
  }

  .panel-sidebar {
    width: 100%;
	  flex-shrink: 0;
  }
}

<style>
    .donation-link img {
        width: 100%;
        height: 130px; 
        object-fit: contain; 
        background: #1a1a1a; /* Fondo oscuro similar al de PayPal */
        border-radius: 10px;
        margin-bottom: 10px;
        display: block;
    }

	/* ===================================
   DONATION METHODS - Página Principal
   =================================== */
/* ========================================
   DONATIONS / DONACIONES - VERSIÓN MEJORADA
   ======================================== */

/* ===================================
   CONTENEDOR PRINCIPAL DE MÉTODOS DE DONACIÓN
   =================================== */
.donation-methods-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin: 40px 0;
    padding: 20px;
}

/* ===================================
   TARJETAS DE DONACIÓN - DISEÑO MODERNO
   =================================== */
.donation-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 255, 179, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(0, 255, 179, 0.2);
    position: relative;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.01);
    }
}

.donation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 255, 179, 0.1),
        transparent
    );
    transition: left 0.8s;
    pointer-events: none;
}

.donation-card:hover::before {
    left: 100%;
}

.donation-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 25px 60px rgba(0, 255, 179, 0.4),
        0 0 0 2px rgba(0, 255, 179, 0.4),
        0 0 40px rgba(0, 255, 179, 0.3);
    border-color: rgba(0, 255, 179, 0.5);
}

/* ===================================
   CABECERA DE LA TARJETA
   =================================== */
.donation-card-header {
    background: linear-gradient(135deg, #0f3460, #16213e);
    padding: 50px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donation-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 179, 0.1) 0%, transparent 70%);
    animation: headerGlow 4s linear infinite;
}

@keyframes headerGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.donation-card-header img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.donation-card:hover .donation-card-header img {
    transform: scale(1.1);
    filter: drop-shadow(0 10px 30px rgba(0, 255, 179, 0.4));
}

/* ===================================
   CUERPO DE LA TARJETA
   =================================== */
.donation-card-body {
    padding: 30px 25px;
    background: linear-gradient(to bottom, #16213e, #1a1a2e);
}

.donation-card-body h3 {
    color: #00ffb3;
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 
        0 0 10px rgba(0, 255, 179, 0.6),
        0 0 20px rgba(0, 255, 179, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(0, 255, 179, 0.6),
            0 0 20px rgba(0, 255, 179, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(0, 255, 179, 0.8),
            0 0 30px rgba(0, 255, 179, 0.6),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

.donation-card-body p {
    color: #c8d6e5;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ===================================
   LISTA DE BENEFICIOS
   =================================== */
.donation-benefits {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.donation-benefits li {
    padding: 12px 15px 12px 45px;
    color: #dfe6e9;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.donation-benefits li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #00ffb3;
    font-weight: bold;
    font-size: 18px;
    width: 24px;
    height: 24px;
    background: rgba(0, 255, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #00ffb3;
}

.donation-benefits li:hover {
    padding-left: 50px;
    background: rgba(0, 255, 179, 0.05);
    color: #ffffff;
}

.donation-benefits li:hover::before {
    background: #00ffb3;
    color: #1a1a2e;
    box-shadow: 0 0 15px rgba(0, 255, 179, 0.6);
}

.donation-benefits li:last-child {
    border-bottom: none;
}

/* ===================================
   PIE DE LA TARJETA CON BOTÓN
   =================================== */
.donation-card-footer {
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.donation-card-footer .btn {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.donation-card-footer .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.donation-card-footer .btn:hover::before {
    width: 400px;
    height: 400px;
}

/* Botón Primary (Azul/Morado) */
.donation-card-footer .btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.donation-card-footer .btn-primary:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);
}

/* Botón Success (Verde) */
.donation-card-footer .btn-success {
    background: linear-gradient(135deg, #00ffb3, #00c896);
    color: #1a1a2e;
    box-shadow: 0 8px 20px rgba(0, 255, 179, 0.4);
}

.donation-card-footer .btn-success:hover {
    background: linear-gradient(135deg, #00c896, #00ffb3);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 255, 179, 0.6);
}

/* Botón Warning (Dorado - para PayPal) */
.donation-card-footer .btn-warning {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.donation-card-footer .btn-warning:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
}

/* ===================================
   PAYPAL GATEWAY - ESTILO MEJORADO
   =================================== */
.paypal-gateway-container {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
}

.paypal-gateway-content {
    background: linear-gradient(145deg, #fff9e6, #fef2da);
    border: 3px solid #f79433;
    padding: 30px;
    overflow: auto;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    font-weight: bold;
    box-shadow: 
        0 10px 30px rgba(247, 148, 51, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
}

.paypal-gateway-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.2),
        transparent
    );
    animation: paypalShine 3s linear infinite;
}

@keyframes paypalShine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.paypal-gateway-logo {
    width: 100%;
    height: 120px;
    background: #ffffff url('../img/paypal-logo-200-68.png') no-repeat center;
    background-size: contain;
    margin-bottom: 20px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #f79433;
}

.paypal-gateway-conversion-rate {
    margin: 20px auto;
    text-align: center;
    color: #000;
    font-size: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 2px dashed #f79433;
}

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

.paypal-gateway-form div {
    display: inline-block;
    padding: 0px 15px;
    color: #000;
    font-size: 20px;
    font-weight: bold;
}

.paypal-gateway-form input[type=text] {
    width: 80px;
    font-size: 26px;
    border: 3px solid #f79433;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    color: #f79433;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(247, 148, 51, 0.2);
}

.paypal-gateway-form input[type=text]:focus {
    border-color: #FFD700;
    outline: none;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

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

.paypal-gateway-continue input[type=submit] {
    background: linear-gradient(135deg, #0070ba, #003087);
    width: 220px;
    height: 50px;
    border: 0px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 112, 186, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.paypal-gateway-continue input[type=submit]:hover {
    background: linear-gradient(135deg, #003087, #0070ba);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 112, 186, 0.6);
}

/* ===================================
   LINK DE DONACIÓN CON IMAGEN
   =================================== */
.donation-link {
    display: block;
    text-align: center;
    margin: 30px auto;
    max-width: 600px;
    transition: all 0.3s ease;
}

.donation-link img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 15px;
    margin-bottom: 15px;
    display: block;
    padding: 20px;
    border: 2px solid rgba(0, 255, 179, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.donation-link:hover img {
    transform: translateY(-5px) scale(1.03);
    border-color: rgba(0, 255, 179, 0.5);
    box-shadow: 0 15px 40px rgba(0, 255, 179, 0.4);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .donation-methods-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 15px;
    }
    
    .donation-card-header {
        padding: 40px 20px;
    }
    
    .donation-card-header img {
        max-width: 180px;
    }
    
    .donation-card-body {
        padding: 25px 20px;
    }
    
    .donation-card-body h3 {
        font-size: 22px;
    }
    
    .paypal-gateway-container {
        width: 95%;
    }
    
    .paypal-gateway-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .donation-card-body h3 {
        font-size: 20px;
    }
    
    .donation-benefits li {
        font-size: 14px;
        padding: 10px 12px 10px 40px;
    }
    
    .donation-card-footer .btn {
        font-size: 15px;
        padding: 14px;
    }
}

/* ===================================
   ANIMACIÓN ADICIONAL PARA DESTACAR OFERTAS
   =================================== */
.donation-card.featured {
    border: 3px solid #FFD700;
    animation: featuredPulse 2s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% {
        box-shadow: 
            0 15px 40px rgba(255, 215, 0, 0.4),
            0 0 0 3px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 20px 50px rgba(255, 215, 0, 0.6),
            0 0 0 5px rgba(255, 215, 0, 0.4);
    }
}

.donation-card.featured::after {
    content: '⭐ DESTACADO ⭐';
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
    padding: 8px 50px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

/* ========================================
   REGISTRO DE CUENTAS - VERSIÓN MEJORADA
   ======================================== */

/* ===================================
   CONTENEDOR PRINCIPAL DEL REGISTRO
   =================================== */
.register-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 0;
}

/* ===================================
   PANEL DE REGISTRO
   =================================== */
.panel-register {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border: 3px solid #0368ff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(3, 104, 255, 0.3);
    position: relative;
    animation: panelGlow 4s ease-in-out infinite;
}

@keyframes panelGlow {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(3, 104, 255, 0.3);
        border-color: #0368ff;
    }
    50% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.6),
            0 0 50px rgba(3, 104, 255, 0.5);
        border-color: #00d4ff;
    }
}

/* Efecto de brillo animado */
.panel-register::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(3, 104, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: registerShine 8s linear infinite;
    pointer-events: none;
}

@keyframes registerShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ===================================
   CABECERA DEL PANEL
   =================================== */
.panel-register .panel-heading {
    background: linear-gradient(135deg, #0048b3, #0368ff);
    color: #ffffff;
    padding: 30px 25px;
    border-bottom: 3px solid #0048b3;
    position: relative;
    overflow: hidden;
}

.panel-register .panel-heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: headerSlide 3s linear infinite;
}

@keyframes headerSlide {
    0% { left: -100%; }
    100% { left: 200%; }
}

.panel-register .panel-heading .panel-title {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(0, 212, 255, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.panel-register .panel-heading .panel-title::before {
    content: '🎮';
    margin-right: 15px;
    font-size: 30px;
    animation: iconFloat 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

.panel-register .panel-heading .panel-title::after {
    content: '🎮';
    margin-left: 15px;
    font-size: 30px;
    animation: iconFloat 2s ease-in-out infinite 0.5s;
    display: inline-block;
}

/* Subtítulo o descripción */
.panel-register .panel-heading p {
    text-align: center;
    margin: 10px 0 0 0;
    font-size: 14px;
    opacity: 0.9;
    position: relative;
}

/* ===================================
   CUERPO DEL PANEL (FORMULARIO)
   =================================== */
.panel-register .panel-body {
    padding: 40px 35px;
    background: linear-gradient(to bottom, #16213e, #1a1a2e);
}

/* ===================================
   GRUPOS DE FORMULARIO
   =================================== */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    color: #00d4ff;
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Icono antes del label */
.form-group label::before {
    content: '▸';
    margin-right: 8px;
    color: #0368ff;
    font-size: 16px;
}

/* ===================================
   INPUTS DE TEXTO, PASSWORD, EMAIL
   =================================== */
.form-control,
input[type=text],
input[type=password],
input[type=email],
input[type=number] {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(3, 104, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
}

.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #0368ff;
    outline: none;
    box-shadow: 
        inset 0 2px 5px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(3, 104, 255, 0.4),
        0 0 0 3px rgba(3, 104, 255, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* ===================================
   SELECT / DROPDOWN
   =================================== */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230368ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
    cursor: pointer;
}

select.form-control:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

/* ===================================
   CHECKBOX Y RADIO
   =================================== */
.form-check {
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.form-check input[type=checkbox],
.form-check input[type=radio] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #0368ff;
}

.form-check label {
    color: #c8d6e5;
    font-size: 14px;
    margin: 0;
    cursor: pointer;
    text-transform: none;
    letter-spacing: normal;
}

.form-check label::before {
    content: none;
}

/* ===================================
   BOTÓN DE SUBMIT / REGISTRO
   =================================== */
.btn-register,
.btn-submit,
button[type=submit],
input[type=submit] {
    width: 100%;
    padding: 16px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #0368ff, #0048b3);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 20px rgba(3, 104, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.btn-register::before,
.btn-submit::before,
button[type=submit]::before,
input[type=submit]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-register:hover::before,
.btn-submit:hover::before,
button[type=submit]:hover::before,
input[type=submit]:hover::before {
    width: 400px;
    height: 400px;
}

.btn-register:hover,
.btn-submit:hover,
button[type=submit]:hover,
input[type=submit]:hover {
    background: linear-gradient(135deg, #0048b3, #0368ff);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(3, 104, 255, 0.6),
        0 0 40px rgba(3, 104, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-register:active,
.btn-submit:active,
button[type=submit]:active,
input[type=submit]:active {
    transform: translateY(-1px);
}

/* ===================================
   MENSAJES DE ERROR Y ÉXITO
   =================================== */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    animation: alertSlideIn 0.5s ease;
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-danger,
.alert-error {
    background: linear-gradient(135deg, #ff4757, #ff6348);
    color: #ffffff;
    border: 2px solid #ff6b6b;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.alert-success {
    background: linear-gradient(135deg, #00d2d3, #01a3a4);
    color: #ffffff;
    border: 2px solid #00ffb3;
    box-shadow: 0 4px 15px rgba(0, 255, 179, 0.4);
}

.alert-warning {
    background: linear-gradient(135deg, #ffa502, #ff7979);
    color: #1a1a2e;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.alert-info {
    background: linear-gradient(135deg, #0368ff, #00d4ff);
    color: #ffffff;
    border: 2px solid #00d4ff;
    box-shadow: 0 4px 15px rgba(3, 104, 255, 0.4);
}

/* Icono en alertas */
.alert::before {
    margin-right: 10px;
    font-size: 18px;
}

.alert-danger::before,
.alert-error::before {
    content: '❌';
}

.alert-success::before {
    content: '✅';
}

.alert-warning::before {
    content: '⚠️';
}

.alert-info::before {
    content: 'ℹ️';
}

/* ===================================
   PIE DEL PANEL
   =================================== */
.panel-register .panel-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-register .panel-footer p {
    color: #c8d6e5;
    font-size: 14px;
    margin: 0 0 15px 0;
}

.panel-register .panel-footer a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.panel-register .panel-footer a:hover {
    color: #0368ff;
    text-shadow: 0 0 15px rgba(3, 104, 255, 0.6);
}

/* ===================================
   REQUISITOS DE CONTRASEÑA
   =================================== */
.password-requirements {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(3, 104, 255, 0.3);
}

.password-requirements p {
    color: #00d4ff;
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements li {
    color: #c8d6e5;
    font-size: 13px;
    padding: 5px 0 5px 25px;
    position: relative;
}

.password-requirements li::before {
    content: '○';
    position: absolute;
    left: 8px;
    color: #0368ff;
    font-size: 14px;
}

.password-requirements li.valid::before {
    content: '✓';
    color: #00ffb3;
}

/* ===================================
   DIVISOR CON TEXTO
   =================================== */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.divider span {
    padding: 0 15px;
    color: #c8d6e5;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   BOTONES SECUNDARIOS (Login con redes sociales, etc)
   =================================== */
.btn-secondary {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* ===================================
   CAPTCHA CONTAINER
   =================================== */
.captcha-container {
    margin: 25px 0;
    text-align: center;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .register-container {
        max-width: 95%;
        margin: 20px auto;
    }
    
    .panel-register .panel-heading {
        padding: 25px 20px;
    }
    
    .panel-register .panel-heading .panel-title {
        font-size: 24px;
    }
    
    .panel-register .panel-body {
        padding: 30px 25px;
    }
    
    .form-control,
    input[type=text],
    input[type=password],
    input[type=email],
    input[type=number] {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .btn-register,
    .btn-submit,
    button[type=submit],
    input[type=submit] {
        padding: 14px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .panel-register .panel-heading .panel-title {
        font-size: 20px;
    }
    
    .panel-register .panel-heading .panel-title::before,
    .panel-register .panel-heading .panel-title::after {
        font-size: 24px;
    }
    
    .panel-register .panel-body {
        padding: 25px 20px;
    }
}

/* ===================================
   ANIMACIÓN DE CARGA EN BOTÓN
   =================================== */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: btnSpin 0.8s linear infinite;
}

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

/* Agrega esto al final de tu style.css */
.btn-xs,
.btn-group-xs > .btn {
    padding: 6px 8px;
    font-size: 8px;
    line-height: 1.5;
    border-radius: 6px;
    background: linear-gradient(135deg, #0368ff, #0048b3);
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.btn-xs:hover,
.btn-group-xs > .btn:hover {
    background: linear-gradient(135deg, #0048b3, #0368ff);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 104, 255, 0.5);
}

.btn-login-rgb {
    background: linear-gradient(
        90deg,
        #ff0000 0%,
        #ff7f00 16%,
        #ffff00 33%,
        #00ff00 50%,
        #0000ff 66%,
        #8b00ff 83%,
        #ff0000 100%
    );
    background-size: 200% 100%;
    color: #ffffff !important;
    border: 3px solid #ffffff !important;
    padding: 14px 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    animation: rgbRainbow 4s linear infinite;
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

@keyframes rgbRainbow {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    100% {
        background-position: 200% 50%;
        filter: hue-rotate(360deg);
    }
}

.btn-login-rgb::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: rgbSweep 2s linear infinite;
}

@keyframes rgbSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-login-rgb:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 
        0 0 40px rgba(255, 255, 255, 0.8),
        0 10px 30px rgba(0, 0, 0, 0.5);
    animation: rgbRainbow 2s linear infinite;
}
</style>