* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: white;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background: #111;
    border-bottom: 1px solid #222;
}

header h1 {
    color: #8A2BE2;
    font-size: 28px;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #8A2BE2;
}

.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    color: #b0b0b0;
    font-size: 18px;
}

.buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.buttons a {
    display: inline-block;
    padding: 14px 28px;
    background: #8A2BE2;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.buttons a:hover {
    background: #6f1fd1;
    transform: translateY(-2px);
}

section {
    padding: 70px 60px;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: #151515;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: 0.3s;
}

.card:hover {
    border-color: #8A2BE2;
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: #b0b0b0;
}

.about p,
.support p {
    max-width: 800px;
    margin: auto;
    text-align: center;
    color: #b0b0b0;
}

.stats ul,
.update ul {
    list-style: none;
    text-align: center;
}

.stats li,
.update li {
    margin: 10px 0;
    color: #b0b0b0;
}

.support .buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

footer {
    text-align: center;
    padding: 40px;
    background: #111;
    border-top: 1px solid #222;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
    color: #b0b0b0;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero h2 {
        font-size: 32px;
    }

    section {
        padding: 50px 20px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }
}
