:root {
    /* Stealth/Matrix Theme Palette - Darker & Subtler */
    --primary: #00FF9D; /* Matrix Green */
    --primary-glow: rgba(0, 255, 157, 0.3); /* Reduced Glow */
    --secondary: #00C3FF; /* Bright Cyan */
    --secondary-glow: rgba(0, 195, 255, 0.3); /* Reduced Glow */
    --accent: #ffffff;
    --bg-dark: #020304; /* Almost Pure Black */
    --bg-panel: #080A0F; /* Very Dark Panel */
    --text-main: #DDDDDD; /* Slightly dimmed white */
    --text-muted: #666666; /* Darker gray */
    --border-neon: rgba(0, 255, 157, 0.1); /* Very subtle border */
    --success: #00FF9D;
    --danger: #FF2A6D; 
    --warning: #FFD700;
    
    /* Fonts */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Fira Code', monospace;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px; /* Reduced base font size */
    position: relative;
}

/* Moving Grid Background - Darker */
body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(rgba(0, 255, 157, 0.015) 1px, transparent 1px), /* 50% less opacity */
        linear-gradient(90deg, rgba(0, 255, 157, 0.015) 1px, transparent 1px); /* 50% less opacity */
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridMove 20s linear infinite;
    z-index: -2;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%); /* Fade edges */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 40px; }
}

/* CRT Scanline Effect - Subtle/Secret */
body::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.05) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
    z-index: 9999;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    opacity: 0.3; /* Reduced opacity */
    box-shadow: inset 0 0 100px rgba(0,0,0,0.9); /* Heavy Vignette */
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: transparent; /* Changed from #000000 to allow grid to show */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Terminal Typing Effect */
.typing-container {
    display: inline-block;
    font-family: var(--font-mono);
    color: var(--primary);
    position: relative;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 1em;
    background-color: var(--secondary);
    animation: blink 1s infinite;
    vertical-align: middle;
    margin-left: 5px;
}

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

/* Terminal Box */
.terminal-box {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--secondary);
    border-radius: 5px;
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.1);
    position: relative;
    overflow: hidden;
}

.terminal-header {
    background: var(--secondary);
    color: #000;
    padding: 2px 10px;
    font-size: 0.7rem;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-transform: uppercase;
}

.terminal-content {
    margin-top: 15px;
}

.cmd-line {
    display: block;
    margin-bottom: 5px;
}

.cmd-line::before {
    content: "> ";
    color: var(--secondary);
}

.cmd-success {
    color: var(--secondary);
}

.cmd-info {
    color: var(--primary);
}

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

.d-none {
    display: none !important;
}

.text-muted {
    --bs-text-opacity: 1;
    color: rgb(130 155 181 / 75%) !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000; 
}
::-webkit-scrollbar-thumb {
    background: var(--primary); 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #fff; 
}

/* Navbar */
.glass-nav {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-neon);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
    text-decoration: none;
}

.neon-text {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary-glow);
}

.btn-login {
    border: 1px solid var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    color: var(--primary) !important;
    font-weight: 600;
}

.btn-login:hover {
    background: var(--primary);
    color: #000 !important;
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-nav {
    background: var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    color: #fff !important;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--secondary);
    color: #000 !important;
    box-shadow: 0 0 15px var(--secondary-glow);
}

/* Container & Layout Fixes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.hero {
    min-height: 100dvh; /* Dynamic viewport height fix */
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: radial-gradient(circle at center, rgba(0, 255, 157, 0.03) 0%, transparent 70%);
    overflow: hidden; /* Prevent overflow */
}

html {
    scrollbar-gutter: stable;
}

/* Fix for shifting content */
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.hero h1 {
    font-size: 2.8rem; /* Reduced from 3.5rem */
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.1rem; /* Reduced from 1.5rem */
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-primary {
    background: transparent;
    color: var(--primary);
    padding: 0.8rem 1.8rem;
    font-weight: 500;
    border: 1px solid var(--primary);
    border-radius: 2px;
    font-family: var(--font-mono);
    transition: 0.3s;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: rgba(0, 255, 157, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
    color: #fff;
    border-color: var(--primary);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-muted);
    padding: 0.8rem 1.8rem;
    font-weight: 500;
    border-radius: 2px;
    font-family: var(--font-mono);
    transition: 0.3s;
    background: transparent;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

/* Status */
.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--success);
    animation: pulse 2s infinite;
}

.status-text {
    font-weight: 600;
}

.green {
    color: var(--success);
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

/* Shield Visual */
.shield-container {
    position: relative;
    width: 250px; /* Reduced from 300px */
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8; /* Stealthier */
}

.shield-icon {
    font-size: 6rem; /* Reduced from 8rem */
    color: var(--primary);
    z-index: 2;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.ring {
    position: absolute;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

.ring-1 { width: 100%; height: 100%; animation: spin 10s linear infinite; border-top-color: transparent; }
.ring-2 { width: 80%; height: 80%; animation: spin-reverse 8s linear infinite; border-bottom-color: transparent; border-color: var(--secondary); }
.ring-3 { width: 60%; height: 60%; animation: spin 5s linear infinite; border-left-color: transparent; }

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }

/* Features */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2rem; /* Reduced from 2.5rem */
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.8);
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: 0.5s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: rgba(0, 243, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

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

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.features-list i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.features-list .fa-check { color: var(--success); }
.features-list .fa-times { color: var(--danger); opacity: 0.5; }

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Download Section */
.download-card {
    border: 1px solid var(--border-neon);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.dl-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, var(--primary), #257ae0);
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s;
}

.dl-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary-glow);
    color: #fff;
}

.dl-btn i {
    font-size: 2.5rem;
}

.dl-btn .big {
    font-size: 1.2rem;
    font-weight: 700;
}

.dl-btn .small {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Glass Panel Utility */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #020202;
}

.footer-logo {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* =========================================
   DASHBOARD & ADMIN PANEL STYLES
   ========================================= */

/* Layout */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
    background: transparent; /* Allow particles to show */
    position: relative;
    z-index: 1;
}

.sidebar {
    width: 280px;
    background: rgba(10, 10, 10, 0.95);
    border-right: 1px solid var(--border-neon);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    position: fixed;
    height: 100vh;
    z-index: 900;
    transition: transform 0.3s ease;
}

.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    padding-top: 4rem; /* For mobile toggle spacing */
    padding-bottom: 80px; /* Space for mobile nav */
}

/* Sidebar Elements */
.sidebar-header {
    margin-bottom: 3rem;
    text-align: center;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    font-weight: 500;
}

.sidebar-menu a:hover, .sidebar-menu a.active {
    background: rgba(0, 243, 255, 0.1);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
}

.sidebar-menu i {
    width: 24px;
    margin-right: 10px;
    text-align: center;
}

.sidebar-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.logout-btn {
    display: flex;
    align-items: center;
    color: var(--danger);
    text-decoration: none;
    padding: 0.5rem;
    transition: 0.3s;
}

.logout-btn:hover {
    color: #ff4d88;
}

/* Panel Header */
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

/* Cards & Grid */
.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.panel-grid-split-2-1 {
    grid-template-columns: 2fr 1fr;
}

.panel-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: 0.3s;
}

.panel-card:hover {
    border-color: rgba(0, 243, 255, 0.3);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card-title {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
}

/* Tables */
.table-container {
    background: rgba(20, 20, 20, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.data-table th {
    text-align: left;
    padding: 1rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-active { background: rgba(0, 255, 157, 0.2); color: var(--success); }
.status-inactive { background: rgba(255, 255, 255, 0.1); color: var(--text-muted); }

.action-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.2s;
}

.action-btn:hover { color: var(--danger); }

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

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

.modal.hidden {
    display: none;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid var(--primary);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    padding: 0;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    position: relative;
    transform: scale(0.9);
    transition: 0.3s;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body {
    padding: 1.5rem;
}

.close-modal, .close-modal-sub {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Stats Section (Homepage) */
.stats-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    padding: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
    margin-bottom: 0.5rem;
}

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

/* Mobile Sidebar Toggle */
.sidebar-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 2000;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.sidebar-toggle:hover {
    background: var(--primary);
    color: #000;
}

/* Mobile Menu Button (Hamburger) */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 2000;
    padding: 0.5rem;
    border: 1px solid var(--primary);
    border-radius: 4px;
    background: rgba(0,0,0,0.5);
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    /* Mobile Nav Overlay */
.nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1500;
    padding: 2rem;
    visibility: hidden; /* Hide when closed to prevent rendering */
}

.nav-links.active {
    right: 0;
    visibility: visible; /* Show when active */
}

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.3s;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    .nav-links a {
        font-size: 1.5rem;
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links .btn-login, .nav-links .btn-nav {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Custom Inputs */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.form-input:focus {
    border-color: var(--primary);
    background: rgba(0, 243, 255, 0.05);
}

/* Auth Pages Styles */
.auth-split-layout {
    display: flex;
    min-height: 100vh;
    background: var(--bg-dark);
    overflow: hidden;
}

.auth-visual-side {
    flex: 1;
    position: relative;
    background: url('/assets/images/bg-cyber.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fallback if image missing */
.auth-visual-side {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.auth-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
}

.visual-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    padding: 3rem;
}

.visual-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.visual-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.visual-stats {
    display: flex;
    gap: 3rem;
}

.visual-stats .stat-item {
    border: none;
    padding: 0;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.auth-content-side {
    width: 500px;
    background: rgba(0, 0, 0, 0.85); /* Semi-transparent for particles */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    position: relative;
    z-index: 10;
    border-left: 1px solid var(--border-neon);
    backdrop-filter: blur(5px);
}

.auth-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.input-group-cyber {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-cyber {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-cyber:focus {
    border-color: var(--primary);
    background: rgba(0, 243, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.input-label-cyber {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    pointer-events: none;
}

.input-cyber:focus ~ .input-label-cyber,
.input-cyber:not(:placeholder-shown) ~ .input-label-cyber {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: var(--primary);
    background: #000;
    padding: 0 5px;
}

.btn-cyber {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cyber:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
}

.error-message {
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-message.hidden {
    display: none;
}

@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        padding-top: 5rem;
    }
    
    .sidebar-toggle {
        display: block;
    }
    
    .panel-grid-split-2-1 {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
         border-right: none;
         border-bottom: 1px solid rgba(255, 255, 255, 0.05);
     }
     
     .auth-split-layout {
         flex-direction: column;
     }
     .auth-visual-side {
         display: none;
     }
     .auth-content-side {
         width: 100%;
         min-height: 100vh;
         padding: 2rem;
     }
     
     /* Show Mobile Bottom Nav */
     .mobile-bottom-nav {
         display: flex;
     }
     
     /* Hide Desktop Sidebar on Mobile if Nav Used (Optional strategy, sticking to sidebar toggle for now, but nav is nice addition) */
 }
