/**
 * EPIC ELEMENTS - SkalRO
 * Elementos visuais épicos adicionais
 */

/* =============================================
   GRADIENTE ANIMADO NO FUNDO
   ============================================= */

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(139, 69, 19, 0.15) 0%, transparent 50%);
    z-index: -2;
    pointer-events: none;
}

/* =============================================
   DIVISORES ÉPICOS
   ============================================= */

.epic-divider {
    height: 3px;
    background: var(--viking-gradient-gold);
    margin: 2rem auto;
    max-width: 150px;
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.epic-divider-wide {
    max-width: 100%;
}

/* =============================================
   PATTERN DE FUNDO
   ============================================= */

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(212, 175, 55, 0.1) 10px,
            rgba(212, 175, 55, 0.1) 20px
        );
}

/* =============================================
   SCROLL INDICATOR
   ============================================= */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease infinite;
    color: var(--viking-gold);
    font-size: 2rem;
    opacity: 0.7;
}

/* =============================================
   CORNER DECORATIONS
   ============================================= */

.corner-decoration {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid var(--viking-gold);
    opacity: 0.3;
}

.corner-decoration.top-left {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.corner-decoration.top-right {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
}

.corner-decoration.bottom-left {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
}

.corner-decoration.bottom-right {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

/* =============================================
   SHINE EFFECT
   ============================================= */

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%);
    transition: transform 0.6s;
}

.shine-effect:hover::after {
    transform: translateX(100%) translateY(100%);
}

/* =============================================
   PULSE RING EFFECT
   ============================================= */

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.pulse-ring {
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--viking-gold);
    border-radius: 50%;
    animation: pulseRing 2s ease infinite;
}

/* =============================================
   TEXT EFFECTS
   ============================================= */

.text-epic {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    background: var(--viking-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.text-glow {
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(212, 175, 55, 0.1);
}

/* =============================================
   BATTLE FRAME (para cards especiais)
   ============================================= */

.battle-frame {
    position: relative;
    padding: 0.25rem;
    background: var(--viking-gradient-gold);
    border-radius: var(--border-radius-large);
}

.battle-frame-inner {
    background: var(--viking-bg-primary);
    border-radius: calc(var(--border-radius-large) - 2px);
    padding: 2rem;
}

