        /* ============================================================
               ROOT VARIABLES
               ============================================================ */
        :root {
            --bg-primary: #050505;
            --bg-secondary: #0a0a0a;
            --bg-card: rgba(10, 5, 5, 0.85);
            --red-primary: #8B0000;
            --red-accent: #CC0000;
            --red-glow: #FF1a1a;
            --red-neon: rgba(255, 26, 26, 0.4);
            --red-dim: rgba(200, 0, 0, 0.12);
            --text-primary: #ffffff;
            --text-secondary: #b08888;
            --text-muted: rgba(255, 255, 255, 0.3);
            --font-display: 'Orbitron', cursive;
            --font-body: 'Rajdhani', sans-serif;
            --font-mono: 'Space Mono', monospace;
            --shadow-neon: 0 0 60px rgba(200, 0, 0, 0.2);
            --shadow-glow: 0 0 100px rgba(200, 0, 0, 0.15);
            --border-neon: 1px solid rgba(200, 0, 0, 0.25);
            --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        /* ============================================================
               RESET & BASE
               ============================================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        html.lenis,
        html.lenis body {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        .lenis.lenis-stopped {
            overflow: hidden;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            transition: background 0.3s ease, color 0.3s ease;
        }

        * {
            transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        }

        /* ============================================================
               CUSTOM CURSOR
               ============================================================ */
        .cursor-dot {
            position: fixed;
            width: 6px;
            height: 6px;
            background: var(--red-glow);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 30px rgba(255, 26, 26, 0.6);
            display: none;
        }
        .cursor-ring {
            position: fixed;
            width: 36px;
            height: 36px;
            border: 2px solid rgba(200, 0, 0, 0.3);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.25s ease, width 0.25s ease, height 0.25s ease;
            transform: translate(-50%, -50%);
            display: none;
        }
        .cursor-ring.hover {
            width: 50px;
            height: 50px;
            border-color: rgba(255, 26, 26, 0.6);
            box-shadow: 0 0 40px rgba(255, 26, 26, 0.15);
        }

        .mouse-glow {
            position: fixed;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9997;
            background: radial-gradient(circle, rgba(255, 26, 26, 0.25) 0%, rgba(255, 26, 26, 0.10) 25%, transparent 60%);
            transform: translate(-50%, -50%);
            mix-blend-mode: screen;
            opacity: 0.9;
            display: none;
            transition: opacity 0.15s ease, transform 0.15s ease;
        }

        /* ============================================================
               SCROLLBAR
               ============================================================ */
        ::-webkit-scrollbar {
            width: 5px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--red-primary);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--red-accent);
        }

        /* ============================================================
               BACKGROUND - MULTI LAYER
               ============================================================ */

        /* 1. Neural Canvas */
        #neuralCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        /* 2. Glow Orbs */
        .glow-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
            z-index: 0;
            animation: orbFloat 25s ease-in-out infinite alternate;
        }
        .glow-orb.orb1 {
            width: 700px;
            height: 700px;
            background: rgba(200, 0, 0, 0.05);
            top: -300px;
            left: -200px;
            animation-delay: 0s;
        }
        .glow-orb.orb2 {
            width: 500px;
            height: 500px;
            background: rgba(150, 0, 0, 0.04);
            bottom: -200px;
            right: -150px;
            animation-delay: -8s;
        }
        .glow-orb.orb3 {
            width: 400px;
            height: 400px;
            background: rgba(255, 0, 0, 0.03);
            top: 40%;
            left: 30%;
            animation-delay: -16s;
        }
        .glow-orb.orb4 {
            width: 300px;
            height: 300px;
            background: rgba(200, 0, 0, 0.03);
            top: 60%;
            right: 20%;
            animation-delay: -22s;
        }

        @keyframes orbFloat {
            0% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(120px, -80px) scale(1.1);
            }
            66% {
                transform: translate(-60px, 100px) scale(0.9);
            }
            100% {
                transform: translate(80px, 50px) scale(1.05);
            }
        }

        /* 3. Scan Line */
        .scan-line {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(0deg,
                    transparent,
                    transparent 3px,
                    rgba(200, 0, 0, 0.008) 3px,
                    rgba(200, 0, 0, 0.008) 6px);
            pointer-events: none;
            z-index: 0;
            animation: scanMove 12s linear infinite;
        }
        @keyframes scanMove {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(100%);
            }
        }

        /* 4. Animated Circuit Grid */
        .circuit-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.15;
            background-image:
                linear-gradient(rgba(200, 0, 0, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(200, 0, 0, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: gridPulse 8s ease-in-out infinite;
        }
        @keyframes gridPulse {
            0%,
            100% {
                opacity: 0.08;
            }
            50% {
                opacity: 0.2;
            }
        }

        /* 5. Floating Auth Logs */
        .auth-logs {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 0;
            pointer-events: none;
            opacity: 0.3;
            font-family: var(--font-mono);
            font-size: 0.6rem;
            color: var(--text-secondary);
            text-align: right;
            line-height: 1.8;
            animation: logsScroll 20s linear infinite;
        }
        .auth-logs span {
            display: block;
            opacity: 0;
            animation: logFade 2s ease-in-out infinite;
        }
        .auth-logs span:nth-child(1) {
            animation-delay: 0s;
        }
        .auth-logs span:nth-child(2) {
            animation-delay: 0.8s;
        }
        .auth-logs span:nth-child(3) {
            animation-delay: 1.6s;
        }
        .auth-logs span:nth-child(4) {
            animation-delay: 2.4s;
        }
        .auth-logs span:nth-child(5) {
            animation-delay: 3.2s;
        }
        .auth-logs span:nth-child(6) {
            animation-delay: 4.0s;
        }
        .auth-logs span:nth-child(7) {
            animation-delay: 4.8s;
        }
        .auth-logs span:nth-child(8) {
            animation-delay: 5.6s;
        }

        @keyframes logFade {
            0%,
            100% {
                opacity: 0;
                transform: translateX(20px);
            }
            10%,
            90% {
                opacity: 1;
                transform: translateX(0);
            }
        }
        @keyframes logsScroll {
            0% {
                transform: translateY(-50%);
            }
            100% {
                transform: translateY(50%);
            }
        }

        /* 6. Digital Rain Effect (subtle) */
        .digital-rain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.06;
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--red-accent);
            overflow: hidden;
        }
        .digital-rain .rain-column {
            display: inline-block;
            writing-mode: vertical-lr;
            animation: rainFall linear infinite;
            margin: 0 15px;
            letter-spacing: 8px;
        }
        .digital-rain .rain-column:nth-child(1) {
            animation-duration: 6s;
            animation-delay: 0s;
        }
        .digital-rain .rain-column:nth-child(2) {
            animation-duration: 8s;
            animation-delay: 1s;
        }
        .digital-rain .rain-column:nth-child(3) {
            animation-duration: 7s;
            animation-delay: 2s;
        }
        .digital-rain .rain-column:nth-child(4) {
            animation-duration: 9s;
            animation-delay: 0.5s;
        }
        .digital-rain .rain-column:nth-child(5) {
            animation-duration: 6.5s;
            animation-delay: 1.5s;
        }
        .digital-rain .rain-column:nth-child(6) {
            animation-duration: 7.5s;
            animation-delay: 2.5s;
        }
        .digital-rain .rain-column:nth-child(7) {
            animation-duration: 8.5s;
            animation-delay: 0.8s;
        }
        .digital-rain .rain-column:nth-child(8) {
            animation-duration: 6.8s;
            animation-delay: 1.8s;
        }

        @keyframes rainFall {
            0% {
                transform: translateY(-100%);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(100%);
                opacity: 0;
            }
        }

        /* 7. Glitch Overlay */
        .glitch-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            animation: glitchFlash 12s ease-in-out infinite;
            opacity: 0;
        }
        @keyframes glitchFlash {
            0%,
            85%,
            100% {
                opacity: 0;
            }
            86% {
                opacity: 0.03;
                background: rgba(255, 0, 0, 0.02);
                transform: translateX(-2px);
            }
            87% {
                opacity: 0;
                transform: translateX(2px);
            }
            88% {
                opacity: 0.02;
                background: rgba(255, 0, 0, 0.01);
                transform: translateX(-1px);
            }
            89% {
                opacity: 0;
                transform: translateX(0);
            }
        }

        /* ============================================================
               CONTINUOUS INFO TICKER (Bottom)
               ============================================================ */
        .info-ticker {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(5, 5, 5, 0.92);
            backdrop-filter: blur(20px);
            border-top: var(--border-neon);
            padding: 8px 0;
            z-index: 50;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 0;
        }
        .info-ticker .ticker-label {
            font-family: var(--font-display);
            font-size: 0.6rem;
            color: var(--red-accent);
            padding: 0 20px;
            white-space: nowrap;
            letter-spacing: 2px;
            font-weight: 700;
            border-right: var(--border-neon);
            flex-shrink: 0;
        }
        .info-ticker .ticker-track {
            display: flex;
            animation: tickerScroll 35s linear infinite;
            white-space: nowrap;
            gap: 50px;
            padding-left: 20px;
        }
        .info-ticker .ticker-item {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--text-secondary);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .info-ticker .ticker-item .dot {
            width: 4px;
            height: 4px;
            background: var(--red-accent);
            border-radius: 50%;
            display: inline-block;
            animation: blink 1s step-end infinite;
        }
        .info-ticker .ticker-item .highlight {
            color: var(--red-glow);
            font-weight: 600;
        }
        .info-ticker .ticker-item .green {
            color: #00ff88;
        }

        @keyframes tickerScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ============================================================
               GLOBAL LOADER
               ============================================================ */
        .global-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(10px);
            z-index: 99999;
            display: none;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 20px;
        }
        .global-loader.active {
            display: flex;
        }
        .global-loader .loader-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(200, 0, 0, 0.15);
            border-top: 4px solid var(--red-accent);
            border-right: 4px solid var(--red-accent);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        .global-loader .loader-text {
            font-family: var(--font-display);
            font-size: 0.8rem;
            letter-spacing: 4px;
            color: var(--text-secondary);
            text-transform: uppercase;
        }
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ============================================================
               NAVBAR
               ============================================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 14px 40px;
            background: rgba(5, 5, 5, 0.92);
            backdrop-filter: blur(30px);
            border-bottom: var(--border-neon);
            border-radius: 0 0 24px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            transition: var(--transition-smooth);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
        }
        .navbar.scrolled {
            background: rgba(7, 7, 7, 0.97);
            box-shadow: 0 18px 54px rgba(200, 0, 0, 0.12);
        }

        /* Status Bar (Top of Navbar) */
        .navbar-status {
            position: absolute;
            top: -28px;
            left: 0;
            width: 100%;
            padding: 4px 40px;
            background: rgba(5, 5, 5, 0.9);
            border-bottom: 1px solid rgba(200, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.55rem;
            font-family: var(--font-mono);
            color: var(--text-secondary);
            letter-spacing: 0.5px;
            z-index: 101;
        }
        .navbar-status .status-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .navbar-status .status-item .live-dot {
            width: 6px;
            height: 6px;
            background: #00ff88;
            border-radius: 50%;
            animation: blink 1s step-end infinite;
            box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
        }

        .navbar .brand {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 900;
            background: linear-gradient(135deg, #8B0000, #CC0000);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            flex-shrink: 0;
        }
        .navbar .brand .brand-logo {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            filter: drop-shadow(0 0 20px rgba(200, 0, 0, 0.4)) brightness(1.1) saturate(1.2);
            animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite;
            transition: all 0.3s ease;
        }
        .navbar .brand .brand-logo:hover {
            filter: drop-shadow(0 0 40px rgba(255, 26, 26, 0.8)) brightness(1.3) saturate(1.3);
            transform: scale(1.1);
        }
        @keyframes logoFloat {
            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-6px) rotate(-2deg);
            }
            75% {
                transform: translateY(6px) rotate(2deg);
            }
        }
        @keyframes logoGlow {
            0%,
            100% {
                filter: drop-shadow(0 0 20px rgba(200, 0, 0, 0.4)) brightness(1.1) saturate(1.2);
            }
            50% {
                filter: drop-shadow(0 0 40px rgba(255, 26, 26, 0.6)) brightness(1.2) saturate(1.3);
            }
        }
        .navbar .brand .brand-icon {
            -webkit-text-fill-color: initial;
            font-size: 1.6rem;
            color: var(--red-accent);
            filter: drop-shadow(0 0 30px rgba(200, 0, 0, 0.3));
            animation: brandPulse 3s ease-in-out infinite;
        }
        @keyframes brandPulse {
            0%,
            100% {
                transform: scale(1) rotate(0deg);
            }
            50% {
                transform: scale(1.08) rotate(5deg);
            }
        }

        /* Shining Wave Effect */
        @keyframes shiningWave {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        .brand-wave-effect {
            background: linear-gradient(90deg,
                    rgba(255, 255, 255, 0.9) 0%,
                    rgba(255, 26, 26, 1) 15%,
                    rgba(255, 255, 255, 0.9) 30%,
                    rgba(255, 26, 26, 1) 50%,
                    rgba(255, 255, 255, 0.9) 70%,
                    rgba(255, 26, 26, 1) 85%,
                    rgba(255, 255, 255, 0.9) 100%);
            background-size: 200% 100%;
            animation: shiningWave 10s linear infinite;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Loading Spinner */
        .loading-spinner {
            display: inline-block;
            width: 24px;
            height: 24px;
            border: 2px solid rgba(200, 0, 0, 0.3);
            border-top: 2px solid var(--red-accent);
            border-right: 2px solid var(--red-accent);
            border-radius: 50%;
            animation: spinnerRotate 0.8s linear infinite;
            margin-left: 12px;
        }

        @keyframes spinnerRotate {
            to {
                transform: rotate(360deg);
            }
        }

        .navbar .brand .version {
            font-size: 0.5rem;
            -webkit-text-fill-color: var(--text-secondary);
            background: var(--border-neon);
            padding: 2px 8px;
            border-radius: 50px;
            letter-spacing: 1px;
            opacity: 0.5;
            font-family: var(--font-mono);
        }

        .navbar .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            flex-wrap: wrap;
        }
        .navbar .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.75rem;
            padding: 6px 14px;
            border-radius: 50px;
            transition: var(--transition-smooth);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
        }
        .navbar .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--red-accent);
            transition: width 0.3s ease;
            box-shadow: 0 0 20px rgba(200, 0, 0, 0.3);
        }
        .navbar .nav-links a:hover::after {
            width: 60%;
        }
        .navbar .nav-links a:hover {
            color: var(--text-primary);
            text-shadow: 0 0 30px rgba(200, 0, 0, 0.15);
            transform: translateY(-1px);
            background: rgba(255, 255, 255, 0.04);
        }
        .navbar .nav-links a.active {
            color: var(--text-primary);
            background: linear-gradient(135deg, rgba(200, 0, 0, 0.16), rgba(255, 26, 26, 0.1));
            box-shadow: inset 0 0 0 1px rgba(255, 26, 26, 0.25), 0 0 24px rgba(255, 26, 26, 0.12);
            transform: translateY(-1px);
        }

        .navbar .nav-links a.active::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.12) 45%, transparent 100%);
            transform: translateX(-120%);
            animation: activeSweep 2.4s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes activeSweep {
            0% { transform: translateX(-120%); }
            100% { transform: translateX(120%); }
        }

        .navbar .nav-links .login-btn {
            background: linear-gradient(135deg, var(--red-primary), var(--red-accent));
            color: #fff !important;
            padding: 8px 22px;
            border-radius: 50px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.7rem;
            letter-spacing: 1.5px;
            box-shadow: 0 0 30px rgba(200, 0, 0, 0.15);
            border: none;
        }
        .navbar .nav-links .login-btn::after {
            display: none;
        }
        .navbar .nav-links .login-btn:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 0 50px rgba(200, 0, 0, 0.4);
            color: #fff !important;
        }

        .navbar .nav-links .logout-btn {
            background: linear-gradient(135deg, rgba(200, 0, 0, 0.2), rgba(200, 0, 0, 0.1));
            color: var(--red-accent) !important;
            border: 1px solid rgba(200, 0, 0, 0.3) !important;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.65rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .navbar .nav-links .logout-btn::after {
            display: none;
        }
        .navbar .nav-links .logout-btn:hover {
            background: linear-gradient(135deg, rgba(200, 0, 0, 0.35), rgba(200, 0, 0, 0.25));
            border-color: var(--red-accent) !important;
            color: var(--red-glow) !important;
        }

        .navbar .nav-links .store-btn {
            color: var(--text-primary) !important;
            background: transparent;
        }
        .navbar .nav-links .store-btn:hover {
            color: var(--text-primary) !important;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
        }
        .navbar .nav-links a.active.store-btn {
            color: var(--text-primary) !important;
            background: rgba(255, 255, 255, 0.05);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
        }

        .nav-toggle {
            display: none;
            background: transparent;
            border: var(--border-neon);
            color: var(--text-primary);
            font-size: 1.2rem;
            padding: 6px 12px;
            border-radius: 10px;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .nav-toggle:hover {
            border-color: var(--red-accent);
            box-shadow: 0 0 30px rgba(200, 0, 0, 0.15);
        }

        /* ============================================================
               PAGE CONTAINER
               ============================================================ */
        .page-container {
            position: relative;
            z-index: 2;
            padding-top: 80px;
            min-height: 100vh;
        }

        .page-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            z-index: 140;
            pointer-events: none;
        }

        .page-progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--red-primary), var(--red-glow), #ff6b6b);
            box-shadow: 0 0 16px rgba(255, 26, 26, 0.45);
            transition: width 0.15s ease-out;
        }

        .page-load-overlay {
            position: fixed;
            inset: 0;
            background: rgba(2, 2, 2, 0.92);
            display: grid;
            place-items: center;
            z-index: 200;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .page-load-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .page-load-ring {
            width: 74px;
            height: 74px;
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.1);
            border-top-color: var(--red-accent);
            border-right-color: var(--red-glow);
            animation: pageSpin 0.9s linear infinite;
            box-shadow: 0 0 30px rgba(255, 26, 26, 0.25);
        }

        @keyframes pageSpin {
            to { transform: rotate(360deg); }
        }

        /* ============================================================
               HERO SECTION
               ============================================================ */
        .hero {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: calc(100vh - 160px);
            text-align: center;
            padding: 40px 24px 80px;
            position: relative;
        }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        .hero .badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(200, 0, 0, 0.08);
            border: var(--border-neon);
            padding: 6px 20px;
            border-radius: 50px;
            font-family: var(--font-mono);
            font-size: 0.65rem;
            color: var(--text-secondary);
            letter-spacing: 2px;
            margin-bottom: 24px;
            animation: fadeInDown 0.8s ease, bounceIn 1s ease-out 0.2s;
        }
        .hero .badge .blink-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
            animation: blink 1s step-end infinite, pulseWave 1.5s ease-out infinite;
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: 5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #8B0000, #CC0000, #FF1a1a, #CC0000, #8B0000);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 5s ease-in-out infinite, slideInDown 0.8s ease;
            max-width: 900px;
        }
        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .hero .sub-headline {
            font-family: var(--font-body);
            font-size: 1.18rem;
            color: var(--text-secondary);
            max-width: 720px;
            margin-bottom: 28px;
            line-height: 1.75;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .page-para {
            max-width: 760px;
            margin: 0 auto 24px;
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
            text-align: center;
        }

        .page-highlight {
            color: var(--red-glow);
            font-weight: 600;
        }

        .hero-trust {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 8px;
            animation: fadeInUp 1s ease 0.35s both;
        }

        .hero-trust span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 26, 26, 0.16);
            color: var(--text-secondary);
            font-size: 0.8rem;
            letter-spacing: 0.8px;
            font-family: var(--font-mono);
        }

        .hero-trust span i {
            color: var(--red-accent);
        }
        .hero .sub-headline .highlight {
            color: var(--red-glow);
            font-weight: 600;
        }

        .hero .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInUp 1s ease 0.3s both;
        }
        .btn-primary-hero {
            background: linear-gradient(135deg, var(--red-primary), var(--red-accent));
            color: #fff;
            border: none;
            padding: 14px 36px;
            border-radius: 50px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: 0 0 40px rgba(200, 0, 0, 0.2);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            animation: slideInUp 0.8s ease-out;
        }
        .btn-primary-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: shimmerSlide 3s infinite;
        }
        @keyframes shimmerSlide {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }
        .btn-primary-hero:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 0 70px rgba(200, 0, 0, 0.5);
            filter: brightness(1.05);
        }
        .btn-primary-hero:active {
            transform: translateY(-1px) scale(1.02);
        }
        .btn-secondary-hero {
            background: transparent;
            color: var(--text-primary);
            border: var(--border-neon);
            padding: 14px 36px;
            border-radius: 50px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: var(--transition-smooth);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            animation: slideInUp 0.9s ease-out;
            animation-delay: 0.1s;
        }
        .btn-secondary-hero:hover {
            background: rgba(200, 0, 0, 0.1);
            border-color: var(--red-accent);
            box-shadow: 0 0 40px rgba(200, 0, 0, 0.2);
            transform: translateY(-3px) scale(1.05);
        }

        /* ============================================================
               FEATURES SECTION
               ============================================================ */
        .features-section {
            padding: 60px 24px 80px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        .features-section .section-label {
            font-family: var(--font-display);
            font-size: 0.65rem;
            color: var(--red-accent);
            letter-spacing: 4px;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 6px;
            opacity: 0.6;
        }
        .features-section .section-title {
            font-family: var(--font-display);
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 40px;
        }
        .features-section .section-title .accent {
            color: var(--red-accent);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        .feature-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: var(--border-neon);
            border-radius: 20px;
            padding: 30px 28px;
            text-align: center;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-neon);
            position: relative;
            overflow: hidden;
            animation: slideInUp 0.6s ease-out both;
        }
        .feature-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        .feature-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        .feature-card:nth-child(3) {
            animation-delay: 0.3s;
        }
        .feature-card:nth-child(4) {
            animation-delay: 0.4s;
        }
        .feature-card:nth-child(5) {
            animation-delay: 0.5s;
        }
        .feature-card:nth-child(6) {
            animation-delay: 0.6s;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(200, 0, 0, 0.04), transparent, rgba(200, 0, 0, 0.04),
                    transparent);
            animation: borderRotate 12s linear infinite;
            z-index: -1;
        }
        @keyframes borderRotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        .feature-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 18px 50px rgba(200, 0, 0, 0.18);
            border-color: rgba(200, 0, 0, 0.4);
            background: linear-gradient(135deg, rgba(20, 8, 8, 0.96), rgba(34, 10, 10, 0.92));
            animation: pulseGlow 1.5s ease-in-out infinite;
        }
        .feature-card .feature-icon {
            font-size: 2.4rem;
            margin-bottom: 12px;
            display: block;
            color: var(--red-accent);
            animation: iconPulseGlow 3s ease-in-out infinite;
            transition: all 0.3s ease;
        }
        .feature-card:hover .feature-icon {
            animation: iconHoverShimmer 1.2s ease-in-out infinite;
            color: var(--red-glow);
            filter: drop-shadow(0 0 26px rgba(255, 26, 26, 0.75));
            transform: scale(1.08);
        }
        .feature-card h3 {
            font-family: var(--font-display);
            font-size: 1rem;
            margin-bottom: 8px;
        }
        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* ============================================================
               CONTACT SECTION
               ============================================================ */
        .contact-section {
            padding: 60px 24px 80px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        .contact-section .section-label {
            font-family: var(--font-display);
            font-size: 0.65rem;
            color: var(--red-accent);
            letter-spacing: 4px;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 6px;
            opacity: 0.6;
        }
        .contact-section .section-title {
            font-family: var(--font-display);
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 40px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }
        .contact-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: var(--border-neon);
            border-radius: 20px;
            padding: 30px 28px;
            text-align: center;
            transition: var(--transition-smooth);
            box-shadow: var(--shadow-neon);
            animation: slideInUp 0.6s ease-out both;
        }
        .contact-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        .contact-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        .contact-card:nth-child(3) {
            animation-delay: 0.3s;
        }
        .contact-card:nth-child(4) {
            animation-delay: 0.4s;
        }
        .contact-card:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: var(--shadow-glow);
            border-color: rgba(200, 0, 0, 0.4);
            animation: pulseGlow 1.5s ease-in-out infinite;
        }
        .contact-card .contact-icon {
            font-size: 2.2rem;
            margin-bottom: 10px;
            display: block;
            color: var(--red-accent);
            animation: iconPulseGlow 3s ease-in-out infinite;
            transition: all 0.3s ease;
        }
        .contact-card:hover .contact-icon {
            animation: iconHoverShimmer 1.2s ease-in-out infinite;
            filter: drop-shadow(0 0 28px rgba(255, 26, 26, 0.7));
            transform: scale(1.05);
        }
        .contact-card h3 {
            font-family: var(--font-display);
            font-size: 0.9rem;
            margin-bottom: 4px;
        }
        .contact-card p {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }
        .contact-card a {
            color: var(--red-accent);
            text-decoration: none;
            transition: color 0.3s;
        }
        .contact-card a:hover {
            color: var(--red-glow);
            text-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
            animation: neonFlicker 0.3s ease;
        }

        /* ============================================================
               FEEDBACKS SECTION
               ============================================================ */
        .feedbacks-section {
            padding: 60px 24px 100px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }
        .feedbacks-section .section-label {
            font-family: var(--font-display);
            font-size: 0.65rem;
            color: var(--red-accent);
            letter-spacing: 4px;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 6px;
            opacity: 0.6;
        }
        .feedbacks-section .section-title {
            font-family: var(--font-display);
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 32px;
        }
        .feedbacks-section .section-title .accent {
            color: var(--red-accent);
        }

        .feedback-marquee {
            overflow: hidden;
            position: relative;
            width: 100%;
            padding: 20px 0;
        }
        .feedback-marquee::before,
        .feedback-marquee::after {
            content: '';
            position: absolute;
            top: 0;
            width: 80px;
            height: 100%;
            z-index: 3;
            pointer-events: none;
        }
        .feedback-marquee::before {
            left: 0;
            background: linear-gradient(90deg, var(--bg-primary), transparent);
        }
        .feedback-marquee::after {
            right: 0;
            background: linear-gradient(270deg, var(--bg-primary), transparent);
        }

        .feedback-track {
            display: flex;
            gap: 20px;
            animation: marqueeScroll 45s linear infinite;
            width: max-content;
        }
        .feedback-track:hover {
            animation-play-state: paused;
        }

        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .feedback-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: var(--border-neon);
            border-radius: 20px;
            padding: 22px 26px;
            min-width: 300px;
            max-width: 340px;
            transition: var(--transition-smooth);
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            animation: slideInUp 0.5s ease-out;
        }
        .feedback-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--red-accent), transparent);
            animation: scanLine 3s linear infinite;
        }
        @keyframes scanLine {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulseGlow {
            0%,
            100% {
                box-shadow: 0 0 20px rgba(200, 0, 0, 0.1);
            }
            50% {
                box-shadow: 0 0 40px rgba(200, 0, 0, 0.25);
            }
        }

        @keyframes float {
            0%,
            100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }
        .feedback-card:hover {
            transform: translateY(-6px) scale(1.03) rotateX(2deg);
            box-shadow: var(--shadow-glow);
            border-color: rgba(200, 0, 0, 0.5);
            animation: pulseGlow 1.5s ease-in-out infinite;
        }
        .feedback-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(200, 0, 0, 0.1) 0%, transparent 80%);
            opacity: 0;
            pointer-events: none;
            border-radius: 20px;
            transition: opacity 0.3s ease;
        }
        .feedback-card:hover::after {
            opacity: 1;
        }
        .feedback-card .feedback-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .feedback-card .feedback-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--red-primary), var(--red-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 0 30px rgba(200, 0, 0, 0.15);
            border: 2px solid var(--red-accent);
            font-family: var(--font-display);
            animation: float 3s ease-in-out infinite;
            transition: all 0.3s ease;
        }
        .feedback-card:hover .feedback-avatar {
            animation: scaleBounce 0.8s ease-in-out infinite;
            box-shadow: 0 0 40px rgba(255, 26, 26, 0.4);
        }
        .feedback-card .feedback-user {
            flex: 1;
        }
        .feedback-card .feedback-user .name {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-primary);
        }
        .feedback-card .feedback-user .role {
            font-size: 0.7rem;
            color: var(--text-secondary);
            opacity: 0.6;
        }
        .feedback-card .feedback-stars {
            color: #ffd700;
            font-size: 0.85rem;
            letter-spacing: 2px;
        }
        .feedback-card .feedback-stars .empty {
            color: rgba(255, 255, 255, 0.08);
        }
        .feedback-card .feedback-text {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.5;
            font-style: italic;
        }

        /* ============================================================
               LOGIN PAGE
               ============================================================ */
        #loginPage {
            display: none;
            justify-content: center;
            align-items: center;
            min-height: calc(100vh - 80px);
            padding: 40px 20px;
            position: relative;
            z-index: 2;
            padding-top: 100px;
        }
        #loginPage.active {
            display: flex;
        }

        .login-container {
            max-width: 460px;
            width: 100%;
            position: relative;
            animation: loginCardRise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
        }
        .login-container::before,
        .login-container::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(20px);
            pointer-events: none;
            z-index: 0;
        }
        .login-container::before {
            width: 220px;
            height: 220px;
            top: -70px;
            left: -70px;
            background: rgba(255, 26, 26, 0.16);
            animation: floatOrb 8s ease-in-out infinite;
        }
        .login-container::after {
            width: 180px;
            height: 180px;
            bottom: -60px;
            right: -60px;
            background: rgba(255, 80, 80, 0.12);
            animation: floatOrb 10s ease-in-out infinite reverse;
        }
        .login-container .login-header {
            text-align: center;
            margin-bottom: 1.7rem;
            position: relative;
            z-index: 2;
        }
        .login-container .login-header h2 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            background: linear-gradient(135deg, #8B0000, #CC0000, #FF5A5A);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            text-shadow: 0 0 24px rgba(255, 26, 26, 0.16);
        }
        .login-container .login-header p {
            color: var(--text-secondary);
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            opacity: 0.7;
            margin-top: 8px;
        }

        .glass {
            background: linear-gradient(145deg, rgba(14, 7, 7, 0.95), rgba(28, 8, 8, 0.92));
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border: var(--border-neon);
            border-radius: 24px;
            box-shadow: 0 0 80px rgba(200, 0, 0, 0.16);
            padding: 2.2rem;
            position: relative;
            z-index: 2;
            overflow: hidden;
            transition: var(--transition-smooth);
            transform: translateY(0);
        }
        .glass:hover {
            transform: translateY(-4px) scale(1.01);
            box-shadow: 0 0 100px rgba(255, 26, 26, 0.24);
        }
        .glass::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.10) 35%, transparent 70%);
            transform: translateX(-140%);
            transition: transform 0.8s ease;
            z-index: 0;
            pointer-events: none;
        }
        .glass::after {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            border: 1px solid rgba(255, 26, 26, 0.22);
            opacity: 0;
            transition: opacity 0.35s ease, transform 0.35s ease;
            z-index: 1;
            pointer-events: none;
            transform: scale(1.01);
        }
        .glass:hover::before {
            transform: translateX(140%);
        }
        .glass:hover::after {
            opacity: 1;
        }

        .login-status-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 1.2rem;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 26, 26, 0.16);
            color: var(--text-secondary);
            font-size: 0.72rem;
            letter-spacing: 1.2px;
            font-family: var(--font-mono);
            animation: fadeInUp 0.8s ease both;
        }
        .login-status-pill i {
            color: var(--red-accent);
        }

        .input-cyber {
            position: relative;
            margin-bottom: 1.2rem;
            animation: fadeInUp 0.7s ease both;
        }
        .input-cyber input {
            width: 100%;
            padding: 15px 48px 15px 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 0.95rem;
            transition: var(--transition-smooth);
            outline: none;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.01);
        }
        .input-cyber input:focus {
            border-color: rgba(255, 26, 26, 0.6);
            box-shadow: 0 0 40px rgba(255, 26, 26, 0.14), inset 0 0 30px rgba(255, 26, 26, 0.04);
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-1px);
        }
        .input-cyber input::placeholder {
            color: var(--text-secondary);
            font-family: var(--font-body);
            letter-spacing: 1px;
            font-size: 0.85rem;
        }
        .input-cyber .input-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
            cursor: pointer;
            transition: color 0.3s;
        }
        .input-cyber .input-icon:hover {
            color: var(--red-glow);
        }

        .login-form .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 0.6rem 0 1.4rem;
            font-size: 0.75rem;
            color: var(--text-secondary);
        }
        .login-form .form-options label {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }
        .login-form .form-options input[type="checkbox"] {
            accent-color: var(--red-accent);
            width: 15px;
            height: 15px;
            cursor: pointer;
        }
        .login-form .form-options a {
            color: var(--red-accent);
            text-decoration: none;
            transition: var(--transition-smooth);
            font-weight: 600;
        }
        .login-form .form-options a:hover {
            color: var(--red-glow);
            text-shadow: 0 0 20px rgba(255, 26, 26, 0.3);
        }

        .login-type-toggle {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 1.2rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.75s ease both;
        }
        .login-type-toggle label {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            cursor: pointer;
            transition: var(--transition-smooth);
            color: var(--text-secondary);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: rgba(255, 255, 255, 0.02);
        }
        .login-type-toggle input[type="radio"] {
            accent-color: var(--red-accent);
            width: 16px;
            height: 16px;
            cursor: pointer;
        }
        .login-type-toggle label:hover {
            border-color: rgba(255, 26, 26, 0.35);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 0 24px rgba(255, 26, 26, 0.12);
        }

        .btn-neon {
            background: linear-gradient(135deg, var(--red-primary), var(--red-accent));
            color: #fff;
            border: none;
            padding: 14px 28px;
            border-radius: 50px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.8rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            text-transform: uppercase;
            letter-spacing: 2px;
            width: 100%;
            box-shadow: 0 0 30px rgba(200, 0, 0, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }
        .btn-neon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
            transition: left 0.7s ease;
        }
        .btn-neon:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 0 50px rgba(200, 0, 0, 0.4);
        }
        .btn-neon:hover::before {
            left: 100%;
        }
        .btn-neon:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
        }

        .login-footer {
            text-align: center;
            margin-top: 1.4rem;
            color: var(--text-secondary);
            font-size: 0.65rem;
            opacity: 0.55;
            letter-spacing: 2px;
            font-family: var(--font-mono);
        }

        @keyframes loginCardRise {
            from {
                opacity: 0;
                transform: translateY(16px) scale(0.98);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes floatOrb {
            0%,
            100% {
                transform: translate3d(0, 0, 0) scale(1);
            }
            50% {
                transform: translate3d(18px, -16px, 0) scale(1.06);
            }
        }

        body.store-page {
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
        }

        .navbar.store-navbar {
            position: sticky;
            top: 0;
            backdrop-filter: blur(18px);
            background: rgba(5, 5, 5, 0.82);
            border-bottom: 1px solid rgba(200, 0, 0, 0.16);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
        }

        .navbar .brand-mark {
            display: grid;
            place-items: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 26, 26, 0.12);
            color: var(--red-glow);
            margin-right: 10px;
            box-shadow: inset 0 0 0 1px rgba(255, 26, 26, 0.22);
        }

        .store-main {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            margin: 0 auto;
            padding: 110px 24px 48px;
        }

        .store-hero {
            text-align: center;
            padding: 18px 0 40px;
        }

        .store-hero .badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(200, 0, 0, 0.08);
            border: var(--border-neon);
            padding: 8px 20px;
            border-radius: 50px;
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--text-secondary);
            letter-spacing: 2px;
            margin-bottom: 24px;
        }

        .store-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.3rem, 5vw, 3.8rem);
            margin-bottom: 14px;
            color: var(--text-primary);
        }

        .store-hero p {
            max-width: 760px;
            margin: 0 auto 26px;
            color: var(--text-secondary);
            font-size: 1.08rem;
            line-height: 1.7;
        }

        .hero-actions {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            max-width: 760px;
            margin: 0 auto;
        }

        .metric-card {
            padding: 16px 18px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .metric-card strong {
            display: block;
            font-family: var(--font-display);
            font-size: 1rem;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .metric-card span {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .store-toolbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 22px;
            margin: 8px 0 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            background: rgba(10, 5, 5, 0.72);
            backdrop-filter: blur(12px);
        }

        .toolbar-eyebrow {
            color: var(--red-accent);
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: var(--font-mono);
            margin-bottom: 6px;
        }

        .store-toolbar h2 {
            font-family: var(--font-display);
            font-size: 1.2rem;
        }

        .toolbar-pills {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .pill {
            padding: 8px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-size: 0.86rem;
            background: rgba(255, 255, 255, 0.03);
        }

        .pill.active {
            color: white;
            border-color: rgba(255, 26, 26, 0.32);
            background: linear-gradient(135deg, rgba(255, 26, 26, 0.2), rgba(200, 0, 0, 0.16));
        }

        .store-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        .product-card {
            position: relative;
            display: flex;
            flex-direction: column;
            background: linear-gradient(145deg, rgba(15, 6, 6, 0.98), rgba(30, 8, 8, 0.92));
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
            box-shadow: 0 20px 42px rgba(0, 0, 0, 0.25);
            will-change: transform, box-shadow;
            opacity: 0;
            transform: translateY(24px) scale(0.98);
        }

        .product-card.reveal.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .product-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 35%, transparent 70%);
            transform: translateX(-120%);
            transition: transform 0.8s ease;
            pointer-events: none;
        }

        .product-card:hover {
            border-color: rgba(255, 26, 26, 0.42);
            box-shadow: 0 24px 60px rgba(200, 0, 0, 0.22);
            transform: translateY(-8px) scale(1.01);
        }

        .product-card:hover::before {
            transform: translateX(120%);
        }

        .product-card.featured {
            border-color: rgba(255, 26, 26, 0.46);
            box-shadow: 0 26px 70px rgba(200, 0, 0, 0.22);
        }

        .product-stock {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 6px 10px;
            border-radius: 999px;
            background: linear-gradient(135deg, #00ff88, #00cc6f);
            color: #000;
            font-size: 0.65rem;
            font-family: var(--font-display);
            font-weight: 700;
            letter-spacing: 1px;
            z-index: 10;
        }

        .product-card.featured .product-stock {
            background: linear-gradient(135deg, #ff006e, #ff0080);
            color: #fff;
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, rgba(200, 0, 0, 0.12), rgba(100, 0, 0, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 10px;
        }

        .product-image::before {
            content: '';
            position: absolute;
            inset: 10px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.11);
            pointer-events: none;
        }

        .product-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: transform 0.45s ease, filter 0.45s ease;
        }

        .product-card:hover .product-thumb {
            transform: scale(1.03);
            filter: brightness(1.08) contrast(1.04);
        }

        .product-body {
            padding: 16px 16px 18px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }

        .product-card h3 {
            font-size: 1.08rem;
            color: var(--text-primary);
            font-family: var(--font-display);
        }

        .product-features {
            color: var(--text-secondary);
            font-size: 0.82rem;
            line-height: 1.5;
            min-height: 44px;
        }

        .product-features i {
            color: var(--red-accent);
            margin-right: 4px;
        }

        .product-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            font-family: var(--font-display);
        }

        .product-price-alt {
            color: var(--text-secondary);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .product-meta {
            color: var(--text-secondary);
            font-size: 0.75rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: var(--font-mono);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .product-card .plan-btn {
            margin-top: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            text-decoration: none;
            padding: 12px 14px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--red-accent), var(--red-primary));
            color: white;
            font-family: var(--font-display);
            font-weight: 700;
            letter-spacing: 1px;
            box-shadow: 0 10px 24px rgba(255, 26, 26, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card .plan-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 30px rgba(255, 26, 26, 0.28);
        }

        .store-benefits {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
            margin-top: 36px;
        }

        .benefit-card {
            background: rgba(10, 5, 5, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 22px;
        }

        .benefit-card i {
            font-size: 1.35rem;
            color: var(--red-accent);
            margin-bottom: 10px;
        }

        .benefit-card h3 {
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .benefit-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .store-footer {
            position: relative;
            z-index: 2;
            margin-top: 60px;
            padding: 40px 24px 24px;
            background: rgba(3, 3, 3, 0.92);
            border-top: 1px solid rgba(200, 0, 0, 0.16);
        }

        .footer-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 24px;
        }

        .store-footer h4 {
            font-family: var(--font-display);
            margin-bottom: 12px;
            color: var(--text-primary);
            font-size: 0.95rem;
            letter-spacing: 1px;
        }

        .store-footer p,
        .store-footer li,
        .store-footer a {
            color: var(--text-secondary);
            text-decoration: none;
            line-height: 1.8;
        }

        .store-footer ul {
            list-style: none;
        }

        .store-footer a:hover {
            color: var(--red-glow);
        }

        .footer-bottom {
            max-width: 1280px;
            margin: 24px auto 0;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            color: var(--text-muted);
            font-size: 0.92rem;
        }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 900px) {
            .store-toolbar,
            .hero-metrics,
            .store-benefits,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .store-toolbar {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-metrics {
                display: grid;
            }
        }

        @media (max-width: 640px) {
            .store-main {
                padding: 92px 16px 36px;
            }

            .store-hero h1 {
                font-size: 2.1rem;
            }

            .hero-actions {
                flex-direction: column;
            }

            .btn-primary-hero,
            .btn-secondary-hero {
                width: 100%;
                justify-content: center;
            }
        }

        .spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 0.7s linear infinite;
            vertical-align: middle;
        }
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ============================================================
               DASHBOARD
               ============================================================ */
        #dashboardPage {
            display: none;
            min-height: calc(100vh - 80px);
            padding: 40px 24px 100px;
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            padding-top: 40px;
        }
        #dashboardPage.active {
            display: block;
        }

        /* ============================================================
               APPLICATION DETAILS PAGE
               ============================================================ */
        #appDetailsPage {
            display: none;
            min-height: calc(100vh - 80px);
            padding: 40px 24px 100px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            padding-top: 40px;
        }
        #appDetailsPage.active {
            display: block;
        }

        #resellerDashboardPage {
            display: none;
            min-height: calc(100vh - 80px);
            padding: 40px 24px 100px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            padding-top: 40px;
        }
        #resellerDashboardPage.active {
            display: block;
        }

        .reseller-management-section {
            background:
                radial-gradient(circle at top left, rgba(255, 26, 26, 0.12), transparent 28%),
                rgba(10, 5, 5, 0.82);
            border: 1px solid rgba(255, 26, 26, 0.24);
            border-radius: 24px;
            padding: 24px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 70px rgba(0, 0, 0, 0.28);
            margin-top: 32px;
        }

        .reseller-management-grid {
            display: grid;
            grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
            gap: 24px;
            margin-top: 20px;
            align-items: start;
        }

        .reseller-form-box,
        .reseller-table-box {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
            backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 26, 26, 0.2);
            border-radius: 20px;
            padding: 22px;
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .reseller-form-box {
            position: sticky;
            top: 92px;
        }

        .reseller-form-box .box-header,
        .reseller-table-box .table-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .reseller-form-box .box-header h3,
        .reseller-table-box .table-header h3 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            color: var(--red-accent);
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .reseller-table-box .reseller-count {
            color: var(--text-secondary);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 6px 10px;
            border: 1px solid rgba(255, 26, 26, 0.16);
            border-radius: 999px;
            background: rgba(255, 26, 26, 0.08);
        }

        .create-reseller-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .create-reseller-form .input-cyber {
            margin-bottom: 0;
        }

        .create-reseller-form .input-cyber input,
        .create-reseller-form .input-cyber select {
            padding: 12px 14px;
            font-size: 0.9rem;
        }

        .permission-toggle-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 4px 0 2px;
        }

        .permission-toggle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255, 26, 26, 0.16);
            background: rgba(255, 255, 255, 0.03);
            color: var(--text-secondary);
            font-size: 0.73rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            font-weight: 600;
        }

        .permission-toggle input {
            accent-color: var(--red-accent);
            width: 15px;
            height: 15px;
            cursor: pointer;
        }

        .table-scroll {
            overflow-x: auto;
            overflow-y: auto;
            border-radius: 14px;
        }

        .reseller-table-box .table-scroll {
            max-height: 420px;
        }

        .reseller-table-box .users-table {
            width: 100%;
            min-width: 760px;
            border-collapse: collapse;
        }

        .reseller-table-box .users-table thead {
            background: linear-gradient(90deg, rgba(255, 26, 26, 0.16), rgba(255, 26, 26, 0.08), rgba(255, 26, 26, 0.16));
            background-size: 200% 100%;
            animation: resellerTableShine 4s linear infinite;
        }

        .reseller-table-box .users-table th,
        .reseller-table-box .users-table td {
            padding: 12px 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            white-space: nowrap;
            font-size: 0.8rem;
        }

        .reseller-table-box .users-table th {
            color: var(--red-accent);
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
            text-align: left;
        }

        .reseller-table-box .users-table tbody tr {
            transition: all 0.25s ease;
        }

        .reseller-table-box .users-table tbody tr:hover {
            background: rgba(255, 26, 26, 0.06);
            transform: translateX(2px);
        }

        .reseller-table-box .users-table td:last-child {
            min-width: 220px;
        }

        .reseller-table-box .users-table td:last-child .action-buttons {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .reseller-table-box .users-table td:last-child button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 7px 10px;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            font-size: 0.66rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            transition: all 0.25s ease;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
        }

        .reseller-table-box .users-table td:last-child button:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
        }

        .project-checkbox-list {
            display: grid;
            gap: 10px;
            max-height: 220px;
            overflow-y: auto;
            padding: 12px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .project-checkbox-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            border-radius: 14px;
            border: 1px solid rgba(255, 26, 26, 0.14);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-primary);
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .project-checkbox-item:hover {
            border-color: rgba(255, 26, 26, 0.25);
            background: rgba(255, 255, 255, 0.08);
        }

        .project-checkbox-item input {
            accent-color: var(--red-accent);
            width: 16px;
            height: 16px;
            cursor: pointer;
        }

        .project-checkbox-item span {
            font-size: 0.85rem;
            color: var(--text-primary);
        }

        .reseller-guide {
            margin: 24px 0;
            padding: 18px 22px;
            background: rgba(255, 0, 64, 0.05);
            border: 1px solid rgba(255, 0, 64, 0.12);
            border-radius: 16px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .reseller-performance-card {
            margin: 0 0 24px;
            padding: 20px 22px;
            border: 1px solid rgba(255, 26, 26, 0.2);
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(255, 26, 26, 0.08), rgba(255, 255, 255, 0.03));
            box-shadow: inset 0 0 18px rgba(255, 26, 26, 0.05);
        }

        .performance-header h3 {
            margin: 0 0 16px;
            font-family: var(--font-display);
            font-size: 0.95rem;
            color: var(--red-accent);
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .performance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 12px;
        }

        .performance-item {
            padding: 14px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .performance-label {
            color: var(--text-secondary);
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .performance-value {
            color: var(--text-primary);
            font-size: 1.15rem;
            font-weight: 700;
        }

        @keyframes resellerTableShine {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .reseller-stats {
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            margin-bottom: 28px;
        }

        .reseller-app-card {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 14px;
            padding: 20px;
            min-height: 220px;
            background: rgba(10, 5, 5, 0.8);
            border: 1px solid rgba(200, 0, 0, 0.18);
            border-radius: 18px;
            box-shadow: 0 20px 60px rgba(200, 0, 0, 0.12);
            transition: var(--transition-smooth);
        }

        .reseller-app-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 26, 26, 0.4);
        }

        .reseller-app-card .btn-open {
            width: 100%;
            margin-top: auto;
            padding: 12px 16px;
            border-radius: 14px;
            border: none;
            background: linear-gradient(135deg, rgba(255, 0, 64, 0.95), rgba(255, 64, 110, 0.95));
            color: #fff;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
            box-shadow: 0 10px 30px rgba(255, 0, 64, 0.18);
        }

        .reseller-app-card .btn-open:hover {
            transform: translateY(-2px);
            filter: brightness(1.05);
            box-shadow: 0 14px 40px rgba(255, 0, 64, 0.22);
        }

        .reseller-app-card .app-name {
            font-size: 1rem;
        }

        .reseller-project-details {
            margin-top: 32px;
            padding: 24px;
            background: rgba(10, 5, 5, 0.72);
            border: 1px solid rgba(255, 26, 26, 0.18);
            border-radius: 22px;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.22);
        }

        .project-details-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .project-details-header h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            color: var(--red-accent);
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .project-details-header .project-status {
            color: var(--text-secondary);
            font-size: 0.82rem;
            margin: 4px 0 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-close-section {
            background: rgba(200, 0, 0, 0.1);
            border: var(--border-neon);
            color: var(--text-primary);
            padding: 10px 18px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-close-section:hover {
            background: rgba(200, 0, 0, 0.18);
            border-color: var(--red-accent);
        }

        .reseller-project-details .project-management-wrapper {
            display: block;
            width: 100%;
        }

        .reseller-project-details .project-add-user-box {
            display: none;
        }

        .reseller-project-details .project-users-table-box {
            width: 100%;
        }

        .project-add-user-box,
        .project-users-table-box {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: var(--border-neon);
            border-radius: 18px;
            padding: 22px;
            box-shadow: var(--shadow-neon);
        }

        .project-add-user-box {
            max-width: 100%;
        }

        .project-add-user-box .box-header,
        .project-users-table-box .table-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: var(--border-neon);
        }

        .project-add-user-box .box-header h3,
        .project-users-table-box .table-header h3 {
            font-family: var(--font-display);
            font-size: 0.92rem;
            color: var(--red-accent);
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .project-add-user-box .input-cyber input {
            padding: 12px 14px;
            font-size: 0.9rem;
        }

        .project-add-user-box .hwid-options {
            display: grid;
            gap: 14px;
            margin-bottom: 16px;
        }

        .project-add-user-box .hwid-options label {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
            font-size: 0.88rem;
            line-height: 1.4;
        }

        .project-add-user-box .hwid-options input[type="radio"] {
            accent-color: var(--red-accent);
            width: 16px;
            height: 16px;
        }

        .project-users-table-box .table-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .inline-project-add-user-form {
            background: linear-gradient(135deg, rgba(255, 26, 26, 0.08), rgba(255, 26, 26, 0.03));
            border: 1px solid rgba(255, 26, 26, 0.18);
            border-radius: 16px;
            padding: 16px 18px;
            margin-bottom: 16px;
            box-shadow: inset 0 0 18px rgba(255, 26, 26, 0.05);
        }

        .inline-project-add-user-form .form-title h4 {
            margin: 0 0 12px;
            color: var(--red-accent);
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .add-user-form.inline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .add-user-form.inline .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: flex-end;
            width: 100%;
        }

        .add-user-form.inline .input-cyber {
            flex: 1;
            min-width: 140px;
            margin-bottom: 0;
        }

        .add-user-form.inline .input-cyber input {
            padding: 10px 12px;
            font-size: 0.8rem;
        }

        .add-user-form.inline .hwid-options.inline {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border: 1px solid rgba(255, 26, 26, 0.16);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.03);
        }

        .add-user-form.inline .hwid-options.inline label {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-secondary);
            font-size: 0.74rem;
            margin: 0;
            white-space: nowrap;
        }

        .add-user-form.inline .hwid-options.inline input[type="radio"] {
            accent-color: var(--red-accent);
            width: 13px;
            height: 13px;
            cursor: pointer;
        }

        .add-user-form.inline #resellerCreateUserBtn {
            padding: 10px 16px;
            font-size: 0.74rem;
            white-space: nowrap;
        }

        .project-users-table-box .search-box {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }

        .project-users-table-box .btn-delete-all {
            background: rgba(255, 0, 64, 0.1);
            color: #ff0040;
            border: 1px solid rgba(255, 0, 64, 0.2);
            padding: 8px 14px;
            border-radius: 10px;
            font-size: 0.68rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .project-users-table-box .btn-delete-all:hover {
            background: rgba(255, 0, 64, 0.2);
            border-color: #ff0040;
            transform: translateY(-1px);
            box-shadow: 0 10px 24px rgba(255, 0, 64, 0.2);
        }

        .project-users-table-box .input-cyber input {
            padding: 10px 14px;
            font-size: 0.85rem;
            min-width: 180px;
        }

        .project-users-table-box .table-scroll {
            overflow-x: auto;
        }

        .project-users-table-box .users-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 720px;
        }

        .project-users-table-box .users-table th,
        .project-users-table-box .users-table td {
            padding: 12px 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-primary);
            white-space: nowrap;
            font-size: 0.78rem;
        }

        .project-users-table-box .users-table th {
            color: var(--red-accent);
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
        }

        @media (max-width: 1040px) {
            .project-management-wrapper {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 900px) {
            .project-users-table-box .users-table {
                min-width: 0;
            }
        }

        .reseller-app-card .app-detail {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        @media (max-width: 1024px) {
            .reseller-management-grid,
            .user-management-wrapper {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 720px) {
            .login-type-toggle {
                flex-direction: column;
                align-items: stretch;
            }
        }

        .app-details-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--red-accent);
        }

        .app-details-header h2 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .app-details-header .btn-back {
            background: rgba(200, 0, 0, 0.08);
            border: var(--border-neon);
            color: var(--text-primary);
            padding: 10px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .app-details-header .btn-back:hover {
            background: rgba(200, 0, 0, 0.15);
            border-color: var(--red-accent);
        }

        /* ============================================================
               USER MANAGEMENT - 2 COLUMN LAYOUT
               ============================================================ */
        .user-management-wrapper {
            display: block;
            width: 100%;
        }

        .users-table-box {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: var(--border-neon);
            border-radius: 18px;
            padding: 20px;
            overflow-x: auto;
            box-shadow: var(--shadow-neon);
            width: 100%;
        }

        .inline-add-user-form {
            background: linear-gradient(135deg, rgba(255, 26, 26, 0.08), rgba(255, 26, 26, 0.03));
            border: 1px solid rgba(255, 26, 26, 0.2);
            border-radius: 16px;
            padding: 16px 18px;
            margin-bottom: 18px;
            box-shadow: inset 0 0 18px rgba(255, 26, 26, 0.06);
            display: block;
        }

        .inline-add-user-form.active {
            display: block;
        }

        .inline-add-user-form .form-title h4 {
            margin: 0 0 12px;
            color: var(--red-accent);
            font-size: 0.84rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .add-user-form.inline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .add-user-form.inline .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: flex-end;
            width: 100%;
        }

        .add-user-form.inline .input-cyber {
            flex: 1;
            min-width: 140px;
            margin-bottom: 0;
        }

        .add-user-form.inline .input-cyber input {
            padding: 10px 12px;
            font-size: 0.8rem;
        }

        .add-user-form.inline .hwid-options.inline {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border: 1px solid rgba(255, 26, 26, 0.16);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.03);
        }

        .add-user-form.inline .hwid-options.inline label {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-secondary);
            font-size: 0.74rem;
            margin: 0;
            white-space: nowrap;
        }

        .add-user-form.inline .hwid-options.inline input[type="radio"] {
            accent-color: var(--red-accent);
            width: 13px;
            height: 13px;
            cursor: pointer;
        }

        .add-user-form.inline #createUserBtn {
            padding: 10px 16px;
            font-size: 0.74rem;
            white-space: nowrap;
        }


        .users-table-box .table-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: var(--border-neon);
            flex-wrap: wrap;
            gap: 12px;
        }

        .users-table-box .table-header h3 {
            font-family: var(--font-display);
            font-size: 0.9rem;
            color: var(--red-accent);
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .users-table-box .search-box {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }

        .users-table-box .search-box .input-cyber {
            margin: 0;
            min-width: 200px;
        }

        .users-table-box .search-box .input-cyber input {
            padding: 8px 14px;
            font-size: 0.8rem;
            min-width: 180px;
        }

        .users-table-box .btn-delete-all {
            background: rgba(255, 0, 64, 0.1);
            color: #ff0040;
            border: 1px solid rgba(255, 0, 64, 0.2);
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 0.65rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .users-table-box .btn-delete-all:hover {
            background: rgba(255, 0, 64, 0.2);
            border-color: #ff0040;
        }

        .users-table-box .btn-create-user {
            background: rgba(0, 200, 100, 0.1);
            color: #00c864;
            border: 1px solid rgba(0, 200, 100, 0.2);
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 0.65rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .users-table-box .btn-create-user:hover {
            background: rgba(0, 200, 100, 0.2);
            border-color: #00c864;
        }

        .users-table {
            width: 100%;
            min-width: 100%;
            border-collapse: collapse;
        }

        .users-table.master-table thead {
            background: linear-gradient(90deg, rgba(255, 26, 26, 0.18), rgba(255, 26, 26, 0.08), rgba(255, 26, 26, 0.18));
            background-size: 200% 100%;
            animation: masterTableShine 4s linear infinite;
        }

        .users-table.master-table th {
            padding: 13px 10px;
            text-align: left;
            font-family: var(--font-display);
            font-size: 0.66rem;
            color: var(--red-accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: var(--border-neon);
            font-weight: 700;
            position: relative;
            overflow: hidden;
        }

        .users-table.master-table td {
            padding: 12px 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 0.85rem;
        }

        .users-table.master-table tbody tr {
            transition: all 0.25s ease;
            position: relative;
        }

        .users-table.master-table tbody tr:hover {
            background: linear-gradient(90deg, rgba(255, 26, 26, 0.08), rgba(255, 255, 255, 0.02));
            transform: translateX(2px);
            box-shadow: inset 0 0 0 1px rgba(255, 26, 26, 0.08);
        }

        .users-table.master-table tbody tr::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(180deg, transparent, var(--red-accent), transparent);
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .users-table.master-table tbody tr:hover::after {
            opacity: 1;
        }

        .users-table .status-badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 50px;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .users-table .status-badge.active {
            background: rgba(0, 255, 136, 0.1);
            color: #00ff88;
            border: 1px solid rgba(0, 255, 136, 0.2);
        }

        .users-table .status-badge.paused {
            background: rgba(255, 188, 0, 0.14);
            color: #ffcc66;
            border: 1px solid rgba(255, 188, 0, 0.24);
        }

        .users-table .status-badge.expired {
            background: rgba(255, 100, 100, 0.1);
            color: #ff6464;
            border: 1px solid rgba(255, 100, 100, 0.2);
        }

        .users-table .hwid-badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 50px;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .users-table .hwid-badge.single {
            background: rgba(0, 150, 200, 0.1);
            color: #00d4ff;
            border: 1px solid rgba(0, 150, 200, 0.2);
        }

        .users-table .hwid-badge.multiple {
            background: rgba(255, 150, 0, 0.1);
            color: #ffa500;
            border: 1px solid rgba(255, 150, 0, 0.2);
        }

        .users-table .action-buttons {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
        }

        .users-table td:last-child {
            min-width: 340px;
            white-space: nowrap;
        }

        .users-table td:last-child button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 7px 11px;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            transition: all 0.25s ease;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
            margin: 2px 0;
        }

        .users-table td:last-child button:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
        }

        .users-table .btn-settings {
            background: linear-gradient(135deg, rgba(128, 0, 255, 0.16), rgba(128, 0, 255, 0.08));
            color: #d9b8ff;
            border: 1px solid rgba(128, 0, 255, 0.24);
        }

        .users-table .btn-settings:hover {
            background: linear-gradient(135deg, rgba(128, 0, 255, 0.24), rgba(128, 0, 255, 0.12));
        }

        .users-table .btn-copy {
            background: linear-gradient(135deg, rgba(0, 150, 200, 0.16), rgba(0, 150, 200, 0.08));
            color: #8eefff;
            border: 1px solid rgba(0, 150, 200, 0.24);
        }

        .users-table .btn-copy:hover {
            background: linear-gradient(135deg, rgba(0, 150, 200, 0.22), rgba(0, 150, 200, 0.12));
        }

        .users-table .btn-pause {
            background: linear-gradient(135deg, rgba(255, 170, 0, 0.16), rgba(255, 170, 0, 0.08));
            color: #ffcf66;
            border: 1px solid rgba(255, 170, 0, 0.24);
        }

        .users-table .btn-pause:hover {
            background: linear-gradient(135deg, rgba(255, 170, 0, 0.24), rgba(255, 170, 0, 0.12));
        }

        .pause-notice-body {
            padding: 8px 0 18px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .pause-notice-body p {
            margin: 0;
            font-size: 0.95rem;
        }

        @keyframes masterTableShine {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .users-table .btn-reset-hwid {
            background: linear-gradient(135deg, rgba(255, 150, 0, 0.16), rgba(255, 150, 0, 0.08));
            color: #ffcb6b;
            border: 1px solid rgba(255, 150, 0, 0.24);
        }

        .users-table .btn-reset-hwid:hover {
            background: linear-gradient(135deg, rgba(255, 150, 0, 0.22), rgba(255, 150, 0, 0.12));
        }

        .users-table .btn-delete-user {
            background: linear-gradient(135deg, rgba(255, 0, 64, 0.18), rgba(255, 0, 64, 0.08));
            color: #ff8aa5;
            border: 1px solid rgba(255, 0, 64, 0.24);
        }

        .users-table .btn-delete-user:hover {
            background: linear-gradient(135deg, rgba(255, 0, 64, 0.24), rgba(255, 0, 64, 0.12));
        }

        .empty-users {
            text-align: center;
            padding: 3rem 2rem;
            color: var(--text-secondary);
        }

        .empty-users i {
            font-size: 3rem;
            opacity: 0.15;
            display: block;
            margin-bottom: 1rem;
        }

        .activity-panel {
            margin: 0 0 30px;
            padding: 20px;
            border-radius: 22px;
            border: var(--border-neon);
            background: rgba(8, 8, 8, 0.8);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
        }

        .activity-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            gap: 12px;
            flex-wrap: wrap;
        }

        .activity-header h3 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            letter-spacing: 0.18em;
            color: var(--red-accent);
            text-transform: uppercase;
        }

        .activity-subtitle {
            color: var(--text-secondary);
            font-size: 0.8rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .activity-feed {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-height: 360px;
            overflow-y: auto;
            padding-right: 6px;
        }

        .activity-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .activity-item:last-child {
            border-bottom: none;
        }

        .activity-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-top: 8px;
            background: linear-gradient(135deg, var(--red-accent), #ff5e5e);
            box-shadow: 0 0 12px rgba(255, 26, 26, 0.5);
            flex-shrink: 0;
        }

        .activity-content {
            flex: 1;
        }

        .activity-title {
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 2px;
        }

        .activity-meta {
            color: var(--text-secondary);
            font-size: 0.8rem;
            line-height: 1.45;
        }

        .activity-time {
            color: var(--text-muted);
            font-size: 0.75rem;
            white-space: nowrap;
            margin-left: 10px;
        }

        .empty-activity {
            padding: 14px 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .permission-toggle-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 10px 0 16px;
        }

        .permission-toggle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .permission-toggle input {
            accent-color: var(--red-accent);
        }

        .settings-permission-checkbox {
            margin-bottom: 0.8rem !important;
            padding: 0 !important;
            background: none !important;
            border: none !important;
        }

        .settings-permission-checkbox label {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            color: var(--text-secondary);
            font-size: 0.85rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            font-weight: 600;
            margin: 0;
            padding: 0;
        }

        .settings-permission-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: var(--red-accent);
            margin: 0;
            padding: 0;
            flex-shrink: 0;
        }

        .settings-permission-checkbox label:hover {
            color: var(--red-accent);
        }

        .users-table .status-badge.paused {
            background: rgba(255, 177, 0, 0.12);
            color: #ffcc66;
            border: 1px solid rgba(255, 177, 0, 0.2);
        }

        /* ============================================================
               DASHBOARD STATS & APPS
               ============================================================ */
        .dashboard-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .stat-card {
            background: linear-gradient(135deg, rgba(200, 0, 0, 0.08) 0%, rgba(200, 0, 0, 0.02) 100%);
            backdrop-filter: blur(20px);
            border: var(--border-neon);
            border-radius: 18px;
            padding: 25px 24px;
            text-align: center;
            transition: var(--transition-smooth);
            box-shadow: 0 8px 32px rgba(200, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            animation: slideInUp 0.6s ease-out both;
        }
        .stat-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        .stat-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        .stat-card:nth-child(3) {
            animation-delay: 0.3s;
        }
        .stat-card:nth-child(4) {
            animation-delay: 0.4s;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--red-accent), transparent);
            animation: scanLine 3s linear infinite;
        }
        .stat-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(200, 0, 0, 0.1) 0%, transparent 80%);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 60px rgba(200, 0, 0, 0.2);
            border-color: rgba(200, 0, 0, 0.5);
            animation: pulseGlow 2s ease-in-out;
        }
        .stat-card:hover::after {
            opacity: 1;
        }
        .stat-card .stat-number {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #FF1a1a, #CC0000);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 10px 0;
            animation: counterAnimation 2s ease-out;
        }
        @keyframes counterAnimation {
            from {
                opacity: 0;
                transform: scale(0.5);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        .stat-card .stat-label {
            color: var(--text-secondary);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }
        .stat-card .stat-icon {
            font-size: 2rem;
            display: block;
            margin-bottom: 8px;
            color: var(--red-accent);
            opacity: 0.8;
            animation: iconPulseGlow 3s ease-in-out infinite;
            transition: all 0.3s ease;
        }
        .stat-card:hover .stat-icon {
            animation: iconBrighten 1.5s ease-in-out infinite;
            opacity: 1;
            filter: drop-shadow(0 0 20px rgba(255, 26, 26, 0.7));
            transform: scale(1.1);
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding: 25px;
            background: linear-gradient(135deg, rgba(200, 0, 0, 0.06) 0%, rgba(200, 0, 0, 0.01) 100%);
            border: var(--border-neon);
            border-radius: 18px;
            flex-wrap: wrap;
            gap: 20px;
        }
        .dashboard-header h2 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .dashboard-header .btn-create {
            background: linear-gradient(135deg, var(--red-primary), var(--red-accent));
            border: none;
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.75rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 24px rgba(200, 0, 0, 0.2);
        }
        .dashboard-header .btn-create:hover {
            transform: translateY(-4px) scale(1.08);
            box-shadow: 0 16px 48px rgba(200, 0, 0, 0.4);
        }
        .dashboard-header .btn-create:active {
            transform: translateY(-2px) scale(1.05);
        }

        .apps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }
        .app-card {
            background: linear-gradient(135deg, rgba(200, 0, 0, 0.04) 0%, rgba(200, 0, 0, 0.01) 100%);
            backdrop-filter: blur(20px);
            border: var(--border-neon);
            border-radius: 18px;
            padding: 24px;
            transition: var(--transition-smooth);
            box-shadow: 0 8px 32px rgba(200, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            animation: slideInUp 0.6s ease-out both;
        }
        .app-card:nth-child(n) {
            animation-delay: calc(0.1s * var(--index, 1));
        }
        .app-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--red-accent), transparent);
            animation: scanLine 3s linear infinite;
        }
        .app-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(200, 0, 0, 0.1) 0%, transparent 80%);
            opacity: 0;
            pointer-events: none;
            border-radius: 18px;
            transition: opacity 0.3s ease;
        }
        .app-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 20px 60px rgba(200, 0, 0, 0.2);
            border-color: rgba(200, 0, 0, 0.5);
            animation: pulseGlow 2s ease-in-out;
        }
        .app-card:hover::after {
            opacity: 1;
        }
        .app-card .app-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--red-primary), var(--red-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 16px;
            box-shadow: 0 8px 24px rgba(200, 0, 0, 0.15);
            color: #fff;
            transition: all 0.3s ease;
            animation: float 3s ease-in-out infinite;
            font-weight: bold;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        .app-card:hover .app-icon {
            transform: scale(1.2) rotate(15deg);
            box-shadow: 0 12px 36px rgba(200, 0, 0, 0.3);
            animation: liquidSwirl 1s ease-in-out infinite;
        }
        .app-card .app-name {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        .app-card .app-detail {
            color: var(--text-secondary);
            font-size: 0.8rem;
            margin: 4px 0;
            line-height: 1.4;
        }
        .app-card .app-detail span {
            color: var(--text-primary);
            font-weight: 600;
        }
        .app-card .app-detail i {
            color: var(--red-accent);
            margin-right: 6px;
            width: 14px;
            animation: spinContinuous 6s linear infinite;
        }
        .app-card .app-status {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin: 10px 0 14px;
            font-family: var(--font-display);
            animation: breathe 2s ease-in-out infinite;
        }
        .app-card .app-status.active {
            background: rgba(0, 255, 136, 0.12);
            color: #00ff88;
            border: 1px solid rgba(0, 255, 136, 0.25);
        }
        .app-card .app-status.inactive {
            background: rgba(255, 0, 64, 0.12);
            color: #ff0040;
            border: 1px solid rgba(255, 0, 64, 0.25);
        }
        .app-card .app-actions {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 14px;
            padding-top: 14px;
            border-top: var(--border-neon);
        }
        .app-card .app-actions button {
            flex: 1;
            min-width: 70px;
            padding: 8px 12px;
            border-radius: 10px;
            border: none;
            font-family: var(--font-body);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .app-card .app-actions .btn-open {
            background: linear-gradient(135deg, rgba(0, 150, 200, 0.15), rgba(0, 200, 255, 0.08));
            color: #00d4ff;
            border: 1px solid rgba(0, 150, 200, 0.3);
        }
        .app-card .app-actions .btn-open:hover {
            background: linear-gradient(135deg, rgba(0, 150, 200, 0.25), rgba(0, 200, 255, 0.12));
            border-color: #00d4ff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 200, 255, 0.2);
        }
        .app-card .app-actions .btn-toggle {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            border: var(--border-neon);
        }
        .app-card .app-actions .btn-toggle:hover {
            background: rgba(200, 0, 0, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(200, 0, 0, 0.15);
            border-color: var(--red-accent);
        }
        .app-card .app-actions .btn-delete {
            background: rgba(255, 0, 64, 0.12);
            color: #ff0040;
            border: 1px solid rgba(255, 0, 64, 0.2);
        }
        .app-card .app-actions .btn-delete:hover {
            background: rgba(255, 0, 64, 0.22);
            border-color: #ff0040;
        }
        .app-card .app-actions .btn-details {
            background: linear-gradient(135deg, rgba(255, 165, 0, 0.15), rgba(255, 200, 0, 0.08));
            color: #ffa500;
            border: 1px solid rgba(255, 165, 0, 0.3);
        }
        .app-card .app-actions .btn-details:hover {
            background: linear-gradient(135deg, rgba(255, 165, 0, 0.25), rgba(255, 200, 0, 0.12));
            border-color: #ffa500;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 165, 0, 0.2);
        }

        .empty-state {
            text-align: center;
            padding: 50px 20px;
            color: var(--text-secondary);
            grid-column: 1 / -1;
        }
        .empty-state .empty-icon {
            font-size: 3.6rem;
            margin-bottom: 14px;
            opacity: 0.15;
            color: var(--red-accent);
        }
        .empty-state h3 {
            font-family: var(--font-display);
            color: var(--text-primary);
            font-size: 1.1rem;
        }

        /* ============================================================
               TOAST
               ============================================================ */
        .toast-container {
            position: fixed;
            top: 90px;
            right: 30px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .toast {
            background: rgba(10, 5, 5, 0.95);
            backdrop-filter: blur(30px);
            border: var(--border-neon);
            border-radius: 14px;
            padding: 14px 20px;
            min-width: 280px;
            color: var(--text-primary);
            font-family: var(--font-body);
            font-weight: 600;
            transform: translateX(120%);
            animation: toastIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: var(--shadow-neon);
            position: relative;
            overflow: hidden;
        }
        .toast.success {
            border-left: 4px solid #00ff88;
        }
        .toast.error {
            border-left: 4px solid #ff0040;
        }
        .toast.info {
            border-left: 4px solid var(--red-accent);
        }
        @keyframes toastIn {
            0% {
                transform: translateX(120%) scale(0.9);
                opacity: 0;
            }
            100% {
                transform: translateX(0) scale(1);
                opacity: 1;
            }
        }
        @keyframes toastOut {
            0% {
                transform: translateX(0) scale(1);
                opacity: 1;
            }
            100% {
                transform: translateX(120%) scale(0.9);
                opacity: 0;
            }
        }
        .toast .toast-icon {
            font-size: 1.3rem;
        }
        .toast .toast-close {
            margin-left: auto;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.3s;
            font-size: 1.1rem;
        }
        .toast .toast-close:hover {
            opacity: 1;
        }
        .toast .toast-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--red-primary), var(--red-glow));
            animation: toastProgress 3.5s linear forwards;
        }
        @keyframes toastProgress {
            from {
                width: 100%;
            }
            to {
                width: 0%;
            }
        }

        /* ============================================================
               MODAL
               ============================================================ */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(16px);
            z-index: 999;
            justify-content: center;
            align-items: center;
            padding: 20px;
            animation: modalFade 0.4s ease;
        }
        .modal-overlay.active {
            display: flex;
        }
        @keyframes modalFade {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        .modal-content {
            background: var(--bg-secondary);
            border: var(--border-neon);
            border-radius: 24px;
            padding: 2.4rem;
            max-width: 520px;
            width: 100%;
            box-shadow: var(--shadow-glow);
            animation: modalScale 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }
        .modal-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(200, 0, 0, 0.03), transparent, rgba(200, 0, 0, 0.03),
                    transparent);
            animation: borderRotate 15s linear infinite;
            z-index: -1;
        }
        @keyframes modalScale {
            from {
                transform: scale(0.8) translateY(30px);
                opacity: 0;
            }
            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }
        .modal-content .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.6rem;
        }
        .modal-content .modal-header h2 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .modal-content .modal-header .close-btn {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            line-height: 1;
        }
        .modal-content .modal-header .close-btn:hover {
            color: var(--red-glow);
            transform: rotate(90deg);
        }
        .modal-content .input-cyber select {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.03);
            border: var(--border-neon);
            border-radius: 14px;
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 0.95rem;
            transition: var(--transition-smooth);
            outline: none;
            appearance: none;
            cursor: pointer;
        }
        .modal-content .input-cyber select:focus {
            border-color: var(--red-glow);
            box-shadow: 0 0 40px rgba(255, 26, 26, 0.12);
            background: rgba(255, 255, 255, 0.06);
        }
        .modal-content .input-cyber select option {
            background: var(--bg-secondary);
        }

        .reseller-form-box .select-label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-secondary);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .reseller-form-box .input-cyber select {
            width: 100%;
            min-height: 140px;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: var(--border-neon);
            border-radius: 14px;
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 0.95rem;
            transition: var(--transition-smooth);
            outline: none;
            appearance: none;
            cursor: pointer;
        }
        .reseller-form-box .input-cyber select:focus {
            border-color: var(--red-glow);
            box-shadow: 0 0 40px rgba(255, 26, 26, 0.12);
            background: rgba(255, 255, 255, 0.08);
        }
        .reseller-form-box .input-cyber select option {
            background: var(--bg-secondary);
            color: var(--text-primary);
        }
        .modal-content .input-cyber input[readonly] {
            color: var(--text-secondary);
            font-family: var(--font-mono);
            font-size: 0.75rem;
            letter-spacing: 1px;
        }

        /* Project Details Modal Styling */
        .project-details-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.2rem;
            max-height: 500px;
            overflow-y: auto;
            padding-right: 10px;
        }

        .project-details-content::-webkit-scrollbar {
            width: 6px;
        }

        .project-details-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }

        .project-details-content::-webkit-scrollbar-thumb {
            background: rgba(200, 0, 0, 0.3);
            border-radius: 10px;
        }

        .project-details-content::-webkit-scrollbar-thumb:hover {
            background: rgba(200, 0, 0, 0.5);
        }

        .detail-group {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(200, 0, 0, 0.1);
            border-radius: 12px;
            padding: 1rem;
            transition: var(--transition-smooth);
        }

        .detail-group:hover {
            border-color: rgba(200, 0, 0, 0.2);
            background: rgba(200, 0, 0, 0.03);
        }

        .detail-group label {
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--red-accent);
            margin-bottom: 0.6rem;
        }

        .detail-value {
            font-family: var(--font-mono);
            font-size: 0.9rem;
            color: var(--text-primary);
            word-break: break-all;
            line-height: 1.5;
        }

        .detail-value.copy-able {
            cursor: pointer;
            transition: var(--transition-smooth);
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.02);
            user-select: all;
        }

        .detail-value.copy-able:hover {
            background: rgba(200, 0, 0, 0.1);
            color: var(--red-glow);
        }

        /* ============================================================
               ANIMATIONS
               ============================================================ */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes blink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0;
            }
        }

        /* ============================================================
               ADVANCED CONTINUOUS ANIMATIONS
               ============================================================ */

        /* Magnetic Effect - Elements follow cursor */
        .magnetic-element {
            position: relative;
            transition: all 0.15s ease;
        }

        /* Particle System */
        @keyframes particleFloat {
            0% {
                opacity: 0;
                transform: translateY(0) translateX(0) scale(1);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(-80px) translateX(var(--tx)) scale(0);
            }
        }

        @keyframes particleFloat2 {
            0% {
                opacity: 0;
                transform: translateY(0) translateX(0) rotate(0deg) scale(1);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(-120px) translateX(var(--tx2)) rotate(360deg) scale(0.2);
            }
        }

        /* Glitch Effect */
        @keyframes glitchShift {
            0% {
                transform: translateX(-2px) skewX(-10deg);
            }
            50% {
                transform: translateX(2px) skewX(10deg);
            }
            100% {
                transform: translateX(0) skewX(0);
            }
        }

        @keyframes textGlitch {
            0% {
                text-shadow: -2px 0 #FF1a1a, 2px 0 #00ffff;
            }
            50% {
                text-shadow: 2px 0 #FF1a1a, -2px 0 #00ffff;
            }
            100% {
                text-shadow: 0 0 transparent;
            }
        }

        /* Continuous Horizontal Scroll */
        @keyframes infiniteScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        @keyframes infiniteScrollReverse {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(0);
            }
        }

        /* Pulse Wave Effect */
        @keyframes pulseWave {
            0% {
                box-shadow: 0 0 0 0 rgba(200, 0, 0, 0.7),
                    0 0 0 10px rgba(200, 0, 0, 0.5),
                    0 0 0 20px rgba(200, 0, 0, 0.3);
            }
            100% {
                box-shadow: 0 0 0 10px rgba(200, 0, 0, 0.5),
                    0 0 0 20px rgba(200, 0, 0, 0.3),
                    0 0 0 40px rgba(200, 0, 0, 0);
            }
        }

        /* Liquid Swirl */
        @keyframes liquidSwirl {
            0% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-5px) rotate(90deg);
            }
            50% {
                transform: translateY(0px) rotate(180deg);
            }
            75% {
                transform: translateY(-5px) rotate(270deg);
            }
            100% {
                transform: translateY(0px) rotate(360deg);
            }
        }

        /* Breathing Animation */
        @keyframes breathe {
            0%,
            100% {
                transform: scale(1);
                opacity: 0.9;
            }
            50% {
                transform: scale(1.05);
                opacity: 1;
            }
        }

        /* Wiggle Effect */
        @keyframes wiggle {
            0%,
            100% {
                transform: rotate(0deg);
            }
            25% {
                transform: rotate(-1deg);
            }
            75% {
                transform: rotate(1deg);
            }
        }

        /* Bounce In Effect */
        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3) translateY(20px);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
            100% {
                transform: scale(1) translateY(0);
            }
        }

        /* Neon Flicker */
        @keyframes neonFlicker {
            0%,
            100% {
                text-shadow: 0 0 10px rgba(255, 26, 26, 0.8),
                    0 0 20px rgba(255, 26, 26, 0.6);
            }
            5% {
                text-shadow: 0 0 5px rgba(255, 26, 26, 0.4);
            }
            10% {
                text-shadow: 0 0 10px rgba(255, 26, 26, 0.8),
                    0 0 20px rgba(255, 26, 26, 0.6);
            }
            95% {
                text-shadow: 0 0 10px rgba(255, 26, 26, 0.8),
                    0 0 20px rgba(255, 26, 26, 0.6);
            }
        }

        /* Spin Effect */
        @keyframes spinContinuous {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes iconPulseGlow {
            0%, 100% {
                opacity: 0.75;
                filter: drop-shadow(0 0 12px rgba(255, 26, 26, 0.25));
                transform: scale(1);
            }
            50% {
                opacity: 1;
                filter: drop-shadow(0 0 24px rgba(255, 26, 26, 0.5));
                transform: scale(1.05);
            }
        }

        @keyframes iconHoverShimmer {
            0%, 100% {
                filter: drop-shadow(0 0 22px rgba(255, 26, 26, 0.7));
                transform: scale(1.05) translateY(0);
            }
            30% {
                filter: drop-shadow(0 0 34px rgba(255, 80, 80, 0.85));
                transform: scale(1.08) translateY(-2px);
            }
            60% {
                filter: drop-shadow(0 0 28px rgba(255, 26, 26, 0.75));
                transform: scale(1.06) translateY(0);
            }
        }

        @keyframes iconBrighten {
            0%, 100% {
                opacity: 1;
                filter: drop-shadow(0 0 15px rgba(255, 26, 26, 0.6));
            }
            50% {
                opacity: 0.85;
                filter: drop-shadow(0 0 25px rgba(255, 26, 26, 0.9));
            }
        }

        /* Aurora Effect */
        @keyframes auroraWave {
            0%,
            100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        /* Shimmer Wave */
        @keyframes shimmerWave {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        /* Scale Bounce */
        @keyframes scaleBounce {
            0%,
            100% {
                transform: scale(1);
            }
            25% {
                transform: scale(0.95);
            }
            50% {
                transform: scale(1.1);
            }
            75% {
                transform: scale(0.98);
            }
        }

        /* Slide In From Left */
        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Slide In From Right */
        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Rotate In */
        @keyframes rotateIn {
            from {
                opacity: 0;
                transform: rotate(-10deg) scale(0.5);
            }
            to {
                opacity: 1;
                transform: rotate(0) scale(1);
            }
        }

        /* Flip Card */
        @keyframes flipCard {
            0%,
            100% {
                transform: rotateY(0deg);
            }
            50% {
                transform: rotateY(180deg);
            }
        }

        /* ============================================================
               RESPONSIVE
               ============================================================ */
        @media (max-width: 1024px) {
            .navbar {
                padding: 10px 24px;
            }
            .navbar-status {
                padding: 3px 24px;
                font-size: 0.5rem;
            }
            .navbar .brand {
                font-size: 1.4rem;
            }
            .navbar .nav-links a {
                font-size: 0.7rem;
                padding: 5px 10px;
            }
            .hero h1 {
                font-size: 4rem;
            }
            .user-management-wrapper {
                grid-template-columns: 1fr;
            }
            .add-user-box {
                position: relative;
                top: 0;
            }
        }

        @media (max-width: 992px) {
            .navbar .nav-links a {
                font-size: 0.65rem;
                padding: 4px 8px;
            }
            .navbar .nav-links .login-btn,
            .navbar .nav-links .start-btn {
                padding: 6px 14px;
                font-size: 0.6rem;
            }
            .navbar .nav-links .lang-btn {
                padding: 4px 10px;
                font-size: 0.55rem;
            }
            .auth-logs {
                display: none;
            }
            .digital-rain {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 10px 16px;
                flex-wrap: wrap;
            }
            .navbar-status {
                display: none;
            }
            .navbar .brand {
                font-size: 1.2rem;
            }
            .navbar .brand .version {
                display: none;
            }
            .nav-toggle {
                display: block;
            }
            .navbar .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(5, 5, 5, 0.98);
                backdrop-filter: blur(30px);
                padding: 16px 20px;
                border-bottom: var(--border-neon);
                gap: 2px;
                align-items: stretch;
            }
            .navbar .nav-links.open {
                display: flex;
            }
            .navbar .nav-links a {
                padding: 10px 16px;
                width: 100%;
                text-align: center;
                font-size: 0.8rem;
            }
            .navbar .nav-links .login-btn,
            .navbar .nav-links .start-btn,
            .navbar .nav-links .lang-btn {
                text-align: center;
                justify-content: center;
            }

            .hero h1 {
                font-size: 2.8rem;
            }
            .hero .sub-headline {
                font-size: 1rem;
            }
            .hero .hero-buttons {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }
            .hero .hero-buttons a {
                width: 100%;
                justify-content: center;
            }

            .features-section .section-title {
                font-size: 1.6rem;
            }
            .features-grid {
                grid-template-columns: 1fr 1fr;
            }

            .contact-section .section-title {
                font-size: 1.6rem;
            }
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }

            .feedback-card {
                min-width: 240px;
                max-width: 260px;
                padding: 16px 18px;
            }
            .feedbacks-section .section-title {
                font-size: 1.6rem;
            }

            .glass {
                padding: 1.6rem;
            }
            .login-container .login-header h2 {
                font-size: 1.8rem;
            }

            .dashboard-stats {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .stat-card .stat-number {
                font-size: 2rem;
            }
            .apps-grid {
                grid-template-columns: 1fr;
            }

            .toast-container {
                right: 16px;
                left: 16px;
                top: 80px;
            }
            .toast {
                min-width: unset;
                width: 100%;
            }

            .modal-content {
                padding: 1.6rem;
                margin: 12px;
            }

            .info-ticker .ticker-label {
                font-size: 0.5rem;
                padding: 0 12px;
            }
            .info-ticker .ticker-item {
                font-size: 0.55rem;
                gap: 6px;
            }

            .cursor-dot,
            .cursor-ring {
                display: none !important;
            }
            body * {
                cursor: default !important;
            }

            .auth-logs {
                display: none !important;
            }
            .digital-rain {
                display: none !important;
            }

            .user-management-wrapper {
                grid-template-columns: 1fr;
            }
            .add-user-box {
                position: relative;
                top: 0;
            }
            .users-table-box .table-header {
                flex-direction: column;
                align-items: stretch;
            }
            .users-table-box .search-box {
                flex-direction: column;
                align-items: stretch;
            }
            .users-table-box .search-box .input-cyber {
                min-width: unset;
            }
            .users-table-box .search-box .input-cyber input {
                min-width: unset;
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            .navbar .brand {
                font-size: 1rem;
            }
            .dashboard-stats {
                grid-template-columns: 1fr;
            }
            .stat-card {
                padding: 14px 16px;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .feedback-card {
                min-width: 200px;
                max-width: 220px;
                padding: 12px 14px;
            }
            .feedback-card .feedback-text {
                font-size: 0.75rem;
            }
        }