body {
    background-color: #222222;
    background-image: url('bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #dddddd;
    font-family: "Courier New", Courier, monospace;
    margin: 0;
    padding: 20px;
}

/* Link Styles */
a:link {
    color: #e2e2e0;
    text-decoration: underline;
}

a:visited {
    color: #aaaaaa;
    text-decoration: underline;
}

a:hover {
    color: #222222;
    background-color: #e2e2e0;
    text-decoration: none;
}

a:active {
    color: #e2e2e0;
    background-color: transparent;
    text-decoration: underline;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #dddddd;
    padding: 20px;
    box-shadow: 5px 5px 0px #444444;
    background-color: #222222;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 3em;
    margin: 0;
    letter-spacing: 5px;
    /* text-transform: uppercase; Removed */
    text-shadow: 2px 2px #444444;
}

.logo {
    max-width: 150px;
    /* Adjust size as needed */
    height: auto;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.marquee-container {
    background-color: #000000;
    color: #00FF00;
    font-weight: bold;
    padding: 5px;
    margin-top: 10px;
    border: 1px solid #dddddd;
}

hr {
    border: 0;
    border-top: 2px solid #dddddd;
    margin: 20px 0;
}

.server-info {
    text-align: center;
    background-color: #333333;
    padding: 15px;
    border: 1px dashed #dddddd;
}

.info-box button {
    background-color: #444444;
    color: #e2e2e0;
    border: 2px outset #666666;
    border-right-color: #222222;
    border-bottom-color: #222222;
    padding: 5px 10px;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.info-box button:active {
    border: 2px inset #666666;
    border-right-color: #222222;
    border-bottom-color: #222222;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
    color: #888888;
}

ul {
    list-style-type: square;
}

/* Donate Button */
.donate-btn {
    display: inline-block;
    background-color: #444444;
    color: #e2e2e0;
    border: 2px outset #666666;
    border-right-color: #222222;
    border-bottom-color: #222222;
    padding: 10px 20px;
    font-family: inherit;
    font-weight: bold;
    text-decoration: none;
    margin-top: 15px;
    cursor: pointer;
}

.donate-btn:hover {
    background-color: #555555;
    color: #e2e2e0;
    border: 2px outset #777777;
    border-right-color: #333333;
    border-bottom-color: #333333;
}

.donate-btn:active {
    border: 2px inset #666666;
    border-right-color: #222222;
    border-bottom-color: #222222;
}

.card-donation small {
    color: #666666;
    display: block;
    margin-top: 5px;
}
/* Mobile Responsiveness */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .container {
        width: 100%;
        max-width: none;
        padding: 10px;
        box-sizing: border-box; /* Ensure padding doesn't affect width */
    }

    h1 {
        font-size: 2em; /* Smaller title */
        letter-spacing: 2px;
    }

    .logo {
        max-width: 100px; /* Smaller logo */
    }

    .server-info {
        padding: 10px;
        word-wrap: break-word; /* Prevent overflow of long addresses */
    }

    .info-box p {
        font-size: 0.9em;
    }
}
