/* Mobile-First CSS Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00ff41; /* System Green */
    --primary-dark: #003b00; /* Dim Phosphor */
    --secondary: #7a9a7a; /* Shadow Green */
    --background: #0a0a0a; /* Void Grey */
    --surface: #121212; /* Obsidian Grey */
    --surface-light: #1a1a1a; /* Light Obsidian */
    --text: #e0e0e0; /* Silver Circuit */
    --text-dim: #7a9a7a; /* Shadow Green */
    --border: #003b00; /* Dim Phosphor border */
    --success: #00ff41; /* System Green */
    --warning: #f59e0b; /* Warning Orange */
    --error: #ef4444; /* Error Red */
    --thumb-zone-height: 80px;
    --header-height: 60px;
}

body {
    font-family: 'Inter', 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background);
    color: var(--text);
    height: 100vh;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] .panel-header {
    flex-direction: row-reverse;
}

/* Screen Management */
.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.screen.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

/* PF-22 Logo Styling */
.pf-logo {
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Fira Code', 'JetBrains Mono', monospace;
    letter-spacing: 0.2em;
}

.pf-logo-text {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
    margin-bottom: 0.5rem;
    animation: logo-glow 2s ease-in-out infinite alternate;
}

.pf-logo-sub {
    font-size: 0.875rem;
    color: var(--text-dim);
    letter-spacing: 0.3em;
    margin-bottom: 0.25rem;
}

.pf-logo-auth {
    font-size: 0.625rem;
    color: var(--text-dim);
    letter-spacing: 0.2em;
    opacity: 0.7;
}

@keyframes logo-glow {
    0% { text-shadow: 0 0 20px rgba(0, 255, 65, 0.8); }
    100% { text-shadow: 0 0 30px rgba(0, 255, 65, 1), 0 0 40px rgba(0, 255, 65, 0.5); }
}

/* Neural Link Boot Sequence */
.neural-link-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fira Code', 'JetBrains Mono', monospace;
}

.neural-link-content {
    text-align: center;
    color: var(--primary);
}

.neural-line {
    font-size: 0.875rem;
    margin: 0.5rem 0;
    opacity: 0;
    animation: flicker-in 0.3s ease-in forwards;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.neural-line:nth-child(1) { animation-delay: 0s; }
.neural-line:nth-child(2) { animation-delay: 0.5s; }
.neural-line:nth-child(3) { animation-delay: 1s; }
.neural-line:nth-child(4) { animation-delay: 1.5s; }

@keyframes flicker-in {
    0% { opacity: 0; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.neural-ready {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1rem;
    animation: pulse-glow 1s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 65, 0.8); }
    50% { text-shadow: 0 0 30px rgba(0, 255, 65, 1); }
}

/* HUD Status Indicators */
.hud-status {
    position: fixed;
    font-family: 'Fira Code', 'JetBrains Mono', monospace;
    font-size: 0.625rem;
    color: var(--primary);
    opacity: 0.7;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
    pointer-events: none;
    z-index: 100;
}

.hud-status.top-left {
    top: 10px;
    left: 10px;
}

.hud-status.top-right {
    top: 10px;
    right: 10px;
    text-align: right;
}

.hud-status.bottom-left {
    bottom: 10px;
    left: 10px;
}

.hud-status.bottom-right {
    bottom: 10px;
    right: 10px;
    text-align: right;
}

/* Scan line effect */
.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.1;
    pointer-events: none;
    z-index: 99;
    animation: scan-down 8s linear infinite;
}

@keyframes scan-down {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Enhanced button interactions */
button:active {
    transform: scale(0.98);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
    transition: all 0.1s ease;
}

/* Kinetic feedback for inputs */
input:focus {
    animation: input-pulse 0.3s ease;
}

@keyframes input-pulse {
    0% { box-shadow: 0 0 3px rgba(0, 255, 65, 0.1); }
    50% { box-shadow: 0 0 12px rgba(0, 255, 65, 0.4); }
    100% { box-shadow: 0 0 8px rgba(0, 255, 65, 0.3); }
}

/* Login Screen */
#login-screen, #pin-screen {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container, .pin-container {
    width: 100%;
    max-width: 320px;
    background: rgba(10, 10, 10, 0.95);
    border: none;
    border-radius: 0;
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.15);
    transition: none;
}

.login-container:hover, .pin-container:hover {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.15);
}

.login-container h1, .pin-container h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Fira Code', 'JetBrains Mono', monospace;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text);
}

.login-container form, .pin-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input {
    padding: 0.75rem;
    border: none;
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 0;
    background: transparent;
    color: var(--text);
    font-size: 0.875rem;
    font-family: 'Fira Code', 'JetBrains Mono', monospace;
    transition: all 0.2s ease;
}

input:focus {
    outline: none;
    border-bottom-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 255, 65, 0.3);
}

button {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Fira Code', 'JetBrains Mono', monospace;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

button:hover {
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

button:active {
    transform: scale(0.98);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
    transition: all 0.1s ease;
}

/* Drag and Drop Captcha */
.drag-captcha {
    margin: 0.5rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 0;
}

.captcha-instruction {
    text-align: center;
    font-family: 'Fira Code', 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.captcha-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-height: 60px;
}

.draggable {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    transition: all 0.2s ease;
    user-select: none;
}

.draggable:hover {
    background: rgba(0, 255, 65, 0.2);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.draggable.dragging {
    cursor: grabbing;
    opacity: 0.8;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.drop-zone {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 65, 0.05);
    border: 2px dashed rgba(0, 255, 65, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.drop-zone.drag-over {
    background: rgba(0, 255, 65, 0.2);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

.drop-zone.completed {
    background: rgba(0, 255, 65, 0.3);
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}

.draggable svg, .drop-zone svg {
    filter: drop-shadow(0 0 3px rgba(0, 255, 65, 0.5));
}

#login-status {
    margin-top: 1rem;
    text-align: center;
    font-family: 'Fira Code', 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: var(--text-dim);
    min-height: 1.2rem;
    transition: color 0.3s ease;
}

#login-status.error {
    color: var(--error);
    text-shadow: 0 0 5px rgba(239, 68, 68, 0.5);
}

#login-status.success {
    color: var(--success);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

/* Main IDE Layout */
#ide-screen {
    flex-direction: column;
    height: 100vh;
}

#mobile-header {
    height: var(--header-height);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.token-counter {
    font-size: 0.875rem;
    color: var(--text-dim);
}

.project-selector select {
    background: var(--surface-light);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.5rem;
    border-radius: 4px;
}

#main-content {
    flex: 1;
    margin-top: var(--header-height);
    margin-bottom: var(--thumb-zone-height);
    position: relative;
    overflow: hidden;
}

.panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.panel.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.panel-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.panel-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* File Explorer */
#file-tree {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.file-item {
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease;
}

.file-item:hover {
    background: var(--surface-light);
}

.file-item.active {
    background: var(--primary);
    color: var(--background);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    border: 1px solid var(--primary);
}

.file-icon {
    font-size: 1rem;
    filter: drop-shadow(0 0 1px rgba(0, 255, 65, 0.3));
}

.file-name {
    flex: 1;
    font-size: 0.875rem;
}

/* Code Editor */
#code-editor {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Fira Code', 'JetBrains Mono', 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 1rem;
    resize: none;
    outline: none;
    tab-size: 4;
    box-shadow: inset 0 0 10px rgba(0, 255, 65, 0.05);
}

#code-editor:focus {
    border-color: var(--primary);
    box-shadow: inset 0 0 10px rgba(0, 255, 65, 0.1), 0 0 8px rgba(0, 255, 65, 0.2);
}

#accessory-row {
    background: var(--surface-light);
    border-top: 1px solid var(--border);
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

#accessory-row span {
    padding: 0.5rem;
    background: var(--surface);
    border-radius: 4px;
    cursor: pointer;
    font-family: monospace;
    min-width: 2rem;
    text-align: center;
    transition: background-color 0.2s ease;
}

#accessory-row span:hover {
    background: var(--primary);
    color: white;
}

/* Preview Panel */
#preview-frame {
    flex: 1;
    border: none;
    background: white;
}

/* Chat Panel */
#chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    padding: 0.75rem;
    border-radius: 8px;
    max-width: 80%;
    word-wrap: break-word;
}

.chat-message.user {
    background: var(--primary);
    color: white;
    align-self: flex-end;
}

.chat-message.assistant {
    background: var(--surface-light);
    align-self: flex-start;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--surface);
    border-radius: 12px;
    font-size: 0.75rem;
    margin: 0.25rem 0;
    border: 1px solid var(--border);
    animation: pulse 2s infinite;
}

.status-pill svg {
    filter: drop-shadow(0 0 2px rgba(0, 255, 65, 0.5));
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 65, 0.3); }
    50% { box-shadow: 0 0 10px rgba(0, 255, 65, 0.6); }
}

.nav-btn.active {
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

#chat-input-container {
    background: rgba(0, 255, 65, 0.1); /* 10% translucent green */
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
}

#chat-input {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.75rem;
    resize: none;
    min-height: 2.5rem;
    max-height: 4rem;
    color: var(--text);
    box-shadow: 0 0 3px rgba(0, 255, 65, 0.1);
}

#chat-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
}

#send-chat {
    padding: 0.75rem 1.5rem;
    background: var(--surface);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 5px rgba(0, 255, 65, 0.2);
}

#send-chat:hover {
    background: var(--primary);
    color: var(--background);
    box-shadow: 0 0 12px rgba(0, 255, 65, 0.5);
}

/* Settings Screen */
#settings-screen {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.settings-container {
    width: 100%;
    max-width: 400px;
}

.settings-container h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.setting-group {
    margin-bottom: 1.5rem;
}

.setting-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.setting-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--surface);
    color: var(--text);
}

#logout-btn {
    width: 100%;
    background: var(--error);
    margin-top: 2rem;
}

/* Bottom Navigation (Thumb Zone) */
/* Glassmorphism: Bottom-nav and Chat-header use a backdrop-filter: blur(12px) with a 10% translucent green tint. */
#bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--thumb-zone-height);
    background: rgba(0, 255, 65, 0.1); /* 10% translucent green */
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 1rem;
    z-index: 100;
}

.nav-btn {
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    color: var(--text-dim);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: color 0.2s ease;
    padding: 0.5rem;
}

.nav-btn svg {
    filter: drop-shadow(0 0 2px rgba(0, 255, 65, 0.5));
}

.nav-btn.active {
    color: var(--primary);
}

.nav-btn.active svg {
    filter: drop-shadow(0 0 4px rgba(0, 255, 65, 0.8));
}

.nav-btn span {
    font-size: 0.625rem;
    font-weight: 500;
}

/* Gesture Support */
.swipe-hint {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swipe-hint.show {
    opacity: 0.8;
}

.swipe-hint.left {
    left: 1rem;
}

.swipe-hint.right {
    right: 1rem;
}

/* Desktop Mode */
@media (min-width: 768px) {
    :root {
        --thumb-zone-height: 60px;
        --header-height: 50px;
    }
    
    #main-content {
        display: grid;
        grid-template-columns: 250px 1fr 400px;
        grid-template-rows: 1fr;
        gap: 1px;
        background: var(--border);
        padding: 1px;
        height: calc(100vh - var(--header-height));
    }
    
    .panel {
        position: static;
        display: flex;
        opacity: 1;
        transform: none;
        transition: none;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(15px);
        border: none;
        flex-direction: column;
    }
    
    .panel.hidden {
        display: none;
    }
    
    /* All panels visible by default in desktop */
    #file-explorer, #editor-panel, #preview-panel {
        display: flex !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    #file-explorer {
        grid-column: 1;
    }
    
    #editor-panel {
        grid-column: 2;
    }
    
    #preview-panel {
        grid-column: 3;
    }
    
    #chat-panel {
        position: fixed;
        right: 0;
        top: var(--header-height);
        bottom: var(--thumb-zone-height);
        width: 400px;
        background: rgba(10, 10, 10, 0.95);
        border-left: none;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 50;
        backdrop-filter: blur(15px);
    }
    
    #chat-panel.active {
        transform: translateX(0);
    }
    
    #bottom-nav {
        display: none;
    }
    
    /* Desktop navigation controls panel visibility */
    .desktop-nav-btn[data-panel="file-explorer"].active ~ #main-content #file-explorer,
    .desktop-nav-btn[data-panel="editor-panel"].active ~ #main-content #editor-panel,
    .desktop-nav-btn[data-panel="preview-panel"].active ~ #main-content #preview-panel {
        display: flex !important;
    }
    
    .desktop-nav-btn[data-panel="file-explorer"]:not(.active) ~ #main-content #file-explorer,
    .desktop-nav-btn[data-panel="editor-panel"]:not(.active) ~ #main-content #editor-panel,
    .desktop-nav-btn[data-panel="preview-panel"]:not(.active) ~ #main-content #preview-panel {
        display: none !important;
    }
    
    .desktop-nav {
        display: flex;
        background: rgba(10, 10, 10, 0.95);
        border: none;
        padding: 0 1rem;
        gap: 0.5rem;
        box-shadow: 0 0 30px rgba(0, 255, 65, 0.15);
        backdrop-filter: blur(15px);
    }
    
    .desktop-nav-btn {
        padding: 0.75rem 1rem;
        background: transparent;
        color: var(--text-dim);
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border-radius: 0;
        font-weight: 500;
        font-family: 'Fira Code', 'JetBrains Mono', monospace;
        font-size: 0.875rem;
        letter-spacing: 0.05em;
    }
    
    .desktop-nav-btn:hover {
        background: rgba(0, 255, 65, 0.1);
        color: var(--primary);
        box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    }
    
    .desktop-nav-btn.active {
        color: var(--primary);
        background: rgba(0, 255, 65, 0.15);
        box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
        text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
    }
    
    .desktop-nav-btn svg {
        filter: drop-shadow(0 0 2px rgba(0, 255, 65, 0.3));
    }
    
    .desktop-nav-btn.active svg {
        filter: drop-shadow(0 0 4px rgba(0, 255, 65, 0.6));
    }
    
    /* Settings header */
    .settings-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    }
    
    .back-btn {
        padding: 0.5rem 1rem;
        background: transparent;
        color: var(--primary);
        border: 1px solid var(--primary);
        border-radius: 2px;
        cursor: pointer;
        font-family: 'Fira Code', 'JetBrains Mono', monospace;
        font-size: 0.875rem;
        letter-spacing: 0.05em;
        transition: all 0.2s ease;
    }
    
    .back-btn:hover {
        background: rgba(0, 255, 65, 0.1);
        box-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
    }
    
    /* Admin panel button */
    .admin-btn {
        background: var(--primary);
        color: white;
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        transition: background-color 0.2s ease;
    }
    
    .admin-btn:hover {
        background: var(--primary-dark);
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.3s ease;
}

/* Touch Optimizations */
@media (pointer: coarse) {
    button, .file-item, .nav-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-btn {
        padding: 1rem;
    }
}

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

/* Focus styles for keyboard navigation */
button:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
