/* * Social Energy Quiz Styles */

body {
    font-family: 'Georgia', serif;
}

.app-container {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #9b59b6 100%);
}

.app-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-subtitle {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.6;
    color: #bdc3c7;
}

.begin-button {
    display: block;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

.begin-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(243, 156, 18, 0.4);
}

.quiz-screen {
    display: block;
}

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

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

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 10px;
}

.quiz-counter {
    text-align: center;
    margin-top: 0.5rem;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.question-container {
    /*display: none;*/
}

.question-container.active {
    display: block;
}

.question {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.5;
}

.answers {
}

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

.answer-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(243, 156, 18, 0.5);
    transform: translateY(-2px);
}

.answer-option.selected {
    background: rgba(243, 156, 18, 0.3);
    border-color: #f39c12;
}

.navigation {
}

.nav-button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ecf0f1;
}

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

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

.results-container {
    display: none;
    text-align: center;
}

.results-container.active {
    display: block;
    padding: 2rem;
}

.result-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #bdc3c7;
}

.result-traits {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.trait-category {
    margin-bottom: 1.5rem;
}

.trait-category h4 {
    color: #f39c12;
    margin-bottom: 0.5rem;
}

.restart-button {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #3498db, #9b59b6);
    border: none;
    border-radius: 25px;
    color: #ecf0f1;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: bold;
}

.restart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.hidden {
    display: none !important;
}

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