/* ==========================================
   VEXO ROLEPLAY - PORTAL & CHECKZONE STORE STYLES
   ========================================== */

:root {
    --bg-dark: #05050c;
    --bg-card: rgba(12, 12, 24, 0.85);
    --bg-glass: rgba(18, 18, 36, 0.7);
    --border-purple: rgba(139, 92, 246, 0.35);
    --border-glow: rgba(168, 85, 247, 0.6);
    
    --primary-purple: #8b5cf6;
    --primary-violet: #7c3aed;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --accent-gold: #eab308;
    
    --text-white: #f8fafc;
    --text-muted: rgba(248, 250, 252, 0.7);
    --text-dim: rgba(248, 250, 252, 0.45);
    
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(139, 92, 246, 0.15);
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.vexo-theme {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Canvas & Ambient Glow */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.glow-orb {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 2;
    opacity: 0.25;
}

.glow-violet {
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, var(--primary-purple) 0%, var(--primary-violet) 70%);
}

.glow-cyan {
    bottom: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
}

.hero-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, rgba(5, 5, 12, 0.4) 0%, var(--bg-dark) 90%), url('assets/welcome_banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.16;
    pointer-events: none;
    z-index: 0;
}

/* ==========================================
   NAVBAR & NAVEGACIÓN SPA
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 12, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.nav-logo {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

.nav-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.accent-text {
    color: var(--primary-purple);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.nav-tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-tab-btn.active {
    color: #fff;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.25);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-btn-discord {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.nav-btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

/* ==========================================
   GESTIÓN DE PÁGINAS SPA
   ========================================== */
.page-section {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    position: relative;
    z-index: 10;
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: calc(100vh - 70px);
}

.page-section.active {
    display: block;
    opacity: 1;
}

.container-wide {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* ==========================================
   PORTAL HERO & SERVER STATUS
   ========================================== */
.server-status-bar {
    width: 100%;
    background: rgba(14, 14, 28, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-purple);
    border-radius: 16px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--primary-purple);
    box-shadow: 0 0 10px var(--primary-purple);
    animation: blinkDot 1.5s infinite;
}

.green-dot {
    background-color: #22c55e;
    box-shadow: 0 0 10px #22c55e;
}

@keyframes blinkDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.status-online {
    color: #22c55e;
    font-weight: 700;
}

.status-metrics {
    display: flex;
    gap: 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.status-metrics code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--accent-cyan);
}

.btn-connect-fivem {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.btn-connect-fivem:hover {
    transform: scale(1.04);
}

.hero-card {
    width: 100%;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-purple);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.logo-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.vexo-main-logo {
    height: 130px;
    width: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.6));
    animation: floatLogo 4s ease-in-out infinite alternate;
}

@keyframes floatLogo {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

.hero-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.4);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
}

.main-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-heading {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
}

.highlight-purple {
    color: var(--primary-purple);
    font-weight: 700;
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.timer-box {
    background: rgba(10, 10, 22, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 14px;
    padding: 14px 18px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.timer-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 4px;
}

.timer-separator {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-purple);
}

.access-banner {
    width: 100%;
    max-width: 550px;
    background: rgba(18, 18, 36, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.88rem;
}

.access-count {
    font-weight: 800;
    color: var(--primary-purple);
}

.cta-group {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 550px;
    margin-bottom: 25px;
}

.btn-primary-glow {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-violet));
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    text-decoration: none;
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
}

.btn-secondary-glass {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-secondary-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.social-bar {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #fff;
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.stat-card {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ==========================================
   DISEÑO TIENDA ESTILO CHECKZONE / CHECKPOINT
   ========================================== */
.glass-panel {
    background: rgba(14, 14, 28, 0.85);
    border: 1px solid var(--border-purple);
    backdrop-filter: blur(16px);
    border-radius: 20px;
}

/* Hero Split de la Tienda */
.shop-hero-split {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 25px;
    padding: 35px 30px;
    margin-bottom: 30px;
}

.shop-hero-copy h1 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    margin: 10px 0;
}

.shop-hero-copy h1 span {
    color: var(--primary-purple);
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.shop-hero-copy p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.eyebrow-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.35);
    color: var(--primary-purple);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.mini-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.mini-feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon-purple {
    font-size: 1.4rem;
    color: var(--primary-purple);
}

.mini-feature-box strong {
    display: block;
    font-size: 0.85rem;
}

.mini-feature-box small {
    color: var(--text-dim);
    font-size: 0.75rem;
}

.shop-hero-offer-card {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-color: var(--primary-purple);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.2);
}

.vp-coin-badge {
    background: rgba(234, 179, 8, 0.2);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.offer-chip {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    font-weight: 700;
}

.shop-hero-offer-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin: 8px 0;
}

.shop-hero-offer-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-ticket-discord {
    width: 100%;
    padding: 12px;
    font-size: 0.88rem;
}

/* Fila de Pestañas de Filtro */
.shop-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 20px;
    margin-bottom: 30px;
}

.shop-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.shop-tab-btn:hover {
    color: #fff;
    background: rgba(139, 92, 246, 0.15);
}

.shop-tab-btn.active {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: #fff;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

/* Secciones de Categoría de Productos */
.shop-cat-section {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    margin-bottom: 30px;
}

.cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cat-header h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
}

.cat-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.cat-discord-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
}

.cat-discord-link:hover {
    text-decoration: underline;
}

/* Grillas Estilo CheckZone */
.shop-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.cz-product-card {
    background: rgba(10, 10, 22, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.cz-product-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
}

.cz-featured {
    border-color: var(--primary-purple);
    background: rgba(20, 18, 42, 0.9);
}

.cz-badge {
    position: absolute;
    top: -10px;
    background: var(--primary-purple);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 10px;
    text-transform: uppercase;
}

.gold-badge { background: var(--accent-gold); color: #000; }
.purple-badge { background: var(--accent-pink); }

.vp-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cz-product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.cz-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 14px;
}

.cz-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.3;
}

.cz-btn-get {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.8rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s ease;
    margin-top: auto;
}

.cz-btn-get:hover, .cz-btn-featured {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-violet));
    border-color: var(--primary-purple);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Grilla para Tarjetas VIP y Packs Grandes */
.shop-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.cz-card-item {
    background: rgba(10, 10, 22, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.cz-card-item:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
}

.card-visual {
    width: 100%;
    height: 110px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 2px;
}

.card-plat {
    background: linear-gradient(135deg, #334155, #64748b);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.card-black {
    background: linear-gradient(135deg, #09090b, #27272a);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-gold {
    background: linear-gradient(135deg, #854d0e, #ca8a04);
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.3);
}

.card-visual-icon {
    font-size: 2rem;
    margin-bottom: 6px;
}

.cz-btn-info {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: auto;
}

.cz-btn-info:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

.cat-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
}

/* Banner Inferior Discord */
.shop-discord-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    margin-top: 20px;
}

.banner-discord-icon {
    font-size: 3rem;
    color: #5865F2;
}

.banner-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.banner-text p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ==========================================
   NORMATIVA & QUIZ
   ========================================== */
.rules-search-box {
    position: relative;
    max-width: 650px;
    margin: 0 auto 35px;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.rules-search-box input {
    width: 100%;
    background: rgba(18, 18, 36, 0.8);
    border: 1px solid var(--border-purple);
    border-radius: 14px;
    padding: 14px 18px 14px 48px;
    color: #fff;
    font-family: var(--font-body);
}

.rules-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rules-category {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
}

.rules-category h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-purple);
}

.rule-item {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary-purple);
    padding: 14px 18px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 12px;
}

.quiz-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 35px;
    border-radius: 24px;
}

.quiz-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-pink));
    transition: width 0.3s ease;
}

.quiz-question-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.quiz-options-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-option-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
}

.quiz-option-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-purple);
}

.quiz-option-btn.selected {
    background: rgba(139, 92, 246, 0.3);
    border-color: var(--primary-purple);
}

.result-icon {
    font-size: 4rem;
    margin-bottom: 10px;
}

/* Devlog & Staff */
.devlog-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.devlog-card {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 25px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.staff-card {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 25px;
    text-align: center;
}

.staff-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
}

.staff-role {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin: 6px 0 10px;
}

.role-founder { background: rgba(236, 72, 153, 0.2); color: var(--accent-pink); }
.role-admin { background: rgba(139, 92, 246, 0.2); color: var(--primary-purple); }
.role-mod { background: rgba(6, 182, 212, 0.2); color: var(--accent-cyan); }

/* Modales & Toast */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 4, 10, 0.85);
    backdrop-filter: blur(12px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    padding: 35px 30px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-logo, .modal-header img {
    max-height: 65px !important;
    height: 65px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 12px auto !important;
}

.product-info-body {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(14, 14, 28, 0.95);
    border: 1px solid var(--primary-purple);
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 0.9rem;
    z-index: 300;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.floating-controls {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100;
}

.audio-toggle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(18, 18, 36, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bar {
    width: 100%;
    background: rgba(5, 5, 12, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-logo { height: 24px; }
.footer-right { display: flex; align-items: center; gap: 12px; }
.footer-right a, .footer-link-btn { color: var(--text-muted); background: none; border: none; font-size: 0.85rem; cursor: pointer; text-decoration: none; }
.footer-right a:hover, .footer-link-btn:hover { color: #fff; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .shop-hero-split { grid-template-columns: 1fr; }
    .mini-feature-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .server-status-bar { flex-direction: column; gap: 12px; text-align: center; }
}
