* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: linear-gradient(rgba(10, 15, 30, 0.6), rgba(12, 17, 34, 0.65)), url('/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ddd;
}
.server-card {
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 32px 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 25px 45px rgba(0,0,0,0.5);
}
h1 {
    font-size: clamp(22px, 5.5vw, 32px);
    font-weight: 700;
    background: linear-gradient(135deg, #ffd966, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    white-space: nowrap;
}
.server-name {
    color: #ffd966;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border-bottom: 1px dashed #444;
    display: inline-block;
    padding-bottom: 6px;
}
.online-box {
    background: #00000055;
    border-radius: 48px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #ffd96633;
}
.players-count {
    font-size: 64px;
    font-weight: bold;
    color: #ffd966;
    line-height: 1;
}
.players-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}
.uptime {
    font-size: 14px;
    color: #aaa;
    margin-top: 15px;
    font-family: monospace;
}
.rate-box {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 20px 0;
}
.rate-item {
    background: #11161f;
    border-radius: 16px;
    padding: 10px;
    flex: 1;
}
.rate-value {
    font-size: 20px;
    font-weight: bold;
    color: #ffaa33;
}
.status {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 8px #2ecc71;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { opacity: 0.4; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}
.footer {
    margin-top: 25px;
    font-size: 11px;
    color: #555;
}
.server-start {
    font-size: 11px;
    color: #444;
    margin-top: 8px;
}
