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

body {
    background: linear-gradient(to bottom, #0f0f23, #1a1a3a);
    color: #e0e0ff;
    line-height: 1.6;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid #444;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #00b3ff;
    text-shadow: 0 0 10px #00b3ff;
}

.nav {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1rem;
    background: #0077cc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #005fa3;
}

.main {
    padding: 2rem 5%;
}

.hero {
    text-align: center;
    margin-bottom: 3rem;
}

.status {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 179, 255, 0.1);
    border-radius: 10px;
}

.online {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.player-list-container {
    margin-top: 1rem;
}

.player-list-container h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #00b3ff;
}

.player-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.player-list li {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-list li:last-child {
    border-bottom: none;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00b3ff;
    text-shadow: 0 0 20px #00b3ff;
}

.subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 1.5rem;
}

.ip, .online {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.ip span {
    font-weight: bold;
    color: #00b3ff;
}

.servers h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #00b3ff;
}

.server-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.server-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 179, 255, 0.3);
}

.server-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #00b3ff;
}

.server-card p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid #444;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .header, .nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    h1 {
        font-size: 2.2rem;
    }
}
