:root {
    --background: oklch(0.145 0 0);
    --foreground: oklch(0.985 0 0);
    --card: oklch(0.145 0 0);
    --card-foreground: oklch(0.985 0 0);
    --popover: oklch(0.269 0 0);
    --popover-foreground: oklch(0.985 0 0);
    --primary: oklch(0.922 0 0);
    --primary-foreground: oklch(0.205 0 0);
    --secondary: oklch(0.269 0 0);
    --secondary-foreground: oklch(0.985 0 0);
    --muted: oklch(0.269 0 0);
    --muted-foreground: oklch(0.708 0 0);
    --accent: oklch(0.371 0 0);
    --accent-foreground: oklch(0.985 0 0);
    --destructive: oklch(0.704 0.191 22.216);
    --border: oklch(1 0 0 / 10%);
    --input: /* oklch(1 0 0 / 15%); */ oklch(0.145 0 0);
    --ring: oklch(0.556 0 0);
    --chart-1: oklch(0.488 0.243 264.376);
    --chart-2: oklch(0.696 0.17 162.48);
    --chart-3: oklch(0.769 0.188 70.08);
    --chart-4: oklch(0.627 0.265 303.9);
    --chart-5: oklch(0.645 0.246 16.439);
    --sidebar: oklch(0.145 0 0);
    --sidebar-foreground: oklch(0.985 0 0);
    --sidebar-primary: oklch(0.488 0.243 264.376);
    --sidebar-primary-foreground: oklch(0.985 0 0);
    --sidebar-accent: oklch(0.269 0 0);
    --sidebar-accent-foreground: oklch(0.985 0 0);
    --sidebar-border: oklch(1 0 0 / 10%);
    --sidebar-ring: oklch(0.439 0 0);
    --transition-speed: 0.3s;
}

.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.auth-modal.active {
    display: flex;
}

.auth-modal-content {
    position: relative;
    background-color: transparent;
    backdrop-filter: blur(1rem);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    animation: fadeIn 0.5s ease-out;
    overflow: hidden;
}

.auth-modal-content::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle at top left, rgba(132, 204, 22, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.auth-modal-content::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle at bottom right, rgba(132, 204, 22, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.auth-form {
    margin-top: 20px;
}

.auth-input {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    color: var(--foreground);
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.auth-input:focus {
    border-color: var(--primary);
}

.auth-input::placeholder {
    color: var(--muted-foreground);
}

.auth-submit-button {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-foreground);
    background: var(--primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    margin-top: 30px;
}

.auth-modal-content .icon-text svg[data-lucide="lock"] {
    color: #84cc16;
}

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

.auth-modal-content .info-title,
.auth-modal-content .info-text {
    text-align: left !important;
    display: block;
}