/* ==========================================================================
   1. SYSTEM & VARIABLES (COSMIC PALETTE)
   ========================================================================== */
   :root {
    /* Paleta de Cores: Terror Cósmico */
    --void-deep: #010205;       /* O Abismo (Quase preto azulado) */
    --void-light: #05080e;      /* Painéis */
    
    --arcane: #4deeea;          /* Ciano Brilhante (Energia/Magia) */
    --arcane-dim: #1a4549;      /* Ciano Apagado (Bordas) */
    --arcane-glow: rgba(77, 238, 234, 0.4);
    
    --blood: #8a0303;           /* Vermelho Sangue (Perigo/Inimigos) */
    --blood-bright: #ff1f1f;
    
    --spirit: #a5b3ce;          /* Texto Comum (Azulacinzentado) */
    --text-light: #e0f7fa;      /* Texto Destaque */
    
    /* Tipografia */
    --font-title: 'Cinzel', serif;
    --font-lore: 'Cormorant Garamond', serif;
    --font-ui: 'Inter', sans-serif;

    /* FX e Transições */
    --glass: rgba(5, 8, 14, 0.7);
    --glass-border: 1px solid rgba(77, 238, 234, 0.1);
    --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset Hardcore */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
    cursor: none; /* O cursor do sistema é oculto para usar o customizado */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--void-deep);
    color: var(--spirit);
    font-family: var(--font-ui);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Scrollbar Estilo Cyber-Magic */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void-deep); }
::-webkit-scrollbar-thumb { background: #1a2333; border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--arcane); box-shadow: 0 0 10px var(--arcane); }

::selection {
    background: var(--arcane);
    color: var(--void-deep);
}

/* ==========================================================================
   2. LOADER (TELA DE INVOCACAO)
   ========================================================================== */
body.loading { overflow: hidden; }

#loader-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-logo {
    width: 100px; margin-bottom: 30px;
    filter: drop-shadow(0 0 15px var(--arcane));
    animation: float 3s ease-in-out infinite;
}

.loading-bar-container {
    width: 250px; height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto 15px;
    position: relative; overflow: hidden;
}

.loading-bar {
    position: absolute; top: 0; left: 0; height: 100%; width: 100%;
    background: var(--arcane);
    box-shadow: 0 0 10px var(--arcane);
    transform: translateX(-100%);
    animation: loadBar 2s ease-in-out forwards;
}

.loader-text {
    font-family: var(--font-title);
    font-size: 0.75rem; letter-spacing: 4px;
    color: var(--arcane-dim);
    animation: pulse 1.5s infinite alternate;
}

/* ==========================================================================
   3. AMBIENTE & ATMOSFERA (NEVOA E LUZ)
   ========================================================================== */
/* Cursor Mágico */
.cursor-outer {
    width: 40px; height: 40px;
    border: 1px solid var(--arcane);
    border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
    mix-blend-mode: screen;
    box-shadow: 0 0 10px var(--arcane-dim);
}
.cursor-inner {
    width: 6px; height: 6px;
    background: var(--arcane);
    border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 10000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--arcane);
}
/* Hover state do cursor */
body.hover-active .cursor-outer {
    width: 70px; height: 70px;
    background: rgba(77, 238, 234, 0.1);
    border-color: #fff;
    border-width: 2px;
}

/* Efeitos de Tela */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://assets.codepen.io/217233/noise.png');
    opacity: 0.04; pointer-events: none; z-index: 9900;
}

.vignette-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 60%, #000 130%);
    pointer-events: none; z-index: 9901;
}

/* Névoa Azulada sobre tudo */
.blue-fog-overlay {
    position: fixed; bottom: 0; left: 0; width: 100%; height: 40%;
    background: linear-gradient(to top, rgba(1, 10, 20, 0.8), transparent);
    pointer-events: none; z-index: 9000;
}

/* Botão de Som */
.sound-toggle {
    position: fixed; bottom: 40px; right: 40px; z-index: 9950;
    display: flex; align-items: center; gap: 10px;
    cursor: pointer; opacity: 0.6; transition: 0.3s;
}
.sound-toggle:hover { opacity: 1; transform: scale(1.1); }
.equalizer span {
    display: block; width: 3px; height: 10px; background: var(--arcane);
    animation: eq 1s infinite ease-in-out;
}
.equalizer span:nth-child(2) { animation-delay: 0.2s; }
.equalizer span:nth-child(3) { animation-delay: 0.4s; }
.sound-text { font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; color: var(--arcane); }

/* ==========================================================================
   4. HUD NAVIGATION (MENU)
   ========================================================================== */
.main-nav {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 5000;
    padding: 25px 50px;
    transition: all 0.4s var(--ease-smooth);
    border-bottom: 1px solid transparent;
}

.main-nav.scrolled {
    padding: 15px 50px;
    background: rgba(1, 2, 5, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(77, 238, 234, 0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.nav-wrapper {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1800px; margin: 0 auto;
}

.nav-logo img { height: 40px; filter: drop-shadow(0 0 5px var(--arcane-dim)); transition: 0.3s; }
.nav-logo:hover img { filter: drop-shadow(0 0 15px var(--arcane)); transform: scale(1.05); }

.nav-links { display: flex; gap: 40px; list-style: none; }

.nav-item {
    font-family: var(--font-title);
    font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: var(--spirit); position: relative; padding: 5px 0;
    transition: 0.3s;
}
.nav-item::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
    background: var(--arcane); box-shadow: 0 0 10px var(--arcane);
    transition: 0.3s var(--ease-elastic);
}
.nav-item:hover, .nav-item.active { color: #fff; text-shadow: 0 0 10px var(--arcane); }
.nav-item:hover::after, .nav-item.active::after { width: 100%; }

/* Ações Direita */
.nav-actions { display: flex; align-items: center; gap: 30px; }

.lang-selector {
    font-size: 0.8rem; font-weight: 700; color: var(--arcane-dim);
    cursor: pointer; display: flex; align-items: center; gap: 8px;
    transition: 0.3s;
}
.lang-selector:hover { color: var(--arcane); }

.btn-download-mini {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px;
    background: rgba(77, 238, 234, 0.05);
    border: 1px solid var(--arcane-dim);
    color: var(--arcane);
    font-family: var(--font-title); font-weight: 700; font-size: 0.75rem; letter-spacing: 1px;
    transition: 0.3s;
}
.btn-download-mini:hover {
    background: var(--arcane); color: #000;
    box-shadow: 0 0 20px var(--arcane-glow);
    border-color: var(--arcane);
}

/* Hamburguer Mobile */
.hamburger { display: none; cursor: pointer; }
.hamburger .line { width: 30px; height: 2px; background: var(--arcane); margin: 6px 0; transition: 0.3s; }

/* ==========================================================================
   5. HERO PARALLAX & TITLES
   ========================================================================== */
.hero-section {
    height: 100vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Conteúdo no fundo */
    padding-bottom: 150px;
}

/* Sistema Parallax */
.parallax-container {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}
.parallax-container .layer {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
    display: flex; justify-content: center; align-items: flex-end;
}
.parallax-container img {
    width: 100%; height: 100%; object-fit: cover; pointer-events: none;
}
/* Logo Flutuante do Banner */
.hero-main-logo {
    width: 500px !important; height: auto !important;
    position: absolute; top: 25%; left: 50%; margin-left: -250px;
    filter: drop-shadow(0 0 50px rgba(0,0,0,0.8));
    animation: float 6s ease-in-out infinite;
}

/* Animação da Névoa */
.fog-anim-slow img { animation: fogMove 120s linear infinite; opacity: 0.6; }
.fog-anim-fast img { animation: fogMove 60s linear infinite reverse; opacity: 0.4; }

/* Texto sobreposto */
.hero-overlay-content {
    position: relative; z-index: 10;
    text-align: center; width: 100%;
    max-width: 1000px;
}

.hero-subtitle {
    font-family: var(--font-title); color: var(--arcane);
    font-size: 1rem; letter-spacing: 8px; text-transform: uppercase;
    margin-bottom: 15px; text-shadow: 0 0 10px rgba(77, 238, 234, 0.5);
}

.hero-headline {
    font-family: var(--font-title); font-size: 5rem; color: #fff;
    line-height: 0.9; margin-bottom: 40px;
    text-shadow: 0 10px 50px rgba(0,0,0,1);
    display: none; /* Usando o SVG no lugar, mas mantendo estrutura */
}

/* Glitch Effect (Estilo Cyber/Magic) */
.glitched-text { position: relative; }
.glitched-text::before, .glitched-text::after {
    content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--void-deep); opacity: 0.8;
}
.glitched-text::before {
    left: 2px; text-shadow: -1px 0 red; clip-path: inset(0 0 0 0);
    animation: glitch 3s infinite linear alternate-reverse;
}
.glitched-text::after {
    left: -2px; text-shadow: -1px 0 cyan; clip-path: inset(0 0 0 0);
    animation: glitch-2 2s infinite linear alternate-reverse;
}

/* CTA Buttons */
.cta-group { display: flex; justify-content: center; gap: 30px; }

.btn-epic {
    position: relative; display: inline-flex; justify-content: center; align-items: center;
    padding: 20px 60px;
    background: rgba(5, 10, 20, 0.8);
    border: 1px solid var(--arcane-dim);
    overflow: hidden; transition: 0.4s;
}
.btn-inner {
    position: relative; z-index: 2;
    font-family: var(--font-title); font-weight: 800; font-size: 1.1rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-light);
}
.btn-borders {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border: 1px solid transparent; z-index: 1; transition: 0.4s;
}
/* Efeito Hover Primário */
.btn-epic.primary { background: linear-gradient(45deg, rgba(77,238,234,0.1), transparent); border-color: var(--arcane); }
.btn-epic.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--arcane-glow), inset 0 0 20px var(--arcane-glow);
    border-color: #fff;
}
.btn-epic.primary:hover .btn-inner { text-shadow: 0 0 10px #fff; color: #fff; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 15px;
    font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 4px; color: var(--arcane-dim);
    opacity: 0.7;
}
.scroll-indicator .line { width: 1px; height: 80px; background: linear-gradient(to bottom, var(--arcane), transparent); }

/* ==========================================================================
   6. CONTENT SECTIONS STYLE
   ========================================================================== */
.section-pad { padding: 140px 0; position: relative; }
.bg-pattern-blue { background: radial-gradient(circle at center, #05101a 0%, var(--void-deep) 70%); }
.dark-texture { background-color: #030508; border-top: 1px solid #111; border-bottom: 1px solid #111; }
.bg-darker { background-color: #010102; }

.container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 30px; }
.narrow-container { max-width: 900px; }

/* Headers */
.section-header { position: relative; margin-bottom: 80px; }
.rune-icon { font-size: 2rem; color: var(--arcane-dim); display: block; margin-bottom: 15px; animation: pulse 2s infinite; }
.section-title { font-size: 3.5rem; color: #fff; font-family: var(--font-title); line-height: 1; margin-bottom: 15px; }
.section-subtitle { font-family: var(--font-lore); font-size: 1.5rem; color: var(--spirit); font-style: italic; }

/* Separator Azul */
.separator { width: 80px; height: 3px; background: var(--arcane); margin: 20px auto; box-shadow: 0 0 15px var(--arcane); }
.separator.left { margin: 20px 0; }

/* Text Colors */
.text-arcane { color: var(--arcane); text-shadow: 0 0 15px var(--arcane-dim); }
.text-red { color: var(--blood-bright); text-shadow: 0 0 15px var(--blood); }

/* Lore Content */
.lore-lead { font-size: 1.8rem; font-family: var(--font-lore); font-style: italic; color: #fff; margin-bottom: 30px; line-height: 1.4; }
.lore-full-content p { font-size: 1.1rem; color: var(--spirit); margin-bottom: 20px; line-height: 1.8; }

.lore-stats { display: flex; justify-content: center; gap: 40px; margin-top: 50px; }
.stat-item { width: 200px; }
.stat-item .label { display: block; font-family: var(--font-title); font-size: 0.8rem; color: var(--arcane); letter-spacing: 2px; margin-bottom: 8px; text-align: left; }
.stat-item .bar { width: 100%; height: 4px; background: rgba(255,255,255,0.1); }
.stat-item .fill { height: 100%; background: var(--arcane); box-shadow: 0 0 10px var(--arcane); }

/* ==========================================================================
   7. CLASSES & CARDS
   ========================================================================== */
.classes-slider {
    display: flex; gap: 20px; height: 550px; justify-content: center;
}

.class-card {
    flex: 1; position: relative;
    border: 1px solid #222; background: #050505;
    overflow: hidden; transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.class-card:hover, .class-card.active { flex: 3.5; border-color: var(--arcane); }

.class-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0.3; filter: grayscale(100%) contrast(1.2);
    transition: 0.6s;
}
.class-card:hover .class-bg, .class-card.active .class-bg {
    opacity: 0.6; filter: grayscale(0%) contrast(1.1); transform: scale(1.05);
}

.class-content {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 40px;
    background: linear-gradient(to top, #000 0%, transparent 100%);
    transform: translateY(20px); opacity: 0; transition: 0.5s 0.1s;
}
.class-card:hover .class-content, .class-card.active .class-content { transform: translateY(0); opacity: 1; }

.class-content h3 { font-family: var(--font-title); font-size: 2.5rem; color: #fff; margin-bottom: 10px; text-shadow: 0 5px 10px #000; }
.class-desc { font-family: var(--font-lore); font-size: 1.2rem; color: #ccc; font-style: italic; margin-bottom: 20px; }
.class-stats { display: flex; gap: 20px; }
.class-stats li { font-size: 0.9rem; color: var(--arcane); font-weight: bold; border: 1px solid var(--arcane-dim); padding: 5px 10px; }

/* ==========================================================================
   8. FEATURES & INVENTORY
   ========================================================================== */
.feature-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.feature-box {
    background: var(--void-light); padding: 50px 30px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center; transition: 0.4s;
    position: relative; overflow: hidden;
}
.feature-box::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: var(--arcane); transform: scaleX(0); transform-origin: left; transition: 0.4s;
}
.feature-box:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-color: transparent; }
.feature-box:hover::before { transform: scaleX(1); }

.feature-box .icon-wrapper { font-size: 3rem; color: var(--arcane); margin-bottom: 25px; filter: drop-shadow(0 0 10px var(--arcane-dim)); }
.feature-box h4 { color: #fff; margin-bottom: 15px; font-size: 1.4rem; letter-spacing: 1px; }
.feature-box p { color: var(--text-muted); font-size: 0.95rem; }

/* ARSENAL GRID (INVENTORY STYLE) */
.arsenal-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px; padding: 30px;
    background: rgba(5, 10, 15, 0.8); border: 1px solid var(--arcane-dim);
    backdrop-filter: blur(5px);
}

.item-slot {
    aspect-ratio: 1; background: rgba(0,0,0,0.6);
    border: 1px solid #333;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: 0.2s; cursor: pointer; position: relative;
}
.item-slot i { font-size: 3rem; color: #444; margin-bottom: 10px; transition: 0.3s; }
.item-slot span { font-size: 0.75rem; text-transform: uppercase; color: #666; letter-spacing: 1px; transition: 0.3s; }

/* Rarity Colors */
.item-slot[data-rarity="common"]:hover { border-color: #fff; box-shadow: inset 0 0 20px rgba(255,255,255,0.2); }
.item-slot[data-rarity="common"]:hover i { color: #fff; filter: drop-shadow(0 0 5px #fff); }

.item-slot[data-rarity="rare"]:hover { border-color: #0070dd; box-shadow: inset 0 0 20px rgba(0, 112, 221, 0.3); }
.item-slot[data-rarity="rare"]:hover i { color: #0070dd; filter: drop-shadow(0 0 8px #0070dd); }

.item-slot[data-rarity="arcane"]:hover { border-color: var(--arcane); box-shadow: inset 0 0 30px var(--arcane-dim); }
.item-slot[data-rarity="arcane"]:hover i { color: var(--arcane); filter: drop-shadow(0 0 10px var(--arcane)); transform: scale(1.1); }

.item-slot[data-rarity="legendary"]:hover { border-color: #ff8000; box-shadow: inset 0 0 30px rgba(255, 128, 0, 0.3); }
.item-slot[data-rarity="legendary"]:hover i { color: #ff8000; filter: drop-shadow(0 0 15px #ff8000); transform: scale(1.2); }

/* ==========================================================================
   9. GALLERY & SPECS
   ========================================================================== */
.gallery-masonry {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px;
    grid-auto-rows: 250px;
}
.gallery-card {
    position: relative; overflow: hidden; border: 1px solid #222;
    grid-column: span 1; display: block;
}
.gallery-card.wide { grid-column: span 2; }

.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; filter: grayscale(30%) brightness(0.7); }
.gallery-card .overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(77, 238, 234, 0.2); opacity: 0; transition: 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.gallery-card .overlay i { font-size: 2rem; color: #fff; transform: scale(0); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.gallery-card:hover { border-color: var(--arcane); }
.gallery-card:hover img { transform: scale(1.1); filter: grayscale(0%) brightness(1); }
.gallery-card:hover .overlay { opacity: 1; }
.gallery-card:hover .overlay i { transform: scale(1); }

/* System Specs */
.specs-box {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 50px;
}
.specs-box h3 { text-align: center; color: var(--arcane); font-family: var(--font-title); font-size: 2rem; margin-bottom: 40px; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.spec-col h4 { color: #fff; border-bottom: 1px solid var(--arcane-dim); padding-bottom: 10px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.spec-col ul li { display: flex; justify-content: space-between; margin-bottom: 12px; color: #888; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 5px; }
.spec-col ul li strong { color: var(--spirit); }
.border-left-blue { border-left: 1px solid rgba(255,255,255,0.1); padding-left: 50px; }

/* ==========================================================================
   10. FOOTER & CULT
   ========================================================================== */
.cult-bg-blue { background: radial-gradient(circle at center, #001a1a 0%, var(--void-deep) 70%); }

.newsletter-wrapper {
    max-width: 600px; margin: 0 auto;
    border: 1px solid var(--arcane-dim); padding: 5px; background: rgba(0,0,0,0.8);
}
.newsletter-wrapper input {
    background: transparent; border: none; padding: 15px 20px; color: #fff; font-family: var(--font-ui); width: 100%;
}
.newsletter-wrapper button {
    background: var(--arcane-dim); color: #fff; border: none; padding: 0 30px;
    font-family: var(--font-title); font-weight: bold; transition: 0.3s;
}
.newsletter-wrapper button:hover { background: var(--arcane); color: #000; }

.blue-footer {
    border-top: 1px solid #111; padding-top: 80px; padding-bottom: 40px;
    background: linear-gradient(to bottom, #020203, #000);
}
.footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; border-bottom: 1px solid #111; padding-bottom: 60px; margin-bottom: 40px; }

.footer-logo { width: 140px; opacity: 0.8; margin-bottom: 20px; filter: grayscale(100%); transition: 0.3s; }
.footer-logo:hover { filter: grayscale(0%); opacity: 1; }
.footer-brand p { color: #666; font-size: 0.9rem; max-width: 300px; }

.footer-links h4, .footer-socials h4 { color: #fff; font-family: var(--font-title); font-size: 1.1rem; margin-bottom: 25px; }
.footer-links a { display: block; color: #888; margin-bottom: 12px; font-size: 0.9rem; transition: 0.3s; }
.footer-links a:hover { color: var(--arcane); padding-left: 5px; }

.social-icons a {
    font-size: 1.2rem; color: #888; margin-right: 20px; transition: 0.3s;
}
.social-icons a:hover { color: var(--arcane); transform: scale(1.2); display: inline-block; text-shadow: 0 0 10px var(--arcane); }

.footer-bottom { text-align: center; font-size: 0.8rem; color: #444; display: flex; justify-content: space-between; }

/* ==========================================================================
   11. RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
    .gallery-card.wide { grid-column: span 1; }
    .hero-main-logo { width: 400px !important; margin-left: -200px; }
    .section-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    /* Mobile Nav */
    .nav-links, .nav-actions .lang-selector, .btn-download-mini { display: none; } /* Esconde menu desktop */
    .hamburger { display: block; cursor: pointer; }
    .hamburger .line { width: 30px; height: 2px; background: #fff; margin: 6px 0; }

    .hero-headline { font-size: 3rem; }
    .hero-main-logo { width: 280px !important; margin-left: -140px; top: 20%; }
    
    .classes-slider { flex-direction: column; height: auto; }
    .class-card { height: 350px; flex: none; }
    
    .feature-showcase, .lore-grid, .specs-grid, .footer-cols { grid-template-columns: 1fr; gap: 40px; }
    .border-left-blue { border-left: none; border-top: 1px solid #333; padding-left: 0; padding-top: 30px; }
    
    .footer-bottom { flex-direction: column; gap: 15px; }
}

/* Keyframes */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes fogMove { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
@keyframes pulse { 0% { opacity: 0.5; } 100% { opacity: 1; } }
@keyframes loadBar { to { transform: translateX(0); } }
@keyframes glitch { 0% { clip: rect(44px, 9999px, 56px, 0); } 20% { clip: rect(30px, 9999px, 10px, 0); } 100% { clip: rect(10px, 9999px, 80px, 0); } }