        /* RESET GENERAL */
        body { background: #050505; color: #fff; font-family: 'Open Sans', sans-serif; margin: 0; padding: 0; overflow-x: hidden; }
        a { color: #ed8942; text-decoration: none; transition: 0.3s; }
        a:hover { color: #fff; text-decoration: none; }
        #bgVideo { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; object-fit: cover; z-index: -1; opacity: 0.25; mix-blend-mode: screen; }
        .wrapper { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 15px; position: relative; z-index: 1; display: flex; flex-direction: column; min-height: 100vh; }

        /* HEADER */
        .headerHomePage { background: rgba(12, 12, 15, 0.85); backdrop-filter: blur(10px); border-radius: 12px; padding: 20px 25px; margin: 20px 0 30px 0; box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 10px 30px rgba(0,0,0,0.6); border-top: 2px solid #ed8942; border-bottom: 2px solid #ed8942; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; padding-bottom: 15px; border-bottom: 1px dashed rgba(212,175,55,0.3); }
        .nav-logo img { max-height: 55px; filter: drop-shadow(0 0 10px rgba(212,175,55,0.4)); }
        
        .nav-links { display: flex; gap: 5px; list-style: none; margin: 0; padding: 0; }
        .nav-links a { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 800; text-transform: uppercase; color: #ed8942; padding: 10px 12px; border-radius: 8px; letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px; }
        .nav-links a:hover { color: #fff; background: rgba(212,175,55,0.15); box-shadow: 0 0 15px rgba(212,175,55,0.4); }

        /* MENU CUENTA DESPLEGABLE (ARREGLADO) */
        .nav-account-wrapper { position: relative; display: inline-block; padding-bottom: 15px; margin-bottom: -15px; z-index: 50;} /* PUENTE INVISIBLE */
        .nav-account { display: flex; align-items: center; background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(0,0,0,0.5)); border: 1px solid #ed8942; padding: 8px 20px; border-radius: 30px; cursor: pointer; transition: 0.3s; text-decoration: none; position: relative; z-index: 51;}
        .nav-account:hover { background: rgba(212,175,55,0.3); box-shadow: 0 0 15px rgba(212,175,55,0.5); }
        .nav-acc-info { display: flex; flex-direction: column; text-align: right; margin-right: 15px; line-height: 1.2; }
        .nav-acc-title { font-size: 9px; color: #aaa; text-transform: uppercase; font-weight: 600; font-family: 'Montserrat', sans-serif; }
        .nav-acc-user { font-size: 13px; font-weight: 900; color: #fff; font-family: 'Montserrat', sans-serif; }
        .nav-acc-icon i { font-size: 22px; color: #ed8942; }
        
        /* DROPDOWN PARA CERRAR SESION */
        .nav-account-dropdown { display: none; position: absolute; top: 100%; right: 0; background: rgba(10,10,12,0.95); border: 1px solid rgba(212,175,55,0.3); border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.8); min-width: 170px; z-index: 100; margin-top: 0px; padding: 8px 0; overflow: hidden; }
        .nav-account-wrapper:hover .nav-account-dropdown { display: block; animation: fadeIn 0.2s ease-in-out; }
        .nav-account-dropdown a { display: block; padding: 10px 15px; color: #fff; font-size: 11px; font-weight: 700; font-family: 'Montserrat', sans-serif; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.05); transition: 0.2s; text-align: left; text-transform: uppercase; }
        .nav-account-dropdown a i { width: 16px; text-align: center; margin-right: 8px; color: #ed8942; font-size: 13px; }
        .nav-account-dropdown a:last-child { border-bottom: none; }
        .nav-account-dropdown a:hover { background: rgba(212,175,55,0.15); color: #ed8942; padding-left: 20px; text-decoration: none;}
        .nav-account-dropdown a.logout { color: #ff4d4d; }
        .nav-account-dropdown a.logout i { color: #ff4d4d; }
        .nav-account-dropdown a.logout:hover { background: rgba(255,77,77,0.15); color: #ff4d4d; padding-left: 20px; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

        .stats-bar { display: flex; justify-content: center; gap: 20px; margin-top: 15px; flex-wrap: wrap; }
        .stat-pill { background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; padding: 8px 20px; display: flex; align-items: center; gap: 10px; box-shadow: inset 0 0 10px rgba(0,0,0,0.5); font-family: 'Montserrat', sans-serif; }
        .stat-pill i { color: #ed8942; font-size: 16px; }
        .stat-texts { display: flex; flex-direction: column; line-height: 1; }
        .stat-label { font-size: 9px; color: #888; text-transform: uppercase; font-weight: 800; letter-spacing: 1px; margin-bottom:2px; }
        .stat-val { font-size: 14px; font-weight: 900; color: #fff; }
        .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 5px; }
        .dot-on { background: #4ade80; box-shadow: 0 0 8px #4ade80; }
        .dot-off { background: #ff4d4d; box-shadow: 0 0 8px #ff4d4d; }

        /* LAYOUT PRINCIPAL */
        .home-grid { display: flex; gap: 20px; align-items: flex-start; justify-content: space-between; }
        .main-content { width: calc(100% - 340px); display: flex; flex-direction: column; gap: 20px; }
        .sidebar { width: 320px; flex-shrink: 0; display: flex; flex-direction: column; gap: 20px; }

        .slider-wrapper { width: 100%; border-radius: 12px; overflow: hidden; border: 1px solid rgba(212,175,55,0.2); background: #000; }
        .slider-wrapper > div { width: 100% !important; max-width: none !important; margin: 0 !important; }
        .slider-wrapper img { width: 100% !important; height: auto; object-fit: cover; display: block; }

        /* CAJAS MODERNAS GLOBALES */
        .box { background: rgba(12, 12, 15, 0.85); border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; padding: 20px; box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 10px 20px rgba(0,0,0,0.5); position: relative; overflow: hidden; }
        .box-title { margin: 0 0 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; }
        .box-title h2 { color: #ed8942; font-size: 14px; font-weight: 900; text-transform: uppercase; font-family: 'Montserrat', sans-serif; margin: 0; display: flex; align-items: center; gap: 8px; }
        
        /* TOPS ROW */
        .tops-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
        .top-box { background: rgba(0,0,0,0.6); border: 1px solid #333; border-radius: 10px; padding: 15px; text-align: center; }
        .top-title { color: #ed8942; font-size: 13px; font-weight: 900; margin-bottom: 15px; text-transform: uppercase; font-family: 'Montserrat', sans-serif; display:flex; justify-content:center; align-items:center; gap:8px; }
        
        .scroll-wrapper { height: 180px; overflow: hidden; -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent); mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent); }
        .scroll-inner { animation: scrollList 25s linear infinite; display: flex; flex-direction: column; gap: 8px; }
        .scroll-wrapper:hover .scroll-inner { animation-play-state: paused; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        
        .top-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 8px; border-radius: 6px; display: flex; justify-content: space-between; align-items: center; }
        .top-item-name { font-weight: 700; font-size: 12px; color: #fff; }
        .top-item-val { font-weight: 900; font-size: 12px; color: #ed8942; background: rgba(212,175,55,0.1); padding: 2px 6px; border-radius: 4px; }

        /* BANNERS HORIZONTALES */
        .banner-box { display: flex; align-items: center; gap: 20px; background: linear-gradient(45deg, rgba(10,10,12,0.9), rgba(20,20,25,0.9)); border: 1px solid #444; border-left: 4px solid #ed8942; padding: 25px; border-radius: 12px; transition: 0.3s; }
        .banner-box:hover { border-color: #ed8942; box-shadow: 0 10px 25px rgba(212,175,55,0.15); transform: translateY(-3px); }
        .banner-icon { font-size: 45px; color: #ed8942; filter: drop-shadow(0 0 10px rgba(212,175,55,0.5)); }
        .banner-content { flex: 1; }
        .banner-title { font-size: 18px; font-weight: 900; color: #fff; text-transform: uppercase; margin: 0 0 5px 0; font-family: 'Montserrat', sans-serif;}
        .banner-desc { color: #aaa; font-size: 12px; line-height: 1.5; margin: 0; }
        .banner-btn { background: #ed8942; color: #000; font-weight: 800; padding: 8px 20px; border-radius: 30px; text-transform: uppercase; font-size: 11px; border: none; cursor: pointer; transition: 0.3s; display:inline-block; margin-top:10px; font-family: 'Montserrat', sans-serif; text-decoration: none;}
        .banner-btn:hover { background: #fff; color: #000; box-shadow: 0 0 15px #fff; text-decoration: none;}

        /* Botón Inhabilitado */
        .casino-btn.disabled { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #666; box-shadow: none; cursor: not-allowed; text-decoration: none;}
        .casino-btn.disabled:hover { background: rgba(255,255,255,0.05); box-shadow: none; color: #666; text-decoration: none;}

        /* Cinta PRÓXIMAMENTE */
        .casino-badge { position: absolute; top: 16px; right: -38px; background: #ff4d4d; color: #fff; font-size: 8px; font-weight: 900; padding: 4px 40px; transform: rotate(45deg); font-family: 'Montserrat', sans-serif; box-shadow: 0 2px 5px rgba(0,0,0,0.5); letter-spacing: 1px; z-index: 2;}

        /* SIDEBAR INTERIOR STYLES */
        .search-form { display: flex; gap: 5px; }
        .search-input { flex: 1; background: rgba(0,0,0,0.5); border: 1px solid rgba(212,175,55,0.3); color: #fff; padding: 8px 12px; border-radius: 6px; outline: none; font-size:12px; }
        .search-input:focus { border-color: #ed8942; }
        .search-btn { background: #ed8942; color: #000; border: none; padding: 0 15px; font-weight: bold; border-radius: 6px; cursor: pointer; }

        /* EVENTOS (Relojes Nativos Fijos) */
        .event-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 12px; }
        .event-row:last-child { border-bottom: none; padding-bottom: 0; }
        .event-name { font-weight: 700; color: #fff; }
        .event-time { font-family: monospace; font-size: 12px; color: #ed8942; font-weight: bold; background: rgba(212,175,55,0.1); padding: 2px 6px; border-radius: 4px; }
        .event-label { color:#888; font-size:10px; display:inline-block; margin-left:8px; }
        
        /* STAFF */
        .staff-row { display: flex; justify-content: space-between; align-items: center; padding: 8px; background: rgba(0,0,0,0.3); border-radius: 6px; margin-bottom: 5px; border: 1px solid rgba(255,255,255,0.02); }
        .staff-name { font-weight: bold; font-size: 12px; color: #fff; }
        .badge-admin { background: #ff4d4d; color: #fff; font-size: 9px; font-weight: 900; padding: 2px 6px; border-radius: 4px; font-family: 'Montserrat', sans-serif;}
        .badge-gm { background: #3b82f6; color: #fff; font-size: 9px; font-weight: 900; padding: 2px 6px; border-radius: 4px; font-family: 'Montserrat', sans-serif;}

        /* CSS NATIVO PARA duel_rankings.php EN EL SIDEBAR */
        .duelcard { background: rgba(12, 12, 15, 0.85); border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; padding: 20px; box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 10px 20px rgba(0,0,0,0.5); margin-bottom: 20px; position: relative; }
        .duelcard::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, #ed8942, transparent); }
        
        .duelcard .sidecard-header { margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; }
        .duelcard .sidecard-title { color: #ed8942; font-size: 14px; font-weight: 900; text-transform: uppercase; font-family: 'Montserrat', sans-serif; display: block; }
        .duelcard .sidecard-subtitle { color: #888; font-size: 10px; display: block; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px;}
        
        /* Rey de Duelos */
        .duel-king-hero { display: flex; align-items: center; gap: 15px; margin-top: 10px; background: rgba(0,0,0,0.3); padding: 10px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05);}
        .duel-king-crown { font-size: 28px; line-height: 1;}
        .duel-king-name { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 5px; line-height: 1;}
        .duel-king-line { display: flex; gap: 5px; }
        
        .duel-pill { padding: 3px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; color: #fff; }
        .duel-pill.win { background: rgba(74, 222, 128, 0.15); color: #4ade80; border: 1px solid rgba(74, 222, 128, 0.3); }
        .duel-pill.lose { background: rgba(255, 77, 77, 0.15); color: #ff4d4d; border: 1px solid rgba(255, 77, 77, 0.3); }
        .duel-pill.wr { background: rgba(212, 175, 55, 0.15); color: #ed8942; border: 1px solid rgba(212, 175, 55, 0.3); }

        /* Lista Top 10 */
        .duel-table { background: rgba(0,0,0,0.3); padding: 10px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05);}
        .duel-table .duel-head { display: flex; font-size: 9px; color: #ed8942; font-weight: 800; text-transform: uppercase; border-bottom: 1px solid rgba(212,175,55,0.3); padding-bottom: 5px; margin-bottom: 5px; align-items: center; }
        .duel-table .duel-row { display: flex; font-size: 12px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); align-items: center; }
        .duel-table .duel-row:last-child { border-bottom: none; padding-bottom: 0; }
        
        .duel-table span:nth-child(1) { width: 12%; color: #ed8942; font-weight: 900; }
        .duel-table span:nth-child(2) { width: 43%; color: #fff; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .duel-table span:nth-child(3) { width: 15%; color: #aaa; text-align: center; font-weight: 600;}
        .duel-table span:nth-child(4) { width: 15%; color: #ff4d4d; text-align: center; font-weight: 600;}
        .duel-table span:nth-child(5) { width: 15%; text-align: right; font-weight: 800; }
        
        .wr-good { color: #4ade80 !important; }
        .wr-mid { color: #ed8942 !important; }
        .wr-bad { color: #ff4d4d !important; }

        /* FOOTER CUSTOM */
        .footer-custom { margin-top: auto; padding: 40px 15px; border-top: 1px solid rgba(212,175,55,0.2); background: linear-gradient(to top, rgba(5,5,5,1), transparent); text-align: center; }
        .footer-logo { max-height: 90px; margin-bottom: 20px; filter: drop-shadow(0 0 15px rgba(212,175,55,0.3)); }
        .footer-text { font-size: 12px; color: #777; line-height: 1.6; }
        .footer-credits { margin-top: 15px; font-size: 11px; color: #ed8942; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }

        /* BURBUJAS FLOTANTES */
        .float-btn { position: fixed; bottom: 25px; display: flex; align-items: center; gap: 12px; padding: 10px 20px; border-radius: 50px; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800; text-decoration: none; z-index: 999; box-shadow: 0 10px 20px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
        .float-btn i { font-size: 24px; }
        .float-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
        .float-text small { font-weight: 600; font-size: 9px; opacity: 0.8; margin-top: 2px; text-transform: uppercase; }
        .float-discord { right: 25px; background: linear-gradient(135deg, #5865F2, #4752C4); }
        .float-wpp { left: 25px; background: linear-gradient(135deg, #25D366, #128C7E); }
        .float-btn:hover { transform: translateY(-5px) scale(1.02); color: #fff; box-shadow: 0 15px 25px rgba(0,0,0,0.7); border-color: rgba(255,255,255,0.3); }
        /* ========================================== */
        /* ADAPTACIÓN PARA CELULARES (RESPONSIVE)     */
        /* ========================================== */
        @media (max-width: 991px) {
            /* Pasa la estructura a 1 sola columna */
            .home-grid { flex-direction: column; }
            .main-content, .sidebar, .main-content-full { width: 100%; max-width: 100%; }
            
            /* Apila los tops y casinos */
            .tops-row, .casino-row { grid-template-columns: 1fr; }
            
            /* Acomoda el menú superior */
            .nav-container { flex-direction: column; gap: 15px; }
            .nav-links { flex-wrap: wrap; justify-content: center; }
            .nav-account { margin-top: 10px; }
            
            /* Adapta las barras de estadísticas */
            .stats-bar { gap: 10px; }
            .stat-pill { width: 45%; justify-content: center; margin-bottom: 5px; }
            
            /* Acomoda los banners */
            .banner-box { flex-direction: column; text-align: center; gap: 15px; }
            .banner-box > div:last-child { width: 100%; } /* Ajusta la cajita de eventos del banner */
        }

        @media (max-width: 768px) {
            /* En celulares muy chicos, las stats a 1 por línea */
            .stat-pill { width: 100%; } 
            
            /* Ajuste de márgenes para que no quede pegado a los bordes */
            .wrapper { padding: 0 10px; }
            .box, .duelcard { padding: 15px; }
        }
        
        
/*PRELOADER*/
#mu-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a; /* Fondo oscuro sólido */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
    width: 300px;
}

.loader-logo {
    width: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(229, 142, 38, 0.5));
    animation: pulse 2s infinite ease-in-out;
}

.loader-bar-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.loader-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #b36e1a, #e58e26, #ffcc33);
    box-shadow: 0 0 15px #e58e26;
    animation: progress 2.5s infinite ease-in-out;
}

.loader-text {
    margin-top: 15px;
    color: #e58e26;
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(229, 142, 38, 0.6);
}

/* Animaciones */
@keyframes progress {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 100%; opacity: 0; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}        
        
/*REGISTER*/
    /* CONTENEDOR PRINCIPAL DEL REGISTRO */
    .reg-wrapper { width: 100%; display: flex; justify-content: center; padding: 40px 15px; font-family: 'Poppins', sans-serif; }
    
    .reg-box { background: rgba(10, 10, 12, 0.95); border: 1px solid rgba(212,175,55,0.3); border-radius: 12px; box-shadow: inset 0 0 30px rgba(0,0,0,0.9), 0 15px 50px rgba(0,0,0,0.8); width: 100%; max-width: 550px; padding: 40px; position: relative; overflow: hidden; }
    
    /* DECORACIÓN SUPERIOR */
    .reg-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, #ed8942, transparent); }

    /* CABECERA DEL FORMULARIO */
    .reg-header { text-align: center; margin-bottom: 30px; border-bottom: 1px dashed rgba(212,175,55,0.3); padding-bottom: 20px; }
    .reg-header h2 { font-family: 'Cinzel', serif; color: #ed8942; font-size: 26px; font-weight: 900; margin: 0; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
    .reg-header p { color: #888; font-size: 12px; margin: 5px 0 0 0; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

    /* GRUPOS DE INPUTS */
    .reg-group { margin-bottom: 22px; position: relative; }
    .reg-label { display: block; font-family: 'Cinzel', serif; font-size: 12px; font-weight: 900; color: #aaa; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; text-shadow: 0 1px 2px rgba(0,0,0,0.8); }
    
    .reg-input-container { position: relative; display: flex; align-items: center; }
    .reg-icon { position: absolute; left: 15px; color: #ed8942; font-size: 16px; opacity: 0.8; transition: 0.3s; }
    
    .reg-input { width: 100%; background: rgba(0,0,0,0.6); border: 1px solid rgba(212,175,55,0.3); color: #fff; padding: 14px 15px 14px 45px; border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; transition: 0.3s; outline: none; box-shadow: inset 0 2px 5px rgba(0,0,0,0.5); }
    .reg-input:focus { border-color: #ed8942; box-shadow: 0 0 15px rgba(212,175,55,0.3), inset 0 2px 5px rgba(0,0,0,0.5); background: rgba(15,15,20,0.8); }
    .reg-input:focus + .reg-icon, .reg-input:focus ~ .reg-icon { color: #ed8942; opacity: 1; filter: drop-shadow(0 0 5px rgba(212,175,55,0.8)); }

    /* TEXTOS DE AYUDA */
    .reg-help { display: block; font-size: 11px; color: #666; margin-top: 6px; font-weight: 600; line-height: 1.3; }

    /* BOTÓN SUBMIT */
    .reg-btn { width: 100%; background: linear-gradient(90deg, #ed8942, #ed8942); border: none; color: #000; padding: 16px; border-radius: 8px; font-family: 'Cinzel', serif; font-size: 16px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer; transition: 0.3s; margin-top: 15px; box-shadow: 0 5px 15px rgba(212,175,55,0.3); }
    .reg-btn:hover { background: #fff; color: #000; box-shadow: 0 8px 25px rgba(255,255,255,0.4); transform: translateY(-2px); }

    /* TÉRMINOS Y CONDICIONES */
    .reg-tos { text-align: center; margin-top: 20px; font-size: 12px; color: #888; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
    .reg-tos a { color: #ed8942; font-weight: bold; text-decoration: none; transition: 0.2s; }
    .reg-tos a:hover { color: #fff; text-shadow: 0 0 8px rgba(212,175,55,0.8); }

    /* CAPTCHA CONTAINER */
    .reg-captcha { display: flex; justify-content: center; margin-top: 20px; margin-bottom: 10px; }
    
    
/*LOGIN*/
    /* CONTENEDOR PRINCIPAL DEL LOGIN */
    .log-wrapper { width: 100%; display: flex; justify-content: center; padding: 40px 15px; font-family: 'Poppins', sans-serif; }
    
    .log-box { background: rgba(10, 10, 12, 0.95); border: 1px solid rgba(212,175,55,0.3); border-radius: 12px; box-shadow: inset 0 0 30px rgba(0,0,0,0.9), 0 15px 50px rgba(0,0,0,0.8); width: 100%; max-width: 450px; padding: 40px; position: relative; overflow: hidden; }
    
    /* DECORACIÓN SUPERIOR */
    .log-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, #ed8942, transparent); }

    /* CABECERA DEL FORMULARIO */
    .log-header { text-align: center; margin-bottom: 30px; border-bottom: 1px dashed rgba(212,175,55,0.3); padding-bottom: 20px; }
    .log-header h2 { font-family: 'Cinzel', serif; color: #ed8942; font-size: 26px; font-weight: 900; margin: 0; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
    .log-header p { color: #888; font-size: 12px; margin: 5px 0 0 0; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

    /* GRUPOS DE INPUTS */
    .log-group { margin-bottom: 22px; position: relative; }
    .log-label { display: block; font-family: 'Cinzel', serif; font-size: 12px; font-weight: 900; color: #aaa; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; text-shadow: 0 1px 2px rgba(0,0,0,0.8); }
    
    .log-input-container { position: relative; display: flex; align-items: center; }
    .log-icon { position: absolute; left: 15px; color: #ed8942; font-size: 16px; opacity: 0.8; transition: 0.3s; }
    
    .log-input { width: 100%; background: rgba(0,0,0,0.6); border: 1px solid rgba(212,175,55,0.3); color: #fff; padding: 14px 15px 14px 45px; border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; transition: 0.3s; outline: none; box-shadow: inset 0 2px 5px rgba(0,0,0,0.5); }
    .log-input:focus { border-color: #ed8942; box-shadow: 0 0 15px rgba(212,175,55,0.3), inset 0 2px 5px rgba(0,0,0,0.5); background: rgba(15,15,20,0.8); }
    .log-input:focus + .log-icon, .log-input:focus ~ .log-icon { color: #ed8942; opacity: 1; filter: drop-shadow(0 0 5px rgba(212,175,55,0.8)); }

    /* OLVIDÉ MI CONTRASEÑA */
    .log-forgot { text-align: right; display: block; margin-top: 8px; font-size: 11px; }
    .log-forgot a { color: #888; text-decoration: none; font-weight: 600; transition: 0.2s; }
    .log-forgot a:hover { color: #ed8942; text-shadow: 0 0 5px rgba(212,175,55,0.5); }

    /* BOTÓN SUBMIT */
    .log-btn { width: 100%; background: linear-gradient(90deg, #ed8942, #ed8942); border: none; color: #000; padding: 16px; border-radius: 8px; font-family: 'Cinzel', serif; font-size: 16px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer; transition: 0.3s; margin-top: 10px; box-shadow: 0 5px 15px rgba(212,175,55,0.3); }
    .log-btn:hover { background: #fff; color: #000; box-shadow: 0 8px 25px rgba(255,255,255,0.4); transform: translateY(-2px); }

    /* LINKS EXTRA (REGISTRO) */
    .log-footer { text-align: center; margin-top: 25px; font-size: 12px; color: #888; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; font-weight: 600;}
    .log-footer a { color: #ed8942; font-weight: 800; text-decoration: none; transition: 0.2s; text-transform: uppercase; margin-left: 5px;}
    .log-footer a:hover { color: #fff; text-shadow: 0 0 8px rgba(212,175,55,0.8); }




/*INFO*/
    /* AJUSTE PARA WEBENGINE */
    .col-xs-8.col-xs-offset-2 { width: 100% !important; margin-left: 0 !important; }

    /* WRAPPER PRINCIPAL */
    .info-wrapper { background: rgba(10, 10, 12, 0.95); border: 1px solid rgba(212,175,55,0.3); border-radius: 12px; box-shadow: inset 0 0 30px rgba(0,0,0,0.9), 0 10px 40px rgba(0,0,0,0.8); padding: 50px 40px; font-family: 'Poppins', sans-serif; color: #fff; margin-top: 20px; position: relative; overflow: hidden; }
    
    .info-wrapper::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, #ed8942, transparent); }

    /* CABECERA */
    .info-header { text-align: center; margin-bottom: 35px; }
    .info-header h1 { font-family: 'Cinzel', serif; font-size: 36px; font-weight: 900; color: #ed8942; text-transform: uppercase; letter-spacing: 3px; text-shadow: 0 0 15px rgba(212,175,55,0.5); margin: 0 0 10px 0; line-height: 1.2;}
    .info-header p { color: #aaa; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin: 0; }
    .info-header p span { color: #ed8942; font-weight: 800; }

    /* INSIGNIAS / BADGES */
    .info-badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; }
    .info-badge { background: linear-gradient(90deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05)); border: 1px solid rgba(212,175,55,0.4); color: #ed8942; padding: 8px 18px; border-radius: 30px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 0 15px rgba(212,175,55,0.1); text-shadow: 0 1px 3px rgba(0,0,0,0.8); }

    /* GRID DE TARJETAS */
    .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; margin-bottom: 20px; }
    
    .info-card { background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 25px; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.5); position: relative; }
    .info-card:hover { border-color: #ed8942; transform: translateY(-5px); box-shadow: 0 15px 30px rgba(212,175,55,0.15), inset 0 0 15px rgba(212,175,55,0.05); }
    
    .info-card h2 { font-family: 'Cinzel', serif; font-size: 18px; font-weight: 900; color: #fff; margin: 0 0 15px 0; padding-bottom: 15px; border-bottom: 1px dashed rgba(212,175,55,0.3); display: flex; align-items: center; gap: 12px; text-shadow: 0 2px 4px rgba(0,0,0,0.8); letter-spacing: 1px;}
    .info-card h2 i { font-size: 22px; color: #ed8942; filter: drop-shadow(0 0 5px rgba(212,175,55,0.5)); }
    
    .info-card ul { list-style: none; margin: 0; padding: 0; }
    .info-card li { font-size: 13px; color: #ddd; margin-bottom: 10px; padding-left: 22px; position: relative; line-height: 1.6; font-weight: 600;}
    .info-card li::before { content: '✦'; position: absolute; left: 0; color: #ed8942; font-size: 12px; top: 1px; filter: drop-shadow(0 0 3px rgba(212,175,55,0.8)); }
    
    .info-accent { color: #4ade80; font-weight: 800; text-shadow: 0 0 5px rgba(74,222,128,0.3); }

    /* SEPARADOR */
    .info-divider { border-top: 1px solid rgba(212,175,55,0.2); margin: 50px auto; width: 70%; position: relative; }
    .info-divider::before { content: '❖'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); color: #ed8942; font-size: 20px; background: rgba(10,10,12,1); padding: 0 15px; }

    /* GRID DE COMANDOS */
    .cmd-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 15px; margin-top: 20px; }
    .cmd-card { background: linear-gradient(135deg, rgba(20,20,25,0.8), rgba(0,0,0,0.8)); border: 1px solid rgba(255,255,255,0.05); padding: 18px; border-radius: 8px; transition: 0.3s; border-left: 3px solid #ed8942; }
    .cmd-card:hover { border-color: #ed8942; background: rgba(212,175,55,0.05); transform: translateX(5px); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
    .cmd-name { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 900; color: #fff; margin-bottom: 5px; letter-spacing: 1px; text-shadow: 0 2px 4px rgba(0,0,0,0.8);}
    .cmd-desc { font-size: 11px; color: #aaa; line-height: 1.5; font-weight: 600;}

/* Contenedor principal */
.contenedor-tabla-vip {
    background-color: rgba(15, 15, 15, 0.4); 
    border: 1px solid #1f1f1f;
    border-radius: 6px;
    margin: 15px 0;
    overflow: hidden; /* Evita que el contenido se desborde de las esquinas redondeadas */
}

/* Estructura estricta de la tabla para evitar deformaciones */
.tabla-vip-premium {
    width: 100%;
    table-layout: fixed; /* ESTO EVITA LA DEFORMACIÓN */
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #b3b3b3;
}

/* Definir el ancho de cada columna exactamente */
.tabla-vip-premium th:nth-child(1), 
.tabla-vip-premium td:nth-child(1) {
    width: 40%;
    text-align: left;
    padding-left: 20px; /* Un poco de margen izquierdo para que no pegue al borde */
}

.tabla-vip-premium th:nth-child(2), 
.tabla-vip-premium td:nth-child(2),
.tabla-vip-premium th:nth-child(3), 
.tabla-vip-premium td:nth-child(3) {
    width: 30%;
    text-align: center; /* Obliga a que los valores (ej. 150x) queden en el medio exacto */
}

/* Estilo de los encabezados (Headers) - Ajustado al Naranja de tu imagen */
.tabla-vip-premium th {
    background-color: rgba(20, 20, 20, 0.9);
    color: #e6821d; /* Naranja intenso que coincide con tu corona y títulos */
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 10px;
    border-bottom: 1px solid #e6821d; /* Línea divisoria naranja */
}

/* Estilo de las celdas de contenido (Filas) */
.tabla-vip-premium td {
    padding: 14px 10px;
    font-size: 13.5px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05); /* Línea punteada sutil como en tu template */
    transition: all 0.2s ease;
}

.tabla-vip-premium td:first-child {
    font-weight: 600;
    color: #dddddd;
}

/* Filas alternas (Efecto Cebra suave) */
.tabla-vip-premium tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

/* Quitar borde a la última fila */
.tabla-vip-premium tbody tr:last-child td {
    border-bottom: none;
}

/* Efecto Hover */
.tabla-vip-premium tbody tr:hover td {
    background-color: rgba(230, 130, 29, 0.05); /* Destello naranja muy tenue */
    color: #ffffff;
}

/* --- COLUMNA VIP DESTACADA --- */
.tabla-vip-premium .col-vip {
    background-color: rgba(230, 130, 29, 0.03); 
}

.tabla-vip-premium th.col-vip {
    background-color: rgba(25, 20, 15, 0.9);
}

/* Resalte verde estilo Mu Online para valores VIP */
.tabla-vip-premium td.vip-brillante {
    color: #54b948 !important; 
    font-weight: 700;
}

    /* FOOTER INTERNO */
    .info-footer { text-align: center; margin-top: 50px; font-family: 'Cinzel', serif; font-size: 16px; color: #ed8942; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; filter: drop-shadow(0 0 8px rgba(212,175,55,0.4));}


/*DOWNLOADS*/
    /* WRAPPER PRINCIPAL */
    .dl-wrapper { background: rgba(12, 12, 15, 0.95); border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 10px 30px rgba(0,0,0,0.6); font-family: 'Poppins', sans-serif; color: #fff; width: 1100px !important; max-width: 95vw !important; position: relative; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; overflow: hidden; box-sizing: border-box; padding-bottom: 40px; margin-top: 20px;}
    
    /* TOPBAR & BANNER PREMIUM */
    .dl-topbar { background: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(20,20,25,0.9)); padding: 20px 30px; display: flex; justify-content: center; align-items: center; border-bottom: 1px solid rgba(212,175,55,0.2); }
    .md-title-badge { display: inline-flex; align-items: center; gap: 15px; background: linear-gradient(135deg, rgba(20,20,25,0.9), rgba(10,10,12,0.95)); border: 1px solid rgba(212,175,55,0.3); padding: 10px 25px; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.6), inset 0 0 15px rgba(212,175,55,0.05); position: relative; overflow: hidden; }
    .md-title-badge::before { content: ''; position: absolute; top: 0; left: -150%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent); transform: skewX(-20deg); animation: badgeShine 4s infinite; }
    @keyframes badgeShine { 0% { left: -150%; } 20% { left: 150%; } 100% { left: 150%; } }
    .md-title-icon { font-size: 28px; color: #ed8942; filter: drop-shadow(0 0 10px rgba(212,175,55,0.6)); }
    .md-title-text h1 { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 900; text-transform: uppercase; margin: 0; background: linear-gradient(to right, #f5d97a, #ed8942, #aa7700); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 1px; }
    .md-title-text span { color: #aaa; font-size: 10px; text-transform: uppercase; font-weight: 800; letter-spacing: 2px; margin-top: 2px; display: block; }
    
    /* SECCIONES Y CATEGORÍAS */
    .dl-section { padding: 30px; }
    .dl-category-title { font-family: 'Cinzel', serif; font-size: 18px; font-weight: 900; color: #ed8942; border-bottom: 1px dashed rgba(212,175,55,0.3); padding-bottom: 10px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
    
    /* GRID DE TARJETAS */
    .dl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
    .dl-card { background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; transition: 0.3s; position: relative; overflow: hidden; }
    .dl-card:hover { transform: translateY(-5px); border-color: #ed8942; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
    
    .dl-card-header { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; }
    .dl-card-icon { font-size: 30px; color: #ed8942; filter: drop-shadow(0 0 5px rgba(212,175,55,0.3)); }
    .dl-card-info { flex: 1; }
    .dl-title { font-family: 'Cinzel', serif; font-weight: 900; color: #fff; font-size: 16px; margin: 0 0 5px 0; line-height: 1.2; }
    .dl-desc { font-size: 11px; color: #aaa; line-height: 1.4; margin: 0; }
    
    .dl-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px; }
    .dl-size { font-size: 12px; font-weight: 800; color: #4ade80; background: rgba(74, 222, 128, 0.1); padding: 4px 10px; border-radius: 6px; border: 1px solid rgba(74,222,128,0.2); }
    .dl-btn { background: linear-gradient(90deg, #ed8942, #ed8942); color: #000; padding: 8px 20px; border-radius: 30px; font-weight: 800; font-size: 11px; text-transform: uppercase; text-decoration: none; transition: 0.3s; display: flex; align-items: center; gap: 6px; }
    .dl-btn:hover { background: #fff; box-shadow: 0 0 15px rgba(255,255,255,0.6); color: #000; text-decoration: none; }

/*MYACCOUNT*/
#ventus-account-panel { margin-bottom: 50px; }
#ventus-account-panel .page-title {
    background: linear-gradient(90deg, rgba(212,175,55,0.15), transparent) !important;
    border-left: 4px solid #ed8942 !important;
    border-bottom: 1px solid rgba(212,175,55,0.3) !important;
    padding: 15px 20px !important;
    color: #f5d97a !important;
    margin: 0 0 25px 0 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.premium-account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}
.premium-card {
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: 0.3s;
}
.premium-card:hover {
    border-color: rgba(212,175,55,0.6);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212,175,55,0.15);
}
.premium-card .card-label {
    color: #8c8c8c;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.premium-card .card-value {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.premium-card .card-value.gold-text {
    color: #f5d97a;
    font-size: 26px;
    text-shadow: 0 0 10px rgba(212,175,55,0.3);
}
.btn-premium {
    background: linear-gradient(180deg, #e3c464, #b8860b);
    border: 1px solid #ffeba5;
    color: #111 !important;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 10px;
    transition: 0.2s;
    text-decoration: none !important;
    display: inline-block;
}
.btn-premium:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
    color: #000 !important;
}
.premium-characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}
.char-card {
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 15px;
    padding: 30px 15px 15px 15px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}
.char-card:hover {
    border-color: #f5d97a;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.2);
}
.char-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #ed8942;
    object-fit: cover;
    background: #000;
    margin: 0 auto 15px auto;
    display: block;
    transition: 0.3s;
}
.char-card:hover .char-avatar {
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
    border-color: #fff;
}
.char-name {
    color: #f5d97a;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.char-level {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ed8942;
    color: #000;
    padding: 4px 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.char-loc { color: #8c8c8c; font-size: 11px; }
.hist-table { background: rgba(10, 10, 12, 0.8) !important; border: 1px solid rgba(212,175,55,0.3) !important; border-radius: 12px !important; overflow: hidden !important; color: #e0e0e0 !important; }
.hist-table td { border-color: rgba(212,175,55,0.1) !important; }
.hist-table tr:first-child td { color: #ed8942 !important; font-weight: bold; background: rgba(0,0,0,0.5); border-bottom: 1px solid rgba(212,175,55,0.3) !important; }



/* RANKINGS MODULE */
.rankings-table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

.rankings-class-image {
	width: 30px;
	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;
}
.rankings-table tr td {
	border-bottom: 1px solid #e3e3e3;
	padding: 10px;
	font-size: 18px;
	vertical-align: middle !important;
	text-align: center;
}
.rankings-table-place {
	color: #666;
	font-weight: bold;
	font-size: 24px;
	text-align: center;
}
.rankings-table tr:first-child td {
	color: #ed8942;
	border-bottom: 3px solid #ed8942;
}
.rankings-update-time {
	text-align: right;
	font-size: 11px;
	color: #ccc;
	padding: 10px 0px;
}
.rankings_menu {
	width: 100%;
	overflow: auto;
	text-align: center;
	margin-bottom: 10px;
}
.rankings_menu span {
	width: 100%;
	display: inline-block;
	padding: 10px 0px;
	color: #ccc;
	font-size: 24px;
}
.rankings_menu a {
        background: rgba(0,0,0,0.6); 
        color: #aaa !important; 
        border: 1px solid rgba(212,175,55,0.2); 
        font-family: 'Poppins', sans-serif; 
        text-transform: uppercase; 
        font-size: 11px; 
        font-weight: 800; 
        border-radius: 6px; 
        padding: 8px 18px; 
        transition: 0.3s; 
        text-decoration: none !important;
        display: inline-block;
        letter-spacing: 0.5px;
}
.rankings_menu a:hover {
        background: rgba(212,175,55,0.2); 
        color: #fff !important; 
        border-color: rgba(212,175,55,0.5); 
        box-shadow: 0 0 10px rgba(212,175,55,0.3); 
}
.rankings_menu a.active {
        background: linear-gradient(90deg, #ed8942, #ed8942); 
        color: #000 !important; 
        border-color: #ed8942; 
        box-shadow: 0 0 15px rgba(212,175,55,0.6); 
}
.rankings_guild_logo tr td {
	border: 0px !important;
	padding: 0px !important;
	margin: 0px !important;
}
.rankings-gens-img {
	width: auto !important;
	height: 30px !important;
	border: 0 !important;
	-moz-box-shadow: 0 0 0px #000 !important;
	-webkit-box-shadow: 0 0 0px #000 !important;
	box-shadow: 0 0 0px #000 !important;
	-moz-border-radius: 0px !important;
	border-radius: 0px !important;
}


/* 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%);
}

/* */
        .social-sidebar {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 9999;
            padding-right: 0;
        }

        .btn-social {
            width: 65px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 26px;
            background: #161b22;
            border-radius: 20px 0 0 20px;
            border: 2px solid transparent;
            position: relative;
            right: -10px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }

        .btn-social i {
            color: rgba(255, 255, 255, 0.4);
            transition: color 0.3s ease;
        }

        .btn-social:hover {
            right: 0;
            transform: scale(1.1);
        }

        .btn-social:hover i {
            color: #fff;
        }

        /* Discord - Azul */
        .discord {
            border-color: #c55200;
        }
        .discord:hover {
            background: #5865F2;
            border-color: #c55200;
            box-shadow: 0 0 25px rgba(88, 101, 242, 0.7);
        }

        .whatsapp {
            border-color: #c55200;
        }
        .whatsapp:hover {
            background: #25D366;
            border-color: #c55200;
            box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
        }

        .tiktok {
            border-color: #c55200;
        }
        .tiktok:hover {
            background: #000;
            border-color: #c55200;
            box-shadow: -4px 0 20px rgba(255, 0, 80, 0.6), 
                        2px 0 20px rgba(0, 242, 234, 0.6);
        }
        
/* */

    #btn-back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: radial-gradient(circle, #ed8942 0%, #f37f2d 70%, #af4f0b 100%);
        border: 2px solid rgba(237, 137, 66, 0.5);
        box-shadow: 0 0 15px rgba(237, 137, 66, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.4s ease-in-out;
        animation: pulse-neon 3s infinite;
        visibility: hidden;
        opacity: 0;
    }

    #btn-back-to-top:hover {
        opacity: 1 !important;
        transform: translateY(-5px);
        box-shadow: 0 0 30px rgba(237, 137, 66, 1);
        background: radial-gradient(circle, #ed8942 0%, #f37f2d 70%, #af4f0b 100%);
    }

    #btn-back-to-top.show2 {
        visibility: visible;
        opacity: 0.8;
    }

    @keyframes pulse-neon {
        0% { box-shadow: 0 0 15px rgba(237, 137, 66, 0.7); }
        50% { box-shadow: 0 0 25px rgba(237, 137, 66, 0.9); }
        100% { box-shadow: 0 0 15px rgba(237, 137, 66, 0.7); }
    }
    
    
/**/

/* ==========================================================================
   RED DISEÑO DE NOTICIAS - ESTILO EXACTO DE MU VENTUS
   ========================================================================== */
.panel-news {
    background: rgba(10, 10, 12, 0.85) !important;
    border: 1px solid rgba(255, 140, 50, 0.15) !important;
    border-radius: 6px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7) !important;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.panel-news:hover {
    border-color: rgba(255, 140, 50, 0.4) !important;
    box-shadow: 0 0 15px rgba(255, 140, 50, 0.1) !important;
    transform: translateY(-1px);
}

.panel-news .panel-heading {
    background: rgba(20, 20, 25, 0.5) !important;
    border-bottom: 1px solid rgba(255, 140, 50, 0.15) !important;
    padding: 15px 20px !important;
}

.panel-news .panel-title {
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-news .panel-title a {
    color: #ff8c32 !important;
    text-decoration: none !important;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.panel-news .panel-title a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(255, 140, 50, 0.6);
}

.panel-news .panel-body {
    background: transparent !important;
    padding: 20px !important;
    color: #b3b3b3 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.panel-news .panel-body p {
    color: #b3b3b3 !important;
    margin-bottom: 10px;
}

.panel-news .panel-body a {
    color: #ff8c32 !important;
    font-weight: bold;
    text-decoration: none;
}
.panel-news .panel-body a:hover {
    text-decoration: underline;
}

.panel-news .panel-footer {
    background: rgba(15, 15, 18, 0.6) !important;
    border-top: 1px solid rgba(255, 140, 50, 0.1) !important;
    padding: 10px 20px !important;
    color: #666666 !important;
    font-size: 12px !important;
    font-weight: 600;
    overflow: hidden;
}

.panel-news .panel-footer .nopadding {
    padding: 0 !important;
}


/* DONATION MODULE */

    .donations-wrapper {
        background-color: #0b0b0b;
        padding: 30px;
        border-radius: 8px;
        color: #fff;
        font-family: 'Arial', sans-serif;
    }

    .donations-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .donations-header h2 {
        font-size: 24px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: #fff;
    }

    .donations-header h2 i {
        color: #c55200;
    }

    .donations-header p {
        color: #ccc;
        font-size: 15px;
    }

    .donations-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .donations-col {
        flex: 1;
        min-width: 300px;
    }

    .donations-col-title {
        font-size: 13px;
        text-transform: uppercase;
        color: #888;
        margin-bottom: 15px;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid #222;
        padding-bottom: 10px;
    }

    .payment-btn {
        display: flex;
        align-items: center;
        background-color: #e76000;
        border-radius: 10px;
        padding: 15px 20px;
        margin-bottom: 15px;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        position: relative;
    }

    .payment-btn:hover {
        background-color: #c55200;
        text-decoration: none;
        transform: translateY(-2px);
    }

    .payment-icon {
        font-size: 24px;
        color: #fff;
        margin-right: 20px;
        width: 30px;
        text-align: center;
    }

    .payment-info {
        display: flex;
        flex-direction: column;
    }

    .payment-title {
        color: #fff;
        font-weight: bold;
        font-size: 15px;
        text-transform: uppercase;
        margin-bottom: 3px;
    }

    .payment-desc {
        color: #ffc49a;
        font-size: 12px;
    }

    .payment-badge {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background-color: transparent;
        border: 1px solid #ff6b6b;
        color: #ffc49a;
        font-size: 11px;
        font-weight: bold;
        padding: 4px 8px;
        border-radius: 20px;
    }
    
    
/**/

/* Contenedor Principal (Alineación Horizontal) */
.casino-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    align-items: start;
}

/* Responsive: Para tablets y teléfonos móviles */
@media (max-width: 992px) {
    .casino-row {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 40px;
    }
}

/* Estilos de los Eventos */
.cs-event-container {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    width: 100%;
}

/* Encabezados */
.cs-header {
    text-align: center;
    margin-bottom: 25px;
}

.cs-subtitle {
    color: #c55200;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 800;
}

.cs-title {
    font-family: 'Times New Roman', serif;
    font-size: 26px;
    margin: 8px 0 0 0;
    letter-spacing: 1.5px;
    font-weight: bold;
    color: #ffffff;
}

/* Caja de Contenido Principal */
.cs-box {
    background: #050101; 
    border: 1px solid #1f0606;
    border-radius: 10px;
    display: flex;
    flex-direction: column; /* Apila las columnas arriba y el botón abajo */
    padding: 35px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Contenedor de las dos columnas */
.cs-top-content {
    display: flex;
    gap: 60px;
    width: 100%;
}

/* Contenedor centrado para el botón */
.cs-bottom-action {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 25px; /* Espacio entre las columnas y el botón */
}

/* Columna Izquierda (Información del Guild) */
.cs-guild-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 160px;
    text-align: center;
}

.cs-guild-logo-wrapper {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 0 20px 2px rgba(220, 20, 20, 0.25), inset 0 0 15px rgba(255, 0, 0, 0.15);
    border: 2px solid #c55200;
}

.cs-guild-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
}

.cs-guild-name {
    font-family: 'Times New Roman', serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.cs-guild-role, .cs-guild-master-role {
    color: #c55200;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.cs-guild-master {
    color: #8c8c8c;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 2px;
}

/* Columna Derecha (Datos del Evento) */
.cs-event-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cs-detail-group {
    margin: 2px 0;
}

.cs-detail-label {
    color: #c55200;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cs-detail-value {
    font-size: 18px;
    font-weight: bold;
    color: #f2f2f2;
}

.cs-detail-value.cs-time {
    font-size: 24px;
}

.cs-divider {
    height: 1px;
    background-color: #170404;
    margin: 20px 0;
    width: 100%;
}

/* Botón */
.cs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #db6d1f;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.2s ease;
    max-width: fit-content;
    border: 1px solid #a94803;
}

.cs-btn:hover {
    background-color: #c95503;
    color: #ffffff;
}

/* Responsive para dispositivos móviles */
@media (max-width: 768px) {
    .cs-box {
        padding: 30px 20px;
    }

    .cs-top-content {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }
    
    .cs-event-details {
        width: 100%;
    }

    .cs-btn {
        width: 100%;
        max-width: 100%;
    }
}