/* ============================================
   AUTH LAWYER STYLES - JURIST-8
   Цветовая схема соответствует главной странице
   ============================================ */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary colors - matching index.html */
    --primary: #667eea;
    --primary-dark: #764ba2;
    --primary-light: #818cf8;
    --secondary: #10b981;
    --accent: #f59e0b;
    --danger: #ef4444;
    
    /* Neutrals */
    --dark: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f8fafc;
    --white: #ffffff;
    
    /* Gradients - matching index.html */
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-soft: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 25px rgba(102, 126, 234, 0.15);
    --shadow-lg: 0 15px 40px rgba(102, 126, 234, 0.2);
    --shadow-xl: 0 25px 60px rgba(102, 126, 234, 0.25);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.4);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--gradient);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    padding-top: max(2rem, env(safe-area-inset-top));
    position: relative;
    overflow-y: auto;
}

/* Animated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 30%);
    pointer-events: none;
    z-index: 0;
}

/* Floating shapes animation */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-60px, -60px) rotate(360deg); }
}

/* Main Container */
.auth-container {
    max-width: 560px;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    0% { 
        transform: translateY(30px); 
        opacity: 0; 
    }
    100% { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    font-size: 4rem;
    margin-bottom: 0.75rem;
    animation: pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-text {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    letter-spacing: -0.5px;
}

.lawyer-badge {
    background: var(--gradient-glass);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    font-weight: 400;
}

/* Auth Card */
.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-card::-webkit-scrollbar {
    width: 6px;
}

.auth-card::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 10px;
}

.auth-card::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
}

.auth-card::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Tabs */
.tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: var(--light);
    padding: 0.375rem;
    border-radius: var(--radius-md);
}

.tab {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition-normal);
    border-radius: inherit;
}

.tab:hover {
    color: var(--primary);
}

.tab.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.tab.active::before {
    opacity: 0;
}

/* Form Content */
.form-content {
    display: none;
}

.form-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    0% { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-label .required {
    color: var(--danger);
    margin-left: 0.25rem;
}

.form-label .optional {
    color: var(--gray-light);
    font-weight: 400;
    font-size: 0.85rem;
    margin-left: 0.25rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-normal);
    font-family: inherit;
    background: var(--light);
}

.form-input:hover {
    border-color: rgba(102, 126, 234, 0.3);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    background: var(--white);
}

.form-input.error {
    border-color: var(--danger);
    background: #fef2f2;
}

.form-input.success {
    border-color: var(--secondary);
    background: #f0fdf4;
}

.form-input::placeholder {
    color: var(--gray-light);
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath fill='%23667eea' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Password Input */
.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--gray);
    padding: 0.5rem;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}

.password-toggle:hover {
    background: var(--light);
    color: var(--primary);
}

.password-toggle:active {
    transform: translateY(-50%) scale(0.95);
}

/* Password Strength */
.password-strength {
    margin-top: 0.75rem;
    display: none;
}

.password-strength.visible {
    display: block;
    animation: fadeIn 0.3s ease;
}

.strength-bar {
    height: 4px;
    background: var(--light);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    width: 0;
    transition: var(--transition-normal);
    border-radius: 2px;
}

.strength-weak { background: var(--danger); width: 33%; }
.strength-medium { background: var(--accent); width: 66%; }
.strength-strong { background: var(--secondary); width: 100%; }

.strength-text {
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.strength-requirements {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.5rem;
    line-height: 1.6;
    list-style: none;
    padding-left: 0;
}

.strength-requirements li {
    margin-bottom: 0.25rem;
    padding-left: 1.5rem;
    position: relative;
}

.strength-requirements li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: var(--gray-light);
}

.strength-requirements li.met {
    color: var(--secondary);
}

.strength-requirements li.met::before {
    content: '●';
    color: var(--secondary);
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.15rem;
    accent-color: var(--primary);
    border-radius: 4px;
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--gray);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.checkbox-label a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Buttons */
.btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Button Loading State */
.btn-loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    margin-top: -11px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

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

/* Links */
.forgot-password {
    text-align: right;
    margin-top: 0.5rem;
}

.forgot-password a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.forgot-password a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.remember-me {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.back-to-home {
    text-align: center;
    margin-top: 2rem;
}

.back-to-home a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.back-to-home a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.client-link {
    text-align: center;
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--light);
}

.client-link a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.client-link a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-dark);
}

/* Messages */
.success-message {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    display: none;
    animation: slideDown 0.3s ease;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary);
}

.success-message::before {
    content: '✓ ';
    font-weight: bold;
}

@keyframes slideDown {
    0% { 
        transform: translateY(-10px); 
        opacity: 0; 
    }
    100% { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

.error-message {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    display: none;
    animation: slideDown 0.3s ease;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--danger);
}

.error-message::before {
    font-weight: bold;
}

.field-error {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
}

/*.field-error::before {*/
/*    content: '⚠ ';*/
/*}*/

.field-success {
    color: var(--secondary);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
}

.field-success::before {
    content: '✓ ';
}

.error-message:not(:empty) { display: block; }
.field-error:not(:empty) { display: block; }
/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #5b21b6;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    border-left: 4px solid var(--primary);
}

.info-box::before {
    content: '👔 ';
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.25rem;
    margin-top: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verification-note {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #3730a3;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    border-left: 4px solid var(--primary);
}

.verification-note::before {
    content: 'ℹ️ ';
}

/* File Upload */
.file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    border: 2px dashed rgba(102, 126, 234, 0.3);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
}

.file-upload:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, #ede9fe 0%, #e0e7ff 100%);
}

.file-upload.dragover {
    border-color: var(--primary);
    background: linear-gradient(135deg, #ddd6fe 0%, #c7d2fe 100%);
    box-shadow: var(--shadow-md);
}

.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.file-upload-text {
    font-size: 0.95rem;
    color: var(--gray);
    text-align: center;
}

.file-upload-text strong {
    color: var(--primary);
}

.file-upload-hint {
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-top: 0.5rem;
}

.uploaded-file {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid var(--secondary);
    border-radius: var(--radius-sm);
    margin-top: 0.75rem;
}

.uploaded-file-icon {
    font-size: 1.5rem;
}

.uploaded-file-info {
    flex: 1;
    min-width: 0;
}

.uploaded-file-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.uploaded-file-size {
    font-size: 0.8rem;
    color: var(--gray);
}

.uploaded-file-remove {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.25rem;
    transition: var(--transition-fast);
    border-radius: 4px;
    flex-shrink: 0;
}

.uploaded-file-remove:hover {
    background: #fef2f2;
    transform: scale(1.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    0% { 
        transform: scale(0.9); 
        opacity: 0; 
    }
    100% { 
        transform: scale(1); 
        opacity: 1; 
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--gray);
    padding: 0.5rem;
    line-height: 1;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}

.modal-close:hover {
    background: var(--light);
    color: var(--dark);
}

.modal-body {
    margin-bottom: 1.5rem;
}

.modal-text {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .auth-card {
        padding: 1.75rem;
        max-height: 88vh;
    }

    .auth-container {
        margin-top: 0.5rem;
    }

    .logo {
        font-size: 3rem;
    }

    .logo-text {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo-section {
        margin-bottom: 1.5rem;
    }

    .tabs {
        gap: 0.375rem;
    }

    .tab {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1rem;
    }

    .file-upload {
        padding: 1.5rem;
    }

    .file-upload-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0.75rem;
    }

    .auth-container {
        margin-top: 0.25rem;
    }

    .logo {
        font-size: 2.5rem;
    }

    .logo-section {
        margin-bottom: 1rem;
    }

    .auth-card {
        padding: 1.25rem;
        border-radius: var(--radius-lg);
    }

    .lawyer-badge {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .btn {
        padding: 0.875rem;
    }

    .info-box,
    .verification-note {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
    }

    .file-upload {
        padding: 1.25rem;
    }

    .uploaded-file {
        padding: 0.75rem;
    }

    .uploaded-file-name {
        font-size: 0.85rem;
    }

    .back-to-home a {
        font-size: 0.9rem;
        padding: 0.625rem 1rem;
    }
}

/* iOS Safe Area */
@supports (-webkit-touch-callout: none) {
    body {
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }

    .modal {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* Print Styles */
@media print {
    body {
        background: var(--white);
    }

    body::before,
    body::after {
        display: none;
    }

    .back-to-home {
        display: none;
    }

    .auth-card {
        box-shadow: none;
        border: 1px solid var(--light);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support (optional, commented out) */
/*
@media (prefers-color-scheme: dark) {
    :root {
        --light: #1e293b;
        --white: #0f172a;
        --dark: #f8fafc;
        --gray: #94a3b8;
    }
}
*/
