﻿/* ==========================================================================
   AresFixer - CSS Architecture (Vanilla)
   ========================================================================== */

/* --- Variables & Theming --- */
:root {
    /* Colors */
    --bg-base: #050505;
    --bg-surface: #0a0a0f;
    --bg-elevated: #121216;
    --bg-card: rgba(20, 20, 25, 0.6);
    --bg-card-solid: #16161a;

    --accent-red: #ea1d2c;
    /* Main Ares Red */
    --accent-glow: rgba(234, 29, 44, 0.25);
    --accent-silver: #e0e0e0;

    --text-main: #f0f0f5;
    --text-muted: #8b8b99;
    --text-dark: #666675;

    --border-light: rgba(255, 255, 255, 0.08);
    --border-red: rgba(234, 29, 44, 0.4);

    --success-green: #28a745;
    --success-glow: rgba(40, 167, 69, 0.3);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --max-width: 1200px;
    --nav-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-base: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.dark-theme {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow: hidden;
    position: relative;
    height: 100vh;
}

/* Background Canvas */
#chaos-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Typography Defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-red);
}

.muted-link {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.muted-link:hover {
    color: var(--text-main);
}

ul {
    list-style: none;
}

/* Utilities */
.w-100 {
    width: 100%;
}

.text-green {
    color: var(--success-green);
}

.text-muted {
    color: var(--text-muted);
}

.hidden {
    display: none !important;
}

/* Buttons */
button {
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    outline: none;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--accent-red);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    background: #ff2a3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-light);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.btn-secondary:hover {
    border-color: var(--accent-red);
    background: rgba(234, 29, 44, 0.05);
}

.btn-google {
    background: #fff;
    color: #000;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
}

.btn-google:hover {
    background: #f0f0f0;
}

.btn-demo {
    background: var(--bg-elevated);
    color: var(--text-main);
    border: 1px solid var(--border-light);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
}

.btn-demo:hover {
    background: #1a1a20;
}

/* Elite Action Button (Green Glow) */
.btn-elite-action {
    background: linear-gradient(135deg, #0f5132 0%, #198754 100%);
    color: #fff;
    border: 1px solid #28a745;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: elite-pulse 2.5s infinite;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-elite-action i {
    font-size: 1.2rem;
    color: #a3cfbb;
}

.btn-elite-action:hover {
    background: linear-gradient(135deg, #146c43 0%, #1c9e62 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 35px rgba(40, 167, 69, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.2);
    border-color: #75b798;
}

@keyframes elite-pulse {
    0% {
        box-shadow: 0 0 15px rgba(40, 167, 69, 0.3);
    }

    50% {
        box-shadow: 0 0 35px rgba(40, 167, 69, 0.6);
    }

    100% {
        box-shadow: 0 0 15px rgba(40, 167, 69, 0.3);
    }
}

/* ENTRAR button — same green as COMO FUNCIONA */
.btn-entrar-hero {
    text-decoration: none !important;
    color: #fff !important;
}

/* COMO FUNCIONA button — Imperial Gold */
.btn-como-funciona-hero {
    background: linear-gradient(135deg, #8a6d2b 0%, #C5A059 100%) !important;
    border-color: #C5A059 !important;
    animation: gold-pulse 2.5s infinite !important;
}

.btn-como-funciona-hero:hover {
    background: linear-gradient(135deg, #C5A059 0%, #d4b36a 100%) !important;
    border-color: #d4b36a !important;
    box-shadow: 0 0 35px rgba(197, 160, 89, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.2) !important;
}

@keyframes gold-pulse {
    0% {
        box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
    }

    50% {
        box-shadow: 0 0 35px rgba(197, 160, 89, 0.6);
    }

    100% {
        box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
    }
}

/* Social icons inside hero — positioned near bottom */
.hero-social-icons {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-top: auto;
    margin-bottom: 20px;
}

.hero-social-icons a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.6rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.hero-social-icons a span {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s ease;
}

.hero-social-icons a:hover {
    color: #C5A059;
    transform: translateY(-3px);
}

.hero-social-icons a:hover span {
    color: #C5A059;
}

/* Footer minimal — single line */
.footer-minimal {
    padding: 0.8rem 2rem !important;
    background: rgba(180, 30, 30, 0.85) !important;
}

.footer-minimal .footer-bottom {
    padding: 0.5rem 0;
    border-top: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-minimal .footer-bottom p {
    text-align: center;
    width: 100%;
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: linear-gradient(270deg, rgba(20, 15, 5, 0.95), rgba(75, 55, 20, 0.95), rgba(20, 15, 5, 0.95));
    background-size: 200% 200%;
    animation: goldEmpireAnim 8s ease-in-out infinite;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(197, 160, 89, 0.4);
    box-shadow: 0 4px 25px rgba(197, 160, 89, 0.15);
    z-index: 100;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: linear-gradient(270deg, rgba(10, 8, 3, 0.98), rgba(50, 40, 15, 0.98), rgba(10, 8, 3, 0.98));
    background-size: 200% 200%;
    border-bottom: 2px solid rgba(197, 160, 89, 0.8);
    box-shadow: 0 4px 30px rgba(197, 160, 89, 0.3);
}

@keyframes goldEmpireAnim {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links a:hover {
    color: #C5A059;
}

.nav-links a.active {
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #ff0000 0%, #8b0000 100%);
    border: 1px solid #ff4d4d;
    border-radius: 4px;
    padding: 0.2rem 0.55rem;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
    animation: warzone-pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: warzone-shine 4s infinite;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.admin-badge {
    background: rgba(234, 29, 44, 0.1);
    color: var(--accent-red);
    border: 1px solid var(--border-red);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.lang-selector-btn {
    background: transparent;
    padding: 0;
    border-radius: 50%;
    overflow: hidden;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-light);
}

.lang-selector-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang-selector-btn:hover {
    border-color: var(--accent-red);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Mobile Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-link {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* --- Hero Section --- */
.hero-section {
    padding-top: calc(var(--nav-height) + 4rem);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background red glow */
.hero-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.18) 0%, rgba(197, 160, 89, 0.08) 40%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content */
.system-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: var(--text-muted);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--success-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 var(--success-glow);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.title-silver {
    color: #e0e0e0;
    background: linear-gradient(180deg, #ffffff 0%, #b0b0b0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-red {
    color: var(--accent-red);
    background: linear-gradient(180deg, #ff4d4d 0%, #a60000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px var(--accent-glow);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* Right Content - Login Portal */
.login-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Subtle inner glow */
.login-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent) border-box;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.login-card:hover {
    border-color: var(--border-red);
    box-shadow: 0 20px 60px rgba(234, 29, 44, 0.15);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-header h2 {
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dark);
    font-size: 1rem;
}

.input-group input {
    width: 100%;
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 1rem 1rem 1rem 2.8rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 2px var(--accent-glow);
}

.input-group input::placeholder {
    color: var(--text-dark);
}

#btn-login,
#btn-register,
#btn-reset-pass {
    margin-top: 0.5rem;
    padding: 1rem;
}

.auth-alternatives {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-footer a {
    color: var(--text-main);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--border-light);
}

.login-footer a:hover {
    color: var(--accent-red);
    text-decoration-color: var(--accent-red);
}

.card-footer-links {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.card-footer-links a {
    color: var(--text-dark);
}

.card-footer-links a:hover {
    color: var(--text-main);
}

/* --- Section Formatting --- */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- Pantheon (Features) --- */
.pantheon-section {
    background: var(--bg-surface);
    position: relative;
}

.pantheon-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.god-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.god-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.god-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    transition: opacity var(--transition-base);
}

.god-card:hover .god-glow {
    opacity: 0.4;
}

/* God specific colors */
.god-chaos {
    background: #9c27b0;
}

.god-gaia {
    background: #4caf50;
}

.god-uranus {
    background: #03a9f4;
}

.god-cronus {
    background: #ff9800;
}

.god-zeus {
    background: #ffeb3b;
}

.god-hephaestus {
    background: #f44336;
}

.god-icon {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.god-name {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.god-role {
    color: var(--accent-red);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.god-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Ares Highlight Banner */
.ares-highlight {
    max-width: 1000px;
    margin: 6rem auto 0;
    background: linear-gradient(90deg, #1a0505 0%, #0a0505 100%);
    border: 1px solid var(--border-red);
    border-radius: 16px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.ares-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ares-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.ares-icon img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

/* --- Pricing --- */
.pricing-section {
    background: var(--bg-base);
}

.pricing-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    background: var(--bg-card-solid);
    border-color: var(--border-red);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(234, 29, 44, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.badge-popular {
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(234, 29, 44, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    width: max-content;
    margin: 0 auto 1.5rem;
}

.pricing-card.popular .plan-name {
    text-align: center;
}

.pricing-card.popular .plan-price {
    text-align: center;
}

.pricing-card.popular .plan-desc {
    text-align: center;
}

.plan-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pro-tag {
    background: linear-gradient(135deg, #ff4d4d, #a60000);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-top: 0.8rem;
    display: inline-block;
}

.period {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    min-height: 3em;
}

.plan-features {
    margin-bottom: 3rem;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* --- Footer --- */
.footer {
    background: #000;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto 4rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-brand .footer-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #a60000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.link-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.link-col a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.link-col a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.2rem;
}

.social-icons a {
    color: var(--text-dark);
}

.social-icons a:hover {
    color: #fff;
}

/* --- Language Modal (Screenshot 2 based) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #0f0a0a;
    border: 1px solid var(--border-red);
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.95);
    transition: transform var(--transition-fast);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.globe-icon-red {
    font-size: 2rem;
    color: var(--accent-red);
    background: rgba(234, 29, 44, 0.1);
    padding: 1rem;
    border-radius: 50%;
    border: 1px solid rgba(234, 29, 44, 0.3);
}

.modal-sub {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-red);
    display: block;
    margin-bottom: 0.2rem;
}

.modal-title {
    font-size: 1.8rem;
}

.btn-close {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.lang-card {
    background: #16161a;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.lang-card:hover {
    background: #1a1a20;
    border-color: rgba(255, 255, 255, 0.2);
}

.lang-card img {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.lang-code {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.lang-name {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.active-lang {
    border-color: var(--accent-red);
    background: rgba(234, 29, 44, 0.05);
}

.lang-check {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--accent-red);
    font-size: 0.9rem;
}

/* --- Animations (Scroll Reveal) --- */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 3rem;
    }

    .nav-links {
        display: none;
    }

    .admin-badge {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .ares-highlight {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 100px;
        height: 1px;
    }

    .auth-alternatives {
        flex-direction: column;
    }

    .lang-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-base);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand-icon {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand:hover .brand-icon {
    transform: scale(1.05);
}

.brand-text {
    font-family: 'Arial Black', Impact, sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    color: #f0f0f0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.brand-red {
    color: var(--accent-red);
    margin-left: 0.2rem;
}

/* ==========================================================================
   Fase 2 - Cinematic Hero & Warzone Additions
   ========================================================================== */

/* --- Button Warzone --- */
.btn-warzone {
    background: linear-gradient(135deg, #ff0000 0%, #8b0000 100%);
    color: #fff;
    border: 2px solid #ff4d4d;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    /* Harder edges for military feel */
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    animation: warzone-pulse 2s infinite;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-warzone::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: warzone-shine 4s infinite;
}

.btn-warzone:hover {
    background: linear-gradient(135deg, #ff3333 0%, #a60000 100%);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
    transform: scale(1.05);
}

@keyframes warzone-pulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.8), inset 0 0 10px rgba(0, 0, 0, 0.5);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
    }
}

@keyframes warzone-shine {
    0% {
        left: -100%;
        top: -100%;
    }

    20% {
        left: 100%;
        top: 100%;
    }

    100% {
        left: 100%;
        top: 100%;
    }
}

/* --- Swiper 3D Cinematic Hero --- */
.cinematic-hero {
    position: relative;
    height: calc(100vh - var(--nav-height));
    width: 100vw;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#chaos-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(5, 5, 5, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-branding {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 0rem;
    margin-bottom: 0rem;
    pointer-events: none;
}

.hero-branding .hero-title {
    font-size: 5.5rem;
    margin-bottom: 0.5rem;
}

#hero-god-name {
    color: #ffffff;
    animation: titleMotionBlur 3s infinite alternate;
}

#hero-god-name .title-glow {
    color: #ffffff;
}

/* ============================================================================
   PARTICLE HERO — Centered Content Over Canvas
   ============================================================================ */
.particle-hero-content {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: calc(var(--nav-height) + 1rem) 2rem 2rem 2rem;
    animation: particleHeroFadeIn 1.5s ease-out;
    pointer-events: auto;
}

@keyframes particleHeroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.particle-hero-logo {
    width: 300px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.6));
    animation: particleLogoPulse 3s ease-in-out infinite alternate;
}

@keyframes particleLogoPulse {
    0% {
        filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.4));
        transform: scale(1);
    }

    100% {
        filter: drop-shadow(0 0 40px rgba(220, 38, 38, 0.8));
        transform: scale(1.05);
    }
}

.particle-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 6px;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.particle-hero-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(220, 38, 38, 0.9);
    margin-bottom: 1rem;
}

.particle-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;

    line-height: 1.6;
    font-style: italic;
}

.particle-hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.particle-hero-actions .btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
    color: #fff;
    border: 2px solid #a78bfa;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
    animation: discover-pulse 2s infinite;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.particle-hero-actions .btn-discover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: warzone-shine 4s infinite;
}

.particle-hero-actions .btn-discover:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #5b21b6 100%);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.8);
    transform: scale(1.05);
}

@keyframes discover-pulse {
    0% {
        box-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(124, 58, 237, 0.8), inset 0 0 10px rgba(0, 0, 0, 0.5);
    }

    100% {
        box-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
    }
}

.particle-hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.particle-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.particle-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.particle-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

.particle-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(220, 38, 38, 0.3);
}

@media (max-width: 768px) {
    .particle-hero-title {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .particle-hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .particle-hero-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Hero buttons: stack vertically */
    .particle-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    /* Hero button: center nicely */
    .particle-hero-actions .btn-discover {
        width: auto;
        justify-content: center;
    }

    /* Stats: KEEP horizontal, just smaller */
    .particle-hero-stats {
        gap: 1rem;
        padding: 1rem 1.2rem;
    }

    .particle-stat-number {
        font-size: 1.1rem;
    }

    .particle-stat-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .particle-stat-divider {
        width: 1px;
        height: 25px;
    }

    .particle-hero-logo {
        width: 60px;
        margin-top: 10px;
        margin-bottom: 0.5rem;
    }

    .particle-hero-title {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .particle-hero-tagline {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 0.3rem;
    }

    .particle-hero-desc {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    .particle-hero-actions {
        margin-top: 15px !important;
        gap: 0.5rem;
    }

    .btn-elite-action {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .hero-social-icons {
        gap: 1rem;
        margin-bottom: 10px;
    }

    .hero-social-icons a {
        font-size: 1.1rem;
    }

    .hero-social-icons a span {
        font-size: 0.5rem;
    }

    .particle-hero-content {
        padding-top: calc(var(--nav-height) + 5px);
        padding-bottom: 0.5rem;
    }

    /* Mobile: hide nav-links, show hamburger */
    .nav-links {
        display: none !important;
    }

    .btn-push-notify {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }
}

@keyframes pantheonFadeIn {
    0% {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.animate-fade-in {
    display: inline-block;
    animation: pantheonFadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-fade-in-delay-1 {
    display: inline-block;
    opacity: 0;
    animation: pantheonFadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 1s;
}

.animate-fade-in-stagger {
    opacity: 0;
    animation: pantheonFadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes titleMotionBlur {
    0% {
        transform: scale(1) translateX(0) skewX(0);
        text-shadow: 0 0 10px rgba(255, 30, 30, 0.8), -5px 0 15px rgba(255, 30, 30, 0.4), 5px 0 15px rgba(255, 30, 30, 0.4);
    }

    50% {
        transform: scale(1.02) translateX(-2px) skewX(-2deg);
        text-shadow: 0 0 15px rgba(255, 30, 30, 1), -10px 0 20px rgba(255, 30, 30, 0.6), 10px 0 20px rgba(255, 30, 30, 0.6);
    }

    100% {
        transform: scale(1) translateX(2px) skewX(2deg);
        text-shadow: 0 0 10px rgba(255, 30, 30, 0.8), -5px 0 20px rgba(255, 30, 30, 0.5), 5px 0 20px rgba(255, 30, 30, 0.5);
    }
}

#hero-god-desc {
    background: rgba(0, 0, 0, 0.7);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 30, 30, 0.2);
    backdrop-filter: blur(8px);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #fff;
    text-transform: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    font-family: var(--font-main);
    letter-spacing: normal;
}

/* --- Pantheon Split-View Dashboard (Floating Side Panel) --- */
.pantheon-split-view {
    position: relative;
    z-index: 10;
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 20px;
}

/* RIGHT PANEL: Dynamic God Info (Floating) */
.pantheon-side-panel {
    display: none;
    /* temporariamente oculto */
    position: absolute;
    right: 5%;
    top: 55%;
    transform: translateY(-50%);
    width: 700px;
    /* Increased from 450px to comfortably fit 2 grid columns */
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 30;
    pointer-events: none;
    /* Let clicks pass through to Swiper when outside cards */
}

.ps-header {
    margin-bottom: 2rem;
    pointer-events: auto;
    /* Re-enable pointer events for text, if needed */
}

.god-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 15px;
    pointer-events: auto;
    /* Re-enable pointer events for scrollable cards */
}

.god-info-grid::-webkit-scrollbar {
    width: 4px;
}

.god-info-grid::-webkit-scrollbar-thumb {
    background: rgba(220, 38, 38, 0.5);
    border-radius: 4px;
}

.god-info-grid .info-card {
    background: rgba(15, 5, 5, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 3px solid #dc2626;
    /* Changed to right to match RHS alignment */
    border-left: none;
    border-radius: 12px;
    padding: 1.25rem;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: right;
    /* Right align the text to feel more like a sidebar */
}

.god-info-grid .info-card:hover {
    transform: translateX(-5px);
    /* Move leftwards slightly on hover since it's on the right edge */
    background: rgba(20, 5, 5, 0.85);
    border-color: rgba(220, 38, 38, 0.3);
}

.god-info-grid .info-icon {
    font-size: 1.5rem;
    color: #dc2626;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.god-info-grid h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.god-info-grid p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

.ps-header .hero-title,
.ps-header .hero-stats-row {
    text-align: right;
}

/* SWIPER CONTAINER (Background) */
.pantheon-swiper-container {
    width: 100%;
    position: absolute;
    /* Changed to absolute to take full background space */
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Keep Swiper centered on the left side of the screen */
    z-index: 10;
    overflow: hidden;
    /* Hide anything going off the right edge of the window */
}

/* Swiper Styling Override */
.mySwiper {
    width: 48%;
    /* Center focal point is 24% of the screen, leaving room for the right panel */
    margin: 0;
    margin-top: 80px;
    height: 100vh;
    /* Make it full height */
    overflow: visible;
    /* Let slides spill over to the right half of the screen */
}

/* Hide Pagination in Pantheon Split View completely */
.pantheon-split-view .swiper-pagination {
    display: none !important;
}

/* Mobile Responsiveness for Floating View */
@media (max-width: 992px) {
    .pantheon-split-view {
        flex-direction: column;
        padding-top: 80px;
        height: auto;
        min-height: 100vh;
    }

    .pantheon-side-panel {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        padding: 2rem 5%;
        margin-top: 2vh;
        pointer-events: auto;
    }

    .ps-header .hero-title,
    .ps-header .hero-stats-row,
    .god-info-grid .info-card {
        text-align: left;
    }

    .god-info-grid .info-card {
        border-left: 3px solid #dc2626;
        border-right: none;
    }

    .god-info-grid .info-card:hover {
        transform: translateX(5px);
    }

    .pantheon-swiper-container {
        position: relative;
        height: 55vh;
    }

    .mySwiper {
        height: 100%;
        width: 100%;
        margin-left: 0;
    }

    .god-info-grid {
        max-height: none;
        overflow-y: visible;
    }
}


.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 600px;
    /* Massive width */
    height: 90vh;
    /* Massive height, reaching grid top/bottom */
    max-height: none;
    /* Remove height restrictions */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-end;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Explosion UI and Glow on Active */
.swiper-slide-active {
    box-shadow: 0 0 60px rgba(255, 30, 30, 0.7), 0 0 100px rgba(255, 0, 0, 0.3), inset 0 0 30px rgba(255, 0, 0, 0.4);
    border-color: #ff4d4d;
}

/* Smish/Shimmer effect pseudo-element */
.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 10;
    pointer-events: none;
}

/* Trigger shimmer on active */
.swiper-slide-active::after {
    animation: shimmer 3.5s infinite;
    animation-delay: 1s;
}

@keyframes shimmer {
    0% {
        left: -150%;
    }

    30% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.1) 70%, rgba(5, 5, 5, 0.3) 100%);
    pointer-events: none;
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    width: 100%;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    margin-bottom: 0.2rem;
    letter-spacing: 0.05em;
}

.slide-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

/* Technical Card Styles */
.tech-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255, 30, 30, 0.8);
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
    display: inline-block;
}

.tech-subtitle {
    font-size: 0.85rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-style: italic;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    text-align: left;
    border-bottom: 1px solid var(--accent-red);
    padding-bottom: 0.5rem;
}

.tech-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 30, 30, 0.2);
    backdrop-filter: blur(5px);
}

.tech-specs li {
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    padding-bottom: 0.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-specs li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.tech-label {
    color: var(--accent-red);
    font-weight: bold;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.tech-value {
    text-align: right;
    max-width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.titan-tiny-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.titan-badge-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-primary);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}


/* Pagination Bullets */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
}

/* Responsive Swiper */
@media (max-width: 768px) {
    .swiper-slide {
        width: 280px;
        height: 400px;
    }

    .hero-branding .hero-title {
        font-size: 3rem;
    }

    .slide-title {
        font-size: 2rem;
    }
}

/* --- Warzone Login Modal --- */
.warzone-card {
    background: rgba(10, 5, 5, 0.85);
    /* Darker, slightly reddish */
    border: 1px solid #4a1c1c;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.9), inset 0 0 30px rgba(255, 0, 0, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    overflow: hidden;
}

.warzone-card .login-header h2 {
    color: var(--text-main);
    text-shadow: 0 0 15px var(--accent-red);
}

.btn-combat {
    background: linear-gradient(to right, #a60000, #ff1a1a);
    border: 1px solid #ff4d4d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.btn-combat:hover {
    background: linear-gradient(to right, #ff1a1a, #ff4d4d);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
}

.warzone-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 100, 0, 0.05) 0%, transparent 40%);
}

.ember {
    position: absolute;
    bottom: -20px;
    width: 4px;
    height: 4px;
    background: #ff4500;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px #ff4500;
    animation: floatUp infinite ease-in;
    opacity: 0;
}

.ember-1 {
    left: 10%;
    animation-duration: 4s;
    animation-delay: 0s;
}

.ember-2 {
    left: 30%;
    animation-duration: 5s;
    animation-delay: 1s;
    width: 6px;
    height: 6px;
}

.ember-3 {
    left: 50%;
    animation-duration: 3s;
    animation-delay: 2s;
}

.ember-4 {
    left: 70%;
    animation-duration: 6s;
    animation-delay: 0.5s;
    width: 3px;
    height: 3px;
}

.ember-5 {
    left: 90%;
    animation-duration: 4.5s;
    animation-delay: 1.5s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) scale(0);
        opacity: 0;
    }
}

/* QR Code View */
.registration-war {
    text-align: center;
}

.qr-title {
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.qr-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.qr-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.qr-image {
    width: 100%;
    height: 100%;
}

.qr-scanner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 0%, rgba(255, 0, 0, 0.4) 50%, rgba(255, 0, 0, 0) 100%);
    background-size: 100% 20%;
    animation: scan 2s linear infinite;
    pointer-events: none;
    border-radius: 8px;
}

@keyframes scan {
    0% {
        background-position: 0 -160px;
    }

    100% {
        background-position: 0 160px;
    }
}

/* ==========================================================================
   God Details Modal (Phase 2.5 Refinement)
   ========================================================================== */
.god-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.god-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.god-modal-inner {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.5);
    /* Semi-transparent to let canvas show through */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

.god-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 30, 30, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.god-timeline {
    display: flex;
    gap: 1rem;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.timeline-item {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
    text-transform: uppercase;
}

.timeline-item:hover,
.timeline-item.active {
    background: rgba(255, 30, 30, 0.15);
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(255, 30, 30, 0.4);
}

.close-modal-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    padding: 0.5rem;
}

.close-modal-btn:hover {
    color: var(--accent-red);
    transform: scale(1.1);
}

.god-modal-content {
    display: flex;
    flex: 1;
    padding: 3rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
    overflow-y: auto;
}

.god-modal-left {
    flex: 0 0 450px;
}

/* We reuse the swiper-slide inner layout but in a bigger card */
.god-modal-card {
    width: 100%;
    height: 650px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: inset 0 0 80px rgba(255, 30, 30, 0.4), 0 0 40px rgba(255, 30, 30, 0.6);
    border: 1px solid var(--accent-red);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.god-modal-card .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.1) 60%, rgba(5, 5, 5, 0.4) 100%);
}

.god-modal-card .slide-content {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
    padding: 2rem;
    width: 100%;
}

.god-modal-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gm-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 30, 30, 0.8);
    text-transform: uppercase;
}

.gm-role {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    background: rgba(0, 0, 0, 0.4);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border-left: 3px solid var(--accent-red);
}

.god-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: rgba(15, 15, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--accent-red);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(5px);
}

.info-card:hover {
    transform: translateY(-8px);
    background: rgba(25, 25, 30, 0.95);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 30, 30, 0.2) inset;
}

.info-card .info-icon {
    font-size: 2.2rem;
    color: var(--accent-red);
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(255, 30, 30, 0.6));
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-card p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .god-modal-content {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .god-modal-left {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .god-modal-card {
        height: 500px;
    }

    .gm-title {
        font-size: 2.5rem;
    }
}

.qr-instruction {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--accent-red);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* ============================================================================
   QR AUTH MODAL â€” Full Screen Split Layout
   ============================================================================ */
.qr-auth-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qr-auth-overlay.active {
    display: flex;
}

/* --- Animated Red Blur Background --- */
.qr-bg-blur {
    position: absolute;
    inset: 0;
    background: rgba(5, 2, 2, 0.92);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    overflow: hidden;
}

.qr-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: qr-orb-float 8s ease-in-out infinite;
}

.qr-bg-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #dc2626 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.qr-bg-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #991b1b 0%, transparent 70%);
    bottom: -15%;
    right: -5%;
    animation-delay: -3s;
    animation-duration: 10s;
}

.qr-bg-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #7f1d1d 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
    animation-duration: 12s;
    opacity: 0.25;
}

@keyframes qr-orb-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(15px, 15px) scale(1.02);
    }
}

/* --- Close Button --- */
.qr-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qr-close-btn:hover {
    background: rgba(220, 38, 38, 0.3);
    border-color: rgba(220, 38, 38, 0.5);
}

/* --- Split Container (Glassmorphism Card) --- */
.qr-auth-split {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1050px;
    width: 90%;
    padding: 3rem 3.5rem;
    background: linear-gradient(135deg,
            rgba(30, 8, 8, 0.7) 0%,
            rgba(15, 5, 5, 0.6) 50%,
            rgba(25, 5, 10, 0.7) 100%);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1.5px solid rgba(220, 38, 38, 0.35);
    border-radius: 28px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(220, 38, 38, 0.1),
        0 0 2px rgba(220, 38, 38, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 rgba(220, 38, 38, 0.08);
    transform: perspective(1200px) rotateX(1deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.qr-auth-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.5), transparent);
}

.qr-auth-split:hover {
    transform: perspective(1200px) rotateX(0deg);
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow:
        0 16px 56px rgba(0, 0, 0, 0.7),
        0 0 100px rgba(220, 38, 38, 0.15),
        0 0 3px rgba(220, 38, 38, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(220, 38, 38, 0.12);
}

/* Divider between panels */
.qr-auth-split::after {
    content: '';
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(220, 38, 38, 0.2), transparent);
}

/* --- LEFT: Info Panel --- */
.qr-info-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
}

.qr-shield-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-red, #dc2626);
    animation: shield-pulse 2.5s infinite;
}

@keyframes shield-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.3);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(220, 38, 38, 0);
    }
}

.qr-auth-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 6px;
    line-height: 1.1;
    color: #fff;
    margin: 0;
}

.qr-auth-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}

/* Mini Steps */
.qr-steps-mini {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.qr-mini-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.qr-mini-step i {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #ef4444;
    flex-shrink: 0;
}

/* Timer */
.qr-timer-area {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.qr-timer-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.qr-timer {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.25);
}

/* Security Badge */
.qr-security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.qr-security-badge i {
    color: #22c55e;
    font-size: 0.65rem;
}

/* --- RIGHT: QR Code Panel --- */
.qr-code-panel {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.qr-display-area {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 20px;
}

.qr-code-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 340px;
    height: 340px;
}

.qr-code-container img,
.qr-code-container canvas {
    border-radius: 8px;
}

.qr-code-img {
    width: 340px;
    height: 340px;
}

/* Scanner animated line */
.qr-scanner-line {
    position: absolute;
    top: 10%;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.6);
    animation: qr-scan 3s ease-in-out infinite;
    opacity: 0.8;
    pointer-events: none;
}

@keyframes qr-scan {
    0% {
        top: 8%;
    }

    50% {
        top: 88%;
    }

    100% {
        top: 8%;
    }
}

/* Corner markers */
.qr-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    pointer-events: none;
}

.qr-corner-tl {
    top: 0;
    left: 0;
    border-top: 3px solid #dc2626;
    border-left: 3px solid #dc2626;
    border-radius: 6px 0 0 0;
}

.qr-corner-tr {
    top: 0;
    right: 0;
    border-top: 3px solid #dc2626;
    border-right: 3px solid #dc2626;
    border-radius: 0 6px 0 0;
}

.qr-corner-bl {
    bottom: 0;
    left: 0;
    border-bottom: 3px solid #dc2626;
    border-left: 3px solid #dc2626;
    border-radius: 0 0 0 6px;
}

.qr-corner-br {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid #dc2626;
    border-right: 3px solid #dc2626;
    border-radius: 0 0 6px 0;
}

/* QR Status */
.qr-status {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.qr-status-waiting {
    color: #60a5fa;
}

.qr-status-linking {
    color: #f59e0b;
}

.qr-status-success {
    color: #22c55e;
}

.qr-status-error {
    color: #ef4444;
}

.qr-status-expired {
    color: #666;
}

/* ============================================================================
   QR MODAL — STATE 2: Desktop Tasks (Connected + Checklist)
   ============================================================================ */

@keyframes qr-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Connected Header */
.qr-connected-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.qr-connected-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    border: 1.5px solid rgba(34, 197, 94, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #22c55e;
    position: relative;
    flex-shrink: 0;
}

.qr-connected-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.3);
    animation: connected-pulse 2s infinite;
}

@keyframes connected-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.qr-connected-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #22c55e;
}

/* Connected User Card */
.qr-connected-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    margin: 0.5rem 0;
}

.qr-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.4);
    object-fit: cover;
}

.qr-user-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
    min-width: 0;
}

.qr-user-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.qr-user-email {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.qr-user-verified {
    color: #22c55e;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.qr-desktop-instruction {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Desktop Tasks Checklist */
.qr-desktop-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 420px;
}

.qr-checklist-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    margin: 0;
}

.qr-checklist-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin: -0.5rem 0 0.5rem;
}

.qr-desktop-task {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.qr-desktop-task.qr-task-completed {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.05);
}

.qr-desktop-task.qr-task-skipped {
    opacity: 0.5;
}

.qr-task-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #ef4444;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.qr-task-completed .qr-task-icon {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.qr-task-info {
    flex: 1;
    min-width: 0;
}

.qr-task-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.15rem;
    letter-spacing: 0.5px;
}

.qr-task-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.btn-desktop-task {
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: 8px;
    background: rgba(220, 38, 38, 0.12);
    color: #ef4444;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-desktop-task:hover:not(:disabled) {
    background: rgba(220, 38, 38, 0.25);
    border-color: rgba(220, 38, 38, 0.6);
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.2);
    transform: translateY(-1px);
}

.btn-desktop-task:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.qr-task-done {
    color: #22c55e;
    font-size: 1.2rem;
    flex-shrink: 0;
    animation: qr-fade-in 0.3s ease;
}

.qr-task-spinner {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ============================================================================
   QR MODAL — STATE 3: Success
   ============================================================================ */

.qr-success-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    width: 100%;
    padding: 2rem 0;
}

.qr-success-checkmark {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    border: 2.5px solid #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #22c55e;
    animation: qr-success-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes qr-success-pop {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.qr-success-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    margin: 0;
}

.qr-success-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.qr-success-subtitle span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #22c55e;
}

.qr-success-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    max-width: 400px;
    margin: 0;
}

.qr-success-countdown {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.qr-success-countdown strong {
    color: #22c55e;
    font-size: 1.1rem;
}

/* --- Responsive: Mobile Stack --- */
@media (max-width: 768px) {
    .qr-auth-split {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
        width: 95%;
        border-radius: 20px;
        transform: none;
    }

    .qr-auth-split:hover {
        transform: none;
    }

    .qr-info-panel {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .qr-auth-title {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .qr-steps-mini {
        align-items: flex-start;
        text-align: left;
    }

    .qr-timer-area {
        justify-content: center;
    }

    .qr-security-badge {
        justify-content: center;
    }

    .qr-display-area {
        width: 280px;
        height: 280px;
    }

    .qr-code-container {
        width: 240px;
        height: 240px;
    }

    .qr-bg-orb-1 {
        width: 300px;
        height: 300px;
    }

    .qr-bg-orb-2 {
        width: 200px;
        height: 200px;
    }

    .qr-desktop-checklist {
        max-width: 100%;
    }

    .qr-connected-header {
        flex-direction: column;
        text-align: center;
    }

    .qr-connected-user {
        flex-direction: column;
        text-align: center;
    }

    .qr-desktop-instruction {
        text-align: center;
    }
}

/* ============================================================================
   PWA INSTALL BANNER
   ============================================================================ */
.pwa-install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem;
    animation: pwa-slide-up 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pwa-slide-up {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pwa-install-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 16px;
    max-width: 540px;
    margin: 0 auto;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(220, 38, 38, 0.08);
}

.pwa-install-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
}

.pwa-install-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.pwa-install-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.pwa-install-text span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.pwa-install-btn {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.pwa-install-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.pwa-install-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    flex-shrink: 0;
    transition: color 0.3s;
}

.pwa-install-close:hover {
    color: #fff;
}

.pwa-ios-hint {
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.pwa-ios-hint i {
    color: #60a5fa;
    margin: 0 0.25rem;
}

/* ============================================================================
   PUSH NOTIFICATION BELL BUTTON
   ============================================================================ */
.btn-push-notify {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.btn-push-notify:hover:not(:disabled) {
    background: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.4);
    color: #ef4444;
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.2);
}

.btn-push-notify.push-active {
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.08);
}

.btn-push-notify.push-denied {
    color: rgba(255, 255, 255, 0.15);
    cursor: not-allowed;
}

/* --- Hamburger Button (hidden on desktop) --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 110;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #f44336;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu (hidden by default) --- */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(244, 67, 54, 0.2);
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-menu.open {
    max-height: 300px;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.2s ease;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    background: rgba(244, 67, 54, 0.05);
    color: #fff;
}

.mobile-menu a.active {
    color: #f44336;
    font-weight: 700;
    background: rgba(244, 67, 54, 0.06);
}

.mobile-menu a i {
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

/* --- Mobile Responsive (≤768px) --- */
@media (max-width: 768px) {
    :root {
        --nav-height: 95px;
    }

    .navbar {
        height: auto;
        min-height: 95px;
    }

    .nav-container {
        flex-wrap: wrap;
        padding: 0 1rem;
        height: auto;
    }

    .brand {
        order: 1;
        flex: 1;
    }

    .brand-icon {
        height: 30px;
    }

    .brand-text {
        font-size: 1rem !important;
    }

    .nav-actions {
        order: 2;
        flex: 0;
    }

    .btn-warzone {
        padding: 0.45rem;
        font-size: 0;
        gap: 0;
        border-radius: 8px;
    }

    .btn-warzone i {
        font-size: 0.95rem;
    }

    /* Hamburger hidden */
    .hamburger {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }

    /* Nav links hidden on mobile — accessible via hamburger overlay */
    .nav-links {
        display: none !important;
    }
}