:root {
    --bg: #0f1720;
    --text: #e6eef7;
    --muted: #94a3b8;
    --accent: #7dd3fc;
    --accent-2: #a78bfa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
    text-align: center;
    padding: 40px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 30px;
}

.servers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background-color: #1b2736;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s, background 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    background-color: #2c3e50;
}

.server-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid var(--accent);
    transition: transform 0.3s;
}
.server-logo:hover {
    transform: scale(1.1);
}

.card h2 {
    margin-bottom: 10px;
    color: var(--accent-2);
}

.card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

a.button {
    display: inline-block;
    margin: 5px;
    padding: 10px 18px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.3s ease;
}

a.button:hover {
    transform: translateY(-3px);
}

a.home-button {
    all: unset; 
    position: fixed;
    top: 16px;
    left: 16px;
    padding: 8px 14px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fff !important;
    font-weight: bold;
    text-decoration: none !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background 0.3s ease;
    z-index: 1000;
    cursor: pointer;
}

a.home-button:hover {
    transform: translateY(-2px) scale(1.05);
}
