:root {
    /* Color Palette - Premium Modern Dark */
    --primary: #00e0ff; /* Electric Blue */
    --primary-glow: rgba(0, 224, 255, 0.3);
    --secondary: #7000ff; /* Purple Neon */
    --secondary-glow: rgba(112, 0, 255, 0.3);
    --bg-dark: #030406;
    --bg-darker: #010203;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.07);
    --card-hover: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #8e9aaf;
    --success: #00ffa3;
    --danger: #ff3e3e;
    --nav-height: 90px;
    --sidebar-width: 280px;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* 1. TICKER STYLES */
.ticker-tape { 
    height: 40px; 
    border-bottom: 1px solid var(--card-border); 
    background: #000; 
    overflow: hidden; 
    width: 100%;
}

/* 🛡️ SECURITY: ZERO-FLASH PROTECTION */
body.protected-page { opacity: 0; pointer-events: none; transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
body.auth-verified { opacity: 1; pointer-events: auto; }

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--card-border);
    padding: 12px 0;
    margin-top: var(--nav-height);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker__item {
    padding: 0 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 2. PREMIUM HERO SLIDER */
.hero-slider-section {
    width: 100%;
    height: 80vh;
    min-height: 600px;
}

.swiper { width: 100%; height: 100%; }

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    background-size: cover;
    background-position: center;
}

.hero-slide-1 { background: radial-gradient(circle at 80% 20%, var(--primary-glow), transparent 50%), var(--bg-dark); }
.hero-slide-2 { background: radial-gradient(circle at 20% 80%, var(--secondary-glow), transparent 50%), var(--bg-dark); }

.hero-inner { max-width: 900px; text-align: center; }

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary);
    color: black;
    font-weight: 800;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.ultra-bold { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 900; line-height: 1; margin-bottom: 2rem; }

.hero-btns-v2 { display: flex; gap: 2rem; justify-content: center; margin-top: 3rem; }

.primary-btn-glow {
    background: var(--btn-color, var(--primary));
    color: black;
    padding: 1.2rem 3rem;
    border-radius: 15px;
    font-weight: 800;
    box-shadow: 0 0 30px var(--btn-color, var(--primary-glow));
    font-size: 1.1rem;
}

.secondary-btn-v2 {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 15px;
    font-weight: 700;
}

/* 3. BENTO GRID */
.bento-section { padding: 120px 10%; }

.section-header-v2 { text-align: center; margin-bottom: 60px; }
.sub-title { color: var(--primary); font-weight: 800; letter-spacing: 4px; font-size: 0.8rem; }
.title-v2 { font-size: 3.5rem; font-weight: 800; margin: 15px 0; }
.divider { width: 80px; height: 4px; background: var(--primary); margin: 0 auto; border-radius: 2px; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.bento-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    padding: 40px;
    transition: 0.4s;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(20px);
}

.item-large { grid-column: span 2; grid-row: span 2; }
.item-medium { grid-column: span 2; }
.item-blue:hover { border-color: var(--primary); box-shadow: 0 0 30px var(--primary-glow); }
.item-purple:hover { border-color: var(--secondary); box-shadow: 0 0 30px var(--secondary-glow); }

.bento-icon { font-size: 3rem; margin-bottom: 2rem; }
.bento-content h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.bento-content p { color: var(--text-muted); line-height: 1.6; }

/* 4. LIVE PREVIEW SIGNALS */
.live-preview-section { padding: 120px 10%; background: var(--bg-darker); }
.signal-cards-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 50px; }

.signal-card-premium {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
    border-radius: 40px;
    padding: 3rem;
    border: 1px solid var(--card-border);
    position: relative;
}

.card-status-glow {
    position: absolute;
    top: 30px; left: 30px;
    width: 10px; height: 10px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--success);
    animation: blink 2s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.card-glass-top { display: flex; justify-content: space-between; margin-bottom: 2.5rem; }
.action-badge-v2 { padding: 0.5rem 1.5rem; border-radius: 12px; font-weight: 800; font-size: 0.8rem; }
.action-badge-v2.up { background: rgba(0, 255, 163, 0.1); color: var(--success); border: 1px solid var(--success); }
.action-badge-v2.down { background: rgba(255, 62, 62, 0.1); color: var(--danger); border: 1px solid var(--danger); }

.price-box { display: flex; justify-content: space-between; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.price-box strong { font-size: 1.3rem; }

/* MASTERY SECTION */
.mastery-section { padding: 120px 10%; }
.mastery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.mastery-item { display: flex; gap: 2rem; margin-top: 3rem; }
.m-icon { font-size: 2.5rem; min-width: 70px; height: 70px; background: rgba(255,255,255,0.03); border-radius: 20px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--card-border); }

/* COUNTER */
.counter-section { padding: 80px 10%; background: var(--primary); color: black; }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.count-val { font-size: 3rem; font-weight: 900; }
.count-tag { font-weight: 700; letter-spacing: 1px; font-size: 0.8rem; opacity: 0.8; }

/* STEPS */
.steps-section { padding: 120px 10%; }
.step-container-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 60px; }
.step-card-v2 { padding: 4rem 3rem; background: var(--card-bg); border-radius: 40px; border: 1px solid var(--card-border); position: relative; }
.step-num { position: absolute; top: 40px; right: 40px; font-size: 4rem; font-weight: 900; opacity: 0.05; }
.step-card-v2.active-v2 { border-color: var(--primary); background: var(--primary-glow); }

/* LUXURY PRICING UPGRADE */
.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 60px;
}

.price-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 40px;
    padding: 4rem 3rem;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.price-card-v2:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.p-head h3 {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.p-amount {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.p-amount span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* SPECIAL HIGHLIGHT GOLD/VIP CARD */
.gold-plan {
    border: 2px solid var(--primary) !important;
    background: radial-gradient(circle at top right, var(--primary-glow), transparent 60%),
                rgba(255,255,255,0.05) !important;
    box-shadow: 0 0 40px var(--primary-glow);
}

.gold-plan::before {
    content: 'BEST CHOICE';
    position: absolute;
    top: 30px;
    right: -30px;
    background: var(--primary);
    color: black;
    padding: 8px 40px;
    font-weight: 900;
    font-size: 0.7rem;
    transform: rotate(45deg);
}

.p-features-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}

.p-features-list li {
    padding: 12px 0;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 15px;
}

.p-features-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    display: block;
}


/* ============================================================
   💎 PREMIUM COMPONENTS (MOVED FROM INDEX.HTML)
   ============================================================ */

.hero-v3 {
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: 
        radial-gradient(circle at 15% 15%, var(--primary-glow), transparent 30%),
        radial-gradient(circle at 85% 85%, var(--secondary-glow), transparent 30%),
        var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero-v3::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
}

.trust-badges-v3 {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 4rem;
    opacity: 0.6;
}

.comparison-section {
    padding: 120px 10%;
    background: var(--bg-darker);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.compare-card {
    padding: 4rem;
    border-radius: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
}

.compare-card.better {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 224, 255, 0.05), transparent);
}

.video-placeholder-v3 {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #111, #000);
    border: 1px solid var(--card-border);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    cursor: pointer;
    box-shadow: 0 30px 100px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}

/* BENTO V2 ENHANCEMENTS */
.bento-v2-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 220px;
    gap: 24px;
    margin-top: 60px;
}

.bento-card-ultra {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-span-8 { grid-column: span 8; }
.card-span-4 { grid-column: span 4; }
.card-row-2 { grid-row: span 2; }

.pill-label { 
    background: rgba(255,255,255,0.05); 
    padding: 6px 15px; 
    border-radius: 50px; 
    font-size: 0.65rem; 
    font-weight: 900; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    margin-bottom: 1.5rem; 
    display: inline-block; 
    width: fit-content; 
}

/* ONBOARDING PATHWAY V2 */
.deployment-path { display: flex; gap: 40px; margin-top: 80px; position: relative; }
.phase-terminal {
    flex: 1;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 35px;
    padding: 50px;
    position: relative;
    transition: 0.4s;
    overflow: hidden;
}

.phase-terminal .ph-num { 
    position: absolute; top: -20px; left: 40px; font-size: 5rem; font-weight: 900; 
    color: rgba(255,255,255,0.03); line-height: 1; z-index: 1; letter-spacing: -5px;
}

/* FOOTER UPDATES */
footer { padding: 100px 10% 40px 10%; background: #000; border-top: 1px solid var(--card-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 80px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 900; color: var(--text-muted); letter-spacing: 2px; margin-bottom: 2rem; text-transform: uppercase; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.risk-warning { 
    padding: 30px; border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; 
    font-size: 0.75rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; text-align: justify;
}

/* ============================================================
   📱 COMPREHENSIVE MOBILE RESPONSIVENESS UPDATES
   ============================================================ */
@media (max-width: 1200px) {
    .container { padding: 0 5%; }
    .bento-v2-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
    .card-span-8, .card-span-4 { grid-column: span 2; }
}

@media (max-width: 768px) {
    .hero-v3 { height: auto !important; padding: 140px 6% 60px 6% !important; }
    .ultra-bold { font-size: 2.2rem !important; line-height: 1.2 !important; }
    .trust-badges-v3 { flex-direction: column; gap: 15px; font-size: 0.75rem; }
    
    .bento-v2-grid { grid-template-columns: 1fr !important; grid-auto-rows: auto !important; gap: 15px !important; }
    .card-span-8, .card-span-4, .card-row-2 { grid-column: span 1 !important; grid-row: span 1 !important; }
    .bento-card-ultra { padding: 25px !important; }
    .bento-card-ultra h3 { font-size: 1.4rem !important; }

    .comparison-section, .steps-section, footer { padding: 60px 6% !important; }
    
    .compare-grid { grid-template-columns: 1fr !important; gap: 20px; }
    .compare-card { padding: 30px !important; }
    
    .deployment-path { flex-direction: column !important; gap: 15px !important; }
    .phase-terminal { padding: 30px !important; }
    
    .footer-grid { grid-template-columns: 1fr !important; gap: 40px !important; text-align: center; }
    .footer-col ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
}

/* ============================================================
   📱 CENTRAL COLLAPSIBLE SIDEBAR SYSTEM
   ============================================================ */

@media (max-width: 768px) {
    .sidebar-v6 { 
        position: fixed; 
        left: -280px; 
        top: 0; 
        height: 100vh; 
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
        box-shadow: 20px 0 50px rgba(0,0,0,0.5);
        z-index: 9999;
        display: flex !important; /* Force show on mobile if active */
    }
    .sidebar-v6.mobile-active { left: 0; }
    
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.7);
        backdrop-filter: blur(5px);
        z-index: 9998;
    }
    .sidebar-overlay.active { display: block; }

    .btn-menu-toggle {
        display: flex !important;
        background: rgba(255,255,255,0.05);
        border: 1px solid var(--card-border);
        color: white;
        width: 45px; height: 45px;
        border-radius: 12px;
        align-items: center; justify-content: center;
        cursor: pointer;
        font-size: 1.2rem;
    }
    
    .dashboard-container { width: 100%; height: auto !important; }
    .dash-top-bar { padding: 0 20px !important; position: sticky !important; top: 0; z-index: 1000; background: #010203; }
}

.btn-menu-toggle { display: none; }


/* ULTRA-PREMIUM FLOATING NAVIGATION */
.glass-nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1350px;
    height: 80px;
    background: rgba(3, 4, 6, 0.75);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    z-index: 10000;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 40px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 950;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    color: #ffffff; /* Crystal White */
    text-decoration: none;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.logo span {
    color: var(--primary); /* Electric Blue */
    text-shadow: 0 0 15px var(--primary-glow);
    font-weight: 400;
    margin-left: 3px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none; /* REMOVES BULLETS */
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
    transform: translateX(-50%);
}

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

.nav-links a.active, .nav-links a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* BUTTONS REINVENTED - LUXURY FEEL */
.primary-btn {
    background: white;
    color: black;
    padding: 0.9rem 2.2rem;
    border-radius: 16px;
    font-weight: 800;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.primary-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--primary-glow);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.icon-btn {
    background: transparent;
    font-size: 1.2rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.icon-btn:hover {
    transform: scale(1.2);
}

.ticker-wrap {
    margin-top: 130px;
}

/* Animations */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0px rgba(0, 224, 255, 0.4); }
    100% { box-shadow: 0 0 0 20px rgba(0, 224, 255, 0); }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    background: radial-gradient(circle at 80% 20%, var(--secondary-glow), transparent 40%),
                radial-gradient(circle at 10% 80%, var(--primary-glow), transparent 40%);
    padding-left: 10%;
    padding-right: 10%;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.gradient-text {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.chart-mockup {
    width: 100%;
    height: 400px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    position: relative;
}

.floating-signal {
    position: absolute;
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: float 4s ease-in-out infinite;
}

.floating-signal.up {
    top: 20%;
    right: -20px;
    border-left: 4px solid var(--success);
    color: var(--success);
}

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

/* Stats Section */
.stats-section {
    padding: 100px 10%;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3.5rem 2rem;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}

.stat-card:hover {
    border-color: var(--primary);
    background: var(--card-hover);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px var(--primary-glow);
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
}

.stat-label {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing-section {
    padding: 120px 10%;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid var(--card-border);
    padding: 4rem 3rem;
    border-radius: 40px;
    position: relative;
    transition: 0.4s;
    backdrop-filter: blur(15px);
}

.price-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.price-card.featured {
    border: 1.5px solid var(--primary);
    background: radial-gradient(circle at top right, rgba(0, 224, 255, 0.05), transparent 60%);
    box-shadow: 0 20px 50px rgba(0, 224, 255, 0.1);
}

.badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--primary);
    color: black;
    font-weight: 800;
    padding: 0.4rem 1.2rem;
    border-radius: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 2rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-card ul {
    margin-bottom: 2rem;
    text-align: left;
}

.price-card li {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.price-card li::before {
    content: '✓';
    color: var(--success);
    margin-right: 0.8rem;
    font-weight: bold;
}

/* Utility Hidden */
.hidden {
    display: none !important;
}

/* Panel Containers */
.panel-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    z-index: 2000;
    background: var(--bg-dark);
}

.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-darker);
    border-right: 1px solid var(--card-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.sidebar .logo {
    margin-bottom: 3rem;
}

.sidebar nav {
    flex: 1;
}

.sidebar nav a {
    display: block;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.sidebar nav a:hover, .sidebar nav a.active {
    background: var(--card-bg);
    color: var(--primary);
}

.logout-btn {
    padding: 1rem;
    background: rgba(255,0,0,0.05);
    color: var(--danger);
    border-radius: 12px;
}

.panel-main {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Signal Cards */
.signal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.signal-card {
    background: linear-gradient(165deg, var(--card-bg), rgba(255,255,255,0.01));
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.signal-card:hover {
    transform: scale(1.03);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.signal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.4rem 1.2rem;
    font-weight: 800;
    font-size: 0.7rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signal-card.long .signal-badge { background: rgba(0, 255, 163, 0.15); color: var(--success); border: 1px solid var(--success); }
.signal-card.short .signal-badge { background: rgba(255, 62, 62, 0.15); color: var(--danger); border: 1px solid var(--danger); }

.signal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.crypto-tag {
    font-size: 0.7rem;
    background: rgba(255,255,255,0.06);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    color: var(--primary);
    font-weight: 600;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-row:last-child { border-bottom: none; }

.price-row strong { font-size: 1.1rem; }

.signal-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Admin Form Premium Look */
.glass-form {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    padding: 3.5rem;
    border-radius: 35px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    backdrop-filter: blur(20px);
}

input, select {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--card-border);
    padding: 1.2rem;
    font-size: 1rem;
    transition: 0.3s;
}

input:focus, select:focus {
    border-color: var(--primary);
}

.full-width {
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .gradient-text { font-size: 2.5rem; }
    .hero-btn { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .panel-container { flex-direction: column; }
    .sidebar { width: 100%; height: auto; border-right: none; border-bottom: 1px solid var(--card-border); }
    .form-row { grid-template-columns: 1fr; }
}
/* --- PROFESSIONAL TOAST NOTIFICATIONS --- */
/* CYBER-TERMINAL NOTIFICATION ENGINE */
.toast-container-v8 {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 400px;
}

.toast-v8 {
    background: rgba(10, 15, 25, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    animation: toastInV8 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.toast-v8-icon {
    width: 45px; height: 45px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 900;
    flex-shrink: 0;
}

.toast-v8-content { flex: 1; }
.toast-v8-title {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
    opacity: 0.6;
}
.toast-v8-msg { font-size: 0.95rem; font-weight: 700; color: #fff; line-height: 1.4; }

.toast-v8-timer {
    position: absolute;
    bottom: 0; left: 0;
    height: 4px;
    width: 0%;
    animation: toastTimerV8 3s linear forwards;
}

/* VARIANTS */
.toast-v8-success { border-left: 5px solid #00ff88; }
.toast-v8-success .toast-v8-icon { background: rgba(0, 255, 136, 0.1); color: #00ff88; }
.toast-v8-success .toast-v8-timer { background: #00ff88; box-shadow: 0 0 15px #00ff88; }

.toast-v8-error { border-left: 5px solid #ff3e3e; }
.toast-v8-error .toast-v8-icon { background: rgba(255, 62, 62, 0.1); color: #ff3e3e; }
.toast-v8-error .toast-v8-timer { background: #ff3e3e; box-shadow: 0 0 15px #ff3e3e; }

/* ANIMATIONS */
@keyframes toastInV8 {
    from { opacity: 0; transform: translateX(100px) scale(0.9); filter: blur(10px); }
    to { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}

@keyframes toastOutV8 {
    to { opacity: 0; transform: translateX(100px) scale(0.95); filter: blur(10px); }
}

@keyframes toastTimerV8 {
    from { width: 0%; }
    to { width: 100%; }
}
