:root {
    --primary-color: #2a9485;
    --secondary-color: #217a6d;
    --accent-color: #57BCAB;
    --text-light: #f8f9fa;
    --text-dark: #2A332E;
    --background: #2a9485;
    --highlight: #c4e9e0;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Raleway', sans-serif;
    --card-bg: rgba(255,255,255,0.07);
    --card-border: rgba(255,255,255,0.08);
    --glass: rgba(255,255,255,0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    color: var(--text-light);
    background: var(--background);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.quiz-page {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 5.5rem 1.5rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.quiz-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.quiz-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.quiz-nav-logo img {
    width: 32px;
    height: 32px;
}

.quiz-nav-back {
    position: absolute;
    left: 0;
    color: var(--highlight);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.quiz-nav-back:hover { opacity: 1; }

.quiz-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.quiz-header h1 {
    font-family: var(--body-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.quiz-header p {
    font-size: 0.95rem;
    color: var(--highlight);
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.quiz-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--highlight);
    opacity: 0.7;
}

.quiz-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #7dd3c0);
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.progress-text {
    text-align: right;
    font-size: 0.75rem;
    color: var(--highlight);
    opacity: 0.7;
    margin-top: 0.4rem;
}

/* Question Card */
.question-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5rem;
}

.question-card {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    animation: fadeInUp 0.4s ease;
    backdrop-filter: blur(5px);
}

.question-number {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.question-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

/* Answer Options */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.option-btn {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: var(--text-light);
    font-family: var(--body-font);
    font-size: 0.92rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.option-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.option-btn.selected {
    background: rgba(87, 188, 171, 0.2);
    border-color: var(--accent-color);
    box-shadow: 0 0 12px rgba(87, 188, 171, 0.15);
}

.option-btn.selected::before {
    content: '✓';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: 700;
    width: 22px;
    height: 22px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* Likert Scale */
.likert-scale {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.likert-btn {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.likert-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--accent-color);
    transform: scale(1.08);
}

.likert-btn.selected {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-dark);
    font-weight: 700;
    box-shadow: 0 0 14px rgba(87, 188, 171, 0.3);
    transform: scale(1.08);
}

.likert-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.72rem;
    color: #fff;
    opacity: 0.7;
}

/* Navigation Buttons */
.quiz-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(42, 148, 133, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 100;
}

.btn-next, .btn-prev {
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-family: var(--body-font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-next {
    background: var(--accent-color);
    color: var(--text-dark);
    margin-left: auto;
}

.btn-next:hover {
    background: #7dd3c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(87, 188, 171, 0.3);
}

.btn-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: rgba(87, 188, 171, 0.3);
}

.btn-next.glow {
    animation: glowPulse 1.3s ease-in-out infinite;
    background: var(--accent-color);
    box-shadow: 0 0 20px rgba(87, 188, 171, 0.5);
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(87, 188, 171, 0.5), 0 0 40px rgba(87, 188, 171, 0.15); }
    50% { box-shadow: 0 0 35px rgba(87, 188, 171, 0.8), 0 0 70px rgba(87, 188, 171, 0.3), 0 0 100px rgba(87, 188, 171, 0.1); }
}

.btn-prev {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--highlight);
}

.btn-prev:hover {
    border-color: var(--accent-color);
    color: #fff;
}

/* Results Section */
.results-container {
    text-align: center;
    animation: fadeInUp 0.6s ease;
    position: relative;
    overflow: hidden;
}

.results-score-circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-color) 0deg, rgba(255,255,255,0.08) 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    animation: scoreReveal 1s ease-out;
    box-shadow: 0 0 30px rgba(87, 188, 171, 0.2);
}

.results-score-circle::before {
    content: '';
    width: 138px;
    height: 138px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
}

.results-score-number {
    position: relative;
    z-index: 1;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.results-score-label {
    font-size: 0.8rem;
    color: var(--highlight);
    opacity: 0.7;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.results-type-badge {
    display: inline-block;
    padding: 0.7rem 1.75rem;
    background: linear-gradient(135deg, rgba(87,188,171,0.3), rgba(125,211,192,0.2));
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(87, 188, 171, 0.15);
    animation: badgeReveal 0.8s ease-out 0.3s both;
    position: relative;
    overflow: hidden;
}

.results-type-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes scoreReveal {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.08); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes badgeReveal {
    0% { transform: scale(0.8) translateY(10px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Sparkle particles */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleFloat 1.5s ease-out forwards;
}

@keyframes sparkleFloat {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

.results-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--highlight);
    opacity: 0.9;
    max-width: 520px;
    margin: 0 auto 2rem;
}

.results-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.trait-tag {
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #fff;
    border: none;
    animation: fadeInUp 0.4s ease both;
}

.trait-tag:nth-child(1) { background: rgba(87, 188, 171, 0.25); animation-delay: 0.1s; }
.trait-tag:nth-child(2) { background: rgba(176, 142, 209, 0.25); animation-delay: 0.15s; }
.trait-tag:nth-child(3) { background: rgba(232, 168, 124, 0.25); animation-delay: 0.2s; }
.trait-tag:nth-child(4) { background: rgba(107, 163, 214, 0.25); animation-delay: 0.25s; }
.trait-tag:nth-child(5) { background: rgba(224, 122, 122, 0.25); animation-delay: 0.3s; }

.results-advice {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.results-advice h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.results-advice ul {
    list-style: none;
    padding: 0;
}

.results-advice ul li {
    font-size: 0.88rem;
    color: var(--highlight);
    opacity: 0.9;
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.results-advice ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Unlock Button */
.btn-unlock {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.25rem;
    background: linear-gradient(135deg, #e8a87c, #d4956a);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--body-font);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(232, 168, 124, 0.3);
    margin: 1.5rem 0;
    letter-spacing: 0.3px;
}

.btn-unlock:hover {
    background: linear-gradient(135deg, #d4956a, #c4845a);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 168, 124, 0.4);
}

/* Email Modal */
.email-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: fadeIn 0.2s ease;
}

.email-modal-overlay.open {
    display: flex;
}

.email-modal {
    background: linear-gradient(135deg, #2a9485, #237a6d);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideUp 0.3s ease;
}


.email-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--highlight);
    opacity: 0.6;
    font-size: 1.1rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.email-modal-close:hover { opacity: 1; }

.email-modal h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.email-modal p {
    font-size: 0.88rem;
    color: var(--highlight);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.email-modal form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.email-modal input[type="email"] {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-family: var(--body-font);
    font-size: 0.92rem;
    text-align: center;
}

.email-modal input[type="email"]::placeholder {
    color: var(--highlight);
    opacity: 0.5;
}

.email-modal input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255,255,255,0.14);
}

.email-modal button[type="submit"] {
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #e8a87c, #d4956a);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--body-font);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(232, 168, 124, 0.25);
}

.email-modal button[type="submit"]:hover {
    background: linear-gradient(135deg, #d4956a, #c4845a);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(232, 168, 124, 0.35);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Legacy email capture - keep for fallback */
.email-capture {
    background: linear-gradient(135deg, rgba(232,168,124,0.12), rgba(87,188,171,0.08));
    border: 1px solid rgba(232,168,124,0.2);
    border-radius: 14px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.email-capture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8a87c, #57BCAB);
    border-radius: 14px 14px 0 0;
}

.email-capture h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.email-capture p {
    font-size: 0.85rem;
    color: var(--highlight);
    opacity: 0.8;
    margin-bottom: 1.25rem;
}

.email-capture form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-capture input[type="email"] {
    flex: 1;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-family: var(--body-font);
    font-size: 0.9rem;
}

.email-capture input[type="email"]::placeholder {
    color: var(--highlight);
    opacity: 0.6;
}

.email-capture input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255,255,255,0.12);
}

.email-capture button {
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, #e8a87c, #d4956a);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(232, 168, 124, 0.25);
}

.email-capture button:hover {
    background: linear-gradient(135deg, #d4956a, #c4845a);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(232, 168, 124, 0.35);
}

.email-success {
    display: none;
    padding: 1rem;
    text-align: center;
}

.email-success p {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

/* Share Section */
.share-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.share-section p {
    font-size: 0.82rem;
    color: var(--highlight);
    opacity: 0.7;
    margin-bottom: 0.75rem;
}

.share-buttons {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
}

.share-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 1rem;
}

.share-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

/* CTA Section */
.quiz-cta {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.quiz-cta img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.quiz-cta h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.quiz-cta p {
    font-size: 0.88rem;
    color: var(--highlight);
    opacity: 0.85;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.quiz-cta .cta-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.quiz-cta .cta-btn:hover {
    background: #7dd3c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(87, 188, 171, 0.3);
}

/* Disclaimer */
.quiz-disclaimer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem;
    color: var(--highlight);
    opacity: 0.5;
    text-align: center;
    line-height: 1.5;
}

/* Quiz Index Page */
.quiz-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.quiz-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.quiz-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 3px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.quiz-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.15);
}

.quiz-card-link:nth-child(1) .quiz-card { border-left-color: #e8a87c; }
.quiz-card-link:nth-child(1) .quiz-card:hover { box-shadow: 0 8px 24px rgba(232,168,124,0.15); }
.quiz-card-link:nth-child(2) .quiz-card { border-left-color: #e8c547; }
.quiz-card-link:nth-child(2) .quiz-card:hover { box-shadow: 0 8px 24px rgba(232,197,71,0.15); }
.quiz-card-link:nth-child(3) .quiz-card { border-left-color: #7dd3c0; }
.quiz-card-link:nth-child(3) .quiz-card:hover { box-shadow: 0 8px 24px rgba(125,211,192,0.15); }
.quiz-card-link:nth-child(4) .quiz-card { border-left-color: #e07a7a; }
.quiz-card-link:nth-child(4) .quiz-card:hover { box-shadow: 0 8px 24px rgba(224,122,122,0.15); }
.quiz-card-link:nth-child(5) .quiz-card { border-left-color: #b08ed1; }
.quiz-card-link:nth-child(5) .quiz-card:hover { box-shadow: 0 8px 24px rgba(176,142,209,0.15); }
.quiz-card-link:nth-child(6) .quiz-card { border-left-color: #6ba3d6; }
.quiz-card-link:nth-child(6) .quiz-card:hover { box-shadow: 0 8px 24px rgba(107,163,214,0.15); }

.quiz-card-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: var(--accent-color);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quiz-card-link:nth-child(1) .quiz-card-badge { background: #e8a87c; }
.quiz-card-link:nth-child(2) .quiz-card-badge { background: #e8c547; }
.quiz-card-link:nth-child(3) .quiz-card-badge { background: #7dd3c0; }
.quiz-card-link:nth-child(4) .quiz-card-badge { background: #e07a7a; color: #fff; }
.quiz-card-link:nth-child(5) .quiz-card-badge { background: #b08ed1; color: #fff; }
.quiz-card-link:nth-child(6) .quiz-card-badge { background: #6ba3d6; color: #fff; }

.quiz-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.quiz-card p {
    font-size: 0.85rem;
    color: var(--highlight);
    opacity: 0.8;
    line-height: 1.5;
}

.quiz-card-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--highlight);
    opacity: 0.6;
}

.quiz-card-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    opacity: 0;
    transition: all 0.25s ease;
    font-size: 1.2rem;
}

.quiz-card:hover .quiz-card-arrow {
    opacity: 1;
    right: 1.25rem;
}

/* Intro screen */
.quiz-intro {
    text-align: center;
    animation: fadeInUp 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quiz-intro-mascot {
    display: block;
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin: 0 auto 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.quiz-intro .btn-start {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 12px;
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

.quiz-intro .btn-start:hover {
    background: #7dd3c0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(87, 188, 171, 0.35);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Anti-FOUC */
.no-fouc { opacity: 0; }

@media (max-width: 768px) {
    .quiz-page { padding: 5rem 1rem 1.25rem; }
    .quiz-header h1 { font-size: 1.4rem; }
    .question-card { padding: 1.5rem 1.25rem; }
    .question-text { font-size: 1.05rem; }
    .option-btn { padding: 0.85rem 1rem; font-size: 0.88rem; }
    .likert-btn { width: 48px; height: 48px; }
    .email-capture form { flex-direction: column; }
    .email-capture button { width: 100%; }
    .results-score-circle { width: 130px; height: 130px; }
    .results-score-circle::before { width: 105px; height: 105px; }
    .results-score-number { font-size: 2rem; }
    .quiz-intro-mascot { width: 110px; height: 110px; }
}

@media (max-width: 480px) {
    .quiz-header h1 { font-size: 1.25rem; }
    .likert-scale { gap: 0.35rem; }
    .likert-btn { width: 42px; height: 42px; font-size: 0.9rem; }
}
