/* User Authentication Styles */.auth-widget {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    min-width: 80px; /* Prevent layout collapse */
}.auth-skeleton {
    width: 80px;
    height: 32px;
    display: inline-block;
}.auth-btn-icon {
    margin-right: 6px;
    color: var(--accent);
}.user-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 12px;
    border: 2px solid var(--border);
    background: var(--panel-dark);
    box-shadow: var(--shadow-m);
    transition: border-color 0.12s linear;
}.user-chip:hover {
    border-color: var(--border-strong);
}.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--accent);
}.user-name {
    font-size: 1.05rem;
    color: var(--text);
}.btn-logout {
    padding: 2px 8px;
    font-size: 0.85rem;
    cursor: pointer;
    min-height: auto;
    margin-left: 4px;
    box-shadow: var(--shadow-s);
}.btn-logout:active {
    transform: translate(2px, 2px);
    box-shadow: none;
}/* Doubled-up selectors: the login button lives inside .nav-links, whose link
   rules (color, padding, underline, gold hover) would otherwise win the
   cascade and wash the button out. */.btn.btn-discord,
.nav-links a.btn-discord {
    padding: 0.32em 1.5em;
    background: #5865f2;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.55);
    border-color: #2b3178;
    box-shadow: var(--shadow-m);
}.nav-links a.btn-discord::after {
    display: none;
}/* Keep the lift physics but swap the gold ring for a white one: gold on
   blurple clashes. */.btn.btn-discord:hover,
.nav-links a.btn-discord:hover {
    background: #6b76f5;
    color: #ffffff;
    border-color: #2b3178;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.75), 6px 6px 0 #000000;
}.btn.btn-discord:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}.btn-discord .auth-btn-icon {
    color: #ffffff;
}