
body, a, button {
    cursor: url('../img/Cursor.png'), default !important; 
}
a:hover, button:hover, .badge-premium:hover, .filter-pill:hover, .toTop:hover, .swiper-slider .swiper-pagination .swiper-pagination-bullet:hover, .swiper-slider .swiper-button-prev:hover, .swiper-slider .swiper-button-next:hover {
    cursor: url('../img/CursorAttack.png'), pointer !important; 
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #04060f; /* Ultra deep dark void */
    background-image: 
        radial-gradient(at 0% 0%, rgba(245, 158, 11, 0.08) 0px, transparent 40%),
        radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.06) 0px, transparent 45%);
    overflow-x: hidden;
}
.mu-font {
    font-family: 'Cinzel', serif;
}

/* Custom fantasy gold borders */
.gold-border {
    border: 1px solid rgba(217, 119, 6, 0.15);
    background: rgba(10, 14, 28, 0.85);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.95), 0 10px 30px rgba(0, 0, 0, 0.7);
    opacity: 0; /* Ocultos por defecto hasta que cargue la animación JS */
}
.gold-border-active {
    border: 1px solid rgba(245, 158, 11, 0.6);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.15), inset 0 0 20px rgba(245, 158, 11, 0.05);
}
.text-glow {
    text-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}
.stat-glow {
    filter: drop-shadow(0px 0px 8px var(--glow-color));
}

/* Smooth transitions for interactive elements */
.transition-all-300 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Rotation keyframe for runic default backgrounds */
@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

/* ANIMACIÓN PREMIUM DE CASCADA (CSS KEYFRAMES) */
@keyframes fade-in-up {
    0% { 
        opacity: 0; 
        transform: translateY(40px) scale(0.96); 
        filter: blur(10px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
        filter: blur(0); 
    }
}

/* THEME VARIABLES & DYNAMIC GLOW */
:root {
    --theme-color: #ef4444;
    --theme-color-light: rgba(239, 68, 68, 0.15);
}
.glow-blob {
    position: absolute;
    border-radius: 50%;
    background-color: var(--theme-color-light);
    transition: background-color 0.8s ease-in-out;
    z-index: 0;
    pointer-events: none;
}
.glow-bl { bottom: -4rem; left: -4rem; width: 15rem; height: 15rem; filter: blur(65px); }
.glow-tr { top: -4rem; right: -4rem; width: 15rem; height: 15rem; filter: blur(75px); }

/* ANIMACIÓN PARA LA COPA DE HÉROE */
@keyframes trophy-pulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.3)); 
    }
    33% { 
        transform: scale(1.1) rotate(-6deg); 
        filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.7)); 
    }
    66% { 
        transform: scale(1.1) rotate(6deg); 
        filter: drop-shadow(0 0 14px rgba(245, 158, 11, 1)) brightness(1.2); 
    }
}
.animate-trophy {
    animation: trophy-pulse 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    transform-origin: bottom center;
}

/* Scrollbar customizing */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #04060f;
}
::-webkit-scrollbar-thumb {
    background: rgba(217, 119, 6, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(217, 119, 6, 0.6);
}