
.homepage-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 2;
    color: #ddd;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    text-align: center;
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    border-radius: 12px;
    background: #f4f9ff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(to top, #111a29, #183451);
    color: #ccc;
}

.intro-box, .section-box, .join-box {
    text-align: center;
    margin-bottom: 40px;
}

.intro-box h1, .section-box h2, .join-box h2 {
    color: #0080FF;
    margin-bottom: 20px;
    font-size: 2rem;
}

.intro-box p, .section-box p, .join-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.feature {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    width: 280px;
}

.feature h3 {
    color: #0080FF;
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.cta-button {
    background: #0080FF;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #005bb5;
}

.cta-button.signup {
    background: #db9d2c;
}
.cta-button.signup:hover {
    background: #9b6f1e;
}
.cta-button.signup i {
    margin-right: 8px;
}

.cta-button.download {
    background: #28a745;
}
.cta-button.download:hover {
    background: #218838;
}
.cta-button.download i {
    margin-right: 8px;
}

.cta-button.discord {
    background: #5865F2;
}
.cta-button.discord:hover {
    background: #4752c4;
}
.cta-button.discord i {
    margin-right: 8px;
}

.getting-started {
    background: #111a29;
    color: #ccc;
    padding: 40px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.reasons, .steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.reason, .step {
    background: #183451;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 250px;
    max-width: 300px;
}

.reason h3, .step h3 {
    color: #0080FF;
    margin-bottom: 10px;
}

.reason p, .step p {
    font-size: 1rem;
    line-height: 1.4;
}
