:root {
    color-scheme: dark;
}

body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100vh; /* Full viewport height */
    justify-content: space-between; /* Space between content */
}

h1 {
    font-size: 2rem;
}

p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 10px auto;
}

.container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.box {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.box h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.separator {
    width: 80%;
    height: 2px;
    background: radial-gradient(circle, #bb86fc 0%, transparent 80%);
    border-radius: 50%;
    margin: 10px auto;
}

.box a {
    display: inline-block;
    color: #bb86fc;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #2a2a2a;
    transition: 0.3s;
    margin: 5px 0;
}

.box a:hover {
    background-color: #bb86fc;
    color: #121212;
}

.intro-text {
    text-align: center;
    padding: 20px;
    margin-top: auto; /* This ensures it stays at the bottom */
}

/* New Discord Button Style */
.discord-btn {
    margin-top: 30px;
}

.discord-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #7289da; /* Discord Blue */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.discord-btn a:hover {
    background-color: #5b6eae; /* Darker Discord Blue */
}

.discord-btn i {
    margin-right: 8px; /* Space between icon and text */
    font-size: 1.5rem;
}