.att-rising-sign-quiz {
    max-width: 600px;
    margin: 20px auto;
    padding: 25px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.att-rising-sign-quiz p { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 1rem; }

.att-quiz-progress {
    margin-bottom: 30px;
}

.att-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.att-progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    transition: width 0.3s ease;
}

.att-question-number {
    font-size: 14px;
    color: #aaa;
}

.att-quiz-question h4 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.att-quiz-options {
    display: grid;
    gap: 12px;
}

.att-quiz-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff !important;
}

.att-quiz-options label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.att-quiz-options input[type="radio"]:checked + label {
    border-color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

.att-quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.att-quiz-prev,
.att-quiz-next,
.att-quiz-submit {
    padding: 10px 25px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.att-quiz-prev:hover,
.att-quiz-next:hover,
.att-quiz-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.att-quiz-submit {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.att-quiz-results {
    text-align: center;
    padding: 20px;
}

.att-result-sign {
    color: #f39c12;
    font-size: 32px;
}

.att-result-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 20px 0;
}

.att-result-note {
    font-size: 14px;
    color: #aaa;
    font-style: italic;
    margin: 20px 0;
}

.att-retake-quiz {
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.att-retake-quiz:hover {
    background: rgba(255, 255, 255, 0.2);
}

.att-embed-section { text-align: center; margin: 2rem 0 1rem; }
