:root {
            --accent: #ff003c;
            --bg: #080808;
        }

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

        body {
            background-color: var(--bg);
            font-family: 'Teko', sans-serif;
            color: #fff;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
            padding: 20px 0;
        }

        .bg-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 0, 60, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 0, 60, 0.1) 0%, transparent 40%),
                url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
            z-index: -1;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            z-index: 5;
            padding-bottom: 120px; /* Spatiu generos pentru footer-ul fix */
        }

        .brand-section h1 {
            font-family: 'Syncopate', sans-serif;
            font-size: clamp(2.5rem, 8vw, 6rem);
            line-height: 0.9;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .brand-section h1 span {
            display: block;
            color: var(--accent);
            text-shadow: 4px 4px 0px rgba(255, 0, 60, 0.3);
        }

        .brand-section p {
            font-size: 1.5rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: #666;
            border-left: 3px solid var(--accent);
            padding-left: 15px;
        }

        .nav-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .nav-item {
            position: relative;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 25px 40px;
            text-decoration: none;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            overflow: hidden;
        }

        .nav-item:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 0, 60, 0.4);
        }

        .nav-item .btn-content { display: flex; flex-direction: column; z-index: 2; }
        .nav-item h2 { font-size: 2.2rem; text-transform: uppercase; margin: 0; line-height: 1; }
        .nav-item span { font-size: 1rem; text-transform: uppercase; opacity: 0.6; letter-spacing: 2px; }
        .nav-item i { font-size: 3rem; opacity: 0.2; z-index: 2; transition: 0.3s; }
        .nav-item:hover i { opacity: 0.8; transform: rotate(-10deg); }

        /* BARA ANIMATA - FIXATA SA NU DISPARA */
        .glitch-bar {
            position: fixed;
            bottom: 75px; /* Fix deasupra footer-ului */
            left: 0;
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 999;
        }

        .glitch-bar::after {
            content: '';
            position: absolute;
            left: 0; top: -1px; width: 100px; height: 3px;
            background: var(--accent);
            box-shadow: 0 0 15px var(--accent);
            animation: move 3s linear infinite;
        }

        @keyframes move {
            0% { left: 0; }
            100% { left: 100%; }
        }

        /* FOOTER FIX CU BLUR (GLASSMORPHISM) */
        .footer-container {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 75px;
            background: rgba(8, 8, 8, 0.8);
            backdrop-filter: blur(10px); /* Efect de sticla mata */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            z-index: 998;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-text {
            font-size: 0.8rem;
            letter-spacing: 1px;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            text-align: center;
        }

        #histats_counter { filter: grayscale(1) invert(1); opacity: 0.7; }

        /* AJUSTARI FINALE MOBIL */
        @media (max-width: 900px) {
            body { align-items: flex-start; padding: 40px 0 160px 0; }
            .container { grid-template-columns: 1fr; text-align: center; gap: 25px; }
            .brand-section h1 { font-size: 3.2rem; }
            .brand-section p { border-left: none; border-top: 2px solid var(--accent); padding-top: 10px; display: inline-block; }
            .nav-item { padding: 15px 25px; }
            .nav-item h2 { font-size: 1.8rem; }
            
            /* REACTIVAM LINIA PE MOBIL */
            .glitch-bar { display: block; bottom: 70px; opacity: 0.8; }
            .footer-container { height: 70px; }
        }