/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: Arial, sans-serif;
    color: #fff;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Background */
.background {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header */
header {
    padding: 20px 0;
    text-align: center;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

header p {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ddd;
}

/* Content Section */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.content {
    padding: 50px 0;
}

.content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ccc;
}

.discord-button {
    background: linear-gradient(45deg, #7289da, #5b6eae);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 30px;
    transition: background 0.3s, transform 0.3s;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.discord-button:hover {
    background: linear-gradient(45deg, #5b6eae, #7289da);
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 50px 0;
    background: #1e3c72;
}

.features h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.feature-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature-card {
    background: #2a5298;
    padding: 20px;
    border-radius: 10px;
    margin: 10px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1em;
    color: #ddd;
}

/* Footer */
footer {
    padding: 20px 0;
    text-align: center;
    background: #1a1a1a;
    border-top: 2px solid #4CAF50;
}

footer p {
    margin: 0;
    font-size: 0.9em;
    color: #aaa;
}
    