/*@import url("./quiz-app-style.css");*/

/* career path finder quiz css */
body {
    font-family: 'Arial', sans-serif;
}

.app-container {
    font-family: 'Arial', sans-serif;
    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%);
}

.app-title {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    font-size: 2.5rem;
    font-weight: bold;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.app-subtitle {
    font-size: 1.1rem;
    color: #b8c6db;
    margin-left: auto;
    margin-right: auto;
}

.begin-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.begin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.quiz-screen {
    display: none;
    padding: 1rem 5rem;
}

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

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

.question-counter {
    text-align: center;
    color: #b8c6db;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.question-text {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
}

.answers-container {
    display: grid;
    gap: 15px;
    margin-bottom: 40px;
}

.answer-option {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: #ffffff;
    font-size: 1rem;
}

.answer-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.answer-option.selected {
    border-color: #4facfe;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2) 0%, rgba(0, 242, 254, 0.2) 100%);
}

.navigation-buttons {

}

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

.nav-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.nav-btn:disabled {
    background: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    opacity: 0.5;
}

/* Results Screen */
.results-screen {
    display: none;
    text-align: center;
}

.result-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-description {
    font-size: 1.1rem;
    color: #b8c6db;
    margin-bottom: 30px;
    line-height: 1.8;
}

.career-suggestions {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.career-suggestions h3 {
    color: #4facfe;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.career-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.career-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    color: #ffffff;
}

.restart-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.restart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* @media styles are all in 'quiz-app-style.css' */