/* ═══════════════════════════════════════════════════════════
   GameVault Auth — Modern login / register
   ═══════════════════════════════════════════════════════════ */

.auth-page {
    --auth-radius: 1rem;
    --auth-input-h: 3.25rem;
    --auth-accent: #8b5cf6;
    --auth-accent-2: #06b6d4;
}

.auth-page__bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(139, 92, 246, 0.08), transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(6, 182, 212, 0.06), transparent 50%);
    pointer-events: none;
}

/* ── Visual panel ── */
.auth-panel {
    isolation: isolate;
}

.auth-panel__gradient {
    background: linear-gradient(145deg, #4c1d95 0%, #312e81 35%, #0a0a14 100%);
}

.auth-panel__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.auth-panel__orb--1 {
    width: 320px;
    height: 320px;
    top: 15%;
    right: -5%;
    background: rgba(139, 92, 246, 0.35);
    animation: authOrbDrift 12s ease-in-out infinite alternate;
}
.auth-panel__orb--2 {
    width: 240px;
    height: 240px;
    bottom: 10%;
    left: -5%;
    background: rgba(6, 182, 212, 0.25);
    animation: authOrbDrift 10s ease-in-out infinite alternate-reverse;
}

@keyframes authOrbDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, -30px) scale(1.1); }
}

.auth-panel__particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 15% 25%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1.5px 1.5px at 55% 65%, rgba(167,139,250,0.35), transparent),
        radial-gradient(1px 1px at 85% 15%, rgba(6,182,212,0.4), transparent);
    animation: authParticles 14s ease-in-out infinite alternate;
    pointer-events: none;
    opacity: 0.5;
}

@keyframes authParticles {
    0% { opacity: 0.35; transform: translateY(0); }
    100% { opacity: 0.65; transform: translateY(-10px); }
}

.auth-panel__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.auth-panel__logo-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    color: #fff;
    transition: transform 0.4s ease, background 0.3s ease;
}
.auth-panel__logo:hover .auth-panel__logo-icon {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.15);
}

.auth-panel__logo-text {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
}

.auth-panel__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 2rem;
}

.auth-panel__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.25rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    animation: authBadgePulse 3s ease-in-out infinite;
}
.auth-panel__badge i { color: #6ee7b7; }

@keyframes authBadgePulse {
    0%, 100% { box-shadow: 0 0 0 rgba(16, 185, 129, 0); }
    50% { box-shadow: 0 0 24px rgba(16, 185, 129, 0.2); }
}

.auth-panel__title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 40px rgba(139, 92, 246, 0.4);
}

.auth-panel__title-accent {
    display: block;
    margin-top: 0.35rem;
    background: linear-gradient(90deg, #e9d5ff, #f0abfc, #67e8f9);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: authGradientShift 5s ease-in-out infinite;
}

@keyframes authGradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.auth-panel__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    max-width: 32rem;
    margin-bottom: 0;
}

.auth-panel__foot {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
}
.auth-panel__foot span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* ── Showcase: hero + grid ── */
.auth-showcase {
    margin-top: 2rem;
    max-width: 38rem;
}

.auth-showcase__hero {
    margin-bottom: 0.85rem;
}

.auth-showcase__hero .auth-showcase__frame {
    aspect-ratio: 16 / 9;
    border-radius: 1.25rem;
    padding: 3px;
}

.auth-showcase__hero .auth-showcase__img {
    border-radius: calc(1.25rem - 3px);
    object-position: center center;
}

.auth-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.auth-showcase__card {
    animation: authCardFloat 6s ease-in-out infinite;
    animation-delay: calc(var(--auth-i, 0) * -0.6s);
}

@keyframes authCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.auth-showcase__frame {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 1rem;
    padding: 3px;
    background: linear-gradient(145deg, rgba(167,139,250,0.55), rgba(6,182,212,0.3), rgba(236,72,153,0.2));
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.auth-showcase__card:hover .auth-showcase__frame {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 48px rgba(139, 92, 246, 0.35);
}

.auth-showcase__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: calc(1rem - 3px);
    background: linear-gradient(160deg, #1a1030, #0c0c18);
}

.auth-showcase__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.15) 50%, transparent 65%);
    transform: translateX(-100%);
    animation: authGalleryShine 7s ease-in-out infinite;
    animation-delay: calc(var(--auth-i, 0) * 0.4s);
    pointer-events: none;
}

.auth-showcase__fade {
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    pointer-events: none;
    border-radius: 0 0 calc(1rem - 3px) calc(1rem - 3px);
}

@keyframes authGalleryShine {
    0%, 72%, 100% { transform: translateX(-100%); }
    88% { transform: translateX(100%); }
}

.auth-showcase__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.auth-showcase__stats span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
}
.auth-showcase__stats i { color: #c4b5fd; font-size: 0.7rem; }

/* Mobile scroll — مخفي على الهاتف لإظهار النموذج مباشرة */
.auth-gallery-scroll {
    overflow: hidden;
    padding: 0.75rem 0 0.25rem;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
@media (max-width: 1023px) {
    .auth-gallery-scroll { display: none; }
    .auth-form-panel { min-height: auto; }
    .auth-page { min-height: 100dvh; }
    .auth-form-head { margin-bottom: 1.25rem; }
    .auth-form-head__icon {
        width: 3.5rem;
        height: 3.5rem;
        margin-bottom: 0.85rem;
        font-size: 1.15rem;
    }
    .auth-form-head__title { font-size: 1.4rem; }
    .auth-form-head__sub { font-size: 0.85rem; }
    .auth-card { padding: 1.35rem; }
}

.auth-gallery-scroll__track {
    display: flex;
    gap: 0.85rem;
    width: max-content;
    padding-inline: 1rem;
    animation: authGalleryMarquee 30s linear infinite;
}

.auth-gallery-scroll__item {
    flex-shrink: 0;
    width: 7rem;
    aspect-ratio: 4 / 5;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.25);
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.2);
    background: #12121f;
}

.auth-gallery-scroll__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@keyframes authGalleryMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── Form panel ── */
.auth-form-panel {
    background:
        linear-gradient(180deg, rgba(244, 242, 255, 0.5) 0%, rgba(255, 255, 255, 0.95) 30%),
        #fafafa;
}
.dark .auth-form-panel {
    background:
        linear-gradient(180deg, rgba(8, 8, 15, 0.6) 0%, #08080f 25%),
        #08080f;
}

.auth-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
}
@media (min-width: 1024px) {
    .auth-form-header {
        justify-content: flex-end;
        padding: 1.5rem 2rem;
    }
}

.auth-form-header__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    text-decoration: none;
    color: inherit;
}

.auth-form-header__brand-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--auth-accent), var(--auth-accent-2));
    color: #fff;
    font-size: 0.85rem;
}

.auth-form-header__actions {
    display: flex;
    gap: 0.5rem;
}

.auth-form-header__btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    border: 1px solid rgba(139, 92, 246, 0.15);
    background: rgba(255, 255, 255, 0.6);
    color: var(--auth-accent);
    cursor: pointer;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.dark .auth-form-header__btn {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: #a78bfa;
}
.auth-form-header__btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-1px);
}

.auth-form-header__btn--admin {
    width: auto;
    min-width: 2.5rem;
    padding-inline: 0.65rem;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 800;
    white-space: nowrap;
}
.auth-form-header__btn-label {
    display: none;
}
@media (min-width: 400px) {
    .auth-form-header__btn--admin {
        padding-inline: 0.85rem;
    }
    .auth-form-header__btn-label {
        display: inline;
    }
}

.auth-admin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    color: #6d28d9;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.dark .auth-admin-link {
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.25);
}
.auth-admin-link:hover {
    background: rgba(139, 92, 246, 0.14);
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-1px);
}

/* Auth pages: بدون فوتر ثقيل أو شريط سفلي يغطي النموذج */
.gv-page:has(.auth-page) footer.footer-glow,
.gv-page:has(.auth-page) .gv-bottom-nav {
    display: none !important;
}

.auth-form-body {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem 1.25rem 2rem;
}
@media (min-width: 1024px) {
    .auth-form-body {
        align-items: center;
        padding: 0 1.25rem 2.5rem;
    }
}

.auth-form-wrap {
    width: 100%;
    max-width: 28rem;
}

.auth-form-head {
    text-align: center;
    margin-bottom: 1.75rem;
}

.auth-form-head__icon {
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, var(--auth-accent), var(--auth-accent-2));
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.35);
}

.auth-form-head__ring {
    position: absolute;
    inset: -6px;
    border-radius: 1.5rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    animation: authRingPulse 2.5s ease-in-out infinite;
}

@keyframes authRingPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.auth-form-head__title {
    font-size: clamp(1.5rem, 4vw, 1.875rem);
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.dark .auth-form-head__title { color: #f8fafc; }

.auth-form-head__sub {
    margin-top: 0.5rem;
    font-size: 0.9375rem;
    color: #64748b;
}
.dark .auth-form-head__sub { color: #94a3b8; }

.auth-card {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(139, 92, 246, 0.12);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 20px 50px rgba(139, 92, 246, 0.08);
    backdrop-filter: blur(20px);
    overflow: visible;
}
.dark .auth-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.auth-card__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}
.dark .auth-card__trust { color: #94a3b8; }
.auth-card__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Fields */
.gv-field { margin-bottom: 0; }
.gv-field + .gv-field { margin-top: 1.15rem; }

.gv-label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.45rem;
}
.dark .gv-label { color: #cbd5e1; }

.gv-input-wrap { position: relative; }

.gv-input {
    width: 100%;
    min-height: var(--auth-input-h);
    padding: 0.85rem 1.1rem;
    border-radius: var(--auth-radius);
    border: 1.5px solid rgba(139, 92, 246, 0.15);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-family: inherit;
    color: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.dark .gv-input {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
}
.dark select.gv-input option {
    background: #14142a;
    color: #f1f5f9;
}
.gv-input::placeholder { color: #94a3b8; opacity: 0.85; }
.gv-input:focus {
    border-color: var(--auth-accent);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
    background: #fff;
    color: #1e293b;
}
.dark .gv-input:focus {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.18);
    color: #f8fafc;
}
.gv-input.is-valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.gv-input-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0.5rem;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}
.gv-input-toggle:hover {
    color: #7c3aed;
    background: rgba(139, 92, 246, 0.08);
}
.gv-input--password { padding-inline-end: 3rem; }

.gv-field__hint {
    font-size: 0.72rem;
    color: #64748b;
    margin-top: 0.35rem;
}
.dark .gv-field__hint { color: #94a3b8; }

/* Password strength */
.gv-pass-strength { margin-top: 0.5rem; }
.gv-pass-strength__bar { display: flex; gap: 0.25rem; height: 4px; }
.gv-pass-strength__seg {
    flex: 1;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.12);
    transition: background 0.25s ease;
}
.gv-pass-strength__seg.is-on { background: #8b5cf6; }
.gv-pass-strength__seg.is-on--weak { background: #ef4444; }
.gv-pass-strength__seg.is-on--fair { background: #f59e0b; }
.gv-pass-strength__seg.is-on--good { background: #10b981; }
.gv-pass-strength__seg.is-on--strong { background: #059669; }
.gv-pass-strength__label {
    font-size: 0.72rem;
    font-weight: 700;
    margin-top: 0.35rem;
    color: #64748b;
}
.gv-pass-strength__rules {
    display: grid;
    gap: 0.25rem;
    margin-top: 0.5rem;
    font-size: 0.72rem;
    color: #94a3b8;
}
.gv-pass-strength__rules li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.gv-pass-strength__rules li.is-met { color: #10b981; }

.auth-submit {
    width: 100%;
    min-height: 3.25rem;
    margin-top: 0.75rem;
    font-size: 1rem;
    font-weight: 800;
    border-radius: var(--auth-radius);
    letter-spacing: 0.01em;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(139, 92, 246, 0.15);
}

/* Game detail (shared) */
.gv-game-media {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #12121f;
}
.gv-game-media__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.game-hero-media {
    aspect-ratio: 4 / 5;
    max-width: 22rem;
    margin-inline: auto;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.15);
}
@media (min-width: 1024px) {
    .game-hero-media { max-width: 100%; margin-inline: 0; }
}
.game-hero-media__frame {
    position: relative;
    border-radius: 1.5rem;
    padding: 0.35rem;
    background: linear-gradient(135deg, rgba(139,92,246,0.35), rgba(6,182,212,0.2));
}
.game-hero-media__inner {
    border-radius: 1.25rem;
    overflow: hidden;
    background: #0c0c18;
}

.game-detail-grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .game-detail-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .auth-showcase__card,
    .auth-showcase__shine,
    .auth-gallery-scroll__track,
    .auth-panel__badge,
    .auth-panel__title-accent,
    .auth-panel__particles,
    .auth-panel__orb,
    .auth-form-head__ring {
        animation: none !important;
    }
    .auth-showcase__card:hover .auth-showcase__frame {
        transform: none;
    }
}

/* Register wizard — country first */
.auth-register-fields {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease;
    margin-top: 0;
}
.auth-register-fields.is-visible {
    max-height: 120rem;
    opacity: 1;
    pointer-events: auto;
    margin-top: 1.15rem;
}
.auth-register-fields .gv-field:first-child {
    margin-top: 0;
}

/* Phone input with country dial code */
.gv-phone-input {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: #fff;
    overflow: hidden;
}
.dark .gv-phone-input {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(71, 85, 105, 0.5);
}
.gv-phone-input__prefix {
    display: flex;
    align-items: center;
    padding: 0 0.85rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    background: rgba(148, 163, 184, 0.12);
    border-inline-end: 1px solid rgba(148, 163, 184, 0.25);
    white-space: nowrap;
    direction: ltr;
}
.dark .gv-phone-input__prefix {
    color: #94a3b8;
    background: rgba(30, 41, 59, 0.8);
}
.gv-phone-input__field {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    flex: 1;
    min-width: 0;
}
.gv-phone-input:focus-within {
    border-color: var(--brand-500, #6366f1);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* Social OAuth buttons */
.auth-social {
    margin-bottom: 1.25rem;
}
.auth-social__divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1rem;
    color: #94a3b8;
    font-size: 0.8rem;
}
.auth-social__divider::before,
.auth-social__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(148, 163, 184, 0.35);
}
.auth-social__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}
.auth-social__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: #fff;
    color: #334155;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.dark .auth-social__btn {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(71, 85, 105, 0.5);
    color: #e2e8f0;
}
.auth-social__btn:hover {
    transform: translateY(-1px);
    border-color: rgba(99, 102, 241, 0.45);
}
.auth-social__btn--discord {
    background: #5865f2;
    border-color: #5865f2;
    color: #fff;
}
.auth-social__btn--discord:hover {
    background: #4752c4;
    border-color: #4752c4;
}
.auth-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
