@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@400;500;700&display=swap');
.home-header form .img{
    margin-right: 0.3rem;
}
.body-img{
    width: 3rem !important;
}
.header-input{
    width: 95%;
    border-radius: 0.2rem;
    border: none;
    background: none;
    padding: 0.5rem 1.2rem;
    outline: none !important;
    color: white;
    letter-spacing: 0.1rem;
}
.header-input-body{
    color: var(--black);
}
.home-header form .img{
    margin-right: 0.3rem;
    width: 1.5rem;
    padding: 0;
}
.home-post-banner-content input.img{
    margin-right: 0.3rem;
    width: 4.5rem;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    padding: 1rem 1.4rem;
    margin-left: -2rem;
    border-radius: 0;
    border-bottom-right-radius: 2rem;
    border-top-right-radius: 2rem;
}
.quiz-detail-section {
    padding: 35px 0;
    background: #e6e6ea;
}
/* Native quiz detail: grid min-width:0 stops long single-page content from breaking the 2-col layout */
.quiz-native-detail .quiz-layout {
    min-width: 0;
}
.quiz-native-detail .quiz-question-section,
.quiz-native-detail .quiz-sidebar {
    min-width: 0;
}
.quiz-native-detail .question-container {
    min-width: 0;
    max-width: 100%;
}
body.quiz-native-body {
    padding-bottom: 120px;
}
@media (max-width: 767px) {
    body.quiz-native-body {
        padding-bottom: 100px;
    }
}
.quiz-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.quiz-main-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    text-align: center;
    @media (max-width: 982px) {
        padding: 10px;
        padding-bottom: 30px;
    }
}
.quiz-image {
    background: #c7c0c0;
    border-radius: 16px;
    margin-bottom: 25px;
}
.quiz-main-card h2 {
    font-size: 26px;
    width: 80%;
    margin: auto;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 26px;
    @media (max-width: 982px) {
        width: 90%;
    }
}
.quiz-main-card p {
    font-size: 16px;
    color: #555;
    width: 70%;
    margin: auto;
    margin-bottom: 30px;
    @media (max-width: 982px) {
        width: 90%;
    }
}
.start-btn {
    padding: 13px 60px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(90deg, #ff3d7f, #ff6a00);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex !important;
    align-items: center !important;
    margin: auto;
    span {
        display: block;
        margin-top: 5px;
        margin-right: 8px;
    }
    @media (max-width: 982px) {
        font-size: 25px !important;
        display: block;
        width: fit-content !important;
        margin: auto;
        padding: 7px 45px;
    }
}
.start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 90, 0, 0.3);
}
.quiz-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
}
.sidebar-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}
.sidebar-card h3 {
    font-size: 21px;
    font-weight: 700;
}
.sidebar-card hr {
    margin: 15px 0 20px;
    border: none;
    border-top: 1px solid #ddd;
}
.suggest-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 18px;
}
.thumb {
    width: 110px;
    height: 70px;
    background: #c7c7c7;
    border-radius: 12px;
    line-height: 21px;
}
.suggest-item p {
font-size: 14px;
font-weight: 600;
line-height: 1.4;
}
/* SHARE BUTTONS */
.facebook-btn {
width: 100%;
padding: 14px;
border-radius: 12px;
border: none;
background: #3b82f6;
color: #fff;
font-weight: 600;
margin-bottom: 15px;
cursor: pointer;
font-size: 18px;
}
.x-btn {
width: 100%;
padding: 14px;
border-radius: 12px;
border: none;
background: #000;
color: #fff;
font-weight: 600;
cursor: pointer;
font-size: 18px;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .quiz-layout {
        grid-template-columns: 1fr;
    }
    .quiz-main-card {
        text-align: center;
    }
}
@media (max-width: 576px) {
    .quiz-main-card h2 {
        font-size: 22px;
    }
    .quiz-main-card p {
        font-size: 15px;
    }
    .start-btn {
        width: 100%;
    }
}
.quiz-question-section {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 20px 20px;
    @media (max-width: 767px) {
        padding: 8px;
    }
}
.question-container {
    width: 100%;
}
.progress-bar {
    height: 9px;
    background: #dcdcdc;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}
.progress-fill {
    width: 0%; /* 1 of 4 */
    height: 100%;
    background: linear-gradient(90deg, #ff3d7f, #ff6a00);
    border-radius: 10px;
}
.progress-fill-question-2 {
    width: 40%;
}
.progress-fill-question-3 {
    width: 65%;
}
.progress-fill-question-4 {
    width: 100%;
}
.question-count {
    font-size: 20px;
    color: #888;
    margin-bottom: 20px;
    font-weight: 600;
    @media (max-width: 982px) {
        font-size: 16px;
    }
}
.question-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
    margin-top: 40px;
    @media (max-width: 982px) {
        font-size: 23px !important;
    }
}
/* OPTIONS */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 40px;
}
.options-grid-1 {
    grid-template-columns: 1fr;
}
.option-btn {
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #dcdcdc;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 21px;
    @media (max-width: 982px) {
        font-size: 16px;
        padding: 10px 14px;
    }
}
.option-btn:hover {
    background: #cfcfcf;
}
.option-btn.full {
    grid-column: span 2;
}
/* NAVIGATION BUTTONS */
.quiz-nav {
display: flex;
justify-content: center;
gap: 40px;
margin-top: 170px;
@media (max-width: 982px) {
    gap: 10px;
    margin-top: 40px;
}
}
@media (max-width: 480px) {
.question-title {
    font-size: 18px;
}
}
.quiz-result-section {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 40px 20px;
}
.result-container {
text-align: center;
max-width: 500px;
}
.result-icon {
width: 120px;
height: 120px;
margin: 0 auto 25px;
border-radius: 20px;
background: linear-gradient(135deg, #ff3d7f, #ff6a00);
display: flex;
align-items: center;
justify-content: center;
}
.flower {
font-size: 50px;
color: #fff;
}
.result-container h2 {
font-size: 32px;
font-weight: 800;
margin-bottom: 10px;
}

.sub-text {
color: #ff3d7f;
font-weight: 700;
font-size: 15px;
margin-bottom: 15px;
}

.description {
font-size: 12px;
width: 80%;
margin: auto;
color: #555;
line-height: 1.6;
margin-bottom: 40px;
}

/* BUTTONS */
.result-buttons {
display: flex;
flex-direction: column;
gap: 20px;
}

.row {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

.btn {
padding: 12px 35px;
border-radius: 30px;
font-weight: 600;
font-size: 15px;
cursor: pointer;
transition: 0.3s;
min-width: 160px;
}

/* Primary */
.primary {
background: linear-gradient(90deg, #ff3d7f, #ff6a00);
border: none;
color: #fff;
}

/* Outline */
.outline {
background: transparent;
border: 2px solid #ff670a;
color: #ff670a;
}

.outline:hover {
color: #fff;
background: linear-gradient(90deg, #ff3d7f, #ff6a00);
}

.btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(255, 90, 0, 0.3);
}
@media (max-width: 480px) {
    .row {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .result-container h2 {
        font-size: 20px;
    }
}
.native-quiz-app {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}
.native-quiz-root {
    --quiz-accent: #2563eb;
    --quiz-accent-hover: #3b82f6;
    --quiz-accent-strong: #1d4ed8;
    --quiz-accent-text: #ffffff;
    --quiz-page-bg: transparent;
    --quiz-surface: transparent;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    border-radius: 10px;
    box-sizing: border-box;
}
.native-quiz-inner {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    min-width: 0;
    max-width: 100%;
}
/* Intro splash (before ?page=1 wizard / ?started=1 single_page) */
.native-quiz-wizard-splash .native-quiz-main,
.native-quiz-single-page-splash .native-quiz-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.native-quiz-main .native-quiz-intro-splash-cta.native-quiz-nav-btn {
    margin-top: 28px;
    width: auto;
    min-width: 200px;
    max-width: 100%;
    padding-left: 32px;
    padding-right: 32px;
}
.native-quiz-ad-slots {
    padding: 0px;
    margin-bottom: 0;
}
/* Wizard: in-quiz ads sit directly under the progress bar (inside .native-quiz-main) */
.native-quiz-main .progress-bar ~ .native-quiz-ad-slot {
    margin-bottom: 22px;
    text-align: center;
}
/* Legacy: empty sibling container kept for showResult(); no margin when empty */
.native-quiz-inner .native-quiz-main + .native-quiz-ad-slots.native-quiz-wizard-ad-after-main {
    margin-top: 0;
    text-align: center;
}
.native-quiz-main {
    padding: 57px;
    text-align: center;
    color: #111827;
    border-radius: 15px;
    @media (max-width: 767px) {
        padding: 15px; 
    }
}
.native-quiz-main .progress-bar {
    height: 5px;
    background: rgba(37, 99, 235, 0.18);
    border-radius: 999px;
    margin: 0 auto 22px;
    max-width: none;
    overflow: hidden;
}
.native-quiz-main .progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--quiz-accent),
        var(--quiz-accent-hover)
    );
    transition: width 0.35s ease;
}
.native-quiz-main .native-quiz-intro-desc {
    margin: 0 auto 40px;
    max-width: 457px;
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
    font-family: "Fira Sans Condensed", sans-serif;
    @media (max-width: 767px) {
        font-size: 18px;
    }
}
.native-quiz-main .native-quiz-q-desc {
    margin: 0 auto 20px;
    max-width: 457px;
    text-align: center;
    font-size: 20px;
    line-height: 1.45;
}
.native-quiz-main .native-quiz-multi-hint {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 12px;
}
.native-quiz-main .native-quiz-q-block {
    margin-bottom: 60px;
    scroll-margin-top: 1rem;
    transition: box-shadow 0.2s ease, outline 0.2s ease;
    @media (max-width: 767px) {
        margin-bottom: 40px;
    }
}
.native-quiz-main .native-quiz-q-block.native-quiz-q-block--invalid {
    outline: 3px solid #dc2626;
    outline-offset: 4px;
    border-radius: 8px;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2);
}
.native-quiz-main .native-quiz-page-err {
    display: none;
    margin: 0 auto 16px;
    max-width: 457px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #b91c1c;
    font-family: "Fira Sans Condensed", sans-serif;
}
.native-quiz-main .native-quiz-quiz-title {
    font-size: 43px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto 20px;
    font-family: "Fira Sans Condensed", sans-serif;
    @media (max-width: 767px) {
        font-size: 28px;
        margin-bottom: 15px;
    }
}
/* Wizard step 1: quiz title + intro only, below question + actions */
.native-quiz-main .native-quiz-quiz-title.native-quiz-wizard-after-q {
    margin-top: 32px;
    margin-bottom: 16px;
    @media (max-width: 767px) {
        margin-top: 24px;
    }
}
.native-quiz-main .native-quiz-intro-desc.native-quiz-wizard-after-q {
    margin: 0 auto 0;
}
.native-quiz-main .question-count {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 10px;
}
.native-quiz-main .question-prompt {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.20;
    color: #0f172a;
    margin: 0 auto 26px;
    font-family: "Fira Sans Condensed", sans-serif;
    @media (max-width: 767px) {
        font-size: 20px;
        margin: 0 auto 15px;
        line-height: 1.40;
    }
}
.native-quiz-main .options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 0;
    @media (max-width: 767px) {
        gap: 10px;
    }
}
.native-quiz-main .options-grid-1 {
    grid-template-columns: 1fr;
}
.native-quiz-main .option-btn {
    display: flex;
    justify-content: center;
    min-height: 68px;
    padding: 16px 18px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 12px;
    font-family: "Fira Sans Condensed", sans-serif;
    align-items: center;
    @media (max-width: 767px) {
        padding: 10px 10px;
        font-size: 14px;
        min-height: 50px;
    }
}
.native-quiz-main .option-btn.native-quiz-opt-themed {
    color: var(--nq-opt-text);
    background: var(--nq-opt-bg, var(--quiz-accent));
    border: 3px solid var(--nq-opt-border, transparent);
    font-family: "Fira Sans Condensed", sans-serif;
    -webkit-tap-highlight-color: transparent;
    span{
        font-family: "Fira Sans Condensed", sans-serif;
    }
}
/* Only real hover devices: avoids sticky “hover” on touch / first tap */
@media (hover: hover) and (pointer: fine) {
    .native-quiz-main .option-btn.native-quiz-opt-themed:hover {
        background: var(--nq-opt-hover, var(--quiz-accent-hover));
        color: var(--nq-opt-border-hover);
    }
    .native-quiz-main .option-btn.native-quiz-opt-themed.active:hover {
        background: var(--nq-opt-hover, var(--nq-opt-border-active));
        color: var(--nq-opt-border-hover);
    }
}
.native-quiz-main .option-btn:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.45);
    outline-offset: 3px;
}
.native-quiz-main .option-btn:not(.native-quiz-opt-themed).active,
.native-quiz-main .option-btn.active {
    background: var(--nq-opt-border-active);
    color: var(--nq-opt-text-active-color);
}
.native-quiz-main .option-btn:not(.native-quiz-opt-themed).active:hover {
    background: var(--nq-opt-hover, var(--nq-opt-border-active));
    color: var(--nq-opt-text-active-color);
}
.native-quiz-main .option-btn span {
    display: block;
}
.native-quiz-main .quiz-nav {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 12px;
}
.native-quiz-main .quiz-nav.native-quiz-nav-wizard {
    width: 100%;
    max-width: 457px;
    margin-left: auto;
    margin-right: auto;
}
.native-quiz-main .quiz-nav.native-quiz-nav-wizard.native-quiz-nav-wizard--both {
    justify-content: space-between;
    align-items: stretch;
    gap: 14px;
}
.native-quiz-main .quiz-nav.native-quiz-nav-wizard.native-quiz-nav-wizard--both .native-quiz-wizard-prev {
    flex: 1 1 42%;
    max-width: 48%;
}
.native-quiz-main .quiz-nav.native-quiz-nav-wizard.native-quiz-nav-wizard--both .native-quiz-nav-btn {
    flex: 1 1 42%;
    max-width: 48%;
    width: auto;
}
.native-quiz-main .quiz-nav.native-quiz-nav-wizard:not(.native-quiz-nav-wizard--both) .native-quiz-wizard-prev {
    width: 100%;
    max-width: 200px;
}
.native-quiz-main .nav-btn {
    padding: 14px 36px;
    font-size: 24px;
    font-weight: 700;
    max-width: 270px;
    height: 64px;
    border-radius: 100px;
    cursor: pointer;
    background: var(--quiz-submit-bg);
    color: var(--quiz-accent-text);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Fira Sans Condensed", sans-serif;
    @media (max-width: 767px) {
        padding: 10px 10px;
        font-size: 18px;
        font-weight: 700;
        max-width: 260px;
        height: 55px;
        margin-bottom: 30px;
    }
}
.native-quiz-main .nav-btn:hover {
    background: var(--quiz-submit-bg-hover);
    transform: translateY(-2px);
}
/* Wizard nav row: compact Previous + Next (must follow .nav-btn) */
.native-quiz-main .quiz-nav.native-quiz-nav-wizard .native-quiz-wizard-prev {
    min-height: 48px;
    padding: 10px 14px;
    font-size: 15px;
    border-radius: 10px;
}
.native-quiz-main .quiz-nav.native-quiz-nav-wizard .native-quiz-nav-btn {
    height: auto;
    min-height: 48px;
    padding: 10px 18px;
    font-size: 15px;
    max-width: none;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .native-quiz-main .quiz-nav.native-quiz-nav-wizard .native-quiz-wizard-prev,
    .native-quiz-main .quiz-nav.native-quiz-nav-wizard .native-quiz-nav-btn {
        min-height: 44px;
        font-size: 14px;
        padding: 8px 12px;
    }
}
/* Wizard: icon-only prev/next (chevrons in circular buttons) */
.native-quiz-main .quiz-nav.native-quiz-nav-wizard-icons {
    width: 100%;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.native-quiz-main .quiz-nav.native-quiz-nav-wizard-icons .native-quiz-wizard-nav-spacer {
    flex: 1 1 auto;
    min-width: 0;
    pointer-events: none;
}
.native-quiz-main .native-quiz-wizard-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: var(--quiz-submit-bg);
    color: var(--quiz-accent-text);
    transition: transform 0.15s ease, background 0.15s ease;
    flex-shrink: 0;
}
.native-quiz-main .native-quiz-wizard-icon-btn:hover {
    background: var(--quiz-submit-bg-hover);
    transform: translateY(-2px);
}
.native-quiz-main .native-quiz-wizard-icon-btn:active {
    transform: translateY(0);
}
.native-quiz-main .native-quiz-wizard-icon-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}
.native-quiz-main .native-quiz-wizard-icon-btn:disabled:hover {
    background: var(--quiz-submit-bg);
    transform: none;
}
@media (max-width: 767px) {
    .native-quiz-main .native-quiz-wizard-icon-btn {
        width: 44px;
        height: 44px;
    }
}
.native-quiz-q-image-wrap {
    margin: 16px 0 38px;
    text-align: center;
    display: flex;
    @media (max-width: 767px) {
        margin: 0 0 20px;
    }
}
.native-quiz-q-image {
    max-width: 100%;
    border-radius: 16px;
    border: none;
    box-sizing: border-box;
    width: 100%;
}
.native-quiz-opt-img {
    display: block;
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 4px;
}
.native-quiz-ad-slot {
    margin-bottom: 60px;
}
.native-quiz-inner.native-quiz-error {
    padding: 32px;
    text-align: center;
    color: #5c6370;
}
.native-quiz-inner.native-quiz-error p {
    font-size: 1rem;
    line-height: 1.5;
}
.native-quiz-main .quiz-result-section {
    padding: 8px 0 16px;
}
.native-quiz-main .quiz-result-section .result-container {
    text-align: center;
    max-width: 36rem;
    margin-inline: auto;
}
.native-quiz-main .quiz-result-section h2 {
    font-size: clamp(1.35rem, 2.2vw, 2.65rem);
    font-weight: 800;
    color: var(--quiz-accent);
    margin-bottom: 12px;
    font-family: "Fira Sans Condensed", sans-serif;
}
.native-quiz-result-img {
    max-width: 100%;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 8px 28px rgba(20, 24, 36, 0.1);
}
.native-quiz-result-desc {
    color: #4b5568;
    line-height: 1.4;
    margin-top: 12px;
    font-size: 1.08rem;
}
@media (max-width: 390px) {
    .native-quiz-main .options-grid:not(.options-grid-1) {
        grid-template-columns: 1fr;
    }
}

.social-share {
    margin-top: 60px;
}
.share-title {
    color: #fff;
    color: var(--quiz-accent);
    font-size: 26px;
    font-weight: 700;
    font-family: "Fira Sans Condensed", sans-serif;
    margin-bottom: 15px;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin:10px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #383838;
}
.facebook {
    background: #1877f2;
}
.twitter {
    background: #000;
}
.whatsapp {
    background: #25d366;
}
.linkedin {
    background: #0077b5;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}
.native-quiz-result-high-ad {
    margin-top: 28px;
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
    display: inline-grid;
    clear: both;
}
/* .native-quiz-result-high-ad #div-gpt-ad-1775580116567-0 {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
} */
.native-quiz-test-again {
    padding: 14px 36px;
    font-size: 24px;
    font-weight: 700;
    max-width: 270px;
    height: 64px;
    border-radius: 100px;
    cursor: pointer;
    background: var(--quiz-submit-bg);
    color: var(--quiz-accent-text);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Fira Sans Condensed", sans-serif;
    margin: 28px auto 0;
    transition: all .3s ease;
    @media (max-width: 767px) {
        padding: 10px 10px;
        font-size: 18px;
        font-weight: 700;
        max-width: 260px;
        height: 55px;
        margin-bottom: 30px;
    }
}
.native-quiz-test-again:hover {
    background: var(--quiz-submit-bg-hover);
    transform: translateY(-2px);
    transition: all .3s ease;
}