* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #0e0e0e;
    color: #fff;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #0b0b0b;
    border-bottom: 1px solid #1c1c1c;
}

.logo {
    font-weight: 800;
    font-size: 22px;
    color: #ff7a18;
}

.navbar a {
    color: #ccc;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
}

.navbar a:hover {
    color: #ff7a18;
}

/* HERO */
.hero {
    height: 90vh;
    background: radial-gradient(circle at top, #ff7a1833, transparent),
                linear-gradient(to bottom, #0e0e0e, #000);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    color: #ff7a18;
}

.hero p {
    margin: 15px 0 30px;
    font-size: 18px;
    color: #bbb;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.primary {
    background: linear-gradient(135deg, #ff7a18, #ff9b3f);
    color: #000;
}

.secondary {
    border: 2px solid #ff7a18;
    color: #ff7a18;
}

/* FEATURES */
.features {
    padding: 80px 10%;
    background: #0b0b0b;
    text-align: center;
}

.features h2 {
    margin-bottom: 40px;
    font-size: 36px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.card {
    background: #141414;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #1f1f1f;
}

.discord {
    height: 20vh;
    background: radial-gradient(circle at top, #ff7a1833, transparent),
                linear-gradient(to bottom, #0e0e0e, #000);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

