@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

body {
    background-color: #0b0a1a;
    background-image: radial-gradient(circle at 50% 0%, #1a1638 0%, #0b0a1a 80%);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(87, 242, 135, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}


.server-card {
    position: relative;
    overflow: hidden;
}
.server-card.disabled {
    opacity: 0.7;
    filter: grayscale(100%);
}
.server-card.disabled:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.server-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.1);
}
.btn-primary {
    background: #5865F2;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}
.btn-primary:hover { background: #4752c4; }