* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #1a1a2e;
    color: #f0f0f0;
    line-height: 1.6;
<!--background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');-->
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: rgba(26, 26, 46, 0.9);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #00ddff;
    text-align: center;
    margin-bottom: 10px;
}

.logo span {
    color: #b12bff;
}

.logo end {
    color: #f1cfff;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #c1a7e2;
}

.hero {

    text-align: center;
    padding: 200px 0;
    background-color: rgba(0, 0, 0, 0.5);
    margin-bottom: 50px;

}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #c1a7e2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ddd;
}

.server-ip {
    background-color: rgb(20, 12, 30);
    border: 2px solid #c1a7e2;
    border-radius: 10px;
    padding: 15px 30px;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #c1a7e2;
    margin-top: 20px;
    transition: all 0.3s;
}

.server-ip:hover {
    background-color: rgba(193, 167, 226, 0.2);
    transform: scale(1.05);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background-color: rgba(40, 40, 60, 0.8);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    color: #c1a7e2;
    margin-bottom: 15px;
    font-size: 22px;
}

.feature-card p {
    color: #ccc;
}

.servers {
    background-color: rgba(40, 40, 60, 0.8);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.servers h2 {
    color: #c1a7e2;
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
}

.server-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.server-details {
    flex: 1;
    min-width: 300px;
}

.server-details h3 {
    color: #c1a7e2;
    margin-bottom: 15px;
    font-size: 24px;
}

.server-status {
    flex: 1;
    min-width: 300px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
}

.status-online {
    color: #c1a7e2;
    font-weight: bold;
    font-size: 20px;
}

.players-online {
    margin-top: 15px;
    font-size: 18px;
}

footer {
    background-color: rgba(26, 26, 46, 0.9);
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #c1a7e2;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c1a7e2;
}

.copyright {
    margin-top: 20px;
    color: #888;
    width: 100%;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .server-ip {
        font-size: 20px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }
}