/* ============================================================
   WEBSITE      : LUXOR
   FILE         : public/css/auth.css
   MÔ TẢ        : CSS cho trang Đăng nhập & Đăng ký
   ============================================================ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── CSS Variables ─── */
:root {
    --primary: #E62429;
    --primary-dark: #c41e22;
    --primary-light: #ff4d52;
    --secondary: #FF6B00;
    --accent: #FFD700;
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    --text-primary: #f0f0f5;
    --text-secondary: #8b8b9e;
    --text-muted: #5a5a6e;
    --input-bg: rgba(255, 255, 255, 0.04);
    --input-border: rgba(255, 255, 255, 0.1);
    --input-focus: rgba(230, 36, 41, 0.5);
    --success: #00c853;
    --warning: #ffab00;
    --danger: #ff1744;
    --info: #2979ff;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.auth-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Animated Background ─── */
.auth-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.auth-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(230, 36, 41, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
    animation: bgRotate 30s linear infinite;
}

@keyframes bgRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.bg-orb:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.bg-orb:nth-child(2) {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -5%;
    left: -5%;
    animation-delay: -5s;
    animation-duration: 20s;
}

.bg-orb:nth-child(3) {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -50px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(50px, 30px) scale(1.05); }
}

/* ─── Grid Pattern Overlay ─── */
.auth-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ─── Auth Container ─── */
.auth-container {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* ─── Auth Wrapper (2 panels) ─── */
.auth-wrapper {
    display: flex;
    width: 100%;
    max-width: 1000px;
    min-height: 620px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    animation: cardAppear 0.8s var(--transition) both;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ─── Left Panel (Brand) ─── */
.auth-brand-panel {
    flex: 0 0 42%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 40px;
    background: linear-gradient(145deg, 
        rgba(230, 36, 41, 0.15), 
        rgba(255, 107, 0, 0.08),
        rgba(255, 215, 0, 0.05));
    border-right: 1px solid var(--glass-border);
    overflow: hidden;
    text-align: center;
}

.auth-brand-panel::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 36, 41, 0.2), transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.auth-brand-panel::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15), transparent 70%);
    animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

.brand-logo {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.brand-logo-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 
        0 10px 30px rgba(230, 36, 41, 0.3),
        0 0 0 4px rgba(230, 36, 41, 0.1);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { box-shadow: 0 10px 30px rgba(230, 36, 41, 0.3), 0 0 0 4px rgba(230, 36, 41, 0.1); }
    50% { box-shadow: 0 10px 40px rgba(230, 36, 41, 0.5), 0 0 0 8px rgba(230, 36, 41, 0.15); }
}

.brand-logo-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 6px;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    position: relative;
    z-index: 1;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 40px;
}

.brand-features {
    position: relative;
    z-index: 1;
    list-style: none;
    text-align: left;
    width: 100%;
    max-width: 260px;
}

.brand-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition);
}

.brand-features li:last-child {
    border-bottom: none;
}

.brand-features li:hover {
    color: var(--text-primary);
    padding-left: 5px;
}

.brand-features .feature-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ─── Right Panel (Form) ─── */
.auth-form-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 45px;
}

.auth-form-header {
    margin-bottom: 32px;
}

.auth-form-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.auth-form-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ─── Form Group ─── */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
}

.form-group:focus-within label {
    color: var(--primary-light);
}

/* ─── Input Wrapper ─── */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
    pointer-events: none;
    z-index: 2;
}

.input-wrapper input:focus ~ .input-icon,
.input-wrapper .input-icon.active {
    color: var(--primary-light);
}

.form-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: var(--input-bg);
    border: 1.5px solid var(--input-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.form-input:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.form-input:focus {
    border-color: var(--primary);
    background: rgba(230, 36, 41, 0.04);
    box-shadow: 
        0 0 0 3px rgba(230, 36, 41, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-input.input-error {
    border-color: var(--danger);
    background: rgba(255, 23, 68, 0.04);
}

.form-input.input-error:focus {
    box-shadow: 0 0 0 3px rgba(255, 23, 68, 0.1);
}

.form-input.input-success {
    border-color: var(--success);
}

/* ─── Password Toggle ─── */
.password-toggle {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 1.1rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

/* ─── Password Strength ─── */
.password-strength {
    margin-top: 10px;
}

.strength-bar {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

.strength-segment {
    height: 3px;
    flex: 1;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    overflow: hidden;
}

.strength-segment.active {
    background: var(--danger);
}

.strength-segment.active.medium {
    background: var(--warning);
}

.strength-segment.active.strong {
    background: var(--success);
}

.strength-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.strength-text.weak { color: var(--danger); }
.strength-text.medium { color: var(--warning); }
.strength-text.strong { color: var(--success); }

/* ─── Row (2 columns) ─── */
.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

/* ─── Checkbox ─── */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--input-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    background: var(--input-bg);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(230, 36, 41, 0.3);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
}

.checkbox-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.forgot-link {
    font-size: 0.85rem;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.forgot-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* ─── Submit Button ─── */
.btn-submit {
    width: 100%;
    padding: 15px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(230, 36, 41, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    box-shadow: 0 6px 25px rgba(230, 36, 41, 0.4);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(230, 36, 41, 0.3);
}

/* Button ripple */
.btn-submit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:active::after {
    width: 400px;
    height: 400px;
}

/* Loading state */
.btn-submit.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
}

.btn-submit.loading .spinner {
    display: block;
}

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

/* ─── Divider ─── */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

/* ─── Social Login ─── */
.social-login {
    display: flex;
    gap: 12px;
}

.btn-social {
    flex: 1;
    padding: 12px;
    border: 1.5px solid var(--input-border);
    border-radius: var(--radius-md);
    background: var(--input-bg);
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-social:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.btn-social svg {
    width: 20px;
    height: 20px;
}

/* ─── Footer Link ─── */
.auth-footer {
    text-align: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.auth-footer p {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.auth-footer a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.auth-footer a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* ─── Alert Messages ─── */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: alertSlide 0.4s var(--transition) both;
    border: 1px solid;
}

@keyframes alertSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-danger {
    background: rgba(255, 23, 68, 0.08);
    border-color: rgba(255, 23, 68, 0.2);
    color: #ff6b8a;
}

.alert-success {
    background: rgba(0, 200, 83, 0.08);
    border-color: rgba(0, 200, 83, 0.2);
    color: #69f0ae;
}

.alert-warning {
    background: rgba(255, 171, 0, 0.08);
    border-color: rgba(255, 171, 0, 0.2);
    color: #ffd740;
}

.alert-info {
    background: rgba(41, 121, 255, 0.08);
    border-color: rgba(41, 121, 255, 0.2);
    color: #82b1ff;
}

.alert-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ─── Error text ─── */
.error-text {
    font-size: 0.78rem;
    color: var(--danger);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: alertSlide 0.3s ease both;
}

/* ─── Terms ─── */
.terms-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.terms-text a {
    color: var(--primary-light);
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* ─── Back to home ─── */
.back-home {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.back-home:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-3px);
}

/* ─── Avatar upload ─── */
.avatar-upload {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.avatar-preview {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--input-bg);
    border: 2px dashed var(--input-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
}

.avatar-preview:hover {
    border-color: var(--primary);
    background: rgba(230, 36, 41, 0.05);
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-preview .avatar-placeholder {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.avatar-info {
    flex: 1;
}

.avatar-info .upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--input-border);
    border-radius: var(--radius-sm);
    background: var(--input-bg);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.avatar-info .upload-btn:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.avatar-info .upload-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .auth-wrapper {
        flex-direction: column;
        max-width: 480px;
        min-height: auto;
    }

    .auth-brand-panel {
        flex: none;
        padding: 35px 30px;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }

    .brand-features {
        display: none;
    }

    .brand-tagline {
        margin-bottom: 0;
    }

    .auth-form-panel {
        padding: 35px 30px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .back-home {
        top: 12px;
        left: 12px;
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    .social-login {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .auth-container {
        padding: 20px 12px;
    }

    .auth-form-panel {
        padding: 28px 22px;
    }

    .auth-brand-panel {
        padding: 28px 22px;
    }

    .brand-name {
        font-size: 1.8rem;
    }

    .auth-form-header h1 {
        font-size: 1.4rem;
    }
}

/* ─── Page transition ─── */
.auth-form-panel.fade-in {
    animation: fadeIn 0.5s ease both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(15px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ─── Select styling ─── */
.form-select {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: var(--input-bg);
    border: 1.5px solid var(--input-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238b8b9e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-select:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 36, 41, 0.1);
}

.form-select option {
    background: #1a1a2e;
    color: var(--text-primary);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}
