﻿:root {
    --bg-primary: #08080d;
    --bg-secondary: #101019;
    --bg-tertiary: #161624;
    --surface: rgba(255,255,255,.03);
    --surface-hover: rgba(255,255,255,.06);
    --border: rgba(255,255,255,.08);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --purple: #8b5cf6;
    --purple-light: #a78bfa;
    --cyan: #22d3ee;
    --cyan-light: #67e8f9;
    --green: #22c55e;
    --red: #ef4444;
    --radius: 18px;
    --shadow: 0 12px 40px rgba(0,0,0,.3);
}

body {
    color: var(--text-primary);
    background: radial-gradient( circle at top left, rgba(139,92,246,.18), transparent 40% ), radial-gradient( circle at bottom right, rgba(34,211,238,.12), transparent 35% ), linear-gradient( 180deg, #08080d, #0c0c13 );
    background-attachment: fixed;
}

.app-shell {
    min-height: 100vh;
}

.main-content {
    max-width: 1500px;
    margin: auto;
    padding: 5.5rem 1.5rem 1.5rem;
}

.glass-card {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease;
}

    .glass-card:hover {
        transform: translateY(-2px);
        border-color: rgba(139,92,246,.35);
    }

.nav-container {
    position: fixed;
    top: .75rem;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem .65rem;
    background: rgba(5,5,10,.92);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    font-size: .875rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.5);
}

.nav-links {
    display: flex;
    gap: .25rem;
}

    .nav-links a {
        color: var(--text-secondary);
        padding: .45rem .85rem;
        border-radius: 7px;
        transition: all .18s ease;
        font-weight: 500;
    }

        .nav-links a:hover {
            color: white;
            background: rgba(255,255,255,.06);
        }

    .nav-links .active {
        background: rgba(255,255,255,.08);
        color: white;
        border: 1px solid rgba(255,255,255,.09);
    }

.bento-grid {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(12, 1fr);
}

.span-3 {
    grid-column: span 3;
}

.span-4 {
    grid-column: span 4;
}

.span-6 {
    grid-column: span 6;
}

.span-8 {
    grid-column: span 8;
}

.span-12 {
    grid-column: span 12;
}

.card {
    padding: .9rem 1.1rem;
}

.card-title {
    margin: 0 0 .75rem 0;
    font-size: .68rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
}

.hero-card {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: .875rem;
    margin: .3rem 0 0;
}

.status-online {
    color: var(--green);
}

.status-idle {
    color: #f59e0b;
}

.status-dnd {
    color: var(--red);
}

.status-offline {
    color: gray;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .65rem;
    background: rgba(239,68,68,.12);
    border: 1px solid rgba(239,68,68,.35);
    border-radius: 999px;
    color: #f87171;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .06em;
}

.social-grid {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
}

.social-item {
    padding: .75rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.02);
    color: white;
    font-size: .9rem;
    transition: all .18s ease;
}

    .social-item:hover {
        transform: translateY(-2px);
        border-color: var(--purple);
        background: rgba(139,92,246,.06);
    }


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0d0d14;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient( var(--purple), var(--cyan) );
    border-radius: 999px;
}

@media (max-width: 1200px) {
    .span-8,
    .span-6,
    .span-4,
    .span-3 {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
        width: fit-content;
        transform: none;
        left: auto;
        margin: 1rem auto;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-content {
        padding-top: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }
}

.hero-eyebrow {
    color: var(--text-secondary);
    font-size: .68rem;
    letter-spacing: .2em;
    margin-bottom: .4rem;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: .6rem;
    margin-top: 1rem;
}

.hero-button {
    padding: .45rem 1rem;
    border-radius: 8px;
    color: white;
    font-size: .8rem;
    font-weight: 600;
    background: rgb(20, 20, 20);
    border: 1px solid rgba(255,255,255,.12);
    transition: background .15s, border-color .15s;
}

.hero-button:hover {
    background: rgb(32, 32, 32);
    border-color: rgba(255,255,255,.2);
}

.hero-button-secondary {
    padding: .45rem 1rem;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: .8rem;
    font-weight: 500;
    background: transparent;
    border: 1px solid rgba(255,255,255,.08);
    transition: color .15s, border-color .15s;
}

.hero-button-secondary:hover {
    color: white;
    border-color: rgba(255,255,255,.22);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: .5rem;
    cursor: pointer;
    border-radius: 6px;
    padding: .2rem .35rem;
    margin: 0 -.35rem;
    transition: background .15s;
    font-size: .85rem;
}

.contact-row:hover { background: rgba(255,255,255,.04); }

.contact-label {
    color: var(--text-secondary);
    font-size: .78rem;
    flex-shrink: 0;
}

.contact-value {
    color: var(--text-primary);
    font-size: .82rem;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.github-summary {
    display: flex;
    gap: .85rem;
    align-items: center;
    margin-bottom: 1rem;
}

.github-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.github-stats {
    display: flex;
    justify-content: space-between;
    gap: .75rem;
}

/* Donate page */
.donate-header {
    background: rgba(139,92,246,.06);
    border-color: rgba(139,92,246,.18);
}

.donate-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.donate-subtitle {
    font-size: .85rem;
    color: var(--text-secondary);
    margin: .2rem 0 0;
}

.donate-header-icon {
    font-size: 1.8rem;
    opacity: .25;
    flex-shrink: 0;
}

.donate-crypto-card {
    background: rgba(0,0,0,.25);
    border-color: rgba(255,255,255,.07);
    padding: 1rem 1.1rem;
}

.donate-section-label {
    font-size: .68rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: .75rem;
}

.wallet-list {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.wallet-row {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .6rem .5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s;
    position: relative;
}

.wallet-row:hover {
    background: rgba(255,255,255,.04);
}

.wallet-row:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: .5rem;
    right: .5rem;
    height: 1px;
    background: rgba(255,255,255,.05);
}

.wallet-row:hover::after {
    opacity: 0;
}

.wallet-symbol-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: background .15s;
}

.wallet-row:hover .wallet-symbol-box {
    background: rgba(139,92,246,.12);
    border-color: rgba(139,92,246,.25);
}

.wallet-row-info {
    flex: 1;
    min-width: 0;
}

.wallet-row-name {
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: .1rem;
}

.wallet-row-ticker {
    font-size: .72rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: .35rem;
}

.wallet-row-address {
    font-family: 'Cascadia Code', Consolas, monospace;
    font-size: .7rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .15s;
}

.wallet-row:hover .wallet-row-address {
    color: rgba(255,255,255,.55);
}

.wallet-row-chevron {
    font-size: 1.1rem;
    color: var(--text-secondary);
    opacity: 0;
    flex-shrink: 0;
    transition: opacity .15s, transform .15s;
    transform: translateX(-4px);
    user-select: none;
}

.wallet-row:hover .wallet-row-chevron {
    opacity: 1;
    transform: translateX(0);
}

.wallet-row-actions {
    display: flex;
    gap: .4rem;
    flex-shrink: 0;
}

/* CS2 trade card */
.trade-card {
    border-color: rgba(102,192,244,.12);
}

.trade-card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.trade-card-left {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.trade-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(102,192,244,.1);
    border: 1px solid rgba(102,192,244,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #66c0f4;
    flex-shrink: 0;
}

.trade-title {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .1rem;
}

.trade-subtitle {
    font-size: .78rem;
    color: var(--text-secondary);
}

.trade-btn {
    white-space: nowrap;
}

.wallet-copy-btn {
    padding: .3rem .65rem;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgb(20, 20, 20);
    color: var(--text-secondary);
    font-size: .75rem;
    font-family: inherit;
    cursor: pointer;
    transition: color .15s, border-color .15s;
    min-width: 3.5rem;
}

.wallet-copy-btn:hover {
    color: white;
    border-color: rgba(255,255,255,.18);
}

.wallet-copy-btn--copied {
    border-color: rgba(34,197,94,.35);
    color: var(--green);
}

.wallet-qr-btn {
    padding: .3rem .65rem;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgb(20, 20, 20);
    color: var(--text-secondary);
    font-size: .75rem;
    font-family: inherit;
    cursor: pointer;
    transition: color .15s, border-color .15s;
}

.wallet-qr-btn:hover {
    color: white;
    border-color: rgba(255,255,255,.18);
}

/* Wallet modal — simplified */
.wallet-modal-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.1rem;
    padding-right: 2rem;
}

.wallet-modal-symbol {
    font-size: 2rem;
}

.wallet-modal-name {
    font-weight: 700;
    font-size: .95rem;
}

.wallet-modal-ticker {
    font-size: .75rem;
    color: var(--text-secondary);
}

.wallet-address-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding: .7rem .9rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.3);
    cursor: pointer;
    text-align: left;
    transition: border-color .15s, background .15s;
}

.wallet-address-btn:hover {
    border-color: rgba(139,92,246,.4);
    background: rgba(0,0,0,.4);
}

.wallet-address-text {
    font-family: 'Cascadia Code', Consolas, monospace;
    font-size: .75rem;
    color: white;
    word-break: break-all;
    line-height: 1.4;
}

.wallet-address-hint {
    font-size: .7rem;
    color: var(--text-secondary);
}

/* Donate preview card on home */
/* Prized projects */
.project-grid {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(3, 1fr);
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: .85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.07);
    background: rgba(0,0,0,.25);
    color: white;
    transition: border-color .18s, background .18s;
}

.project-card:hover {
    border-color: rgba(139,92,246,.35);
    background: rgba(139,92,246,.04);
}

.project-card-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: .5rem;
}

.project-name {
    font-size: .9rem;
    font-weight: 700;
    color: var(--purple-light);
}

.project-stars {
    font-size: .75rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.project-desc {
    font-size: .78rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    padding-top: .5rem;
    border-top: 1px solid rgba(255,255,255,.05);
    margin-top: auto;
}

.project-lang {
    font-size: .72rem;
    padding: .1rem .5rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.1);
    color: var(--text-secondary);
}

.project-link {
    font-size: .75rem;
    color: var(--text-secondary);
    transition: color .15s;
}

.project-card:hover .project-link {
    color: white;
}

@media (max-width: 900px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

/* Account widgets */
.account-section-label {
    font-size: .68rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: .12em;
}

.account-grid {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.account-widget {
    padding: .9rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.account-widget-top {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.account-platform-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.icon-github  { background: rgba(255,255,255,.07); color: #f0f6fc; }
.icon-twitch  { background: rgba(145,70,255,.14);  color: #bf94ff; }
.icon-discord { background: rgba(88,101,242,.14);  color: #8ea1e1; }
.icon-steam   { background: rgba(102,192,244,.12); color: #66c0f4; }
.icon-youtube { background: rgba(255,0,0,.12);     color: #ff4e45; }
.icon-twitter { background: rgba(29,161,242,.12);  color: #1da1f2; }

.account-platform-name {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.account-handle {
    font-size: .74rem;
    color: var(--text-secondary);
}

.account-status {
    margin-left: auto;
    font-size: .68rem;
    font-weight: 600;
    padding: .15rem .5rem;
    border-radius: 999px;
    flex-shrink: 0;
}

.account-status.online  { background: rgba(34,197,94,.1);  color: var(--green);  border: 1px solid rgba(34,197,94,.25); }
.account-status.idle    { background: rgba(245,158,11,.1);  color: #f59e0b;       border: 1px solid rgba(245,158,11,.25); }
.account-status.offline { background: rgba(255,255,255,.04); color: var(--text-secondary); border: 1px solid rgba(255,255,255,.08); }
.account-status.live    { background: rgba(239,68,68,.12);  color: #f87171;       border: 1px solid rgba(239,68,68,.3); }

.account-stats {
    display: flex;
    gap: 1.1rem;
}

.account-stat {
    display: flex;
    flex-direction: column;
    gap: .05rem;
}

.account-stat strong {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.account-stat span {
    font-size: .7rem;
    color: var(--text-secondary);
}

.account-widget-footer {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-primary);
    padding-top: .55rem;
    border-top: 1px solid rgba(255,255,255,.05);
}

.account-avatar {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-tertiary) 25%,
        rgba(255,255,255,.06) 50%,
        var(--bg-tertiary) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.6s infinite;
}

@keyframes skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.steam-id-value {
    font-size: .72rem;
    letter-spacing: .01em;
}

/* Donate preview card */
.support-desc {
    font-size: .85rem;
    color: var(--text-secondary);
    margin: 0 0 .75rem;
}

.support-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: .9rem;
}

.support-chip {
    font-size: .72rem;
    padding: .2rem .55rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    color: var(--text-secondary);
}

.support-link {
    font-size: .82rem;
    font-weight: 600;
    color: var(--purple-light);
    transition: color .15s;
}

.support-link:hover {
    color: white;
}

.page-container {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.page-intro-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: .35rem;
}

.page-intro p {
    font-size: .85rem;
    color: var(--text-secondary);
    margin: .2rem 0 0;
}

.gh-profile-card {
    cursor: pointer;
    color: var(--text-primary);
    transition: border-color .18s, background .18s;
}

.gh-profile-card:hover {
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
}

.gh-profile-strip {
    display: flex;
    gap: .9rem;
    align-items: center;
}

.gh-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
}

.gh-profile-body {
    flex: 1;
    min-width: 0;
}

.gh-username {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .1rem;
}

.gh-bio-text {
    font-size: .8rem;
    color: var(--text-secondary);
    margin-bottom: .35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gh-stat-pills {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
}

.gh-stat {
    font-size: .78rem;
    color: var(--text-secondary);
}

.gh-stat strong {
    color: var(--text-primary);
    font-weight: 600;
}

.repo-list {
    display: flex;
    flex-direction: column;
}

.repo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    color: white;
}

.repo-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.repo-row-main {
    min-width: 0;
    flex: 1;
}

.repo-row-name {
    font-size: .875rem;
    font-weight: 600;
    color: var(--purple-light);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.repo-row:hover .repo-row-name {
    text-decoration: underline;
}

.repo-row-desc {
    font-size: .78rem;
    color: var(--text-secondary);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: .1rem;
}

.repo-row-meta {
    display: flex;
    gap: .6rem;
    align-items: center;
    flex-shrink: 0;
    font-size: .78rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.repo-lang {
    padding: .1rem .45rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.1);
    font-size: .72rem;
}

/* Discord card */
.discord-profile {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .6rem;
}

.discord-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.discord-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: block;
}

.discord-avatar--placeholder {
    background: rgba(88,101,242,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #8ea1e1;
}

.discord-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
}

.discord-dot.status-online  { background: var(--green); }
.discord-dot.status-idle    { background: #f59e0b; }
.discord-dot.status-dnd     { background: var(--red); }
.discord-dot.status-offline { background: #6b7280; }

.discord-profile-info {
    min-width: 0;
}

.discord-username {
    font-size: .9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discord-status-text {
    font-size: .75rem;
    margin-top: .1rem;
}


/* Twitch card */
.twitch-title {
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: .25rem;
    line-height: 1.3;
}


@keyframes toast-slide {
    from { transform: translate(-50%, calc(-100% - 4px)); opacity: 0; }
    to   { transform: translate(-50%, calc(-100% - 12px)); opacity: 1; }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(12px);
}

.wallet-modal {
    position: relative;
    width: 480px;
    max-width: 95vw;
    padding: 1.5rem;
    border-radius: 22px;
}

.modal-close {
    position: absolute;
    top: .85rem;
    right: .85rem;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-secondary);
    background: rgba(255,255,255,.05);
    transition: background .15s, color .15s;
}

.modal-close:hover {
    background: rgba(255,255,255,.1);
    color: white;
}

.wallet-qr-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.wallet-qr {
    width: 200px;
    height: 200px;
    border-radius: 14px;
    background: white;
    padding: 10px;
}

.copy-toast {
    position: fixed;
    z-index: 9999;
    padding: .45rem .85rem;
    border-radius: 7px;
    color: var(--text-primary);
    font-size: .8rem;
    font-weight: 500;
    white-space: nowrap;
    pointer-events: none;
    background: rgba(5,5,10,.92);
    border: 1px solid rgba(255,255,255,.07);
    box-shadow: 0 4px 24px rgba(0,0,0,.5);
    backdrop-filter: blur(30px);
    animation: toast-slide .18s ease forwards;
}

/* ── Skeletons ─────────────────────────────────────── */

@keyframes sk-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255,255,255,.04) 0%,
        rgba(255,255,255,.09) 50%,
        rgba(255,255,255,.04) 100%
    );
    background-size: 200% 100%;
    animation: sk-shimmer 1.6s ease-in-out infinite;
    border-radius: 5px;
}

.sk-line   { height: .65rem; margin-bottom: .4rem; }
.sk-circle { border-radius: 50%; }

@keyframes content-fade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.content-loaded { animation: content-fade .2s ease; }

.sk-discord {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.sk-profile {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
}

.sk-profile-body {
    flex: 1;
    min-width: 0;
}

.sk-repo-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: .75rem;
}

.sk-repo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
}

.sk-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}

.sk-project-card {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: .9rem;
    background: rgba(255,255,255,.03);
    border-radius: 14px;
}