.intro {
    background: #2c3e50;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro h1 {
    font-size: 2.5rem;
    font-family: 'MaPolice', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Call-to-action */
.call-to-action {
    padding: 40px 20px;
    background-color: #1f1f1f;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-in-out;
}

.call-to-action h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.call-to-action p {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 30px;
}

/* Donation Section */
.donation-section {
    padding: 40px 20px;
    background-color: #282828;
    color: #fff;
    text-align: center;
}

.donation-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.donation-section p {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 40px;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.donation-card {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 320px;
    margin: 0 auto;
}

.donation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.donation-card h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.donation-card p {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 20px;
}

.donation-card .amount {
    font-size: 2rem;
    color: #5e60e0;
    font-weight: bold;
    margin-bottom: 25px;
}

/* Server Info */
.server-info {
    background-color: #2c3e50;
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
}

.server-info h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'MaPolice', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.server-info .status.online { color: #28a745; }
.server-info .status.offline { color: #dc3545; }

.faction {
    background-color: #431482;
    border: 1px solid #b6d8e3;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #2d8a8b;
    cursor: pointer;
}

.faction h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.faction p, .faction strong { font-size: 1.1em; margin: 5px 0; }

.faction:hover { background-color: #10179c; }

#faction-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
