/* gynx.gg marketplace — base styles
   Brand: void black, cyber purple, neon blue, soft gray, dark slate, pulse pink (CTA accent)
   Type: Inter (body) + Space Grotesk (headings)
*/

/* ---------- Tokens ---------- */
:root {
    --void:        #0B0B0F;
    --slate:       #1F2937;
    --slate-2:     #161922;
    --line:        #232838;
    --purple:      #7C3AED;
    --purple-2:    #9D5CFF;
    --blue:        #22D3EE;
    --pink:        #EC4899;
    --gray:        #9CA3AF;
    --gray-2:      #6B7280;
    --white:       #F5F6FA;

    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 22px;

    --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 30px rgba(0,0,0,0.35);
    --glow-purple: 0 0 0 1px rgba(124,58,237,0.45), 0 12px 40px rgba(124,58,237,0.25);
    --glow-blue:   0 0 0 1px rgba(34,211,238,0.45), 0 12px 40px rgba(34,211,238,0.20);

    --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Base ---------- */
body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--white);
    background: var(--void);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-height: 100dvh;
    overflow-x: hidden;
}

/* Ambient gradient + grid noise */
body::before {
    content: '';
    position: fixed; inset: -20vmax;
    background:
        radial-gradient(60vmax 50vmax at 12% -10%, rgba(124,58,237,0.22), transparent 60%),
        radial-gradient(50vmax 40vmax at 110% 0%,  rgba(34,211,238,0.14), transparent 60%),
        radial-gradient(70vmax 60vmax at 50% 120%, rgba(124,58,237,0.10), transparent 70%);
    z-index: -2;
    pointer-events: none;
    filter: blur(2px);
}
body::after {
    content: '';
    position: fixed; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.7), transparent 75%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--gray); }

::selection { background: rgba(124,58,237,0.45); color: var(--white); }

:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 80px 0; }
.section-tight { padding: 48px 0; }

/* ---------- Topbar ---------- */
.topbar {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    background: rgba(11,11,15,0.6);
    border-bottom: 1px solid var(--line);
}
.topbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
}
.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--white);
}
.logo-mark {
    width: 30px; height: 30px;
    border-radius: var(--r-sm);
    background: linear-gradient(135deg, var(--purple), var(--blue));
    box-shadow: var(--glow-purple);
    position: relative;
}
.logo-mark::after {
    content: '';
    position: absolute; inset: 6px;
    border-radius: 5px;
    background: var(--void);
    box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.85);
    clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%);
}
.logo .dot { color: var(--purple); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
    color: var(--gray);
    padding: 8px 14px;
    border-radius: var(--r-sm);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color .2s var(--ease), background .2s var(--ease);
    min-height: 40px;
    display: inline-flex; align-items: center;
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.nav a.is-active { color: var(--white); background: rgba(124,58,237,0.12); }

.nav-cta { margin-left: 12px; }

/* Mobile nav */
.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    background: transparent; color: var(--white);
    border: 1px solid var(--line); border-radius: var(--r-sm);
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 860px) {
    .nav-toggle { display: inline-flex; }
    .nav {
        position: absolute; top: 68px; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: rgba(11,11,15,0.95);
        border-bottom: 1px solid var(--line);
        padding: 12px 16px 16px;
        transform: translateY(-8px); opacity: 0; pointer-events: none;
        transition: opacity .2s var(--ease), transform .2s var(--ease);
    }
    .nav a { padding: 14px 12px; font-size: 1rem; min-height: 48px; }
    .nav .btn-sm { height: 48px; padding: 0 18px; font-size: 0.95rem; }
    .nav-cta { margin: 8px 0 0; }
    .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 44px; padding: 0 20px;
    border-radius: var(--r-sm);
    font-weight: 600; font-size: 0.95rem;
    border: 1px solid transparent;
    transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
    white-space: nowrap;
    text-align: center;
}
.btn-primary {
    background: linear-gradient(180deg, var(--purple-2), var(--purple));
    color: var(--white);
    box-shadow: 0 8px 24px rgba(124,58,237,0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 36px rgba(124,58,237,0.55); }
.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--blue); color: var(--white); box-shadow: var(--glow-blue); }
.btn-ghost {
    background: transparent; color: var(--gray); border-color: transparent;
}
.btn-ghost:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.btn-cta {
    background: linear-gradient(180deg, #FF5DA8, var(--pink));
    color: var(--white);
    box-shadow: 0 8px 24px rgba(236,72,153,0.35);
}
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 36px rgba(236,72,153,0.55); }
.btn-block { width: 100%; }
.btn-sm { height: 36px; padding: 0 14px; font-size: 0.85rem; }

/* Discord button */
.btn-discord {
    background: rgba(124,58,237,0.12);
    color: var(--white);
    border: 1px solid rgba(124,58,237,0.45);
}
.btn-discord:hover { background: rgba(124,58,237,0.22); box-shadow: var(--glow-purple); }
.btn-discord svg { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.hero {
    padding: 96px 0 64px;
    text-align: center;
    position: relative;
}
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px; border-radius: 999px;
    background: rgba(34,211,238,0.08);
    border: 1px solid rgba(34,211,238,0.25);
    color: var(--blue);
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
    text-transform: uppercase;
}
.eyebrow .pulse {
    width: 6px; height: 6px; border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 0 0 rgba(34,211,238,0.8);
    animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,211,238,0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(34,211,238,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,211,238,0); }
}
.hero h1 { margin-top: 18px; }
.hero h1 .grad {
    background: linear-gradient(90deg, #C4A6FF 0%, var(--purple) 35%, var(--blue) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero p {
    max-width: 640px; margin: 0 auto 32px;
    font-size: 1.075rem; color: var(--gray);
}
.hero-actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ---------- Cards / grid ---------- */
.section-head {
    display: flex; justify-content: space-between; align-items: end;
    gap: 24px; margin-bottom: 32px; flex-wrap: wrap;
}
.section-head p { margin: 6px 0 0; }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
    position: relative;
    background: linear-gradient(180deg, rgba(31,41,55,0.7), rgba(22,25,34,0.7));
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
    backdrop-filter: blur(8px);
}
.card:hover {
    transform: translateY(-3px);
    border-color: rgba(124,58,237,0.55);
    box-shadow: var(--glow-purple);
}
.card-media {
    aspect-ratio: 16/10;
    background: #0e1018;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card-media-empty {
    width: 100%; height: 100%;
    background:
      radial-gradient(circle at 30% 30%, rgba(124,58,237,0.3), transparent 60%),
      radial-gradient(circle at 70% 70%, rgba(34,211,238,0.25), transparent 60%),
      #0e1018;
    color: var(--gray-2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.card-body { padding: 18px 20px 20px; }
.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600; font-size: 1.075rem;
    margin: 0 0 6px;
}
.card-desc {
    font-size: 0.92rem; color: var(--gray); margin: 0 0 14px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-actions { display: flex; align-items: center; gap: 10px; }

/* Empty state */
.empty {
    border: 1px dashed var(--line);
    border-radius: var(--r-lg);
    padding: 56px 24px;
    text-align: center;
    color: var(--gray);
}
.empty h3 { color: var(--white); margin-bottom: 6px; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .features { grid-template-columns: 1fr; } }
.feature {
    background: linear-gradient(180deg, rgba(31,41,55,0.5), rgba(22,25,34,0.5));
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 24px;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover { border-color: rgba(34,211,238,0.45); box-shadow: var(--glow-blue); }
.feature-ico {
    width: 40px; height: 40px;
    border-radius: var(--r-sm);
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(124,58,237,0.12);
    color: var(--purple-2);
    margin-bottom: 14px;
}
.feature-ico svg { width: 22px; height: 22px; stroke-width: 1.75; }
.feature h3 { font-size: 1.05rem; }
.feature p { font-size: 0.92rem; margin: 0; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 700px) { .team { grid-template-columns: 1fr 1fr; } }
.team-card {
    background: var(--slate-2);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 22px;
    text-align: center;
    transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.team-card:hover { border-color: rgba(124,58,237,0.45); transform: translateY(-2px); }
.team-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif; font-weight: 700;
    color: white; font-size: 1.4rem;
    box-shadow: var(--glow-purple);
}
.team-name { font-family: 'Space Grotesk'; font-weight: 600; }
.team-role { color: var(--gray); font-size: 0.85rem; margin-top: 2px; }

/* ---------- Blog ---------- */
.post-card {
    background: var(--slate-2);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.post-card:hover { transform: translateY(-3px); border-color: rgba(124,58,237,0.55); box-shadow: var(--glow-purple); }
.post-meta { color: var(--gray-2); font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; }

.article {
    max-width: 720px; margin: 0 auto;
}
.article h1 { margin-bottom: 8px; }
.article .meta { color: var(--gray-2); font-size: 0.9rem; margin-bottom: 28px; }
.article img { border-radius: var(--r-md); margin: 22px 0; }
.article p, .article li { font-size: 1.025rem; line-height: 1.75; }
.article a { color: var(--blue); border-bottom: 1px dashed rgba(34,211,238,0.4); }
.article a:hover { color: var(--white); border-bottom-color: var(--white); }
.article blockquote {
    border-left: 3px solid var(--purple);
    margin: 22px 0; padding: 4px 18px;
    color: var(--gray);
    background: rgba(124,58,237,0.06);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* ---------- CTA strip ---------- */
.cta-strip {
    margin-top: 48px;
    background: linear-gradient(135deg, rgba(124,58,237,0.18), rgba(34,211,238,0.10));
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: var(--r-xl);
    padding: 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
    position: relative; overflow: hidden;
}
.cta-strip::before {
    content: ''; position: absolute; inset: -40% -10% auto auto;
    width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(124,58,237,0.4), transparent 60%);
    filter: blur(20px); pointer-events: none;
}
.cta-strip h2 { margin: 0; }
.cta-strip p { margin: 6px 0 0; max-width: 520px; }
.cta-strip-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
    margin-top: 80px;
    border-top: 1px solid var(--line);
    background: rgba(11,11,15,0.6);
    padding: 36px 0 32px;
    color: var(--gray);
    font-size: 0.9rem;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer .logo { color: var(--white); }
.footer-links a { color: var(--gray); margin-left: 18px; }
.footer-links a:hover { color: var(--white); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.label { font-size: 0.875rem; font-weight: 500; color: var(--white); }
.help  { font-size: 0.8rem; color: var(--gray-2); }
.input, .textarea, .select {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border-radius: var(--r-sm);
    background: var(--slate-2);
    border: 1px solid var(--line);
    color: var(--white);
    font: inherit;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.textarea { height: auto; min-height: 140px; padding: 12px 14px; line-height: 1.6; resize: vertical; }
.input:focus, .textarea:focus, .select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(124,58,237,0.18);
}
.input::placeholder, .textarea::placeholder { color: var(--gray-2); }
.input[type="file"] { padding: 8px; height: auto; }
.error  { color: #FCA5A5; font-size: 0.85rem; }

.alert {
    padding: 12px 14px;
    border-radius: var(--r-sm);
    font-size: 0.92rem;
    border: 1px solid var(--line);
}
.alert-success { background: rgba(34,197,94,0.08);  border-color: rgba(34,197,94,0.35); color: #BBF7D0; }
.alert-error   { background: rgba(239,68,68,0.08);  border-color: rgba(239,68,68,0.4);  color: #FECACA; }
.alert-info    { background: rgba(34,211,238,0.08); border-color: rgba(34,211,238,0.35); color: #A5F3FC; }

/* ---------- Admin ---------- */
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100dvh; }
@media (max-width: 860px) { .admin-shell { grid-template-columns: 1fr; } }

.sidebar {
    background: rgba(11,11,15,0.85);
    border-right: 1px solid var(--line);
    padding: 22px 18px;
    position: sticky; top: 0; height: 100dvh;
    display: flex; flex-direction: column; gap: 8px;
}
@media (max-width: 860px) { .sidebar { position: relative; height: auto; } }
.sidebar .logo { margin-bottom: 14px; }
.side-link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: var(--r-sm);
    color: var(--gray); font-weight: 500;
    min-height: 40px;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.side-link svg { width: 18px; height: 18px; }
.side-link:hover { background: rgba(255,255,255,0.04); color: var(--white); }
.side-link.is-active { background: rgba(124,58,237,0.16); color: var(--white); border: 1px solid rgba(124,58,237,0.3); }
.side-sublink {
    display: block;
    padding: 7px 12px 7px 38px;
    margin-top: -2px;
    border-radius: var(--r-sm);
    color: var(--gray-2);
    font-size: .9rem;
    font-weight: 500;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.side-sublink:hover { color: var(--white); background: rgba(255,255,255,0.03); }
.side-sublink.is-active { color: var(--white); background: rgba(124,58,237,0.08); }
.sidebar-footer { margin-top: auto; }

.admin-main { padding: 32px 32px 64px; }
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.admin-head h1 { font-size: 1.5rem; margin: 0; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
@media (max-width: 860px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
    background: var(--slate-2);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 18px 20px;
}
.stat-label { color: var(--gray); font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; }
.stat-value { font-family: 'Space Grotesk'; font-size: 2rem; font-weight: 600; margin-top: 6px; }
.stat-accent-purple { color: var(--purple-2); }
.stat-accent-blue   { color: var(--blue); }
.stat-accent-pink   { color: var(--pink); }
.stat-accent-white  { color: var(--white); }

.panel {
    background: var(--slate-2);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 24px;
}
.panel + .panel { margin-top: 20px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 16px; flex-wrap: wrap; }
.panel-head h2 { margin: 0; font-size: 1.125rem; }

.table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.table th, .table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.table th { color: var(--gray); font-weight: 500; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.table tr:last-child td { border-bottom: none; }
.table img.thumb { width: 56px; height: 40px; object-fit: cover; border-radius: 6px; border: 1px solid var(--line); }
.row-actions { display: inline-flex; gap: 6px; }
.row-actions .btn { height: 32px; padding: 0 10px; font-size: 0.82rem; }
.tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 3px 10px; border-radius: 999px;
    font-size: 0.78rem; font-weight: 500;
    background: rgba(34,211,238,0.1); color: var(--blue);
    border: 1px solid rgba(34,211,238,0.3);
}
.tag-off { background: rgba(255,255,255,0.04); color: var(--gray); border-color: var(--line); }

/* ---------- Login ---------- */
.auth-wrap { min-height: 100dvh; display: grid; place-items: center; padding: 24px; }
.auth-card {
    width: 100%; max-width: 420px;
    background: linear-gradient(180deg, rgba(31,41,55,0.85), rgba(22,25,34,0.85));
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 36px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
}
.auth-card h1 { font-size: 1.5rem; margin-bottom: 4px; }
.auth-card .sub { color: var(--gray); margin-bottom: 22px; }

/* ---------- Maintenance ---------- */
.maintenance {
    min-height: 100dvh; display: grid; place-items: center; padding: 24px;
    text-align: center;
}
.maintenance .card {
    background: linear-gradient(180deg, rgba(31,41,55,0.85), rgba(22,25,34,0.85));
    border-radius: var(--r-xl);
    padding: 56px 40px;
    max-width: 540px;
}
.maintenance .ring {
    width: 84px; height: 84px; border-radius: 50%;
    background: conic-gradient(from 90deg, var(--purple), var(--blue), var(--purple));
    display: grid; place-items: center;
    margin: 0 auto 22px;
    animation: spin 6s linear infinite;
    box-shadow: var(--glow-purple);
}
.maintenance .ring::after {
    content: ''; width: 70px; height: 70px; border-radius: 50%;
    background: var(--void);
}
.maintenance .ring svg { position: absolute; width: 36px; height: 36px; color: var(--white); }
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
