/* communication-style-quiz.css */

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

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

.welcome-screen h1 {
    font-weight: 700;
    background: linear-gradient(45deg, #ffd89b, #0995f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.welcome-screen h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #e9ecef;
    opacity: 0.9;
}

.begin-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    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;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(238, 90, 111, 0.3);
}

.begin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(238, 90, 111, 0.4);
}

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

.quiz-section { display: block; }

.quiz-counter {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #e9ecef;
}

.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(90deg, #ffd89b, #19547b);
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 0%;
}

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

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

.answer-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.answer-option.selected {
    background: linear-gradient(45deg, rgba(255, 215, 155, 0.3), rgba(25, 84, 123, 0.3));
    border-color: #ffd89b;
}

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

.nav-button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.3);
}

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

.result-section {
    text-align: center;
}

.result-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd89b, #1b85cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.result-details {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    text-align: left;
}

.result-details h4 {
    color: #ffd89b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.result-details ul {
    list-style: none;
    padding-left: 0;
}

.result-details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.result-details li::before {
    content: "•";
    color: #ffd89b;
    position: absolute;
    left: 0;
}

.restart-button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.restart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.site-footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: #adb5bd;
}

.hidden {
    display: none;
}

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