/* work style assessment quiz css */

body { font-family: 'Arial', sans-serif; }

.app-container {
    /*background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);*/
    border: 1px solid rgba(255, 255, 255, 0.2);
    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-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #64b5f6, #42a5f5, #2196f3, #1976d2);
    animation: shimmer 2s ease-in-out infinite;
}
*/
@keyframes shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.welcome-screen h1 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #64b5f6, #42a5f5, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.2;
}

.welcome-screen p {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

/* Question Screen */
.question-screen {
    display: none;
    animation: slideIn 0.5s ease-out;
}

.question-header {
    text-align: center;
    margin-bottom: 30px;
}

.question-counter {
    background: linear-gradient(45deg, #1976d2, #42a5f5);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
}

.question-text {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
}

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

.option {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.option:hover {
    border-color: #64b5f6;
    background: rgba(100, 181, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(100, 181, 246, 0.3);
}

.option:hover::before {
    left: 100%;
}

.option.selected {
    border-color: #42a5f5;
    background: linear-gradient(45deg, rgba(66, 165, 245, 0.3), rgba(33, 150, 243, 0.2));
    box-shadow: 0 5px 20px rgba(66, 165, 245, 0.4);
}

/* Navigation Buttons */
.nav-buttons {

}

.nav-btn {

}

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

.nav-btn.primary {
    background: linear-gradient(45deg, #2196f3, #64b5f6);
    color: white;
    flex: 1;
    max-width: 150px;
}

.nav-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 150px;
}

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

.nav-btn.primary:hover:not(:disabled) {
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.4);
}

.start-btn {
    background: linear-gradient(45deg, #2196f3, #64b5f6, #42a5f5);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
}

.start-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.5);
}

.start-btn:hover::before {
    left: 100%;
}

/* Results Screen */
.results-screen {
    display: none;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.result-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #64b5f6, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.result-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.result-characteristics {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.result-characteristics h3 {
    color: #64b5f6;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.characteristic-item {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.characteristic-item::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #42a5f5;
}

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

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@media screen and (max-width: 480px) {
    #welcomeScreen h1 {
        font-size: 2.5rem;
    }
}