:root {
    --primary-color: #822ef5; /* Morado vibrante (acento principal) */
    --secondary-color: #0a7aff; /* Azul fuerte (elementos interactivos) */
    --background-color: #16161d; /* Gris oscuro/negro (fondo principal) */
    --card-background: #1e1e26; /* Variante un poco más clara del fondo principal */
    --section-background: #f5f5f5; /* Gris muy claro (fondos secundarios) */
    --text-primary: #f8f8f8; /* Blanco claro (texto principal) */
    --text-secondary: #7d7d7d; /* Gris medio (texto secundario) */
    --accent-color: #822ef5; /* Morado vibrante (acento) */
    --success-color: #10b981; /* Mantenemos colores de estado */
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --header-height: 60px; /* Altura del header */
    --footer-height: 150px; /* Altura del footer */
}

body {
    font-family: 'Barlow', 'Helvetica Neue', Helvetica, sans-serif;
    margin: 0;
    padding-top: 2rem;
    background-color: var(--background-color);
    color: var(--text-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-banner {
    background-color: var(--card-background);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin-bottom: 2rem;
    display: none;
    align-items: center;
    gap: 0.75rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-banner i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.news-banner span {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

h1 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Sombra para mejorar legibilidad */
}

#mainContent {
    display: none;
}

#loginForm {
    /* display: none; */
}

/* Basic animations */
@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
} 