/* parenting-style-quiz.css */

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

.app-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#welcome-screen h1 {/*.app-title*/
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.app-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    color: #e8f2ff;
}

.begin-button, .restart-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    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 10px 20px rgba(0, 0, 0, 0.2);
    margin: 0.5rem;
}

.quiz-screen {
    display: block;
}

.nav-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.begin-button:hover, .nav-button:hover, .restart-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.progress-container {
    margin-bottom: 2rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.quiz-counter {
    font-size: 1rem;
    font-weight: 600;
    color: #e8f2ff;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.question-container {
    display: block;
}

.question-title {
}

.answer-option {
    background: rgba(255, 255, 255, 0.05);
    color: #f8f9fa;
}

.answer-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.answer-option.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #f093fb;
    transform: translateY(-2px);
}

.navigation {
}

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

.nav-button:disabled:hover {
    transform: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.result-container {
    text-align: left;
    padding: 2rem;
}

.result-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #e8f2ff;
}

.characteristics {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

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

.characteristics li:last-child {
    border-bottom: none;
}

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

.hidden {
    display: none;
}

@media screen and (max-width: 480px) {
    .result-container {
        padding: 0.3rem;
        margin-bottom: 1rem;
    }
}