/* creative-type-quiz.css */

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

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

.quiz-container {
    backdrop-filter: blur(15px);
    display: block;
    padding: 10px;
}

.welcome-screen {
    /*display: block;*/
}

#welcome h1 {/*.app-title*/
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #e2bc81, #2c7fb6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e9ecef;
    font-weight: 300;
}

.begin-button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

/* Quiz Screen */
.quiz-screen {
    display: none;
}

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

.quiz-counter {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #dee2e6;
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    width: 0%;
    transition: width 0.3s ease;
}

.question {
    color: #f8f9fa;
    line-height: 1.4;
}

.answers {
}

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

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

.answer-option.selected {
    background: rgba(255, 107, 107, 0.3);
    border-color: #ff6b6b;
}

.nav-buttons {
}

.nav-button {
    background: rgba(255, 255, 255, 0.2);
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

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

.results-screen {
    display: none;
    text-align: center;
    padding: 2rem;
}

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

.result-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #4ecdc4;
    font-weight: 500;
}

.result-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #e9ecef;
    text-align: left;
}

.restart-button {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: #fff;
    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 25px rgba(0, 0, 0, 0.2);
}

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

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

    .results-screen {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
}