/* Global */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0b1020;
    color: white;
}

/* Hero Section */

.hero {
    background: url('/assets/hero.png') center center / cover no-repeat;
    height: 100vh;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.55);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo {
    width: 280px;
    max-width: 80%;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-align: center;
}

p {
    font-size: 1.1rem;
    text-align: center;
    margin: 6px 0;
}

/* Server Box */

.server-box {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(255,255,255,0.08);
    padding: 12px 18px;
    border-radius: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.server-box button {
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* Buttons */

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    text-decoration: none;
    color: white;
    background: #3fa34d;
    border-radius: 8px;
    transition: 0.25s;
}

.btn:hover {
    opacity: 0.9;
}

.secondary {
    background: #444;
}

/* Features */

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 60px 20px;
    flex-wrap: wrap;
    background: #111827;
}

.card {
    background: #1f2937;
    padding: 25px;
    border-radius: 12px;
    width: 280px;
    text-align: center;
    transition: transform 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Join Section */

.join {
    padding: 60px 20px;
    text-align: center;
    background: #0f172a;
}

.join strong {
    display: block;
    margin-top: 15px;
    font-size: 1.4rem;
}

/* Footer */

footer {
    text-align: center;
    padding: 20px;
    background: black;
    font-size: 0.9rem;
}
