body {

    background: #0d1117;

    color: #e6edf3;

    font-family:
        "Segoe UI",
        system-ui,
        sans-serif;

    margin: 0;
    padding: 30px;
}

.container {

    max-width: 1200px;

    margin: 0 auto;
}

.banner {
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 12px;
}

.banner img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #30363d;
}

.header {

    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;

    backdrop-filter: blur(6px);
    background: rgba(13, 17, 23, 0.4);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #30363d;
}

.server-icon {

    width: 64px;

    height: 64px;

    border-radius: 50%;
}

.header h1 {

    margin: 0;

    font-size: 2.5rem;

    letter-spacing: 0.5px;
}

.subtitle {

    color: #8b949e;

    margin-top: 4px;
}

.dashboard-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(350px, 1fr));

    gap: 20px;
}

.card {

    background: #161b22;

    border: 1px solid #30363d;

    border-top: 3px solid #d97706;

    border-radius: 12px;

    padding: 18px;

    transition: 0.2s ease;
}

.card:hover {

    transform: translateY(-2px);

    border-color: #4c5561;
}

.card h2 {

    margin-top: 0;

    margin-bottom: 16px;
}

.stat-row {

    display: flex;

    justify-content: space-between;

    padding: 10px 0;

    border-top: 1px solid #30363d;
}

.online {

    color: #23a55a;

    font-weight: 600;
}

.offline {

    color: #f85149;

    font-weight: 600;
}

.player {

    margin: 6px 0;
}

.secondary {

    color: #8b949e;
}

.events {

    color: #8b949e;

    padding-left: 18px;
}

footer {

    margin-top: 32px;

    text-align: center;
}