
        :root {
            --accent-color: #ff9d4d;
            --bg-dark: #0a0e14;
            --card-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 157, 77, 0.2);
            --text-muted: #94a3b8;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-dark);
            background: radial-gradient(circle at center, #161b22 0%, #0a0e14 100%);
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* --- NAVIGATION --- */
        .navbar {
            backdrop-filter: blur(10px);
            background: rgba(0, 0, 0, 0.2);
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .login-btn {
            background: #ffffff;
            color: #0a0e14;
            font-weight: 800;
            font-size: 0.8rem;
            padding: 8px 18px;
            border-radius: 999px;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .login-btn:hover {
            background: var(--accent-color);
            color: #0a0e14;
            transform: translateY(-1px);
        }


        .navbar-brand span {
            font-weight: 800;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-link {
            color: var(--text-muted) !important;
            font-weight: 500;
            font-size: 0.9rem;
            margin: 0 10px;
        }

        .nav-link:hover {
            color: var(--accent-color) !important;
        }

        /* --- HERO SECTION --- */
        .atc-style-card {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border: 1.5px solid var(--glass-border);
            border-radius: 15px;
            padding: 60px 40px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
            position: relative;
            overflow: hidden;
        }

        .atc-style-card::before {
            content: "";
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to bottom, transparent, rgba(255, 157, 77, 0.05));
            animation: scan 4s linear infinite;
        }

        @keyframes scan {
            from {
                top: -50%;
            }

            to {
                top: 100%;
            }
        }

        /* --- STATS --- */
        .stats-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 35px;
            transition: 0.3s ease;
        }

        .stats-card h2 {
            font-weight: 900;
            color: var(--accent-color);
            font-size: 2.5rem;
        }

        .status-dot {
            height: 8px;
            width: 8px;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 10px var(--accent-color);
            animation: blink 1.5s infinite;
        }

        @keyframes blink {
            0% {
                opacity: 0.3;
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0.3;
            }
        }

        .btn-play {
            background-color: var(--accent-color);
            color: #000 !important;
            font-weight: 800;
            padding: 16px 45px;
            border-radius: 8px;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            transition: 0.4s;
        }

        .footer_section {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            margin: 40px auto;
            width: 95%;
            max-width: 1200px;
            padding: 20px 40px;
            color: #475569;
        }
