* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(#1b1b3a, #2e1a47);
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.7);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.download-btn {
    background: #d12d2d;
    padding: 8px 15px;
    border-radius: 5px;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

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

.hero-image {
    max-width: 100%;
    border-radius: 10px;
}

.play-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #3a2d8f;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

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

.servers, .facebook, .news {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 10px;
}

.servers h2, .facebook h2, .news h2 {
    margin-bottom: 10px;
}

.servers a, .facebook a {
    display: block;
    background: #32265c;
    margin: 8px 0;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    text-align: center;
}

.facebook a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news .news-item {
    background: #32265c;
    height: 50px;
    border-radius: 5px;
    margin: 5px 0;
}

@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 10px;
        border-radius: 5px;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
