* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f1117;
    color: #ffffff;
    line-height: 1.6;
}

/* Header */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #151823;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ccc;
}

.logo img {
    height: 40px;
    width: auto;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    transition: 0.3s;
}

    nav a:hover {
        color: #fff;
    }

.btn-nav {
    background: #5865F2;
    padding: 8px 16px;
    border-radius: 6px;
    color: #fff !important;
}

/* Hero */

.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(135deg, #1e2233, #0f1117);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #bbb;
}

.hero-buttons a {
    margin: 0 10px;
}

/* Buttons */

.btn-primary {
    background: #5865F2;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-primary:hover {
        background: #4752c4;
    }

.btn-secondary {
    background: transparent;
    border: 2px solid #5865F2;
    color: #5865F2;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-secondary:hover {
        background: #5865F2;
        color: white;
    }

.large {
    font-size: 1.1rem;
    padding: 15px 30px;
}

/* Features */

.features {
    padding: 80px 60px;
    text-align: center;
    background: #12151f;
}

    .features h2 {
        margin-bottom: 50px;
        font-size: 2rem;
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #1b1f2e;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
}

    .feature-card:hover {
        transform: translateY(-5px);
        background: #22273a;
    }

/* About */

.about {
    padding: 80px 60px;
    text-align: center;
}

    .about p {
        max-width: 800px;
        margin: auto;
        color: #bbb;
    }

/* CTA */

.cta {
    padding: 80px 60px;
    text-align: center;
    background: linear-gradient(135deg, #5865F2, #4752c4);
}

    .cta h2 {
        margin-bottom: 30px;
    }

/* Footer */

footer {
    text-align: center;
    padding: 20px;
    background: #0b0d13;
    font-size: 0.9rem;
    color: #777;
}

/* Responsive */

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    nav {
        margin-top: 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .features, .about, .cta {
        padding: 60px 20px;
    }
}


