:root {
            --bg: #050505;
            --text: #ffffff;
            --accent: #059669; 
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100dvh;
            background-color: var(--bg);
            background-image: 
                radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 4px),
                radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 3px),
                radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 4px);
            background-size: 550px 550px, 350px 350px, 250px 250px;
            background-position: 0 0, 40px 60px, 130px 270px;
            animation: spaceScroll 60s linear infinite;
            color: var(--text);
            font-family: 'Press Start 2P', cursive;
            text-align: center;
        }

        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            margin: auto;
            z-index: 5;
        }

        .pixel-art {
            width: 120px; /* Adjust size as needed */
            height: auto;
            /* This line is crucial for keeping pixels sharp */
            image-rendering: pixelated;
            filter: drop-shadow(0 0 10px rgba(5, 150, 105, 0.5));
            animation: float 3s ease-in-out infinite;
        }

        h1 {
            font-size: clamp(0.8rem, 4.5vw, 1.8rem);
            line-height: 1.6;
            margin: 0;
            text-shadow: 4px 4px 0px var(--accent);
        }

        @keyframes spaceScroll {
            from { background-position: 0 0, 40px 60px, 130px 270px; }
            to { background-position: 550px 550px, 350px 350px, 250px 250px; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        footer {
            z-index: 20;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            font-size: 0.7rem;
            margin-top: 20px;
        }

        footer a {
            color: var(--text);
            transition: color 0.2s;
        }

        footer a:hover {
            color: var(--accent);
        }