/* ===================================
   TESTCIVIQUE - PAGE ACCUEIL (HOME)
   Fichier: home.css
   Description: Styles spécifiques à la page d'accueil
   =================================== */

/* --- HERO SECTION --- */
.hero {
    padding: 1px 0 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1543269865-cbf427effbad?q=80&w=2070') center/cover;
    mask-image: linear-gradient(to right, transparent 5%, black 40%);
    -webkit-mask-image: linear-gradient(to right, transparent 5%, black 40%);
    opacity: 0.75;
    z-index: 0;
    filter: saturate(1.1);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content .tag {
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-buttons {
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Texte des boutons - Desktop affiche texte complet */
.btn-text-short {
    display: none;
}

.btn-text-full {
    display: inline;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
    border-radius: 8px;
    background: var(--cyan-light);
}

/* --- QUIZ UI CARD (HERO) --- */
.quiz-ui-wrapper {
    perspective: 1000px;
    z-index: 1;
}

.quiz-ui {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 420px;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
    position: relative;
    transform-style: preserve-3d;
    transition: box-shadow 0.3s;
}

.quiz-ui:hover {
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2);
}

.quiz-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
}

.quiz-question {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.quiz-opt {
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    display: flex;
    gap: 12px;
    align-items: center;
    background: white;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.3s;
}

.quiz-opt:hover {
    background: var(--bg-light);
    border-color: var(--cyan);
    transform: translateX(6px);
}

.quiz-opt.active {
    background: var(--cyan-light);
    border-color: var(--cyan);
}

.opt-letter {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    background: var(--bg-light);
    color: var(--text-secondary);
    font-weight: 700;
}

.quiz-opt.active .opt-letter {
    background: var(--cyan);
    color: var(--text-dark);
    border-color: var(--cyan);
    color: var(--text-dark);
    font-weight: bold;
}

/* --- CATEGORIES SECTION --- */
.categories-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.cat-card {
    grid-column: span 4;
    height: 300px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.cat-card:nth-child(1) { grid-column: span 7; }
.cat-card:nth-child(2) { grid-column: span 5; }
.cat-card:nth-child(4) { grid-column: span 5; }
.cat-card:nth-child(5) { grid-column: span 3; }

.cat-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    transition: 0.6s;
}

.cat-card:hover .cat-bg {
    opacity: 1;
    transform: scale(1.1);
}

.cat-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 20px 40px var(--cyan-glow);
    transform: translateY(-10px);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 29, 46, 0.85) 0%, transparent 100%);
}

.cat-content {
    position: relative;
    z-index: 2;
    color: white;
    transform: translateY(10px);
    transition: 0.4s;
}

.cat-card:hover .cat-content {
    transform: translateY(0);
}

.cat-title {
    font-size: 1.8rem;
    font-family: 'Anton';
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cat-sub {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --- SERVICES SECTION --- */
.services-section {
    padding: 100px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse .service-info {
    direction: ltr;
}

.service-img-wrap {
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transition: 0.5s;
}

.service-img-wrap:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.service-img-wrap:hover .service-img {
    transform: scale(1.08);
}

.feature-list {
    margin: 32px 0;
    list-style: none;
}

.feature-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.check-icon {
    color: var(--cyan);
    font-weight: bold;
    font-size: 1.2rem;
}

/* --- APP SHOWCASE --- */
.app-showcase {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-light), #E0F7FF);
    overflow: hidden;
}

.app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.phone-wrapper {
    perspective: 1000px;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--text-dark);
    border-radius: 40px;
    border: 8px solid #2D3142;
    margin: 0 auto;
    box-shadow: 0 40px 80px rgba(0, 212, 255, 0.2);
    overflow: hidden;
    animation: float 4s ease-in-out infinite;
    transform-style: preserve-3d;
    transition: 0.1s;
}

.app-screen {
    padding: 20px;
    height: 100%;
    background: #1a1a2e;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    margin-top: 16px;
}

.app-user {
    width: 32px;
    height: 32px;
    background: #333;
    border-radius: 50%;
}

.app-card {
    background: #2D3142;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 16px;
    color: white;
    transition: 0.3s;
    cursor: pointer;
}

.app-card:hover {
    transform: translateX(5px);
    background: #3D4152;
}

.app-card.active {
    background: var(--cyan);
    color: var(--text-dark);
}

.bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-top: 8px;
}

.bar-fill {
    width: 60%;
    height: 100%;
    background: var(--cyan);
    border-radius: 6px;
}

.app-card.active .bar {
    background: rgba(0, 0, 0, 0.2);
}

.app-card.active .bar-fill {
    background: var(--text-dark);
}

.store-btns {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.store-btn {
    background: var(--text-dark);
    color: white;
    padding: 12px 24px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    box-shadow: var(--shadow);
}

.store-btn:hover {
    background: var(--cyan);
    color: var(--text-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px var(--cyan-glow);
}

.store-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

/* --- CTA FINAL --- */
.cta-final {
    text-align: center;
    padding: 100px 0;
    background: var(--bg-white);
}

.form-inline {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 8px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    margin-top: 32px;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.form-inline:focus-within {
    border-color: var(--cyan);
    box-shadow: 0 8px 32px var(--cyan-glow);
    transform: scale(1.02);
}

.form-input {
    background: transparent;
    border: none;
    color: var(--text-dark);
    padding: 12px 24px;
    flex: 1;
    outline: none;
    font-size: 1rem;
}

.form-input::placeholder {
    color: var(--text-light);
}

.social-signup {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.3s;
    box-shadow: var(--shadow);
}

.social-btn:hover {
    border-color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--cyan-glow);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* ========================================= */
/* === RESPONSIVE DESIGN === */
/* ========================================= */

/* TABLETTE (1024px et moins) */
@media (max-width: 1024px) {
    /* Hero Section */
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 0 80px;
        min-height: auto;
        text-align: center;
        gap: 40px;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.3;
        mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .quiz-ui-wrapper {
        margin: 0 auto;
        width: 100%;
        max-width: 500px;
    }

    .quiz-ui {
        max-width: 100%;
    }

    /* Categories Section */
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-card {
        grid-column: span 1 !important;
        height: 280px;
    }

    /* Services Section */
    .service-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-block.reverse {
        direction: ltr;
    }

    .service-img-wrap {
        height: 350px;
    }

    /* App Section */
    .app-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .store-btns {
        justify-content: center;
    }
}

/* MOBILE (768px et moins) */
@media (max-width: 768px) {
    /* Container - Add proper padding on mobile */
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0 60px;
        gap: 40px;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* --- NOUVEAU DESIGN BOUTONS MOBILE (inspiré version_14_2) --- */
    .hero-buttons {
        width: 92%;
        max-width: 92%;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 10px;
        /* Conteneur style "Glass" pour grouper les actions */
        background: rgba(255, 255, 255, 0.6);
        padding: 8px 14px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        margin: 0 auto;
    }

    /* Mobile affiche texte court */
    .btn-text-full {
        display: none;
    }

    .btn-text-short {
        display: inline;
    }

    .btn-cyan {
        flex: 1.3;
        padding: 12px 14px !important;
        font-size: 0.92rem !important;
        white-space: nowrap;
        border-radius: 14px !important;
    }

    .btn-outline {
        flex: 0.9;
        padding: 12px 10px !important;
        font-size: 0.87rem !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        background: transparent !important;
        white-space: nowrap;
        border-radius: 14px !important;
    }

    .btn-outline:hover,
    .btn-outline:active {
        background: rgba(0, 0, 0, 0.05) !important;
        border-color: rgba(0, 0, 0, 0.2) !important;
    }

    /* Carte Quiz Mobile - Ajustements */
    .quiz-ui-wrapper {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
        padding: 0 15px;
        display: block;
    }

    .quiz-ui {
        padding: 24px;
        max-width: 90%;
        width: 90%;
        margin: 0 auto;
        animation: fadeUp 1s ease 0.6s forwards, float 5s ease-in-out 1.6s infinite;
        background: rgba(255, 255, 255, 0.9);
        display: block;
        visibility: visible;
        opacity: 0;
    }

    .quiz-header {
        font-size: 0.75rem;
        margin-bottom: 18px;
    }

    .quiz-question {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.4;
        text-align: left;
    }

    .quiz-opt {
        padding: 12px;
        font-size: 0.85rem;
        gap: 10px;
        margin-bottom: 10px;
    }

    .opt-letter {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    /* Bouton Suivant - très compact pour ne pas masquer "✓ Correct" */
    .quiz-next-btn, .btn-cyan.quiz-next-btn {
        padding: 5px 8px !important;
        font-size: 0.65rem !important;
        border-radius: 6px !important;
        white-space: nowrap;
        min-width: auto !important;
        max-width: fit-content !important;
    }

    .hero-content h1 {
        font-size: 3.2rem;
        line-height: 1.1;
        text-align: center;
    }

    .hero-content p {
        font-size: 1.25rem;
        margin-bottom: 24px;
        text-align: center;
        max-width: 100%;
    }

    .tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    /* Suppression des styles dupliqués - déjà définis plus haut */
    .quiz-opt {
        padding: 10px;
        font-size: 0.85rem;
        margin-bottom: 6px;
        gap: 8px;
    }

    .opt-letter {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .quiz-next-btn {
        padding: 6px 12px !important;
        font-size: 0.7rem !important;
    }

    #quizCard > div:last-child {
        margin-top: 10px !important;
        padding-top: 10px !important;
    }

    #quizCard > div:last-child span {
        font-size: 0.75rem !important;
    }

    /* Categories Section */
    .categories-section {
        padding: 80px 0;
        margin-bottom: 40px;
    }

    .cat-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cat-card {
        height: 250px;
        padding: 24px;
    }

    .cat-title {
        font-size: 1.5rem;
    }

    .cat-sub {
        font-size: 0.85rem;
    }

    /* Services Section */
    .services-section {
        padding: 80px 0;
        margin-bottom: 40px;
    }

    .service-block {
        margin-bottom: 60px;
        gap: 30px;
    }

    .service-block,
    .service-block.reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .service-img-wrap {
        height: 280px;
        margin: 0 -8px;
        max-width: calc(100% + 16px);
    }

    .service-info h2 {
        font-size: 2.5rem !important;
    }

    .feature-list {
        margin: 24px 0;
    }

    .feature-list li {
        font-size: 1rem;
        gap: 12px;
    }

    /* App Section */
    .app-showcase {
        padding: 80px 0;
        margin-bottom: 40px;
    }

    .app-layout {
        gap: 40px;
    }

    .app-layout h2 {
        font-size: 2.8rem !important;
    }

    .app-layout p {
        font-size: 1.15rem !important;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
        border-radius: 32px;
        border-width: 6px;
    }

    .app-screenshot {
        border-radius: 28px;
    }

    .store-btns {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .store-btn {
        flex: 0 0 auto;
        min-width: auto;
        max-width: none;
        justify-content: center;
        padding: 12px 18px !important;
        font-size: 0.95rem !important;
    }

    .store-icon {
        width: 22px !important;
        height: 22px !important;
    }

    /* CTA Section */
    .cta-final {
        padding: 80px 0;
        margin-bottom: 40px;
    }

    .cta-final h2 {
        font-size: 2.5rem !important;
    }

    .form-inline {
        max-width: calc(100% - 32px);
        flex-direction: row;
        gap: 8px;
        padding: 6px;
        margin-left: auto;
        margin-right: auto;
    }

    .form-input {
        flex: 1;
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .form-inline .btn-cyan {
        flex-shrink: 0;
        width: auto !important;
        padding: 10px 16px !important;
        font-size: 0.8rem !important;
        white-space: nowrap;
    }

    .social-signup {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 0;
    }

    .social-btn {
        flex: 0 0 auto;
        min-width: auto;
        max-width: none;
        justify-content: center;
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
    }

    /* Footer */
    footer {
        padding: 40px 0;
        font-size: 0.85rem;
    }

    footer a {
        display: block;
        margin: 8px 0 !important;
    }
}

/* PETIT MOBILE (480px et moins) */
@media (max-width: 480px) {
    /* Extra padding for very small screens */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero {
        padding: 30px 0 50px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
        text-align: center;
    }

    .hero-content p {
        font-size: 1.05rem;
        text-align: center;
    }

    .tag {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    /* Boutons sur très petits écrans */
    .hero-buttons {
        width: 94%;
        max-width: 94%;
        flex-direction: row;
        gap: 8px;
        padding: 6px 12px;
        flex-wrap: nowrap;
    }

    .btn-cyan {
        flex: 1.3;
        padding: 10px 12px !important;
        font-size: 0.82rem !important;
        white-space: nowrap;
    }

    .btn-outline {
        flex: 0.9;
        padding: 10px 10px !important;
        font-size: 0.77rem !important;
        white-space: nowrap;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
    }

    /* Carte Quiz - Ajustement mobile */
    .quiz-ui-wrapper {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
        padding: 0 12px;
        display: block;
    }

    .quiz-ui {
        padding: 20px;
        max-width: 92%;
        width: 92%;
        margin: 0 auto;
        display: block;
        visibility: visible;
        animation: fadeUp 1s ease 0.6s forwards, float 5s ease-in-out 1.6s infinite;
        opacity: 0;
    }

    .quiz-header {
        font-size: 0.7rem;
        margin-bottom: 16px;
    }

    .quiz-question {
        font-size: 0.95rem;
        margin-bottom: 18px;
        line-height: 1.4;
    }

    .quiz-opt {
        padding: 11px;
        font-size: 0.8rem;
        gap: 10px;
        margin-bottom: 8px;
    }

    .opt-letter {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }

    /* Bouton Suivant - encore plus compact */
    .quiz-next-btn, .btn-cyan.quiz-next-btn {
        padding: 4px 6px !important;
        font-size: 0.6rem !important;
        min-width: auto !important;
        max-width: fit-content !important;
        border-radius: 6px !important;
    }

    .service-info h2,
    .app-layout h2,
    .cta-final h2 {
        font-size: 2.3rem !important;
    }

    .cat-card {
        height: 200px;
        padding: 20px;
    }

    .cat-title {
        font-size: 1.3rem;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
        border-radius: 28px;
        border-width: 5px;
    }

    .app-screenshot {
        border-radius: 24px;
    }

    /* CTA Form - Keep horizontal on small screens */
    .form-inline {
        max-width: calc(100% - 24px);
        padding: 5px;
        gap: 6px;
    }

    .form-input {
        padding: 9px 12px;
        font-size: 0.8rem;
    }

    .form-inline .btn-cyan {
        padding: 9px 14px !important;
        font-size: 0.75rem !important;
    }

    /* Keep store buttons compact and centered */
    .store-btns {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .store-btn {
        max-width: none;
        width: auto;
        padding: 11px 16px !important;
        font-size: 0.88rem !important;
    }

    .store-icon {
        width: 20px !important;
        height: 20px !important;
    }

    /* Keep social buttons compact and centered */
    .social-signup {
        flex-direction: row;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-btn {
        max-width: none;
        width: auto;
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
    }

    /* Quiz Card adjustments for very small screens */
    .quiz-ui {
        padding: 12px;
    }

    .quiz-header {
        font-size: 0.58rem;
        margin-bottom: 8px;
    }

    .quiz-question {
        font-size: 0.78rem;
        margin-bottom: 8px;
        line-height: 1.25;
    }

    .quiz-opt {
        padding: 6px 8px;
        font-size: 0.68rem;
        margin-bottom: 5px;
        gap: 6px;
    }

    .opt-letter {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }

    #quizCard > div:last-child {
        margin-top: 8px !important;
        padding-top: 8px !important;
    }

    #quizCard > div:last-child span {
        font-size: 0.7rem !important;
    }

    .quiz-next-btn {
        padding: 5px 10px !important;
        font-size: 0.68rem !important;
    }
}

