/**
 * Estilos del Mapa del Mundo - SEO Wars
 * Versión Modular y Escalable
 */

:root {
    /* Colores principales */
    --primary-color: #00BCD4;
    --secondary-color: #0097A7;
    --accent-color: #FF6B6B;
    --success-color: #22C55E;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --info-color: #3B82F6;
    
    /* Colores de fondo */
    --bg-primary: #0A0A0A;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #2A2A2A;
    --bg-quaternary: #3A3A3A;
    
    /* Colores de texto */
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-muted: #888888;
    --text-accent: #00BCD4;
    
    /* Colores de borde */
    --border-color: #333333;
    --border-light: #555555;
    --border-accent: #00BCD4;
    
    /* Radios */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    
    /* Fuentes */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-mono: 'Courier New', monospace;
    
    /* Transiciones */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-indexes */
    --z-modal: 1000;
    --z-hud: 100;
    --z-overlay: 50;
    --z-content: 10;
}

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.world-page {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    user-select: none;
}

/* Header del juego */
.game-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border-bottom: 2px solid var(--border-color);
    z-index: var(--z-hud);
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
}

.game-logo {
    height: 32px;
    width: auto;
}

.main-navigation {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.nav-link.active {
    background: var(--primary-color);
    color: var(--text-primary);
}

.nav-icon {
    font-size: 18px;
}

.nav-text {
    font-size: 14px;
    font-weight: 500;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--error-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: pulse 2s infinite;
}

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

.user-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.user-level {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.level-text {
    font-size: 12px;
    color: var(--text-muted);
}

.xp-bar {
    position: relative;
    width: 120px;
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
}

.xp-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-normal);
}

.xp-text {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 10px;
    color: var(--text-muted);
    white-space: nowrap;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

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

/* HUD de Recursos */
.resources-hud {
    position: fixed;
    top: 70px;
    left: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 15px;
    z-index: var(--z-hud);
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-lg);
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.resource-icon {
    width: 20px;
    height: 20px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Overrides específicos para la página del mundo para evitar fondos globales */
body.world-page {
    background: #0b1015 !important; /* sin imágenes de fondo */
}

/* Asegurar tamaño de iconos del HUD sin ser afectados por otros estilos */
.resources-hud .resource-item .resource-icon {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    object-fit: contain !important;
}

/* Forzar tamaño correcto de todos los iconos de recursos */
.resource-icon {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    object-fit: contain !important;
    image-rendering: pixelated !important;
    image-rendering: -moz-crisp-edges !important;
    image-rendering: crisp-edges !important;
}

.resource-amount {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

/* Contenedor principal del juego */
.game-container {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
}

/* Contenedor del mapa */
.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.world-canvas {
    display: block;
    width: 100%;
    height: 100%;
    cursor: crosshair;
    background: #0a0a0a;
    border: 1px solid #333;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Overlay de carga */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: var(--z-overlay);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

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

.loading-text {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.loading-progress {
    width: 300px;
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0%;
    transition: width var(--transition-normal);
}

/* HUD de información del mapa */
.map-info-hud {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 15px;
    z-index: var(--z-hud);
    box-shadow: var(--shadow-lg);
}

.map-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.map-coordinates,
.map-zoom {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.coord-value,
.zoom-value {
    color: var(--text-primary);
    font-family: var(--font-mono);
}

/* Controles del mapa */
.map-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: var(--z-hud);
}

.control-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.control-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.control-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 20px;
}

/* Sidebar de acciones */
.action-sidebar {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: var(--z-hud);
}

.action-btn {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.action-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-light);
    transform: translateX(-5px);
}

.action-btn:active {
    transform: translateX(0);
}

.action-btn .btn-icon {
    font-size: 24px;
}

.action-btn .btn-text {
    font-size: 10px;
    font-weight: 500;
}

/* HUD de eventos del mundo */
.world-events-hud {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    max-height: 500px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    z-index: var(--z-hud);
    box-shadow: var(--shadow-xl);
}

.events-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.events-header h3 {
    font-size: 18px;
    color: var(--text-primary);
}

.close-btn {
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.close-btn:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.events-content {
    padding: 20px;
}

.events-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: var(--text-primary);
}

.events-list {
    max-height: 300px;
    overflow-y: auto;
}

/* HUD de movimientos */
.movements-hud {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 300px;
    max-height: 400px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    z-index: var(--z-hud);
    box-shadow: var(--shadow-xl);
}

.movements-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.movements-header h3 {
    font-size: 16px;
    color: var(--text-primary);
}

.movements-content {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

/* Modales */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 20px;
    color: var(--text-primary);
}

.modal-body {
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Diálogo de Xel */
.xel-dialogue-modal {
    max-width: 600px;
    width: 90vw;
}

.xel-dialogue {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.xel-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.xel-avatar {
    position: relative;
}

.xel-avatar-img {
    width: 112px;
    height: 112px;
    border-radius: 16px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.xel-title h2 {
    font-size: 24px;
    color: white;
    margin-bottom: 4px;
}

.xel-title p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.xel-message {
    padding: 20px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    line-height: 1.6;
}

.xel-actions {
    padding: 20px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    background: var(--bg-secondary);
}

.btn-xel {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-xel-primary {
    background: var(--primary-color);
    color: white;
}

.btn-xel-primary:hover {
    background: var(--secondary-color);
}

.btn-xel-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-xel-secondary:hover {
    background: var(--bg-quaternary);
}

/* Popup de fundación de ciudad */
.city-foundation-modal {
    max-width: 800px;
    width: 90vw;
}

.city-foundation-popup {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.city-foundation-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 24px;
    text-align: center;
    color: white;
}

.city-foundation-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.city-foundation-header p {
    font-size: 16px;
    opacity: 0.9;
}

#cityFoundationForm {
    padding: 30px;
}

.form-section {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.form-section input[type="text"],
.form-section input[type="url"] {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition-fast);
}

.form-section input[type="text"]:focus,
.form-section input[type="url"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.form-help {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.faction-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.faction-card {
    position: relative;
    cursor: pointer;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    background: var(--bg-tertiary);
    transition: var(--transition-fast);
}

.faction-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faction-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.faction-card input[type="radio"]:checked + .faction-content {
    color: var(--primary-color);
}

.faction-card input[type="radio"]:checked {
    border-color: var(--primary-color);
    background: rgba(0, 188, 212, 0.1);
}

.faction-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faction-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.faction-details {
    flex: 1;
}

.faction-details h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.faction-details p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.faction-bonuses {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bonus-tag {
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 600;
}

.faction-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.city-foundation-actions {
    padding: 20px 30px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    background: var(--bg-tertiary);
}

.btn-city {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-city-primary {
    background: var(--primary-color);
    color: white;
}

.btn-city-primary:hover {
    background: var(--secondary-color);
}

.btn-city-secondary {
    background: var(--bg-quaternary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-city-secondary:hover {
    background: var(--bg-tertiary);
}

/* Sistema de notificaciones */
.notifications-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: var(--z-modal);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    box-shadow: var(--shadow-lg);
    max-width: 300px;
    animation: slideIn 0.3s ease;
}

.notification.success {
    border-left: 4px solid var(--success-color);
}

.notification.error {
    border-left: 4px solid var(--error-color);
}

.notification.warning {
    border-left: 4px solid var(--warning-color);
}

.notification.info {
    border-left: 4px solid var(--info-color);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile-First Responsive Design */

/* Base styles (mobile first) */
.game-header {
    padding: 0 10px;
    height: 50px;
}

.main-navigation {
    gap: 8px;
}

.nav-text {
    display: none;
}

.resources-hud {
    top: 60px;
    left: 10px;
    right: 10px;
    flex-direction: row;
    justify-content: space-around;
    gap: 8px;
}

.resource-item {
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.resource-amount {
    font-size: 14px;
}

.map-controls {
    top: 10px;
    right: 10px;
    gap: 8px;
}

.control-btn {
    width: 40px;
    height: 40px;
}

.action-sidebar {
    right: 10px;
    gap: 8px;
}

.action-btn {
    width: 50px;
    height: 50px;
}

.action-btn .btn-text {
    display: none;
}

.world-events-hud,
.movements-hud {
    width: calc(100vw - 20px);
    left: 10px;
    right: 10px;
}

.faction-options {
    grid-template-columns: 1fr;
}

.user-section {
    gap: 8px;
}

.user-info {
    display: none;
}

/* Tablet styles */
@media (min-width: 768px) {
    .game-header {
        padding: 0 20px;
        height: 60px;
    }
    
    .main-navigation {
        gap: 20px;
    }
    
    .nav-text {
        display: inline;
    }
    
    .resources-hud {
        top: 70px;
        left: 20px;
        right: auto;
        flex-direction: row;
        gap: 20px;
    }
    
    .resource-item {
        flex-direction: row;
        gap: 8px;
        padding: 8px 12px;
    }
    
    .resource-amount {
        font-size: 16px;
    }
    
    .map-controls {
        top: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .control-btn {
        width: 50px;
        height: 50px;
    }
    
    .action-sidebar {
        right: 20px;
        gap: 15px;
    }
    
    .action-btn {
        width: 60px;
        height: 60px;
    }
    
    .action-btn .btn-text {
        display: inline;
    }
    
    .world-events-hud,
    .movements-hud {
        width: 400px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .faction-options {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .user-section {
        gap: 15px;
    }
    
    .user-info {
        display: flex;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .game-header {
        padding: 0 20px;
    }
    
    .main-navigation {
        gap: 20px;
    }
    
    .resources-hud {
        top: 70px;
        left: 20px;
        gap: 20px;
    }
    
    .map-controls {
        top: 20px;
        right: 20px;
    }
    
    .action-sidebar {
        right: 20px;
        gap: 15px;
    }
    
    .world-events-hud,
    .movements-hud {
        width: 400px;
    }
    
    .faction-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large desktop styles */
@media (min-width: 1440px) {
    .game-header {
        padding: 0 40px;
    }
    
    .resources-hud {
        top: 80px;
        left: 40px;
        gap: 30px;
    }
    
    .map-controls {
        top: 30px;
        right: 40px;
    }
    
    .action-sidebar {
        right: 40px;
        gap: 20px;
    }
    
    .world-events-hud,
    .movements-hud {
        width: 500px;
    }
}

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

@media (prefers-contrast: high) {
    :root {
        --border-color: #FFFFFF;
        --text-muted: #FFFFFF;
    }
}

/* Modo de alto contraste */
.high-contrast {
    --bg-primary: #000000;
    --bg-secondary: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #FFFFFF;
    --border-color: #FFFFFF;
}

/* Modo de movimiento reducido */
.reduced-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}