.kindness-quiz-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 600px;
    margin: 2rem auto;
    padding: 2.5rem 2rem;
    background: #fff0f3; /* Brand 50 */
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(244, 63, 94, 0.1);
    color: #1f2937;
    border: 1px solid #ffe4e6;
}

.kindness-quiz-wrapper h2 {
    color: #E98FA9; /* Custom Pink */
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.kindness-quiz-wrapper h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #111827;
    font-weight: 700;
    line-height: 1.4;
}

.kindness-quiz-wrapper p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #4b5563;
}

.kq-btn {
    background: #E98FA9; /* Custom Pink */
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0.5rem;
    box-shadow: 0 4px 6px rgba(244, 63, 94, 0.25);
    text-decoration: none;
}

.kq-btn:hover {
    background: #D47A94; /* Custom Pink Hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(233, 143, 169, 0.3);
    color: white;
}

.kq-outline {
    background: transparent;
    color: #E98FA9;
    border: 2px solid #E98FA9;
    box-shadow: none;
}

.kq-outline:hover {
    background: #ffe4e6;
    color: #D47A94;
    box-shadow: none;
}

.kq-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kq-option {
    background: white;
    border: 2px solid #fecdd3;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    color: #374151;
    text-align: left;
    display: flex;
    align-items: center;
}

.kq-option:hover {
    border-color: #E98FA9;
    background: #fff0f3;
    color: #D47A94;
    transform: scale(1.02);
}

.kq-note {
    margin-top: 2rem;
    font-size: 0.95rem !important;
    color: #6b7280;
    font-style: italic;
}

.kq-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 2rem;
}

.kq-share-btn {
    background: #111827;
    box-shadow: 0 4px 6px rgba(17, 24, 39, 0.25);
}

.kq-share-btn:hover {
    background: #000000;
    box-shadow: 0 6px 12px rgba(17, 24, 39, 0.3);
}

.kq-progress-bar {
    width: 100%;
    height: 6px;
    background: #ffe4e6;
    border-radius: 3px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.kq-progress-fill {
    height: 100%;
    background: #E98FA9;
    transition: width 0.3s ease;
}

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

.kq-section {
    animation: fadeIn 0.4s ease-out forwards;
}

/* Image & Sharing Styles */
.kq-result-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 0 auto 1.5rem auto;
    display: block;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.kq-share-grid {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.kq-share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.2s;
}

.kq-share-icon:hover {
    transform: translateY(-2px);
    color: white;
}

.kq-share-icon.fb { background: #1877F2; }
.kq-share-icon.x { background: #000000; }
.kq-share-icon.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.mt-2 { margin-top: 1rem; }
