
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #8A2BE2, #FF00FF); /* Violeta y Fucsia */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    text-align: center;
}

h1 {
    color: #FFD700; /* Dorado para resaltar */
    margin-bottom: 20px;
}

h2 {
    color: #FFC0CB; /* Rosa claro para subtítulos */
    margin-top: 20px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.option-button {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #FFC0CB;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.option-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
    border-color: #FF00FF;
}

.option-button.selected {
    background-color: #FF00FF;
    border-color: #FFD700;
}

button#next-button {
    background-color: #FF00FF; /* Fucsia */
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

button#next-button:hover {
    background-color: #8A2BE2; /* Violeta */
}

#result-container p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#result-recommendations ul {
    list-style: none;
    padding: 0;
}

#result-recommendations li {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    text-align: left;
}

.call-to-action {
    font-size: 1.3em;
    font-weight: bold;
    color: #FFD700;
    margin-top: 30px;
}


