/* 
 * main.css - Styles principaux pour cestnicoquipaye.fr
 * Emplacement: /assets/css/main.css
 */

:root {
    --primary-blue: #1a365d;
    --primary-red: #c53030;
    --accent-gold: #f6e05e;
    --neutral-100: #f7fafc;
    --neutral-200: #edf2f7;
    --neutral-300: #e2e8f0;
    --neutral-400: #cbd5e0;
    --neutral-500: #a0aec0;
    --neutral-600: #718096;
    --neutral-700: #4a5568;
    --neutral-800: #2d3748;
    --neutral-900: #1a202c;
    --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #3182ce 100%);
    --gradient-secondary: linear-gradient(135deg, #c53030 0%, #e53e3e 50%, #f56565 100%);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--neutral-800);
    background: var(--neutral-100);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Typography */
.font-display {
    font-family: 'Playfair Display', Georgia, serif;
}

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 54, 93, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(246, 224, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(197, 48, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f6e05e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 1.75rem;
    margin: 1rem 0 1.5rem;
    font-weight: 700;
}

.tagline-prefix, .tagline-suffix {
    color: rgba(255, 255, 255, 0.8);
}

.tagline-highlight {
    color: var(--accent-gold);
    font-size: 2rem;
    margin: 0 0.5rem;
    display: inline-block;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Video Section */
.video-section {
    background: white;
    padding: 5rem 0;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    margin: 2rem 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Movement Section */
.movement-section {
    background: var(--neutral-100);
    padding: 5rem 0;
}

.movement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.movement-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.movement-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-700);
}

.movement-image {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.movement-image:hover {
    transform: translateY(-5px);
}

.movement-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    background: white;
    padding: 1.5rem;
    border-radius: 0 0 1rem 1rem;
    border-top: 3px solid var(--primary-red);
    box-shadow: var(--shadow-md);
    margin-top: -5px;
}

.image-caption h4 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.image-caption p {
    color: var(--neutral-700);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.image-caption p:last-child {
    margin-bottom: 0;
}

/* Facts Section */
.facts-section {
    background: white;
    padding: 5rem 0;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fact-card {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.fact-card-content {
    position: relative;
    z-index: 2;
}

.fact-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.fact-description {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Quiz Section */
.quiz-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.quiz-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(26, 54, 93, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(197, 48, 48, 0.05) 0%, transparent 50%);
}

.quiz-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.quiz-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quiz-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.quiz-header p {
    font-size: 1.125rem;
    color: var(--neutral-600);
}

.question-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: none;
}

.question-card.active {
    display: block;
}

.question-card.completed {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
}

.question-number {
    background: var(--primary-blue);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.question-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.quiz-options {
    display: grid;
    gap: 1rem;
}

.quiz-option {
    background: var(--neutral-100);
    border: 2px solid var(--neutral-200);
    border-radius: 0.75rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quiz-option:hover {
    border-color: var(--primary-blue);
    background: #f0f8ff;
    transform: translateY(-2px);
}

.quiz-option.selected {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
}

.quiz-option .option-emoji {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.quiz-option .option-text {
    font-weight: 500;
    color: var(--neutral-700);
}

.quiz-result {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    color: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    display: none;
}

.quiz-result.show {
    display: block;
}

.result-image-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.result-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.quiz-result.show .result-image-container {
    transform: scale(1.05);
}

.result-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.result-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.quiz-restart {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-restart:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

.quiz-progress {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neutral-300);
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: var(--primary-blue);
}

.progress-dot.completed {
    background: var(--accent-gold);
}


/* Section Vérités */
.verites-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
	margin-bottom:0.8em;
}

@keyframes scrollMoney {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.verites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.verite-card {
    background: white;
    border-radius: 1rem;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.verite-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.verite-card::after {
    content: '💸';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 60px;
    opacity: 0;
    transform: rotate(-15deg);
    transition: all 0.3s ease;
}

.verite-card:hover::after {
    opacity: 0.1;
    transform: rotate(15deg) scale(1.2);
}

.verite-header {
    background: var(--primary-blue);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.verite-emoji {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.verite-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.verite-content {
    padding: 1.5rem;
}

.verite-slogan {
    font-style: italic;
    color: var(--neutral-600);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.verite-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

div.verite-stats div.stat-item span.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(246, 224, 94, 0.1);
    border-radius: 0.5rem;
}

div.verite-stats div.stat-item span.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
}

div.verite-stats div.stat-item span.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--neutral-600);
    margin-top: 0.5rem;
}

.verite-punchline {
    text-align: center;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin: 0;
}

.verites-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Animation rebond */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Animation d'apparition progressive */
.verite-card {
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
}

.verite-card:nth-child(1) { animation-delay: 0.1s; }
.verite-card:nth-child(2) { animation-delay: 0.2s; }
.verite-card:nth-child(3) { animation-delay: 0.3s; }
.verite-card:nth-child(4) { animation-delay: 0.4s; }
.verite-card:nth-child(5) { animation-delay: 0.5s; }
.verite-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-blue);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: white;
    padding: 3rem 0 0;
    margin: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-section p, .footer-section a {
    color: var(--neutral-400);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.875rem;
    min-width: 120px;
    text-align: center;
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--neutral-700);
    padding: 2rem 0;
    text-align: center;
    color: var(--neutral-500);
    margin: 0;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transform: translateX(4000px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #22c55e;
}

/* Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.98);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.show {
    transform: translateX(0);
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .movement-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .quiz-option {
        padding: 1rem;
    }

    .quiz-option .option-emoji {
        font-size: 1.2rem;
        margin-right: 0.75rem;
    }

    .question-card {
        padding: 1.5rem;
        margin: 0 1rem 2rem;
    }

    .quiz-container {
        padding: 0 1rem;
    }

    .facts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fact-card {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .section {
        padding: 3rem 0;
    }

    .quiz-section {
        padding: 3rem 0;
    }

    .newsletter-section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .quiz-header h2 {
        font-size: 2rem;
    }

    .movement-content h2 {
        font-size: 2rem;
    }

    .question-text {
        font-size: 1.125rem;
    }

    .quiz-option {
        padding: 0.875rem;
    }

    .quiz-option .option-text {
        font-size: 0.9rem;
    }

    .result-image-container {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
}