        /* === General === */
        body {
            margin: 0;
            font-family: 'Roboto Condensed', cursive;
            background-color: #111;
            color: #f0e0e0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* === Header === */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #111;
            border-bottom: 2px solid #800;
            padding: 1rem 2rem;
        }

        .logo {
            font-size: 2rem;
            color: #f00;
            font-family: 'UnifrakturCook', cursive;
        }

        nav a {
            color: #f0e0e0;
            margin-left: 1.5rem;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.2s ease;
        }

            nav a:hover {
                color: #f00;
            }

        /* === Hero === */
        .hero {
            flex: 1;
            text-align: center;
            padding: 4rem 2rem;
            color: #111
        }

            .hero h1 {
                font-size: 3rem;
                color: #d00;
                margin-bottom: 1rem;
            }

            .hero p {
                font-size: 1.2rem;
                max-width: 600px;
                margin: 0 auto 2rem;
                color: #f0e0e0;
            }

        /* === Buttons === */
        .buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.8rem 1.5rem;
            font-size: 1rem;
            font-weight: bold;
            border: none;
            border-radius: 999px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', bold;
        }

            .btn.red {
                background: #a00;
                color: #fff;
                padding: 15px 30px;
                font-size: 20px;
            }

                .btn.red:hover {
                    background: #f00;
                    box-shadow: 0 0 15px #f00;
                }

            .btn.black {
                background: #000;
                color: #a00;
                border: 2px solid #a00;
                padding: 15px 30px;
                font-size: 20px;
            }

                .btn.black:hover {
                    background: #a00;
                    color: #000;
                    box-shadow: 0 0 15px #a00 inset;
                }

            .btn.glow {
                background: linear-gradient(to right, #f00, #800);
                color: #fff;
                box-shadow: 0 0 8px #f00, 0 0 16px #800;
                padding: 15px 30px;
                font-size: 20px;
            }

                .btn.glow:hover {
                    transform: scale(1.05);
                    box-shadow: 0 0 20px #f00, 0 0 40px #a00;
                }

            .btn.twitch {
                background: #9146FF;
                color: #fff;
                padding: 25px 50px;
                font-size: 30px;
            }

                .btn.twitch:hover {
                    background: #9146FF;
                    box-shadow: 0 0 19px #9146FF;
                }

            .btn.youtube {
                background: #FF0000;
                color: #fff;
                padding: 25px 50px;
                font-size: 30px;
            }

                .btn.youtube:hover {
                    background: #FF0000;
                    box-shadow: 0 0 19px #FF0000;
                }

            .btn.tiktok {
                background: #000000;
                color: #fff;
                padding: 25px 50px;
                font-size: 30px;
            }

                .btn.tiktok:hover {
                    background: #000000;
                    box-shadow: 0 0 19px #25F4EE;
                }

            .btn.twitter {
                background: #1D9BF0;
                color: #fff;
                padding: 25px 50px;
                font-size: 30px;
            }

                .btn.twitter:hover {
                    background: #1D9BF0;
                    box-shadow: 0 0 19px #1D9BF0;
                }

            .btn.instagram {
                background: #E1306C;
                color: #fff;
                padding: 25px 50px;
                font-size: 30px;
            }

                .btn.instagram:hover {
                    background: #E1306C;
                    box-shadow: 0 0 19px #E1306C;
                }

            .btn.kofi {
                background: #DAA06D;
                color: #fff;
                padding: 25px 50px;
                font-size: 30px;
            }

                .btn.kofi:hover {
                    background: #DAA06D;
                    box-shadow: 0 0 19px #DAA06D;
                }

            .btn.throne {
                background: #4a2bff;
                color: #fff;
                padding: 25px 50px;
                font-size: 30px;
            }

                .btn.throne:hover {
                    background: #4a2bff;
                    box-shadow: 0 0 19px #3a73ff;
                }

        /* === Footer === */
        footer {
            background: #111;
            color: #f0e0e0;
            text-align: center;
            padding: 1rem;
            font-size: 0.9rem;
            border-top: 2px solid #800;
        }

        /* === Footer Hyperlinks === */
        p a:link,
        details a:link,
        footer a:link {
            color: #4FC3F7; /* Light Blue */
        }

        p a:visited,
        details a:visited,
        footer a:visited {
            color: #4FC3F7; /* Also Light Blue */
        }

        p a:hover,
        details a:hover,
        footer a:hover {
            color: #81D4FA; /* Soft Blue */
        }

        p a:active,
        details a:active,
        footer a:active {
            color: #FFB74D; /* Soft Orange */
        }

        /* === Website Changelogs === */

        .changelog {
            flex-grow: 1;
            padding: 2rem;
            background: #111;
            color: #f0e0e0;
        }

        details {
            margin-bottom: 1rem;
            border: 1px solid orange;
            padding: 1rem;
            border-radius: 8px;
            background: #1a1a1a;
        }

        summary {
            cursor: pointer;
            font-size: 1.2rem;
            color: orange;
        }

        /* === Privacy Policy === */

        #privacy-policy {
            padding: 2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
