@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    /* Color Palette - Deidad Premium */
    --deep-bg: #0b0d13;
    --card-bg: rgba(26, 30, 41, 0.7);
    --glass-bg: rgba(17, 20, 28, 0.6);
    --neon-blue: #0070ba;
    --neon-blue-glow: rgba(0, 112, 186, 0.5);
    --neon-red: #e74c3c;
    --neon-red-glow: rgba(231, 76, 60, 0.4);
    --gold-text: #f7b731;
    --gold-glow: rgba(247, 183, 49, 0.3);
    --text-main: #e0e6ed;
    --text-muted: #8c9bb5;

    /* Layout Defaults */
    --border-radius: 12px;
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Global Typography & Reset */
body {
    font-family: 'Outfit', sans-serif !important;
    background-color: var(--deep-bg);
    color: var(--text-main);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Modern Panels & Containers (Glassmorphism)
   ========================================================================== */

/* Bootstrap Panel Overrides */
.panel,
.glass-panel,
.panel-sidebar,
.panel-default {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    overflow: hidden;
    margin-bottom: 25px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel-heading,
.glass-panel .panel-heading {
    background: rgba(255, 255, 255, 0.03) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 15px 20px !important;
}

.panel-title {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--gold-text) !important;
}

.panel-body {
    padding: 20px !important;
}

/* Specific Panel Accents */
.panel-sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue-glow);
}

/* ==========================================================================
   PayPal Donation Packages Grid Styles (Updated with Variables)
   ========================================================================== */

.paypal-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 0 10px;
}

.paypal-package-card {
    background: var(--card-bg);
    border: var(--glass-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(5px);
}

.paypal-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--neon-blue-glow);
    border-color: var(--neon-blue);
}

.paypal-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), #1546a0);
    opacity: 0.8;
}

.paypal-card-header {
    padding: 30px 20px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.paypal-card-header .paypal-price {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-family: inherit;
}

.paypal-card-header .paypal-price small {
    font-size: 1rem;
    font-weight: 500;
    color: #8c9bb5;
    text-transform: uppercase;
}

.paypal-card-body {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.15);
}

.paypal-logo-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.paypal-logo-img {
    max-width: 140px;
    /* Un tamaño adecuado para tarjetas */
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.paypal-package-card:hover .paypal-logo-img {
    transform: scale(1.08);
    /* Pequeño zoom al pasar el mouse */
}

.paypal-reward {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.paypal-reward .reward-label {
    font-size: 0.9rem;
    color: #8c9bb5;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.paypal-reward .reward-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-text);
    text-shadow: 0 0 10px var(--gold-glow);
}

.paypal-card-footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
}

.btn-paypal-donate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(180deg, #0079C1 0%, #00457C 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-paypal-donate:hover {
    background: linear-gradient(180deg, #008be0 0%, #005699 100%);
    box-shadow: 0 6px 12px rgba(0, 112, 186, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-paypal-donate:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsividad */
@media (max-width: 768px) {
    .paypal-packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 15px;
    }

    .paypal-card-header .paypal-price {
        font-size: 2rem;
    }

    .paypal-reward .reward-value {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   Profile Character Styles (player.php)
   ========================================================================== */

/* Contenedor principal del perfil */
.profile-wrapper-v2 {
    background: #11141c;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    color: #e0e6ed;
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* Para asegurarnos de que la cuadrícula base de nuestra versión V2 sea intocable */
.profile-wrapper-v2 .profile-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

.profile-wrapper-v2 .profile-col-3 {
    grid-column: span 3;
    min-width: 0;
}

.profile-wrapper-v2 .profile-col-6 {
    grid-column: span 6;
    min-width: 0;
}

.profile-wrapper-v2 .profile-col-9 {
    grid-column: span 9;
    min-width: 0;
}

/* Títulos de sección */
.profile-section-title h2,
.profile-section-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: #f7b731;
    border-bottom: 2px solid rgba(247, 183, 49, 0.2);
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 0;
}

.profile-section-title h2 i,
.profile-section-header h2 i {
    color: #0070ba;
}

/* Sistema de Cuadrícula (Grid) robusto */
.profile-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Asignación de columnas y prevención de desbordamiento */
.profile-col-3 {
    grid-column: span 3;
    min-width: 0;
}

.profile-col-6 {
    grid-column: span 6;
    min-width: 0;
}

.profile-col-9 {
    grid-column: span 9;
    min-width: 0;
}

/* Imagen del personaje / Avatar */
.profile-video-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border: 1px solid #2d3446;
}

.profile-video-wrapper {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 250px;
}

.profile-video-wrapper img {
    max-width: 100%;
    height: auto;
    z-index: 1;
    transition: transform 0.3s ease;
}

.profile-video-wrapper:hover img {
    transform: scale(1.05);
}

.profile-video-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px 10px 10px;
    text-align: center;
    z-index: 2;
}

.profile-character-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}

.profile-character-class {
    font-size: 0.9rem;
    color: #f7b731;
}

/* Contenedor de Información (Nivel, reset, pk) */
.profile-info-container {
    display: flex;
    gap: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
}

.profile-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-form-group-info {
    display: flex;
    flex-direction: column;
    background: #1a1e29;
    padding: 10px 15px;
    border-radius: 6px;
    border-left: 3px solid #0070ba;
    transition: background 0.2s;
}

.profile-form-group-info:hover {
    background: #1f2430;
}

.profile-form-group-info .form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #8c9bb5;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.profile-form-input {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-form-input.blue-text {
    color: #3498db;
    text-shadow: 0 0 5px rgba(52, 152, 219, 0.4);
}

/* Contenedor del Inventario (Equipamiento) */
.profile-gear-container {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 380px;
}

/* Área de Muertes Recientes */
.profile-deaths-container {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    height: 380px;
    overflow-y: auto;
    box-sizing: border-box;
}

.profile-deaths-container::-webkit-scrollbar {
    width: 6px;
}

.profile-deaths-container::-webkit-scrollbar-thumb {
    background: #2d3446;
    border-radius: 3px;
}

.profile-death-entry {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.profile-death-entry:last-child {
    border-bottom: none;
}

.profile-death-entry:hover {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.profile-death-icon {
    background: rgba(162, 12, 8, 0.2);
    color: #e74c3c;
    min-width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

.profile-death-details {
    flex: 1;
}

.profile-death-info {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.profile-killer-name {
    color: #e74c3c;
    font-weight: bold;
}

.profile-death-text {
    color: #8c9bb5;
    margin: 0 5px;
}

.profile-victim-name {
    color: #3498db;
    font-weight: bold;
}

.profile-death-meta {
    font-size: 0.8rem;
    color: #6c7a9c;
    display: flex;
    justify-content: space-between;
}

.profile-no-deaths {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #8c9bb5;
    gap: 10px;
}

.profile-no-deaths-icon {
    font-size: 3rem;
    color: #2d3446;
    margin-bottom: 10px;
}

/* Botón Volver */
.profile-footer-link {
    text-align: center;
    margin-top: 10px;
}

.profile-footer-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.profile-footer-link a:hover {
    color: #5dade2;
}

/* Responsividad para móviles y tablets */
@media (max-width: 992px) {

    .profile-col-3,
    .profile-col-6,
    .profile-col-9 {
        grid-column: span 12;
    }

    .profile-info-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .profile-info-col {
        gap: 10px;
    }

    .profile-gear-container .profilechar {
        transform: scale(0.8);
        transform-origin: center center;
    }
}

/* ==========================================================================
   Global Button & Form Styles
   ========================================================================== */

.btn,
.button {
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.btn-primary {
    background: linear-gradient(180deg, var(--neon-blue) 0%, #00457C 100%) !important;
    box-shadow: 0 4px 0 #003560 !important;
}

.btn-primary:hover {
    background: linear-gradient(180deg, #008be0 0%, var(--neon-blue) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #003560, 0 0 15px var(--neon-blue-glow) !important;
}

.btn-primary:active {
    transform: translateY(2px) !important;
    box-shadow: 0 1px 0 #003560 !important;
}

.form-control {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px !important;
    color: #fff !important;
    height: 45px !important;
    padding: 10px 15px !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.form-control:focus {
    border-color: var(--neon-blue) !important;
    box-shadow: 0 0 10px var(--neon-blue-glow) !important;
    outline: none !important;
}

/* Custom WebEngine Tables */
.table {
    background: transparent !important;
    border-collapse: separate !important;
    border-spacing: 0 8px !important;
}

.table thead th {
    border: none !important;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 12px !important;
}

.table tbody tr {
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.2s;
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.table tbody td {
    border: none !important;
    padding: 15px 12px !important;
    vertical-align: middle !important;
}

.table tbody tr td:first-child {
    border-radius: 8px 0 0 8px;
}

.table tbody tr td:last-child {
    border-radius: 0 8px 8px 0;
}

/* Rankings specific */
.rankings-class-image {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.rank-1-crown {
    color: var(--gold-text);
    text-shadow: 0 0 10px var(--gold-glow);
}

/* ==========================================================================
   Hero Section & Specialized Widgets
   ========================================================================== */

#hero {
    position: relative;
    padding: 100px 0 150px;
    background: radial-gradient(circle at center, rgba(0, 112, 186, 0.15) 0%, transparent 70%);
}

.hero-logo {
    max-width: 450px;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
    margin-bottom: 40px;
}

/* Action Buttons (Pill Style) */
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.btn-pill-blue {
    background: rgba(0, 112, 186, 0.2) !important;
    color: #fff !important;
    border-color: var(--neon-blue) !important;
    box-shadow: 0 0 15px var(--neon-blue-glow), inset 0 0 10px var(--neon-blue-glow) !important;
}

.btn-pill-blue:hover {
    background: var(--neon-blue) !important;
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--neon-blue-glow) !important;
}

.btn-pill-red {
    background: rgba(231, 76, 60, 0.2) !important;
    color: #fff !important;
    border-color: var(--neon-red) !important;
    box-shadow: 0 0 15px var(--neon-red-glow), inset 0 0 10px var(--neon-red-glow) !important;
}

.btn-pill-red:hover {
    background: var(--neon-red) !important;
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--neon-red-glow) !important;
}

/* Unified Stats Grid */
.stats-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* Aumentado min-width */
    gap: 20px; /* Aumentado gap */
    margin-top: 50px;
    max-width: 1100px; /* Aumentado max-width */
    margin-left: auto;
    margin-right: auto;
}

.stat-info-mini {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 20px !important; /* Aumentado padding */
    border-radius: 12px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.stat-info-mini:hover {
    transform: translateY(-5px);
    background: rgba(0, 112, 186, 0.1) !important;
    border-color: var(--neon-blue);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 10px var(--neon-blue-glow);
}

.stat-icon {
    font-size: 1.8rem !important;
    color: var(--neon-blue);
    margin-bottom: 12px;
    filter: drop-shadow(0 0 5px var(--neon-blue-glow));
}

.stat-info-mini.online .stat-icon {
    color: #2ecc71;
    filter: drop-shadow(0 0 8px rgba(46, 204, 113, 0.4));
}

.stat-info-mini .l {
    font-size: 1rem !important; /* Aumento del 30% */
    color: var(--text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

.stat-info-mini .v {
    font-size: 1.6rem !important; /* Aumento del 30% */
    font-weight: 800 !important;
    color: #fff !important;
    letter-spacing: 0.5px !important;
}

.stat-info-mini.online .v {
    color: #2ecc71 !important;
    text-shadow: 0 0 15px rgba(46, 204, 113, 0.5);
    animation: onlinePulse 2s infinite;
}

@keyframes onlinePulse {
    0% { transform: scale(1); text-shadow: 0 0 10px rgba(46, 204, 113, 0.4); }
    50% { transform: scale(1.1); text-shadow: 0 0 25px rgba(46, 204, 113, 0.8), 0 0 40px rgba(46, 204, 113, 0.4); }
    100% { transform: scale(1); text-shadow: 0 0 10px rgba(46, 204, 113, 0.4); }
}

/* King of Mu section */
.king-of-mu-container {
    position: relative;
    border: 2px solid var(--gold-text) !important;
    border-radius: 20px !important;
    padding: 60px 40px !important;
    box-shadow: 0 0 50px rgba(247, 183, 49, 0.2), inset 0 0 40px rgba(0, 0, 0, 0.9) !important;
    overflow: hidden;
    margin-top: 50px;
    background: transparent !important;
    /* IMPORTANTE: Debe ser transparente para ver el ::before */
    z-index: 1;
}

/* Pseudo-elemento para el fondo con Blur */
.king-of-mu-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(145deg, rgba(10, 10, 10, 0.6), rgba(0, 0, 0, 0.9)), url('../img/bg_main_class.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    z-index: -1;
    pointer-events: none;
}

.king-title {
    position: relative;
    z-index: 2;
    font-size: 1.4rem !important;
    letter-spacing: 6px !important;
    color: var(--text-muted) !important;
    margin-bottom: 25px !important;
    opacity: 0.8;
}

.king-winner-box {
    display: flex;
    position: relative;
    /* Asegurar stacking sobre el fondo */
    z-index: 2;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.king-clan-name {
    font-size: 4.5rem !important;
    font-weight: 950 !important;
    color: #fff !important;
    text-shadow: 0 0 20px var(--neon-red), 0 0 40px var(--neon-red-glow) !important;
    letter-spacing: -2px;
}

.king-crown-icon {
    font-size: 3.5rem !important;
    color: var(--gold-text) !important;
    filter: drop-shadow(0 0 15px var(--gold-glow));
    animation: kingPulse 2s ease-in-out infinite;
}

.king-reign-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-text);
    letter-spacing: 3px;
    margin-top: 15px;
    opacity: 0.7;
}

@keyframes kingPulse {

    0%,
    100% {
        transform: scale(1) rotate(-5deg);
        filter: drop-shadow(0 0 15px var(--gold-glow));
    }

    50% {
        transform: scale(1.2) rotate(5deg);
        filter: drop-shadow(0 0 30px var(--gold-text));
    }
}

/* Butcher Widget Redesign */
.butcher-row-section {
    position: relative; /* Para el pseudo-elemento ::before */
    margin-top: 60px;
    padding: 60px 40px !important;
    background: #000 !important;
    border-radius: 20px;
    border: 1px dashed rgba(231, 76, 60, 0.4);
    overflow: hidden;
    z-index: 1;
}

.butcher-row-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url('../img/wp2445596.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
    opacity: 0.8;
}

.butcher-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.butcher-avatar-large {
    width: 180px !important;
    height: 180px !important;
    border-radius: 50% !important;
    border: 4px solid var(--neon-red) !important;
    box-shadow: 0 0 25px var(--neon-red-glow), inset 0 0 20px var(--neon-red-glow) !important;
    object-fit: cover;
    background: #000;
    transition: transform 0.3s ease;
}

.butcher-grid:hover .butcher-avatar-large {
    transform: scale(1.05) rotate(3deg);
}

.butcher-details h2 {
    font-size: 1rem !important;
    color: var(--neon-red) !important;
    letter-spacing: 5px !important;
    margin-bottom: 5px !important;
}

.butcher-name {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
}

.butcher-name a {
    color: #fff !important;
    text-decoration: none !important;
}

.butcher-name a:hover {
    color: var(--neon-red) !important;
    text-shadow: 0 0 10px var(--neon-red-glow);
}

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

.b-card-stat {
    display: flex;
    flex-direction: column;
}

.b-card-stat .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.b-card-stat .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-red);
}

/* Social Buttons */
.social-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-social {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.btn-social:hover {
    transform: translateY(-10px) rotate(360deg);
    color: #fff;
}

.btn-social.facebook:hover {
    background: #3b5998 !important;
    box-shadow: 0 0 20px rgba(59, 89, 152, 0.6) !important;
}

.btn-social.youtube:hover {
    background: #ff0000 !important;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6) !important;
}

.btn-social.discord:hover {
    background: #7289da !important;
    box-shadow: 0 0 20px rgba(114, 137, 218, 0.6) !important;
}

.btn-social.whatsapp:hover {
    background: #25d366 !important;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6) !important;
}

.btn-social.stream:hover {
    background: #6441a5 !important;
    box-shadow: 0 0 20px rgba(100, 65, 165, 0.6) !important;
}

/* ==========================================================================
   Navbar & Footer Polishing
   ========================================================================== */

#navbar {
    background: rgba(11, 13, 19, 0.9) !important;
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    padding: 0 40px !important;
    min-height: 90px !important; /* Aumento de altura */
    position: sticky;
    top: 0;
    z-index: 9999;
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important; /* Tres columnas para centrado perfecto */
    align-items: center !important;
}

#navbar ul {
    grid-column: 2; /* Menú al centro */
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

#navbar ul li a {
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

#navbar ul li a:hover {
    color: #fff;
    text-shadow: 0 0 20px var(--neon-blue-glow);
    transform: translateY(-3px);
}

.navbar-login-btn {
    grid-column: 3; /* Botones a la derecha */
    justify-self: end;
    display: flex;
    gap: 15px;
}

.btn-login-small {
    padding: 10px 25px !important;
    border-radius: 5px !important;
    font-size: 1.1rem !important; /* Aumento del 30% */
    font-weight: 800 !important;
    text-transform: uppercase;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border-width: 2px !important;
}

/* Botón de Ingreso / Panel (Azul) */
.btn-login-blue {
    border: 2px solid var(--neon-blue) !important;
    color: var(--neon-blue) !important;
    background: rgba(0, 112, 186, 0.1) !important;
}

.btn-login-blue:hover {
    background: var(--neon-blue) !important;
    color: #fff !important;
    box-shadow: 0 0 20px var(--neon-blue-glow);
    transform: translateY(-3px);
}

/* Botón de Salir (Rojo) */
.btn-login-red {
    border: 2px solid var(--neon-red) !important;
    color: var(--neon-red) !important;
    background: rgba(231, 76, 60, 0.1) !important;
}

.btn-login-red:hover {
    background: var(--neon-red) !important;
    color: #fff !important;
    box-shadow: 0 0 20px var(--neon-red-glow);
    transform: translateY(-3px);
}

.footer {
    background: #050608 !important;
    padding: 60px 0 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 80px;
}

.footer a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--neon-blue);
    text-decoration: none;
}

/* Base WOW.js reset (only if it works) */
.wow {
    visibility: visible !important;
}

/* Responsive Fixes */
@media (max-width: 992px) {
    #navbar {
        flex-direction: column;
        gap: 15px;
    }

    #navbar ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-logo {
        max-width: 80%;
    }

    .king-clan-name {
        font-size: 2.5rem !important;
    }
}

/* ==========================================================================
   Floating Widgets (Social & Guides)
   ========================================================================== */

.floating-widget {
    position: fixed;
    right: 30px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10000;
}

.fw-btn {
    display: flex;
    align-items: center;
    justify-content: center; /* Centrado total para el estado circular */
    padding: 0 !important; /* Sin padding en estado circular */
    gap: 0 !important; /* Sin gap en estado circular */
    background: rgba(15, 18, 26, 0.98) !important; /* Fondo más sólido */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important; /* Círculo perfecto */
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 60px;
    height: 60px;
    overflow: hidden;
    white-space: nowrap;
    z-index: 10000;
}

.fw-btn i {
    font-size: 1.8rem;
    min-width: 60px; /* Igual al ancho del botón para centrado perfecto */
    text-align: center;
    transition: transform 0.3s ease;
}

.fw-btn span {
    opacity: 0;
    width: 0;
    display: none; /* Ocultar totalmente para no afectar el centrado */
    transition: all 0.3s ease;
}

.fw-btn:hover {
    width: 200px;
    border-radius: 50px !important; /* Volver a cápsula en hover */
    justify-content: flex-start !important;
    padding-left: 0 !important;
}

.fw-btn:hover span {
    display: inline-block;
    opacity: 1;
    width: auto;
    font-size: 1rem;
    margin-left: -5px; /* Ajuste para compensar el min-width del icono */
}

.fw-btn:hover i {
    transform: scale(1.1);
}

/* Colores específicos y Resplandores */
.fw-btn.discord { border-color: #7289da !important; color: #7289da !important; }
.fw-btn.discord:hover { background: #7289da !important; color: #fff !important; box-shadow: 0 0 20px rgba(114, 137, 218, 0.6); }

.fw-btn.whatsapp { border-color: #25d366 !important; color: #25d366 !important; }
.fw-btn.whatsapp:hover { background: #25d366 !important; color: #fff !important; box-shadow: 0 0 20px rgba(37, 211, 102, 0.6); }

.fw-btn.guide { border-color: var(--gold-text) !important; color: var(--gold-text) !important; }
.fw-btn.guide:hover { background: var(--gold-text) !important; color: #000 !important; box-shadow: 0 0 20px var(--gold-glow); }

/* Ajustes responsivos */
@media (max-width: 768px) {
    .floating-widget {
        right: 15px;
        bottom: 20px;
    }
    .fw-btn {
        width: 50px;
        height: 50px;
    }
    .fw-btn i { font-size: 1.5rem; }
}