/* Dark Theme */
body {
    background-color: #0a0a0f;
    color: #c0c0c0;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}
h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
/* Centered Container */
.container {
    max-width: 90%;
    width: 600px;
    padding: 20px;

}

/* Responsive Image */
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 3px solid #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Discord Link */
.discord-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #fff;
    background-color: #5865F2;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.discord-link:hover {
    background-color: #4752C4;
    box-shadow: 0 0 15px rgba(0, 82, 204, 0.8);
}
