/* =========================================
   SISTEMA DE DESIGN / VARIÁVEIS
   ========================================= */
:root {
    /* Cores Escuras Premium (Fundo e Sombras) */
    --bg-dark: #050505;
    --bg-surface: #0f0f11;
    --glass-bg: rgba(20, 20, 23, 0.6);
    --glass-border: rgba(255, 215, 0, 0.15);
    
    /* Amarelo/Dourado Premium */
    --gold-primary: #F5D130;
    --gold-bright: #FFEA70;
    --gold-dark: #B89C20;
    --gold-gradient: linear-gradient(135deg, #FFEA70 0%, #F5D130 50%, #B89C20 100%);
    
    /* Textos */
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    
    /* Outros */
    --glow-shadow: 0 0 20px rgba(245, 209, 48, 0.3);
    --glow-shadow-strong: 0 0 40px rgba(245, 209, 48, 0.5);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   RESETS E BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

section[id], div[id] {
    scroll-margin-top: 120px;
}

/* Tipografia e Títulos */
h1, h2, h3, .logo-text, .btn-primary {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   COMPONENTS DE UTILIDADE
   ========================================= */
.highlight {
    color: var(--gold-primary);
}

.highlight-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Botões Premium */
.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--glow-shadow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid var(--text-muted);
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(245, 209, 48, 0.05);
}

.glow-eff {
    box-shadow: var(--glow-shadow);
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px rgba(245, 209, 48, 0.2); }
    50% { box-shadow: 0 0 35px rgba(245, 209, 48, 0.6); }
    100% { box-shadow: 0 0 15px rgba(245, 209, 48, 0.2); }
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 1.25rem;
    border-radius: 12px;
}

/* =========================================
   NAVBAR (GLASSMORPHISM)
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-link:hover .nav-logo {
    transform: scale(1.08) !important;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9)) !important;
}

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

.nav-social-icon {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.nav-social-icon:hover {
    color: var(--gold-primary);
    transform: scale(1.1);
}

.nav-social-icon i {
    width: 20px;
    height: 20px;
}

.nav-links a:not(.nav-social-icon) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

/* =========================================
   HERO SECTION (VÍDEO BACKGROUND)
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
}

/* Gradiente mistico combinando sombra preta nas extremidades */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(5, 5, 5, 0.4) 0%,
        rgba(5, 5, 5, 0.6) 60%,
        var(--bg-dark) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 24px;
    margin-top: 60px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(245, 209, 48, 0.1);
    border: 1px solid rgba(245, 209, 48, 0.3);
    color: var(--gold-bright);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.glitch-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* =========================================
   JOURNEY SECTION (SEGUNDO VÍDEO COMPLETO)
   ========================================= */
.video-journey {
    position: relative;
    padding: 100px 24px;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-journey .overlay {
    background: linear-gradient(
        to bottom,
        var(--bg-dark) 0%,
        rgba(5, 5, 5, 0.7) 30%,
        rgba(5, 5, 5, 0.7) 70%,
        var(--bg-dark) 100%
    );
}

.journey-content-grid {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.journey-step {
    display: flex;
    flex-direction: column;
    padding: 35px;
    text-align: left;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--gold-primary);
}

.journey-step:hover {
    transform: translateY(-10px);
    border-color: var(--glass-border);
    box-shadow: var(--glow-shadow);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.step-header i {
    color: var(--gold-primary);
    width: 24px;
    height: 24px;
}

.step-badge {
    padding: 4px 10px;
    background: rgba(245, 209, 48, 0.1);
    border: 1px solid rgba(245, 209, 48, 0.2);
    color: var(--gold-bright);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.journey-step h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.journey-step p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* =========================================
   BLOCO DE GRADIENTE CENTRAL
   ========================================= */
.gradient-block {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(20, 20, 20, 1) 40%, rgba(35, 30, 15, 1) 70%, var(--bg-dark) 100%);
    position: relative;
    z-index: 20;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

/* =========================================
   FEATURES (CARDS MISTERIOSOS)
   ========================================= */
.features {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.dashboard-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Gráfico Interativo */
.chart-container {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chart-container h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.5rem;
    color: var(--gold-bright);
}

.chart-area {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    flex: 1;
    min-height: 300px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    position: relative;
    height: 100%;
    justify-content: flex-end;
}

/* Setup das barras (Animação controlada pelo JS via classe .animated) */
.bar-fill {
    width: 60px;
    height: 0; /* Inicia zerado para a animação */
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
}

.market-bar {
    background: rgba(255, 255, 255, 0.1);
}

.chefe-bar {
    background: var(--gold-gradient);
    box-shadow: var(--glow-shadow);
}

.bar-tooltip {
    position: absolute;
    top: -50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-main);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
    text-align: center;
    pointer-events: none;
    white-space: nowrap;
    z-index: 10;
}

.chefe-bar .bar-tooltip {
    color: var(--gold-bright);
    top: -65px;
}

.bar-tooltip span {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
    color: var(--text-muted);
}

.chart-bar-group:hover .bar-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.bar-label {
    margin-top: 15px;
    font-weight: 600;
    color: var(--text-muted);
}

.chefe-label {
    color: var(--gold-primary);
}

/* Painel Direto de Insights */
.side-insights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insight-row {
    display: flex;
    gap: 20px;
    background: rgba(20, 20, 23, 0.4);
    padding: 24px;
    border-radius: 16px;
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
}

.insight-row:hover {
    background: var(--glass-bg);
    border-left-color: var(--gold-primary);
    transform: translateX(10px);
}

.premium-insight {
    border-left-color: var(--gold-dark);
    background: rgba(245, 209, 48, 0.03);
}

.insight-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
}

.insight-row:hover .insight-icon, .premium-insight .insight-icon {
    color: var(--gold-primary);
    background: rgba(245, 209, 48, 0.1);
}

.insight-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.insight-row:hover .insight-text h4 {
    color: var(--gold-primary);
}

.insight-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 32px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(245,209,48,0.05), transparent 60%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.glass-card:hover .card-icon {
    color: var(--gold-primary);
    background: rgba(245, 209, 48, 0.1);
}

.premium-card {
    border-color: rgba(245, 209, 48, 0.2);
    box-shadow: inset 0 0 20px rgba(245, 209, 48, 0.02);
}
.premium-card .highlight-icon {
    color: var(--gold-primary);
    background: rgba(245, 209, 48, 0.1);
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
    padding: 100px 24px;
    background: transparent;
    text-align: center;
    position: relative;
}

.cta-banner::after {
    content:'';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: var(--bg-surface);
    padding: 60px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: var(--text-muted);
}

.footer-socials a:hover {
    background: var(--gold-primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* =========================================
   FLOATING CHAT BOT
   ========================================= */
.floating-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    outline: none;
}

.chat-icon-container {
    width: 65px;
    height: 65px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-dark);
    box-shadow: var(--glow-shadow);
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: pulseChat 2s infinite;
}

.chat-icon-container i {
    width: 32px;
    height: 32px;
}

.chat-tooltip {
    position: absolute;
    right: 80px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--gold-primary);
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition-fast);
}

.floating-chat-btn:hover .chat-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.floating-chat-btn:hover .chat-icon-container {
    transform: scale(1.1);
}

@keyframes pulseChat {
    0% { box-shadow: 0 0 0 0 rgba(245, 209, 48, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(245, 209, 48, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 209, 48, 0); }
}

/* Janela Pop-up do Chat */
.chat-popup {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    
    /* Estado Inicial Fechado */
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: var(--transition-smooth);
}

.chat-popup.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header-info i {
    width: 24px;
    height: 24px;
}

.chat-title-group {
    display: flex;
    flex-direction: column;
}

.chat-title {
    font-weight: 800;
    font-size: 1.05rem;
}

.chat-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.close-chat {
    background: none;
    border: none;
    color: var(--bg-dark);
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
}

.close-chat:hover {
    transform: scale(1.1);
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="rgba(255,215,0,0.03)"/></svg>');
}

.chat-message {
    display: flex;
    max-width: 85%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
}

.bot-message .message-bubble {
    background: var(--glass-bg);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-main);
    border-bottom-left-radius: 4px;
}

.user-message .message-bubble {
    background: var(--gold-primary);
    color: var(--bg-dark);
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.chat-option-btn {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    align-self: flex-start;
}

.chat-option-btn:hover {
    background: var(--gold-primary);
    color: var(--bg-dark);
}

.chat-footer {
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    gap: 10px;
    background: var(--bg-surface);
}

#chatInput {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px 15px;
    color: var(--text-main);
    outline: none;
    transition: border-color 0.2s;
}

#chatInput:focus {
    border-color: var(--gold-primary);
}

.send-message-btn {
    background: var(--gold-gradient);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.send-message-btn:hover {
    transform: scale(1.05);
}

/* =========================================
   RESPONSIVIDADE
   ========================================= */
@media (max-width: 900px) {
    .dashboard-section {
        grid-template-columns: 1fr;
    }
    .chart-container {
        padding: 20px;
    }
    .chart-area {
        min-height: 250px;
    }
    .glitch-title {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .glitch-title {
        font-size: 2.2rem;
    }
    .hero-content .subtitle {
        font-size: 1rem;
    }
    .cta-content h2 {
        font-size: 2rem;
    }
    .journey-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =========================================
   EXIT/BOTTOM VIP POPUP
   ========================================= */
.vip-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.vip-popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.vip-popup-box {
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    padding: 50px 40px;
    border-top: 4px solid var(--gold-primary);
}

.vip-popup-overlay.active .vip-popup-box {
    transform: scale(1);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-main);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.close-popup:hover {
    background: rgba(255, 50, 50, 0.4);
}

.popup-icon {
    margin-bottom: 20px;
    animation: popBounce 2s infinite;
}

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

.vip-popup-box h2 {
    color: var(--gold-bright);
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.vip-popup-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
}
