:root {
    --bg: #0e0f14;
    --card: #151823;
    --accent: #5865f2; /* Discord */
    --text: #e5e7eb;
    --muted: #9ca3af;
    --danger: #ef4444;
    --radius: 14px;
}

* {
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
}

body {
    margin: 0;
    background: radial-gradient(circle at top, #1b1f33, var(--bg));
    color: var(--text);
    min-height: 100vh;
}

/* Center Layout */
.center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Card */
.card {
    background: var(--card);
    padding: 40px;
    border-radius: var(--radius);
    width: 420px;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
    text-align: center;
}

/* Logo */
.logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.logo span {
    color: var(--accent);
}

.subtitle {
    color: var(--muted);
    margin-bottom: 30px;
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(88,101,242,.4);
}

/* Dashboard */
.wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.box {
    background: var(--card);
    border-radius: var(--radius);
    padding: 25px;
    transition: transform .15s ease;
}

.box:hover {
    transform: translateY(-4px);
}

.box h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.box p {
    color: var(--muted);
}

.logout {
    color: var(--danger);
    text-decoration: none;
    font-weight: 600;
}
