html, body { 
            height: 100%; 
            margin: 0; 
            padding: 0; 
            font-family: 'Courier New', Courier, monospace; 
            background-color: #000; 
            color: #fff; 
            display: flex;
            flex-direction: column;
        }
        body { 
            background-image: url('https://i.redd.it/chernarus-landscapes-v0-0fnb08rfxw0a1.jpg?width=1920&format=pjpg&auto=webp&s=e6362b3c7cb128600c5d8e071a836aaea1dad21b'); 
            background-attachment: fixed; 
            background-position: center; 
            background-repeat: no-repeat; 
            background-size: cover; 
        }
        nav { 
            background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%); 
            backdrop-filter: blur(10px); 
            position: fixed; 
            top: 0; 
            left: 0; 
            width: 100%; 
            z-index: 1000; 
            padding: 15px 0 60px 0; 
        }
        .nav-container { 
            max-width: 1200px; 
            margin: 0 auto; 
            display: flex; 
            justify-content: center; 
            align-items: center; 
        }
        .nav-menu { 
            list-style: none; 
            margin: 0; 
            padding: 0; 
            display: flex; 
            gap: 50px; 
        }
        .nav-menu li a { 
            color: #aaa; 
            text-decoration: none; 
            font-size: 18px; 
            text-transform: uppercase; 
            letter-spacing: 2px; 
            position: relative; 
            transition: color 0.4s ease; 
            display: flex; 
            align-items: center; 
            gap: 8px; 
        }
        .nav-menu li a i { 
            font-size: 20px; 
        }
        .nav-menu li a:hover { 
            color: #0f0; 
        }
        .nav-menu li a::after { 
            content: ''; 
            position: absolute; 
            bottom: -8px; 
            left: 0; 
            width: 0; 
            height: 2px; 
            background-color: #0f0; 
            transition: width 0.4s ease; 
            box-shadow: 0 0 10px #0f0; 
        }
        .nav-menu li a:hover::after, .nav-menu li a.active::after { 
            width: 100%; 
        }
        .nav-menu li a.active { 
            color: #0f0; 
        }
        main {
            flex: 1;
            padding-top: 100px; /* Space for fixed nav */
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .coming-soon-container { 
            display: flex; 
            flex-direction: column; 
            justify-content: center; 
            align-items: center; 
            text-align: center; 
            padding: 40px; 
            backdrop-filter: blur(5px); 
            max-width: 900px;
        }
        .maintenance-icon {
            font-size: 120px;
            color: #0f0;
            text-shadow: 0 0 30px #0f0;
            margin-bottom: 30px;
            animation: pulseGlow 2s infinite alternate;
        }
        .helmet-icon {
            font-size: 80px;
            color: #0f0;
            text-shadow: 0 0 20px #0f0;
            margin-bottom: 20px;
        }
        .coming-soon-container h1 { 
            font-size: 48px; 
            color: #0f0; 
            text-shadow: 0 0 20px #0f0; 
            margin-bottom: 20px; 
        }
        .coming-soon-container p { 
            font-size: 24px; 
            margin: 20px 0; 
        }
        .coming-soon-container .highlight { 
            color: #0f0; 
            text-shadow: 0 0 10px #0f0; 
            font-weight: bold; 
        }
        footer {
            padding: 30px 20px;
            font-size: 12px;
            color: #666;
            border-top: 1px solid #333;
            background-color: rgba(0, 0, 0, 0.7);
            position: relative;
            z-index: 10;
        }
        .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-server-logo {
            width: 150px;
            position: absolute;
            left: 20px;
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 1s ease-out, transform 1s ease-out;
            animation: randomLogoGlow 8s ease-in-out infinite alternate;
        }
        .footer-server-logo.visible {
            opacity: 1;
            transform: scale(1);
        }
        .footer-server-logo:hover {
            animation-play-state: paused;
            filter: drop-shadow(0 0 40px #0f0);
        }
        .copyright-text {
            margin: 0;
            text-align: center;
            flex: 1;
            opacity: 0;
            transition: opacity 1s ease-out 0.3s;
        }
        .copyright-text.visible {
            opacity: 1;
        }
        @keyframes randomLogoGlow {
            0%   { filter: drop-shadow(0 0 10px #0f0); }
            23%  { filter: drop-shadow(0 0 31px #0f0); }
            33%  { filter: drop-shadow(0 0 33px #0f0); }
            67%  { filter: drop-shadow(0 0 18px #0f0); }
            79%  { filter: drop-shadow(0 0 12px #0f0); }
            85%  { filter: drop-shadow(0 0 23px #0f0); }
            100% { filter: drop-shadow(0 0 17px #0f0); }
        }
        @keyframes pulseGlow {
            0% { text-shadow: 0 0 20px #0f0; }
            100% { text-shadow: 0 0 50px #0f0; }
        }
