/* ============================================================================
   ARESFIXER - INDEX 2 (MITOLÓGICO / ÉPICO)
   ============================================================================ */
:root {
    --void-darker: #050403;
    --void-base: #0a0805;
    --void-light: #141009;
    --imperial-gold: #c5a059;
    --imperial-gold-dim: rgba(197, 160, 89, 0.4);
    --imperial-gold-glow: rgba(197, 160, 89, 0.8);
    --ares-red: #dc2626;
    --ares-red-glow: rgba(220, 38, 38, 0.8);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body.prometheus-theme {
    background-color: var(--void-darker);
    color: #fff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    height: 100vh;
    overflow: hidden;
    /* Sem scroll */
    position: relative;
    display: flex;
    flex-direction: column;
}

/* --- Fundo e Brilhos --- */
.particles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.void-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 40%, var(--void-darker) 100%);
    pointer-events: none;
    z-index: 1;
}

.divine-glow-top {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 300px;
    background: radial-gradient(ellipse at center, var(--imperial-gold-dim) 0%, transparent 70%);
    filter: blur(50px);
    opacity: 0.6;
    z-index: 2;
    animation: divinePulse 6s ease-in-out infinite alternate;
}

@keyframes divinePulse {
    0% {
        opacity: 0.4;
        filter: blur(50px);
    }

    100% {
        opacity: 0.8;
        filter: blur(60px);
        transform: translateX(-50%) scale(1.1);
    }
}

/* --- Top Nav Minimalista (Idiomas & Legal) --- */
.mythic-top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    /* Afasta os links institucionais dos idiomas */
    align-items: center;
    z-index: 100;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Nova Lista Horizontal (Desktop) */
.lang-horizontal-list {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

/* ========================================
   ARES BRAND COMPONENT (Reutilizável)
   ======================================== */
.ares-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.ares-brand-helmet {
    height: 28px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(229, 57, 53, 0.4));
    transition: all 0.3s ease;
}

.ares-brand:hover .ares-brand-helmet {
    filter: drop-shadow(0 0 14px rgba(229, 57, 53, 0.7));
    transform: scale(1.05);
}

.ares-brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
    text-transform: uppercase;
}

/* Tamanhos do Brand */
.ares-brand-sm .ares-brand-helmet {
    height: 26px;
}

.ares-brand-sm .ares-brand-text {
    font-size: 1.2rem;
}

.ares-brand-xs .ares-brand-helmet {
    height: 22px;
}

.ares-brand-xs .ares-brand-text {
    font-size: 1rem;
}

.ares-brand-lg .ares-brand-helmet {
    height: 40px;
}

.ares-brand-lg .ares-brand-text {
    font-size: 2rem;
}

/* Sem helmo: esconder imagem */
.ares-brand-no-helmet .ares-brand-helmet {
    display: none;
}

/* ========================================
   NAV LAYOUT (Subpáginas = Brand + Centro + Idioma)
   ======================================== */

/* Menu Esquerdo (Links Institucionais) - Centraliza quando subpágina */
.mythic-left-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Quando a brand está visível, os links se centralizam */
.mythic-top-nav.has-brand .mythic-left-nav {
    flex: 1;
    justify-content: center;
}

.mythic-legal-link {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 6px 12px;
    border-radius: 2px;
    transition: var(--transition-smooth);
    overflow: hidden;
    /* Corta o tooltip expandindo */
}

/* === Links Legais Esquerda (Acesso Direto Totalmente Visíveis) === */
.legal-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    /* Espaço fixo para o ícone */
    transition: var(--transition-smooth);
}

.mythic-legal-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: none;
    border-radius: 2px;
    transition: var(--transition-smooth);
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    color: #fff;
}

.mythic-legal-link i {
    opacity: 1;
    color: #fff;
    /* Ícone em destaque brilhante (branco) segundo preferência, contrastando com texto cinza */
    transition: var(--transition-smooth);
}

/* Base style for Idiomas (lang-icon) que ainda esconde/expande */
.lang-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: none;
    border-radius: 2px;
    transition: var(--transition-smooth);
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    max-width: 150px;
}

/* Animação do raio circulante (Borda Dourada Animada para Hover Inativo) */
.lang-icon::before,
.mythic-legal-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--imperial-gold));
    animation: rotateRay 2s linear infinite;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Background do Badge (O miolo branco central no hover, e invisível no normal) */
.lang-icon::after,
.mythic-legal-link::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: transparent;
    border-radius: 2px;
    z-index: -1;
    transition: var(--transition-smooth);
}

@keyframes rotateRay {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Estado ATIVO (Selecionado) - Fundo translúcido para bandeiras, fundo branco para Links Institucionais */
.lang-icon.active::after {
    background: transparent;
    border: 1px solid transparent;
    inset: 0;
    border-radius: 2px;
}

.mythic-legal-link.active::after {
    background: #fff;
    opacity: 1;
    inset: 0;
    border-radius: 4px;
}

/* Mostra a borda luminosa apenas no hover do PAI ou do ITEM */
.lang-horizontal-list:hover .lang-icon.active::after,
.mythic-top-nav.lang-startup-reveal .lang-horizontal-list .lang-icon.active::after,
.mythic-legal-link.active:hover::after {
    border-color: rgba(197, 160, 89, 0.6);
}

/* Hover em INATIVO: mostra o fundo branco e a moldura geradora rotatoria de luz */
.lang-horizontal-list:hover .lang-icon:hover:not(.active)::before,
.mythic-legal-link:hover:not(.active)::before {
    opacity: 1;
}

.lang-horizontal-list:hover .lang-icon:hover:not(.active)::after,
.mythic-legal-link:hover:not(.active)::after {
    background: #fff;
    opacity: 1;
    border-radius: 4px;
    /* Adicionando o pedido de radius nas bordas do branco */
}

/* Bordas externas do Container também necessitam abraçar esse radius caso ocorra corte */
.lang-icon,
.mythic-legal-link {
    border-radius: 4px;
}

.lang-icon img {
    width: 28px;
    height: auto;
    opacity: 0.3;
    transition: var(--transition-smooth);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Idiomas: quando hover no contêiner TODO, todos os inativos ficam com opacidade reduzida */
.lang-horizontal-list:hover .lang-icon img,
.mythic-top-nav.lang-startup-reveal .lang-horizontal-list .lang-icon img {
    opacity: 0.2;
}

/* O ícone/item selecionado / em foco volta a ter 100% de opacidade e relevo */
/* Idiomas */
.lang-horizontal-list:hover .lang-icon:hover img,
.lang-icon.active img,
.lang-horizontal-list:hover .lang-icon.active img,
.mythic-top-nav.lang-startup-reveal .lang-horizontal-list .lang-icon.active img {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

/* Left Links Institucionais Hover Físico - Fundo Branco Exige Ícone e Texto Preto na Inativa */
.mythic-legal-link:hover:not(.active) i,
.mythic-legal-link:hover:not(.active) .legal-label {
    opacity: 1;
    transform: scale(1.1);
    color: #000;
    /* Elementos pretos para melhor contraste legível sobre o hover de fundo branco */
}

/* Left Links Institucionais - Efeito Ativo Fixo (Preto no Branco) */
.mythic-legal-link.active i,
.mythic-legal-link.active .legal-label {
    opacity: 1;
    color: #000;
}

/* Oculta os labels (textos) por padrão no desktop gerando 'width 0' animável (Idiomas) */
.lang-label {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 0.70rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 0;
}

/* Quando mouse entra na Horizontal List (Idiomas) ou em startup, expande o texto */
.lang-horizontal-list:hover .lang-label,
.mythic-top-nav.lang-startup-reveal .lang-horizontal-list .lang-label {
    max-width: 80px;
    opacity: 1;
    margin-left: 8px;
}

/* ========================================================================= */
/* Cores do Texto Label (Idiomas e Institucional)                            */
/* ========================================================================= */

/* Texto Branco base no Hover (Idiomas) */
.lang-horizontal-list:hover .lang-icon .lang-label,
.mythic-top-nav.lang-startup-reveal .lang-horizontal-list .lang-icon .lang-label {
    color: rgba(255, 255, 255, 0.6);
}

/* Texto Preto na Hover do Inativo (Fundo Branco - Ambos) */
.lang-horizontal-list:hover .lang-icon:hover:not(.active) .lang-label,
.mythic-legal-link:hover:not(.active) .legal-label {
    color: #000;
    font-weight: 700;
}

/* Texto Dourado no item Ativa (Fundo Transparente c/ Borda) */
.lang-horizontal-list:hover .lang-icon.active .lang-label,
.mythic-top-nav.lang-startup-reveal .lang-horizontal-list .lang-icon.active .lang-label {
    color: var(--imperial-gold);
    font-weight: 700;
}

/* Texto Preto no item Ativo dos Links Institucionais (Fundo Branco) */
.mythic-legal-link.active .legal-label,
.mythic-legal-link:hover.active .legal-label {
    color: #000;
    font-weight: 700;
}

/* --- ESTADOS DE COLAPSO (REMOÇÃO VISUAL DOS INATIVOS) PARA IDIOMAS --- */
/* Só colapsa se eu não estiver dando hover na própria horizontal list */
.mythic-top-nav.lang-auto-collapsed .lang-horizontal-list:not(:hover) {
    gap: 0;
    /* Recolhe o espaço vazio */
}

.mythic-top-nav.lang-auto-collapsed .lang-horizontal-list:not(:hover) .lang-icon:not(.active) {
    max-width: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    border: none;
    overflow: hidden;
}

/* === FADE IN/OUT: Esconde links quando idiomas expandem, mostra quando retraem === */
.mythic-left-nav,
.nav-brand-link {
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

/* Quando idiomas EXPANDEM (classe toggled por JS no hover da lang-list): fade out dos links */
.mythic-top-nav.langs-expanded .mythic-left-nav,
.mythic-top-nav.langs-expanded .nav-brand-link {
    opacity: 0 !important;
    pointer-events: none;
    transform: translateY(-3px);
}

/* Quando startup-reveal ativo: fade out dos links */
.mythic-top-nav.lang-startup-reveal .mythic-left-nav,
.mythic-top-nav.lang-startup-reveal .nav-brand-link {
    opacity: 0 !important;
    pointer-events: none;
    transform: translateY(-3px);
}

/* --------------------------------------------------------- */

/* Dropdown original - Ocultar no Desktop / Mostrar no Mobile */
.lang-mobile-only {
    display: none;
}

.lang-selector {
    position: relative;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    user-select: none;
}

.current-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.current-lang img {
    border-radius: 2px;
}

.current-lang:hover {
    color: var(--imperial-gold);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(10, 8, 5, 0.9);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.lang-dropdown a:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--imperial-gold);
}

.lang-dropdown a img {
    border-radius: 2px;
}

/* --- Container Principal --- */
.epic-container {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 5%;
    width: 100%;
    user-select: none;
    -webkit-user-select: none;
    /* Remove opacidade, usa transform dinâmico */
    transform: scale(var(--hero-scale, 1));
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============================================================================
   ARESFIXER - PROPULSION UI
   ============================================================================ */
#warp-propulsion-container {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 200;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#warp-propulsion-container.active {
    opacity: 1;
    pointer-events: auto;
}

.propulsion-track {
    width: 8px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.propulsion-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, var(--ares-red), var(--imperial-gold));
    box-shadow: 0 0 15px var(--ares-red-glow);
    transition: height 0.1s linear;
}

.propulsion-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: var(--imperial-gold);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.8;
}

.propulsion-stop-btn {
    margin-top: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 8, 5, 0.8);
    border: 1px solid var(--ares-red);
    color: var(--ares-red);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.2);
}

.propulsion-stop-btn:hover {
    background: var(--ares-red);
    color: #fff;
    box-shadow: 0 0 20px var(--ares-red-glow);
    transform: scale(1.1);
}

#warp-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(10, 8, 5, 0.85);
    border: 1px solid var(--imperial-gold-dim);
    padding: 20px 40px;
    border-radius: 8px;
    color: var(--imperial-gold);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    box-shadow: 0 0 40px var(--imperial-gold-glow);
    backdrop-filter: blur(10px);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#warp-notification.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: warpPulse 1s infinite alternate;
}

@keyframes warpPulse {
    from {
        box-shadow: 0 0 20px var(--imperial-gold-dim);
    }

    to {
        box-shadow: 0 0 50px var(--imperial-gold-glow);
    }
}

/* --- Coluna Esquerda: Texto --- */
.epic-content-left {
    flex: 1;
    max-width: 600px;
    animation: slideInLeft 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    opacity: 0;
    transform: translateX(-50px);
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mythic-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.gold-accent {
    color: var(--imperial-gold);
    text-shadow: 0 0 40px var(--imperial-gold-glow);
}

.ares-red-accent {
    color: #e53935;
    text-shadow: 0 0 40px rgba(229, 57, 53, 0.5), 0 0 80px rgba(229, 57, 53, 0.2);
}

.mythic-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mythic-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    border-left: 2px solid var(--imperial-gold-dim);
    padding-left: 1.5rem;
}

/* Botões */
.mythic-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-epic {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-epic-login {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-epic-login:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-epic-summon {
    background: linear-gradient(135deg, #8a6d2b 0%, var(--imperial-gold) 100%);
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 30px var(--imperial-gold-dim);
    position: relative;
    overflow: hidden;
}

.btn-epic-summon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn-epic-summon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--imperial-gold-glow);
}

/* --- Coluna Direita: Imagem/Mitologia --- */
.epic-content-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    animation: fadeInScale 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    opacity: 0;
    transform: scale(0.95);
    animation-delay: 0.3s;
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.helmet-showcase {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.summon-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px dashed rgba(220, 38, 38, 0.5);
    box-shadow: inset 0 0 60px rgba(220, 38, 38, 0.25), 0 0 60px rgba(220, 38, 38, 0.2);
    animation: spinSlow 20s linear infinite;
    z-index: 1;
}

.summon-circle::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-top-color: #dc2626;
    border-right-color: rgba(220, 38, 38, 0.4);
    animation: spinSlowReverse 15s linear infinite;
}

/* Segundo círculo interno — rotação inversa, estilo tech */
.summon-circle-inner {
    width: 320px;
    height: 320px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-style: solid;
    box-shadow: inset 0 0 40px rgba(220, 38, 38, 0.15), 0 0 30px rgba(220, 38, 38, 0.15);
    animation: spinSlowReverse 25s linear infinite;
}

.summon-circle-inner::after {
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px dotted rgba(220, 38, 38, 0.2);
    border-top-color: #ff4444;
    border-left-color: rgba(255, 68, 68, 0.5);
    animation: spinSlow 18s linear infinite;
}

@keyframes spinSlow {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinSlowReverse {
    100% {
        transform: rotate(-360deg);
    }
}

.helmet-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.mythic-helmet {
    width: 250px;
    height: auto;
    position: relative;
    filter: drop-shadow(0 0 40px var(--ares-red-glow));
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Olhos brilhantes */
.eye-glow {
    position: absolute;
    width: 15px;
    height: 6px;
    background: #ff0000;
    box-shadow: 0 0 20px 10px rgba(255, 0, 0, 0.8), 0 0 40px 20px rgba(255, 0, 0, 0.4);
    border-radius: 50%;
    z-index: 3;
    animation: eyePulse 2s infinite alternate;
}

.left-eye {
    top: 52%;
    left: 40%;
    transform: rotate(-10deg);
}

.right-eye {
    top: 52%;
    right: 40%;
    transform: rotate(10deg);
}

@keyframes eyePulse {
    0% {
        opacity: 0.6;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* --- Footer --- */
.mythic-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    background: linear-gradient(0deg, rgba(5, 4, 3, 0.9) 0%, transparent 100%);
}

.mythic-socials {
    display: flex;
    gap: 2rem;
    /* Espaçamento maior sugerido */
}

.mythic-socials a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mythic-socials a span {
    position: absolute;
    top: -35px;
    /* Acima do ícone */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
    background: rgba(10, 8, 5, 0.9);
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.mythic-socials a:hover {
    color: var(--imperial-gold);
}

.mythic-socials a:hover span {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mythic-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Responsivo --- */
@media (max-width: 1024px) {
    .lang-horizontal-list {
        display: none;
    }

    .lang-mobile-only {
        display: block;
    }

    body.prometheus-theme {
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
    }

    .epic-container {
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
        padding: 50px 5% 1rem;
        gap: 0;
    }

    /* Helmo + círculos vão para CIMA */
    .epic-content-right {
        order: -1;
        margin-bottom: 0.5rem;
        flex: none;
    }

    .epic-content-left {
        align-items: center;
        margin-bottom: 0;
        flex: none;
    }

    .mythic-description {
        border-left: none;
        padding-left: 0;
        border-bottom: 2px solid var(--imperial-gold-dim);
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
        font-size: 0.85rem;
    }

    .mythic-actions {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    /* Botões mobile: texto curto */
    .btn-epic span {
        font-size: 0;
    }

    .btn-epic span::before {
        font-size: 0.85rem;
    }

    .btn-epic-login span::before {
        content: 'INICIAR';
    }

    .btn-epic-summon span::before {
        content: 'INVOCAR';
    }

    .btn-epic {
        padding: 0.8rem 1.5rem;
    }

    /* Helmo compacto */
    .helmet-showcase {
        width: 180px;
        height: 180px;
    }

    .summon-circle {
        width: 150px;
        height: 150px;
    }

    .summon-circle-inner {
        width: 120px;
        height: 120px;
    }

    .mythic-helmet {
        width: 100px;
    }

    .eye-glow {
        display: none;
    }

    .mythic-title {
        font-size: 2.8rem;
        margin-bottom: 0.3rem;
    }

    .mythic-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    /* === MOBILE: Esconde nav desktop, mostra hamburger === */
    .mythic-left-nav {
        display: none !important;
    }

    .nav-brand-link {
        display: none !important;
    }

    .hamburger-btn {
        display: flex !important;
    }
}

/* ========================================
   HAMBURGER BUTTON
   ======================================== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animação X quando aberto */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   MOBILE DRAWER (Painel Lateral)
   ======================================== */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(15, 12, 8, 0.98) 0%, rgba(10, 8, 5, 0.99) 100%);
    border-right: 1px solid rgba(197, 160, 89, 0.2);
    z-index: 1000;
    overflow-y: auto;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.drawer-logo {
    width: 40px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.4));
}

.drawer-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.drawer-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.drawer-link i {
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.drawer-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-left-color: rgba(197, 160, 89, 0.4);
}

.drawer-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--imperial-gold);
    border-left-color: var(--imperial-gold);
}

.drawer-link.active i {
    color: var(--imperial-gold);
}

.drawer-divider {
    height: 1px;
    background: rgba(197, 160, 89, 0.15);
    margin: 10px 20px;
}

.drawer-section-title {
    padding: 12px 24px 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(197, 160, 89, 0.6);
    font-weight: 600;
}

.drawer-section-title i {
    margin-right: 6px;
}

.drawer-langs {
    display: flex;
    flex-direction: column;
    padding: 5px 0 20px;
}

.drawer-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.drawer-lang-item img {
    width: 20px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.drawer-lang-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.drawer-lang-item.active {
    color: var(--imperial-gold);
    background: rgba(197, 160, 89, 0.08);
}