/* =========================================================
   IMPERIAL MU: FINAL CYBERCORE DESIGN
   ========================================================= */

:root {
    --neon-blue: #008cff;
    --neon-blue-glow: rgba(0, 140, 255, 0.4);
    --neon-red: #ff1a1a;
    --neon-red-glow: rgba(255, 26, 26, 0.4);
    --dark-bg: #03040a;
    --darker-bg: #000000;
    --glass-bg: rgba(3, 4, 10, 0.98);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-cyber: 'Orbitron', sans-serif;
    --font-ui: 'Rajdhani', sans-serif;
    --font-main: 'Inter', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: #e0e6ed;
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Global Rounding */
.glass-panel,
.modules_cont,
.panel-sidebar,
.cyber-frame,
.hero-actions-widget,
.side-stat-box,
.info-widget-card,
.tournament-card,
.king-of-mu-container,
.btn-widget,
.stat-info-mini,
.butcher-row-section,
.b-card-stat,
.modal-content {
    border-radius: 20px !important;
}

/* 1. HERO SECTION */
#hero {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.hero-logo {
    max-width: 400px;
    filter: drop-shadow(0 0 30px var(--neon-blue-glow));
    margin-bottom: 40px !important;
}

/* 2. HERO BUTTONS (PILL STYLE) */
.hero-btns-row {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
}

.btn-pill {
    min-width: 240px;
    padding: 20px 40px;
    font-family: var(--font-cyber);
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    color: #fff !important;
}

.btn-pill i {
    margin-right: 12px;
    font-size: 18px;
}

.btn-pill-blue {
    background: linear-gradient(135deg, #0044cc 0%, #008cff 100%);
    border: 1px solid rgba(0, 140, 255, 0.6);
    box-shadow: 0 10px 20px rgba(0, 140, 255, 0.3);
}

.btn-pill-red {
    background: linear-gradient(135deg, #cc0000 0%, #ff1a1a 100%);
    border: 1px solid rgba(255, 26, 26, 0.6);
    box-shadow: 0 10px 20px rgba(255, 26, 26, 0.3);
}

.btn-pill:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

/* 3. UNIFIED STATS ROW */
.stats-info-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.stat-info-mini {
    background: var(--glass-bg);
    border: 1px solid var(--neon-blue-glow);
    padding: 15px 20px;
    min-width: 130px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
    border-bottom: 3px solid var(--neon-blue);
}

.stat-info-mini.online {
    border-left: 5px solid var(--neon-blue);
}

.stat-info-mini:hover {
    transform: translateY(-5px);
    border-color: var(--neon-red);
    box-shadow: 0 0 25px var(--neon-blue-glow);
}

.stat-info-mini .l {
    display: block;
    font-family: var(--font-cyber);
    font-size: 9px;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.stat-info-mini .v {
    display: block;
    font-family: var(--font-cyber);
    font-size: 18px;
    color: #fff;
}

/* 4. BUTCHER ROW SECTION (Replaces Features) */
.butcher-row-section {
    background: linear-gradient(135deg, rgba(3, 4, 10, 0.98) 0%, rgb(1 4 10) 100%);
    border: 1px solid var(--glass-border);
    padding: 50px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.butcher-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.butcher-avatar-large {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 50%;
    border: 5px solid var(--neon-red);
    box-shadow: 0 0 40px var(--neon-red-glow);
    background: radial-gradient(circle, rgba(255, 26, 26, 0.3) 0%, transparent 70%);
}

.butcher-details h2 {
    font-family: var(--font-cyber);
    color: var(--neon-red);
    font-size: 36px;
    margin: 0 0 20px 0;
    letter-spacing: 4px;
    text-shadow: 0 0 15px var(--neon-red-glow);
}

.butcher-stats-large {
    display: flex;
    gap: 20px;
}

.b-card-stat {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 30px;
    border-top: 3px solid var(--neon-blue);
    min-width: 150px;
}

.b-card-stat .label {
    display: block;
    color: var(--neon-blue);
    font-family: var(--font-ui);
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.b-card-stat .value {
    display: block;
    color: #fff;
    font-family: var(--font-cyber);
    font-size: 24px;
}

.butcher-row-section {
    background: linear-gradient(135deg, rgba(3, 4, 10, 0.98) 0%, rgb(1 4 10) 100%);
    border: 1px solid var(--glass-border);
    padding: 100px 40px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.9);

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Glow de fondo */
.butcher-row-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.25), transparent 70%);
    top: -150px;
    right: -150px;
    filter: blur(100px);
}

/* Layout vertical centrado */
.butcher-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    position: relative;
    z-index: 2;
}

/* Avatar gigante */
.butcher-avatar-large {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 50%;
    border: 6px solid var(--neon-red);
    box-shadow: 0 0 60px var(--neon-red-glow);
    background: radial-gradient(circle, rgba(255, 26, 26, 0.35) 0%, transparent 70%);
    animation: pulseGlow 2.5s infinite ease-in-out;
    transition: transform 0.3s ease;
}

.butcher-avatar-large:hover {
    transform: scale(1.07);
}

/* Título */
.butcher-details h2 {
    font-family: var(--font-cyber);
    color: var(--neon-red);
    font-size: 44px;
    margin: 0;
    letter-spacing: 6px;
    text-shadow: 0 0 25px var(--neon-red-glow);
}

/* Nombre */
.butcher-name {
    font-size: 32px;
    color: #fff;
    font-family: var(--font-cyber);
    margin-top: 10px;
}

/* Stats */
.butcher-stats-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

/* Cards */
.b-card-stat {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 40px;
    border-top: 3px solid var(--neon-blue);
    min-width: 170px;
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.b-card-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.b-card-stat .label {
    display: block;
    color: var(--neon-blue);
    font-family: var(--font-ui);
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.b-card-stat .value {
    display: block;
    color: #fff;
    font-family: var(--font-cyber);
    font-size: 30px;
}

/* Animación glow */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 40px var(--neon-red-glow); }
    50% { box-shadow: 0 0 90px var(--neon-red-glow); }
    100% { box-shadow: 0 0 40px var(--neon-red-glow); }
}

/* 5. KING OF MU PREMIUM */
.king-of-mu-container {
    background: linear-gradient(135deg, rgba(3, 4, 10, 0.98) 0%, rgb(1 4 10) 100%);
    border: 2px solid var(--neon-red-glow) !important;
    padding: 70px 40px !important;
    box-shadow: 0 0 50px var(--neon-red-glow) !important;
    margin-top: 40px;
}

.king-title {
    font-family: var(--font-cyber);
    color: var(--neon-red) !important;
    letter-spacing: 5px;
    margin-bottom: 15px !important;
}

/* 6. NAVBAR & SIDEBAR */
#navbar {
    background: rgba(1, 4, 10, 0.98) !important;
    height: 70px;
    border-bottom: 2px solid var(--neon-blue);
}

.glass-panel,
.modules_cont,
.panel-sidebar,
.cyber-frame {
    background: var(--glass-bg) !important;
    border: 1px solid var(--neon-blue-glow) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7) !important;
    padding: 25px !important;
}

.panel-heading {
    border-bottom: 2px solid var(--neon-blue) !important;
    margin-bottom: 15px;
}

.panel-title {
    font-family: var(--font-cyber);
    color: var(--neon-blue) !important;
}

/* 7. TOURNAMENTS */
.tournament-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px;
    text-align: center;
}

.t-card-winner {
    font-family: var(--font-cyber);
    color: var(--neon-red);
}

/* Utility */
.text-neon-blue {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue-glow);
}

.text-neon-red {
    color: var(--neon-red);
    text-shadow: 0 0 10px var(--neon-red-glow);
}

@media (max-width: 991px) {
    .butcher-grid {
        flex-direction: column;
        text-align: center;
    }

    .butcher-stats-large {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns-row {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
}
/* 8. TABLE & RANKING THEME */
.table { color: #ccc; background: transparent !important; }
.table thead tr th { border-bottom: 2px solid var(--neon-blue) !important; color: var(--neon-blue); font-family: var(--font-cyber); text-transform: uppercase; font-size: 11px; }
.table tbody tr td { border-top: 1px solid rgba(255, 255, 255, 0.05) !important; padding: 12px 8px !important; vertical-align: middle !important; }
.table tbody tr:hover { background: rgba(0, 140, 255, 0.05); }

/* 9. REGISTER & MODULES */
.register-container {
    background: var(--glass-bg) !important;
    border: 1px solid var(--neon-blue-glow) !important;
    border-top: 3px solid var(--neon-blue) !important;
}

/* 10. PRELOADER */
#preloader { background: #010101 !important; }
#loader-bar { background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(0, 140, 255, 0.2); }
#loader-progress { background: linear-gradient(90deg, var(--neon-blue), var(--neon-red)) !important; box-shadow: 0 0 15px var(--neon-blue-glow); }
#loader-text { color: var(--neon-blue); font-family: var(--font-cyber); text-shadow: 0 0 10px var(--neon-blue-glow); }

/* 11. SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--neon-blue); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-red); }


.text-neon { color: var(--neon-blue); text-shadow: 0 0 5px var(--neon-blue-glow); }

