body {
            background-color: black;
            color: white;
            font-family: 'Comic Sans MS', 'Comic Sans', cursive;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            text-align: center;
            max-width: 500px;
            width: 100%;
        }

        .discord-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
        }

        .discord-icon svg {
            width: 100px;
            height: 100px;
            fill: white;
        }

        h1 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: white;
        }

        .username {
            color: #ffffff;
        }

        .status-box {
            background-color: #000000;
            border: 2px solid white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }

        .status-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }

        .status-label {
            color: white;
            font-size: 1.1rem;
        }

        .status-value {
            font-weight: bold;
            font-size: 1.1rem;
        }

        .status-yes {
            color: lime;
        }

        .status-no {
            color: red;
        }

        .status-limited {
            color: yellow;
        }

        button {
            margin-top: 20px;
            padding: 12px 30px;
            font-size: 1rem;
            font-family: 'Comic Sans MS', 'Comic Sans', cursive;
            cursor: pointer;
            background-color: #000000;
            color: white;
            border: 2px solid white;
            border-radius: 8px;
        }

        button:hover {
            background-color: #252525;
        }