* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2a3a4a;
    color: #F5E6A3;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: #3A4A5C;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #F5E6A3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-buttons {
    display: flex;
    gap: 2rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #2a3a4a;
    color: #F5E6A3;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 600;
    cursor: pointer;
}

.nav-btn:hover {
    background-color: #F5E6A3;
    color: #3A4A5C;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(245, 230, 163, 0.3);
    border-color: #F5E6A3;
}

.btn-icon {
    font-size: 1.3rem;
}

.btn-text {
    font-size: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Servers Section */
.servers-section {
    margin-top: 2rem;
}

.section-title {
    font-size: 2.5rem;
    color: #F5E6A3;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Server Card */
.server-card {
    background-color: #3A4A5C;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #4a5a6c;
}

.server-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(245, 230, 163, 0.2);
    border-color: #F5E6A3;
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.server-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #F5E6A3;
}

.server-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.status-online {
    background-color: #2ecc71;
    color: #fff;
}

.status-offline {
    background-color: #e74c3c;
    color: #fff;
}

.server-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background-color: #2a3a4a;
    border-radius: 6px;
    border-left: 3px solid #F5E6A3;
}

.info-label {
    color: #F5E6A3;
    font-weight: 600;
}

.info-value {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-buttons {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .servers-grid {
        grid-template-columns: 1fr;
    }
}