/* ── Discord-inspired palette overrides ─────────────── */
[data-bs-theme="dark"] {
    --bs-body-bg:         #1e1f22;
    --bs-body-color:      #dbdee1;
    --bs-card-bg:         #2b2d31;
    --bs-border-color:    rgba(255,255,255,0.08);
    --bs-secondary-bg:    #313338;
    --bs-tertiary-bg:     #2b2d31;
    --bs-primary-rgb:     88, 101, 242;
    --bs-success-rgb:     35, 165, 90;
    --bs-danger-rgb:      237, 66, 69;
    --bs-secondary-color: #949ba4;
}

/* ── Hero logo ────────────────────────────────────────── */
.hero-logo {
    width: 128px;
    height: 128px;
    filter: drop-shadow(0 0 24px rgba(200,150,0,0.5));
}

@media (max-width: 575.98px) {
    .hero-logo { width: 96px; height: 96px; }
}

/* ── Discord login button ─────────────────────────────── */
.btn-discord {
    background-color: #5865f2;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.15s, transform 0.1s;
}

.btn-discord:hover {
    background-color: #4752c4;
    color: #fff;
    transform: translateY(-1px);
}

/* ── Card hover ───────────────────────────────────────── */
.card-hover:hover .card {
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.card-hover .card {
    transition: border-color 0.15s, transform 0.1s, box-shadow 0.15s;
}

/* ── Utility ──────────────────────────────────────────── */
.min-w-0 { min-width: 0; }
.ls-wide  { letter-spacing: 0.07em; }
