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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    padding: 2rem;
    color: #e2e8f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.location {
    color: #94a3b8;
    font-size: 0.95rem;
}

.last-updated {
    color: #94a3b8;
    font-size: 0.9rem;
}

.server-status-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 2px solid;
    transition: all 0.3s ease;
}

.server-status-card.online {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.05);
}

.server-status-card.offline {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.05);
}

.server-status-card.maintenance {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.05);
}

.server-status-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.server-status-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.server-status-icon.online {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.server-status-icon.offline {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.server-status-icon.maintenance {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.server-status-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.server-status-text {
    font-size: 1.1rem;
    color: #94a3b8;
}

.server-status-text.online {
    color: #10b981;
    font-weight: 600;
}

.server-status-text.offline {
    color: #ef4444;
    font-weight: 600;
}

.server-status-text.maintenance {
    color: #f59e0b;
    font-weight: 600;
}

.services-section {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.services-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.services-list {
    display: grid;
    gap: 1rem;
}

.service-item {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    transition: transform 0.2s, border-color 0.2s;
}

.service-item:hover {
    transform: translateX(4px);
    border-color: rgba(148, 163, 184, 0.2);
}

.service-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-status {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-status.online {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.service-status.offline {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.service-status.maintenance {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.service-description {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.service-badge {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.online {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.service-badge.offline {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.service-badge.maintenance {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    header {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .server-status-card {
        padding: 1.5rem;
    }

    .server-status-icon {
        width: 60px;
        height: 60px;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
