:root {
    --fondo: #0a0a0f;
    --texto: #e8e6e3;
    --acento: #c9a227;
    --sombra: #1a1a24;
    --prefetch: #7a6a4a;
    --danger: #8b2635;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--fondo);
    color: var(--texto);
    font-family: 'Cormorant Garamond', serif;
    min-height: 100vh;
    overflow: hidden;
}

#particles {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

#morel-app {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

#morel-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    letter-spacing: 0.3em;
    color: var(--acento);
}

#status-bar {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--prefetch);
    margin-top: 1rem;
}

section {
    display: none;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.active {
    display: flex;
}

#saludo {
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-primary, .btn-respuesta, .btn-secondary {
    background: transparent;
    border: 1px solid var(--acento);
    color: var(--acento);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin: 0.5rem;
}

.btn-primary:hover, .btn-respuesta:hover {
    background: var(--acento);
    color: var(--fondo);
}

.btn-tercera {
    border-color: var(--prefetch);
    color: var(--prefetch);
    font-size: 0.75rem;
}

#pensamiento-bubble {
    min-height: 3rem;
    margin-bottom: 2rem;
}

#pensamiento-texto {
    font-style: italic;
    color: var(--prefetch);
    opacity: 0;
    transition: opacity 0.5s;
}

#pensamiento-texto.visible {
    opacity: 0.7;
}

#pregunta-texto {
    font-size: 1.8rem;
    font-style: italic;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.4;
}

#opciones {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
}

#progreso {
    display: flex;
    gap: 0.5rem;
    margin-top: 3rem;
}

.progreso-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--sombra);
}

.progreso-dot.active {
    background: var(--acento);
}

#veredicto-principal {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--acento);
    text-align: center;
    margin-bottom: 1rem;
}

#confianza-texto {
    font-style: italic;
    color: var(--prefetch);
    margin-bottom: 2rem;
}

#alternativas {
    margin-bottom: 2rem;
}

.alternativas-label {
    font-style: italic;
    color: var(--texto);
    margin-bottom: 0.5rem;
}

#lista-alternativas {
    list-style: none;
}

#lista-alternativas li {
    padding: 0.3rem 0;
    color: var(--prefetch);
}

#retro-morelliano {
    font-style: italic;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 400px;
    line-height: 1.6;
}