/* Dashboard shell — matches homepage / profile glass theme + admin-style sidebar */

.login-pulse-reveal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: 1;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(230, 232, 255, 0.72) 22%,
        rgba(165, 180, 252, 0.42) 42%,
        rgba(99, 102, 241, 0.22) 58%,
        rgba(5, 5, 5, 0.94) 82%
    );
    transition: opacity 1.15s ease-out;
}

.login-pulse-reveal-overlay.is-fading {
    opacity: 0;
}

body.dashboard-page-body {
    background: #050505;
    color: #f5f5f5;
    padding: 0;
    min-height: 100vh;
    overflow-x: clip;
}

body.dashboard-page-body .dashboard-legacy-wrap {
    max-width: none;
    margin: 0;
    padding: var(--site-header-sticky-top, 72px) 0 0;
    box-sizing: border-box;
}

body.dashboard-page-body #headerContainer {
    width: 100%;
}

.dash-shell {
    display: flex;
    align-items: stretch;
    min-height: calc(100dvh - var(--site-header-sticky-top, 72px) - 32px);
    max-width: min(1400px, 100%);
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px) 32px;
    box-sizing: border-box;
    gap: 0;
    position: relative;
}

.dash-sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 280;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

body.dash-nav-open .dash-sidebar-backdrop {
    display: block;
}

.dash-sidebar {
    flex: 0 0 220px;
    width: 220px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    margin-right: clamp(20px, 2.5vw, 28px);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dash-rail-brand {
    margin: 0;
    padding: 18px 16px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.dash-sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 10px 8px;
    gap: 4px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.dash-sidebar-nav .tab-button {
    flex: 0 0 auto;
    min-width: 0;
    width: 100%;
    text-align: left;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.62);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    position: relative;
    white-space: nowrap;
}

.dash-sidebar-nav .tab-button:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
}

.dash-sidebar-nav .tab-button.active {
    color: #fff;
    background: rgba(99, 102, 241, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dash-sidebar-nav .tab-button.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 18px;
    border-radius: 0 3px 3px 0;
    background: #818cf8;
}

.dash-sidebar-nav .tab-button.active::after {
    display: none;
}

.dash-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

body.dashboard-page-body.dash-shell-tab .dash-page-header,
html[data-dash-tab='personal'] body.dashboard-page-body .dash-page-header,
html[data-dash-tab='friends'] body.dashboard-page-body .dash-page-header,
html[data-dash-tab='messages'] body.dashboard-page-body .dash-page-header,
html[data-dash-tab='profile'] body.dashboard-page-body .dash-page-header,
html[data-dash-tab='discord'] body.dashboard-page-body .dash-page-header,
html[data-dash-tab='account'] body.dashboard-page-body .dash-page-header,
html[data-dash-tab='insignia'] body.dashboard-page-body .dash-page-header {
    display: none !important;
}

html[data-dash-tab='personal'] body.dashboard-page-body #personalTab,
html[data-dash-tab='friends'] body.dashboard-page-body #friendsTab,
html[data-dash-tab='messages'] body.dashboard-page-body #messagesTab,
html[data-dash-tab='profile'] body.dashboard-page-body #profileTab,
html[data-dash-tab='discord'] body.dashboard-page-body #discordTab,
html[data-dash-tab='account'] body.dashboard-page-body #accountTab,
html[data-dash-tab='insignia'] body.dashboard-page-body #insigniaTab {
    display: block !important;
    pointer-events: auto !important;
}

html[data-dash-tab='personal'] body.dashboard-page-body .tab-panel:not(#personalTab),
html[data-dash-tab='friends'] body.dashboard-page-body .tab-panel:not(#friendsTab),
html[data-dash-tab='messages'] body.dashboard-page-body .tab-panel:not(#messagesTab),
html[data-dash-tab='profile'] body.dashboard-page-body .tab-panel:not(#profileTab),
html[data-dash-tab='discord'] body.dashboard-page-body .tab-panel:not(#discordTab),
html[data-dash-tab='account'] body.dashboard-page-body .tab-panel:not(#accountTab),
html[data-dash-tab='insignia'] body.dashboard-page-body .tab-panel:not(#insigniaTab) {
    display: none !important;
    pointer-events: none !important;
}

.dash-page-header[hidden] {
    display: none !important;
}

.dash-page-header {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: clamp(16px, 2.5vw, 24px);
    padding-bottom: clamp(14px, 2vw, 20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.dash-nav-toggle svg {
    display: block;
}

.dash-page-header-text {
    flex: 1;
    min-width: 0;
}

.dash-page-title {
    margin: 0;
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.15;
}

.dash-page-sub {
    margin: 4px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.dash-page-header-user {
    text-align: right;
    flex-shrink: 0;
}

.dash-page-header-user .dash-username {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.dash-tab-container {
    flex: 1;
    min-height: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.dashboard-page-body.dash-shell-tab .dash-tab-container {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.dash-tab-container .dash-tabs-wrapper {
    position: relative;
    overflow: visible;
    min-height: 400px;
    width: 100%;
}

.dash-tab-container .tabs-content {
    display: block !important;
    transform: none !important;
    transition: none !important;
    width: 100%;
    will-change: auto;
}

.dash-tab-container .tab-panel {
    display: none !important;
    width: 100%;
    max-width: 100%;
    min-width: 0 !important;
    padding: clamp(20px, 3vw, 28px);
    opacity: 1 !important;
    pointer-events: none !important;
    box-sizing: border-box;
    flex-shrink: 1 !important;
}

body.dashboard-page-body.dash-shell-tab .dash-tab-container .tab-panel {
    padding: 0;
}

.dash-tab-container .tab-panel.active {
    display: block !important;
    pointer-events: auto !important;
}

/* Glass cards (More tab + shared) */
body.dashboard-page-body .more-page {
    max-width: min(880px, 100%);
    margin: 0;
}

body.dashboard-page-body .more-card,
body.dashboard-page-body .dash-glass-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: clamp(18px, 2.5vw, 24px);
    margin-bottom: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.dashboard-page-body .more-card h2,
body.dashboard-page-body .dash-glass-card h2 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.dashboard-page-body .more-card .card-desc {
    color: rgba(255, 255, 255, 0.48);
}

body.dashboard-page-body .section-header h2 {
    color: #fff;
    font-size: clamp(17px, 2.5vw, 20px);
}

body.dashboard-page-body .data-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

body.dashboard-page-body .tab-button.active {
    color: #c7d2fe;
}

body.dashboard-page-body .loading,
body.dashboard-page-body .loading-spinner-container p {
    color: rgba(255, 255, 255, 0.45);
}

body.dashboard-page-body .loading-spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    text-align: center;
}

body.dashboard-page-body .loading-spinner-container.dash-loading-spinner--compact {
    padding: 24px 12px;
}

body.dashboard-page-body .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.08);
    border-top-color: #818cf8;
    border-radius: 50%;
    animation: dash-spin 1s linear infinite;
    flex-shrink: 0;
}

body.dashboard-page-body .dash-loading-spinner--compact .spinner {
    width: 36px;
    height: 36px;
    border-width: 3px;
}

body.dashboard-page-body .spinner.spinner--inline {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-width: 2px;
    vertical-align: -0.2em;
    margin-right: 6px;
}

body.dashboard-page-body .dash-loading-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

body.dashboard-page-body .dash-loading-inline .spinner.spinner--inline {
    margin-right: 0;
}

@keyframes dash-spin {
    to {
        transform: rotate(360deg);
    }
}

.dash-messages-list-loading {
    display: flex;
    justify-content: center;
    padding: 12px 0;
}

.dash-friend-profile-error {
    margin: 0;
    padding: 16px 0;
    font-size: 14px;
    color: rgba(248, 113, 113, 0.9);
    text-align: center;
}

body.dashboard-page-body footer,
body.dashboard-page-body .dashboard-page-footer {
    max-width: min(1400px, 100%);
    margin: 0 auto;
    padding: 24px clamp(16px, 3vw, 32px) 48px;
    text-align: center;
    color: rgba(255, 255, 255, 0.38);
    font-size: 13px;
    background: transparent;
    border: none;
}

body.dashboard-page-body footer a {
    color: #a5b4fc;
}

/* Hide legacy top header inside old container */
body.dashboard-page-body .dashboard-legacy-wrap > header {
    display: none !important;
}

/* Legacy horizontal tab bar hidden when using sidebar */
body.dashboard-page-body .tab-nav:not(.dash-sidebar-nav) {
    display: none !important;
}

body.dashboard-page-body .tab-container:not(.dash-tab-container) {
    background: transparent;
    border: none;
    box-shadow: none;
}

@media (max-width: 960px) {
    body.dashboard-page-body .dash-shell {
        padding-top: 4px;
    }

    .dash-nav-toggle {
        display: inline-flex;
    }

    .dash-stats-topbar,
    .dash-friends-topbar,
    .dash-messages-topbar {
        position: relative;
        z-index: 2;
    }

    .dash-sidebar-backdrop {
        z-index: 305;
        top: var(--site-header-sticky-top, 0px);
    }

    .dash-sidebar {
        position: fixed;
        top: var(--site-header-sticky-top, 0px);
        left: 0;
        bottom: 0;
        z-index: 310;
        width: min(280px, 88vw);
        max-width: 88vw;
        height: auto;
        margin: 0;
        border-radius: 0 16px 16px 0;
        transform: translateX(-105%);
        transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    body.dash-nav-open .dash-sidebar {
        transform: translateX(0);
    }

    body.dash-nav-open {
        overflow: hidden;
    }

    .dash-main {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .dash-page-header-user {
        width: 100%;
        text-align: left;
    }

    body.dashboard-page-body:not(.dash-shell-tab) .dash-tab-container .tab-panel {
        padding: 16px;
    }
}

.dash-subsection-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 20px 0 10px;
    letter-spacing: 0.01em;
}

.dash-profile-page .dash-subsection-title:first-of-type {
    margin-top: 4px;
}

/* —— Stats / Friends / Messages / Settings tabs — shared content width —— */
.dash-stats-page,
.dash-friends-page,
.dash-messages-page,
.dash-settings-page {
    max-width: min(1120px, 100%);
}

/* Mobile section title (all shell tabs) */
body.dashboard-page-body.dash-shell-tab .dash-panel-topbar {
    display: none;
}

@media (max-width: 960px) {
    body.dashboard-page-body.dash-shell-tab .dash-panel-topbar {
        display: flex;
        margin-bottom: 8px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
}

/* —— Profile / Discord / Account / Insignia — flat settings layout —— */
.dash-settings-page {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 4vw, 36px);
    min-width: 0;
}

.dash-settings-page .more-card {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.dash-settings-page .more-card h2 {
    margin: 0 0 8px;
    padding: 0;
    border: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.dash-settings-page .more-card h3,
.dash-settings-page h3.dash-subsection-title {
    margin: 20px 0 8px;
    padding: 0;
    border: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.dash-settings-page .more-card h3:first-child,
.dash-settings-page h3.dash-subsection-title:first-of-type {
    margin-top: 0;
}

.dash-settings-page .card-desc {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.45);
}

.dash-settings-page .card-desc a {
    color: #a5b4fc;
}

.dash-settings-page label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.dash-settings-page input[type='text'],
.dash-settings-page input[type='url'],
.dash-settings-page input[type='file'],
.dash-settings-page input[type='search'],
.dash-settings-page textarea,
.dash-settings-page select {
    width: 100%;
    max-width: 560px;
    padding: 10px 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: #f5f5f5 !important;
    font: inherit;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.12s ease, background 0.12s ease;
}

.dash-settings-page input:focus,
.dash-settings-page textarea:focus,
.dash-settings-page select:focus {
    outline: none;
    border-color: rgba(129, 140, 248, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.dash-settings-page textarea {
    resize: vertical;
    min-height: 100px;
}

.dash-settings-page select {
    width: auto;
    min-width: 200px;
    max-width: 100%;
}

.dash-settings-page .btn {
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.dash-settings-page .btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
}

.dash-settings-page .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dash-settings-page #dash-discord-avatar-sync-wrap,
.dash-settings-page #dash-profile-favorite-friends-section,
.dash-settings-page .dash-settings-inset,
.dash-settings-page div[style*='background: #0f0f0f'],
.dash-settings-page div[style*='background:#0f0f0f'] {
    margin-bottom: 16px !important;
    padding: 14px 16px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
}

.dash-settings-page .dash-discord-status-card {
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(88, 101, 242, 0.08);
    border: 1px solid rgba(88, 101, 242, 0.28);
}

.dash-settings-page .data-item {
    margin-bottom: 12px;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
}

.dash-settings-page .data-item-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.dash-settings-page .account-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 16px;
    padding: 11px 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-settings-page .account-row:last-of-type {
    border-bottom: none;
}

.dash-settings-page .account-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    min-width: 0;
}

.dash-settings-page .account-value {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
    text-align: right;
}

.dash-settings-page .account-actions {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-settings-page .dash-site-security {
    margin-top: 24px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.dash-settings-page #editProfileFormWrap {
    max-width: 560px;
}

.dash-settings-page .loading {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.42);
}

/* —— Stats tab: unified profile + leaderboards —— */
.dash-stats-page {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 28px);
}

.dash-stats-page .dash-stats-profile-host {
    order: 1;
}

.dash-stats-page .dash-stats-body {
    order: 2;
    padding-top: clamp(8px, 1.5vw, 12px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-stats-page .dash-stats-topbar {
    order: 0;
}

.dash-stats-topbar {
    display: none;
    align-items: center;
    gap: 12px;
    margin: 0 0 4px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.dash-stats-topbar-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.2;
}

@media (max-width: 960px) {
    .dash-stats-topbar {
        display: flex;
    }
}

.dash-stats-profile-host {
    min-width: 0;
}

.dash-stats-profile {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Identity strip — flat on dashboard Stats (no card box) */
.dash-id-card {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px 20px;
    margin: 0;
    padding: 0 0 clamp(16px, 2.5vw, 20px);
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-id-avatar {
    width: clamp(80px, 11vw, 96px);
    height: clamp(80px, 11vw, 96px);
    min-width: clamp(80px, 11vw, 96px);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    align-self: flex-start;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}

.dash-id-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dash-id-avatar .profile-hero-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(26px, 5vw, 36px);
    font-weight: 700;
    color: #fff;
}

.dash-id-main {
    flex: 1;
    min-width: min(100%, 220px);
}

.dash-id-topline {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 14px;
    margin-bottom: 4px;
}

.dash-id-name {
    margin: 0;
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.15;
}

.dash-id-gamerscore {
    font-size: 14px;
    font-weight: 600;
    color: #c7d2fe;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(129, 140, 248, 0.35);
}

.dash-id-status {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 8px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.dash-id-status--online {
    color: #86efac;
}

.dash-id-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #525252;
    flex-shrink: 0;
}

.dash-id-status--online .dash-id-status-dot {
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
}

.dash-id-status-extra {
    color: rgba(255, 255, 255, 0.42);
}

.dash-id-ogxbl {
    margin: 6px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.48);
}

.dash-id-social.profile-social-row {
    margin-top: 10px;
}

.dash-id-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: auto;
    align-self: center;
}

.dash-id-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.dash-id-btn--ghost {
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dash-id-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dash-id-btn--primary {
    color: #fff;
    background: #4f46e5;
    border: 1px solid rgba(129, 140, 248, 0.5);
}

.dash-id-btn--primary:hover {
    background: #6366f1;
}

.dash-stats-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 16px;
    align-items: start;
}

.dash-stats-card {
    padding: clamp(16px, 2.5vw, 20px);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dash-stats-card-title {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.dash-stats-bio {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.dash-stats-card--ach .profile-ach-section {
    margin: 0;
}

.dash-stats-card--ach .profile-ach-summary {
    margin-bottom: 14px;
}

.dash-stats-body,
.dash-stats-metrics {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
    padding-top: 0;
    border-top: none;
}

.dash-stats-section-label,
.dash-stats-metrics-head {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.36);
}

.dash-stats-leaderboards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.dash-stats-kpi-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

body.dashboard-page-body .dash-stats-body .my-stat-box,
body.dashboard-page-body .dash-stats-metrics .my-stat-box {
    margin: 0;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
}

body.dashboard-page-body .dash-stats-body .my-stat-box .num,
body.dashboard-page-body .dash-stats-metrics .my-stat-box .num {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.1;
}

body.dashboard-page-body .dash-stats-body .my-stat-box .lbl,
body.dashboard-page-body .dash-stats-metrics .my-stat-box .lbl {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: none;
    letter-spacing: 0;
}

.dash-stats-block {
    padding: clamp(16px, 2.5vw, 20px);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.dash-stats-block-title {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

.dash-loading-text {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    text-align: center;
}

.dash-stats-body .personal-charts-row,
.dash-stats-metrics .personal-charts-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.dash-stats-body .personal-two-col,
.dash-stats-metrics .personal-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.dash-stats-body .my-entries-list a,
.dash-stats-body .my-changes-list a,
.dash-stats-metrics .my-entries-list a,
.dash-stats-metrics .my-changes-list a {
    color: #a5b4fc;
}

@media (max-width: 960px) {
    .dash-stats-profile-grid {
        grid-template-columns: 1fr;
    }

    .dash-id-actions {
        width: 100%;
        margin-left: 0;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .dash-stats-body .personal-charts-row,
    .dash-stats-body .personal-two-col,
    .dash-stats-metrics .personal-charts-row,
    .dash-stats-metrics .personal-two-col {
        grid-template-columns: 1fr;
    }
}

.dash-stats-body .dash-section-lead,
.dash-stats-leaderboards .dash-section-lead {
    margin: -6px 0 12px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
}

.dash-stats-block--events {
    margin-top: 4px;
}

body.dashboard-page-body.dash-tab-stats .dash-stats-profile {
    gap: 16px;
}

.dash-stats-ach-collapse {
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.dash-stats-ach-collapse-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.dash-stats-ach-collapse-summary::-webkit-details-marker {
    display: none;
}

.dash-stats-ach-collapse-summary::before {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.45);
    border-bottom: 2px solid rgba(255, 255, 255, 0.45);
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-right: 2px;
}

.dash-stats-ach-collapse[open] .dash-stats-ach-collapse-summary::before {
    transform: rotate(45deg);
    margin-top: -4px;
}

.dash-stats-ach-collapse-body {
    padding: 0 0 8px;
    border-top: none;
}

.dash-stats-ach-collapse-body .profile-ach-section {
    padding-top: 12px;
}

body.dashboard-page-body.dash-tab-stats .dash-stats-profile {
    gap: 14px;
}

@media (max-width: 640px) {
    .dash-id-card {
        flex-direction: column;
    }

    .dash-id-actions {
        align-self: stretch;
    }

    .dash-id-btn {
        flex: 1;
    }
}

/* —— Dashboard Friends tab (browse list + search-style toolbar) —— */
.dash-friends-page {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.dash-friends-loading {
    margin: 24px 0 0;
}

.dash-friends-loading .loading-spinner-container {
    padding-top: 32px;
    padding-bottom: 32px;
}

.dash-friends-head {
    flex-shrink: 0;
    margin-bottom: 0;
    padding-top: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.dash-friends-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.dash-friends-search {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 10px 4px;
    border: none;
    border-radius: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    color: #fff;
    font: inherit;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.01em;
    outline: none;
    caret-color: #818cf8;
}

.dash-friends-search::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.dash-friends-search:focus {
    outline: none;
}

.dash-friends-head:focus-within .dash-friends-line {
    background: rgba(255, 255, 255, 0.32);
}

.dash-friends-action {
    flex-shrink: 0;
    margin: 0;
    padding: 10px 8px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease;
}

.dash-friends-action:hover {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.06);
}

.dash-friends-action:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.dash-friends-action:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.dash-friends-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 12px 0 4px;
}

.dash-friends-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition:
        background 0.12s ease,
        color 0.12s ease,
        border-color 0.12s ease;
}

.dash-friends-chip:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.dash-friends-chip:has(input:checked),
.dash-friends-chip.is-active {
    background: #fff;
    color: #050505;
    border-color: #fff;
}

.dash-friends-chip input {
    width: 14px;
    height: 14px;
    margin: 0;
    accent-color: #4f46e5;
    cursor: pointer;
}

.dash-friends-line {
    height: 1px;
    width: 100%;
    margin: 12px 0 0;
    background: rgba(255, 255, 255, 0.12);
}

.dash-friends-count {
    margin: 8px 0 0;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.38);
}

.dash-friends-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dash-friends-row {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin: 0;
    padding: 10px 12px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.dash-friends-row:hover,
.dash-friends-row:focus-visible {
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

.dash-friends-select-mode .dash-friends-row {
    -webkit-tap-highlight-color: rgba(99, 102, 241, 0.2);
}

.dash-friends-row.selected {
    background: rgba(99, 102, 241, 0.14);
}

.dash-friends-avatar-slot {
    position: relative;
    width: 48px;
    height: 48px;
    min-width: 48px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dash-friends-avatar-slot--online {
    box-shadow:
        0 0 0 1px rgba(74, 222, 128, 0.45),
        0 0 0 2px rgba(74, 222, 128, 0.15);
}

.dash-friends-avatar-slot--letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.dash-friends-avatar-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.dash-friends-avatar-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.dash-friends-avatar-fallback.is-visible {
    display: inline-flex;
}

.dash-friends-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dash-friends-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-friends-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-friends-meta--online {
    color: #86efac;
}

.dash-friends-trail {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.38);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.dash-friends-trail strong {
    color: #c7d2fe;
    font-weight: 700;
}

.dash-friends-compare-bar {
    position: sticky;
    bottom: 0;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dash-friends-compare-bar.visible {
    display: flex;
}

.dash-friends-compare-bar .compare-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.dash-friends-compare-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.dash-friends-btn {
    padding: 8px 16px;
    border-radius: 10px;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.15s ease, border-color 0.15s ease;
}

.dash-friends-btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
}

.dash-friends-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dash-friends-btn--primary {
    background: #4f46e5;
    border-color: rgba(129, 140, 248, 0.5);
    color: #fff;
}

.dash-friends-btn--primary:hover {
    background: #6366f1;
}

.dash-friends-empty {
    margin: 24px 0 0;
    padding: 32px 12px;
    text-align: center;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.45);
}

.dash-friends-detail {
    display: none;
    flex-direction: column;
    gap: clamp(24px, 3vw, 32px);
    min-width: 0;
}

.dash-friends-detail-nav {
    margin: 0;
}

.dash-friends-detail-nav .dash-friends-btn--ghost {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    padding: 8px 0;
}

.dash-friends-detail-nav .dash-friends-btn--ghost:hover {
    color: #fff;
    background: transparent;
}

.dash-friend-profile-embed {
    min-width: 0;
}

.loading-spinner-container.dash-friend-profile-loading {
    padding: 20px 12px;
}

.dash-friend-profile-strip {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-friend-id-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    transition: background 0.12s ease;
}

.dash-friend-id-link:hover .dash-id-card,
.dash-friend-id-link:focus-visible .dash-id-card {
    background: rgba(255, 255, 255, 0.03);
}

.dash-friend-id-link:focus-visible {
    outline: 2px solid #818cf8;
    outline-offset: 2px;
}

.dash-friend-id-link .dash-id-card {
    margin: 0;
    padding-bottom: clamp(16px, 2.5vw, 20px);
    cursor: pointer;
}

.dash-friend-id-ach {
    margin: 0;
    padding: 0 4px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.dash-friend-id-hint {
    margin: 0;
    padding: 0 4px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(129, 140, 248, 0.85);
}

.dash-friends-compare {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 3.5vw, 36px);
    min-width: 0;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-compare-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dash-compare-section-title {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.dash-compare-kpis {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dash-compare-kpi {
    flex: 1 1 100px;
    min-width: 88px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.dash-compare-kpi-val {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
}

.dash-compare-kpi-lbl {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.dash-compare-kpi--you .dash-compare-kpi-val {
    color: #a5b4fc;
}

.dash-compare-kpi--them .dash-compare-kpi-val {
    color: #86efac;
}

.dash-compare-kpi--tie .dash-compare-kpi-val {
    color: rgba(255, 255, 255, 0.55);
}

.dash-compare-note,
.dash-compare-lead,
.dash-compare-empty {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.45);
}

.dash-compare-h2h-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
}

.dash-compare-h2h-form select {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: #f5f5f5;
    font: inherit;
    font-size: 14px;
}

.dash-compare-filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.dash-compare-filter-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
}

.dash-compare-select {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: #f5f5f5;
    font: inherit;
    font-size: 14px;
    min-width: 160px;
}

.dash-compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
}

.dash-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background: transparent;
}

.dash-compare-table thead th {
    padding: 10px 12px 10px 0;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

.dash-compare-table tbody td {
    padding: 11px 12px 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    vertical-align: top;
}

.dash-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.dash-compare-table a {
    color: #a5b4fc;
    text-decoration: none;
}

.dash-compare-table a:hover {
    text-decoration: underline;
}

.dash-compare-rank-you {
    color: #a5b4fc;
}

.dash-compare-rank-friend {
    color: #86efac;
}

.dash-compare-result--you {
    color: #a5b4fc;
    font-weight: 500;
}

.dash-compare-result--them {
    color: #f87171;
    font-weight: 500;
}

.dash-compare-table-summary {
    margin: 8px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.dash-friends-compare .btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
}

.dash-friends-compare #h2hResults {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.dash-friends-compare #h2hResults ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.dash-friends-compare #h2hResults li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 640px) {
    .dash-friends-search {
        font-size: 16px;
    }

    .dash-friends-filters {
        padding-left: 0;
    }
}

/* —— Dashboard Messages tab —— */
.dash-messages-page {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dash-messages-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-messages-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 10px 8px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.12s ease, opacity 0.12s ease;
}

.dash-messages-action:hover:not(:disabled) {
    color: #fff;
}

.dash-messages-action:focus-visible {
    outline: 2px solid #818cf8;
    outline-offset: 2px;
}

.dash-messages-action:disabled,
.dash-messages-action[aria-busy='true'] {
    opacity: 0.55;
    cursor: wait;
}

.dash-messages-action svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
}

.dash-messages-action[aria-busy='true'] svg {
    animation: dash-messages-refresh-spin 0.75s linear infinite;
}

@keyframes dash-messages-refresh-spin {
    to {
        transform: rotate(360deg);
    }
}

.dash-messages-sections {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dash-messages-section + .dash-messages-section {
    padding-top: 4px;
}

.dash-messages-section-title {
    margin: 0 0 4px;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.dashboard-page-body.dash-tab-messages .dash-messages-list {
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

body.dashboard-page-body.dash-tab-messages .dash-messages-hint {
    margin: 0;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 14px;
    line-height: 1.5;
}

body.dashboard-page-body.dash-tab-messages .dash-msg-row-inner {
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    transition: background 0.12s ease;
}

body.dashboard-page-body.dash-tab-messages button.dash-msg-row:last-child .dash-msg-row-inner {
    border-bottom: none;
}

body.dashboard-page-body.dash-tab-messages button.dash-msg-row:hover:not(.dash-msg-row--loading) .dash-msg-row-inner,
body.dashboard-page-body.dash-tab-messages button.dash-msg-row:focus-visible:not(.dash-msg-row--loading) .dash-msg-row-inner {
    background: rgba(255, 255, 255, 0.04);
}

body.dashboard-page-body.dash-tab-messages .dash-msg-type {
    color: #fff;
}

body.dashboard-page-body.dash-tab-messages .dash-msg-meta {
    color: rgba(255, 255, 255, 0.46);
}
