/* stress-management-style-quiz.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.app-container {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9) 0%, rgba(42, 82, 152, 0.9) 50%, rgba(30, 60, 114, 0.9) 100%);
}

.welcome-screen {
    display: none; /* it is 'none' because screen is active by default */
    /*backdrop-filter: blur(15px);*/
    flex: 1;
}

.screen { display: none; }
.screen.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.app-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd89b 0%, #1771ac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.app-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.begin-button {
    background: linear-gradient(45deg, #807235, #264987);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(238, 90, 36, 0.3);
}

.nav-button, .restart-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    box-shadow: 0 8px 20px rgba(238, 90, 36, 0.3);
}

.begin-button:hover, .nav-button:hover, .restart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(238, 90, 36, 0.4);
}

.restart-button {
    padding: 1rem;
}
.progress-container {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd89b, #19547b);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.quiz-counter {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.8;
}

.answer-option {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
}

.answer-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(5px);
}

.answer-option.selected {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.3), rgba(238, 90, 36, 0.3));
    border-color: #ff6b6b;
    color: #e2e8f0;
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.result-screen {
    text-align: center;
}

.result-screen.active { display: block; }

.result-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd89b 0%, #1771ac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.result-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ffd89b;
}

.characteristics {
    text-align: left;
    margin-bottom: 2rem;
}

.characteristics h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffd89b;
}

.characteristics ul {
    list-style: none;
    padding-left: 0;
}

.characteristics li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.characteristics li:before {
    content: "✓";
    color: #ffd89b;
    font-weight: bold;
    margin-right: 0.5rem;
}