:root {
            --bg-color: #050505;
            --primary-color: #00ff00; /* Matrix Green */
            --alert-color: #ff0000;
            --dim-color: #484848;
            --font-main: 'Courier New', Courier, monospace;
        }

        * { box-sizing: border-box; }

        body {
            background-color: var(--bg-color);
            color: var(--primary-color);
            font-family: var(--font-main);
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0;
            overflow: hidden;
            text-transform: uppercase;
        }

        /* --- Container --- */
        .container {
            text-align: center;
            width: 90%;
            max-width: 600px;
            z-index: 10;
        }

        /* --- Glitch Effect --- */
        .glitch {
            font-size: 3rem;
            font-weight: bold;
            position: relative;
            color: var(--primary-color);
            letter-spacing: 5px;
            margin-bottom: 20px;
        }

        .glitch::before, .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-color);
        }

        .glitch::before {
            left: 2px;
            text-shadow: -1px 0 rgb(255, 0, 0);
            clip: rect(24px, 550px, 90px, 0);
            animation: glitch-anim-2 5s infinite linear reverse;
        }

        .glitch::after {
            left: -2px;
            text-shadow: -1px 0 rgb(0, 0, 255);
            clip: rect(85px, 550px, 140px, 0);
            animation: glitch-anim 2.5s infinite linear alternate-reverse;
        }

        /* --- Login Interface --- */
        #login-interface {
            transition: opacity 1s ease;
        }

        input {
            background: transparent;
            border: none;
            border-bottom: 2px solid var(--dim-color);
            color: var(--primary-color);
            font-family: var(--font-main);
            font-size: 1.5rem;
            text-align: center;
            outline: none;
            padding: 10px;
            width: 100%;
            letter-spacing: 3px;
            margin-top: 20px;
            transition: border-color 0.3s;
        }

        input:focus {
            border-color: var(--primary-color);
        }

        .status {
            margin-top: 20px;
            font-size: 0.9rem;
            min-height: 20px;
        }

        .access-denied { color: var(--alert-color); }
        .access-granted { color: var(--primary-color); }

        /* --- Secret Content (Hidden Initially) --- */
        #secret-content {
            display: none;
            opacity: 0;
            transition: opacity 2s ease;
            text-align: left;
            border: 1px solid var(--dim-color);
            padding: 40px;
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
        }

        #secret-content h2 {
            border-bottom: 1px solid var(--primary-color);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        p { line-height: 1.6; text-transform: none; }

        /* --- Scanlines Background --- */
        .scanlines {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.2));
            background-size: 100% 4px;
            pointer-events: none;
            z-index: 5;
        }

        /* --- Animations --- */
        @keyframes glitch-anim {
            0% { clip: rect(10px, 9999px, 31px, 0); }
            20% { clip: rect(65px, 9999px, 89px, 0); }
            40% { clip: rect(12px, 9999px, 67px, 0); }
            60% { clip: rect(89px, 9999px, 93px, 0); }
            80% { clip: rect(40px, 9999px, 60px, 0); }
            100% { clip: rect(20px, 9999px, 10px, 0); }
        }
        @keyframes glitch-anim-2 {
            0% { clip: rect(65px, 9999px, 100px, 0); }
            100% { clip: rect(10px, 9999px, 55px, 0); }
        }

        /* --- Button --- */
        button {
            background: transparent;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            padding: 10px 30px;
            font-family: var(--font-main);
            margin-top: 20px;
            cursor: pointer;
            transition: all 0.3s;
        }
        button:hover {
            background: var(--primary-color);
            color: var(--bg-color);
            box-shadow: 0 0 15px var(--primary-color);
        }


        a{
            color: #00ff00;
        }