body {
            background-color: #050505;
            color: #32CD32; /* Lime Green */
            font-family: 'Courier New', Courier, monospace;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-image: 
                radial-gradient(circle, rgba(0,255,0,0.05) 10%, transparent 10.01%),
                linear-gradient(rgba(0, 255, 0, 0.03) 1px, transparent 1px);
            background-size: 100% 100%, 100% 4px; /* Subtle CRT scanlines */
            text-align: center;
        }

        /* Container */
        .container {
            max-width: 800px;
            padding: 40px 20px;
            border: 2px solid #228B22;
            background-color: rgba(0, 20, 0, 0.8);
            box-shadow: 0 0 15px rgba(50, 205, 50, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.8);
        }

        /* Typography */
        h1 {
            font-size: 3rem;
            margin-bottom: 5px;
            text-shadow: 0 0 10px #32CD32, 0 0 20px #228B22;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .subtitle {
            font-size: 1.2rem;
            color: #8FBC8F;
            margin-bottom: 30px;
            font-style: italic;
        }

        p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #98FB98;
        }

        .ascii-art {
            white-space: pre;
            font-size: 12px;
            color: #228B22;
            margin-bottom: 20px;
        }

        /* Discord Button */
        .discord-btn {
            display: inline-block;
            margin-top: 30px;
            padding: 15px 40px;
            background-color: transparent;
            color: #32CD32;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: bold;
            border: 2px solid #32CD32;
            text-transform: uppercase;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(50, 205, 50, 0.2);
            cursor: pointer;
        }

        .discord-btn:hover {
            background-color: #32CD32;
            color: #000;
            box-shadow: 0 0 20px rgba(50, 205, 50, 0.8);
        }

        /* Footer */
        footer {
            margin-top: 50px;
            font-size: 0.9rem;
            color: #556B2F;
        }
        
        .blink {
            animation: blinker 1s linear infinite;
        }

        @keyframes blinker {
            50% { opacity: 0; }
        }