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

html,
body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #050816 0, #02040a 55%, #000000 100%);
    color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Grid-baggrund */

.bg-grid {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(#1f293766 1px, transparent 1px),
        linear-gradient(90deg, #1f293766 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.page {
    position: relative;
    z-index: 1;
    padding: 24px;
    width: 100%;
    max-width: 480px;
}

/* Header */

.header {
    margin-bottom: 16px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-mini {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #9ca3af;
}

.logo-title {
    font-size: 28px;
    font-weight: 700;
    color: #f9fafb;
}

.logo-subtitle {
    font-size: 14px;
    color: #9ca3af;
}

/* Card */

.card {
    margin-top: 16px;
    backdrop-filter: blur(18px);
    background: linear-gradient(145deg, #020617ee, #020617dd);
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: 24px 22px 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75);
}

/* Discord-knap */

.btn-discord {
    width: 100%;
    padding: 12px 18px;
    border-radius: 999px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #f9fafb;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
    transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.btn-discord:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.7);
    opacity: 0.96;
}

.btn-discord:active {
    transform: translateY(1px) scale(0.99);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.9);
}

/* Status */

.status-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: #d1d5db;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    display: inline-block;
}

.dot-online {
    background: #22c55e;
    box-shadow: 0 0 12px #22c55eaa;
}

.dot-offline {
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444aa;
}

/* Stats */

.stats-list {
    list-style: none;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
}

.stats-list .label {
    color: #9ca3af;
    margin-right: 4px;
}

.stats-list span:last-child {
    color: #e5e7eb;
}

/* Footer */

.footer-text {
    margin-top: 18px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
}
