.fz-quiz {
    max-width: 780px;
    margin: 40px auto;
    font-family: inherit;
}

.fz-quiz * {
    box-sizing: border-box;
}

.fz-quiz-header {
    margin-bottom: 22px;
}

.fz-difficulty {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.fz-progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
}

.fz-progress {
    width: 100%;
    height: 10px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.fz-progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    border-radius: 999px;
    transition: width .35s ease;
}

.fz-question {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    animation: fzFadeIn .3s ease;
}

.fz-question-title {
    margin: 0 0 24px;
    font-size: 28px;
    line-height: 1.3;
}

.fz-answers {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.fz-answer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.fz-answer:hover {
    transform: translateY(-2px);
    border-color: #9ca3af;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}

.fz-answer input {
    width: 18px;
    height: 18px;
    margin: 0;
    flex: 0 0 auto;
}

.fz-answer span {
    font-size: 16px;
    font-weight: 600;
}

.fz-answer.is-selected {
    border-color: #111827;
    background: #f9fafb;
}

.fz-answer.is-correct {
    border-color: #16a34a;
    background: #ecfdf5;
    color: #166534;
}

.fz-answer.is-wrong {
    border-color: #dc2626;
    background: #fef2f2;
    color: #991b1b;
}

.fz-submit-answer,
.fz-next-question,
.fz-retry-quiz {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        opacity .18s ease;
}

.fz-submit-answer {
    background: #111827;
    color: #fff;
}

.fz-submit-answer:hover,
.fz-next-question:hover,
.fz-retry-quiz:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.fz-submit-answer:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.fz-next-question {
    margin-top: 14px;
    background: #16a34a;
    color: #fff;
}

.fz-feedback {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #f3f4f6;
    line-height: 1.6;
}

.fz-feedback.is-correct {
    background: #ecfdf5;
    color: #166534;
}

.fz-feedback.is-wrong {
    background: #fef2f2;
    color: #991b1b;
}

.fz-final-result {
    text-align: center;
    padding: 42px 30px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    animation: fzFadeIn .35s ease;
}

.fz-final-result h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 32px;
}

.fz-score-text {
    margin: 0 0 22px;
    font-size: 24px;
}

.fz-score-text strong {
    display: inline-block;
    font-size: 34px;
}

.fz-retry-quiz {
    background: #111827;
    color: #fff;
}

@keyframes fzFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .fz-quiz {
        margin: 24px auto;
    }

    .fz-question {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .fz-question-title {
        font-size: 23px;
    }

    .fz-answer {
        padding: 14px;
    }

    .fz-submit-answer,
    .fz-next-question,
    .fz-retry-quiz {
        width: 100%;
    }

    .fz-final-result {
        padding: 32px 20px;
    }
}

.fz-result-message {
    margin: 10px 0 20px;
    font-size: 22px;
}

.fz-result-emoji {
    margin-bottom: 8px;
    font-size: 52px;
    line-height: 1;
}

.fz-result-percentage {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 700;
    opacity: .7;
}

/* Question Image */

.fz-question-image {
    position: relative;
    margin: -30px -30px 28px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: #111827;
}

.fz-question-image-element {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .4s ease;
}

.fz-question:hover .fz-question-image-element {
    transform: scale(1.015);
}

@media (max-width: 768px) {

    .fz-question-image {
        margin: -22px -18px 22px;
        border-radius: 16px 16px 0 0;
    }
}

/* Share Score */

.fz-share-section {
    margin: 28px 0;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.fz-share-title {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.fz-share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.fz-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.fz-share-button:hover {
    transform: translateY(-2px);
    border-color: #9ca3af;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .07);
}

.fz-native-share {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
}

.fz-copy-message {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #166534;
}

@media (max-width: 600px) {

    .fz-share-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .fz-share-button {
        width: 100%;
    }

    .fz-native-share {
        grid-column: 1 / -1;
    }
}

/* Quiz Intro */

.fz-quiz-intro {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(0, 0, 0, .08);
}

.fz-quiz-cover {
    position: relative;
    overflow: hidden;
}

.fz-quiz-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(0, 0, 0, .3)
    );
    pointer-events: none;
}

.fz-quiz-cover-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.fz-quiz-intro-content {
    padding: 30px;
}

.fz-quiz-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.fz-quiz-badge {
    padding: 7px 11px;
    border-radius: 999px;
    background: #f3f4f6;
    font-size: 13px;
    font-weight: 800;
}

.fz-quiz-intro-title {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.25;
}

.fz-quiz-intro-text {
    margin: 0 0 24px;
    color: #6b7280;
    font-size: 16px;
}

.fz-start-quiz {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 14px;
    background: #16a34a;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}

.fz-start-quiz:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(22, 163, 74, .25);
}


/* Game-like answers */

.fz-answer {
    min-height: 62px;
}

.fz-answer input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.fz-answer-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: #f3f4f6;
    font-weight: 900;
    transition: background .18s ease, color .18s ease;
}

.fz-answer-text {
    flex: 1;
    min-width: 0;
}

.fz-answer-status {
    flex: 0 0 auto;
    width: 30px;
    text-align: center;
    font-size: 22px;
    font-weight: 900;
}

.fz-answer.is-selected {
    border-color: #111827;
    background: #f9fafb;
}

.fz-answer.is-selected .fz-answer-letter {
    background: #111827;
    color: #fff;
}

.fz-answer.is-correct .fz-answer-letter {
    background: #16a34a;
    color: #fff;
}

.fz-answer.is-wrong .fz-answer-letter {
    background: #dc2626;
    color: #fff;
}

@media (max-width: 600px) {

    .fz-quiz-intro {
        border-radius: 18px;
    }

    .fz-quiz-intro-content {
        padding: 22px 18px;
    }

    .fz-quiz-intro-title {
        font-size: 25px;
    }

    .fz-answer-letter {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }
}

/* ==================================================
   FOOTBALL ZONE - QUESTION GAME UI
   ================================================== */

/* Main question card */
.fz-question {
    max-width: 100%;
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
}

/* Question image */
.fz-question-image {
    margin: -30px -30px 25px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.fz-question-image img {
    display: block;
    width: 100%;
    max-height: 430px;
    object-fit: cover;
}

/* Question title/text */
.fz-question h2,
.fz-question h3,
.fz-question-title {
    margin: 0 0 25px;
    color: #172b45;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.25;
    font-weight: 800;
}

/* Answers container */
.fz-answers {
    display: grid;
    gap: 13px;
}

/* Answer card */
.fz-answer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;

    width: 100%;
    min-height: 68px;
    padding: 12px 16px;

    border: 2px solid #e5e7eb;
    border-radius: 15px;

    background: #ffffff;

    cursor: pointer;

    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.fz-answer:hover {
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(15, 23, 42, 0.07);
}

/* Hide native radio */
.fz-answer input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* A B C D */
.fz-answer-letter {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: #f1f5f9;
    color: #334155;

    font-size: 16px;
    font-weight: 900;

    transition:
        background 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

/* Answer text */
.fz-answer-text {
    flex: 1;

    color: #1e293b;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 650;
}

/* Status icon */
.fz-answer-status {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    font-size: 21px;
    font-weight: 900;
}

/* Selected */
.fz-answer.is-selected {
    border-color: #172b45;
    background: #f8fafc;
    box-shadow: 0 7px 22px rgba(15, 23, 42, 0.09);
}

.fz-answer.is-selected .fz-answer-letter {
    background: #172b45;
    color: #ffffff;
    transform: scale(1.04);
}

/* Correct */
.fz-answer.is-correct {
    border-color: #16a34a;
    background: #f0fdf4;
}

.fz-answer.is-correct .fz-answer-letter {
    background: #16a34a;
    color: #ffffff;
}

.fz-answer.is-correct .fz-answer-status {
    color: #16a34a;
}

/* Wrong */
.fz-answer.is-wrong {
    border-color: #dc2626;
    background: #fef2f2;
}

.fz-answer.is-wrong .fz-answer-letter {
    background: #dc2626;
    color: #ffffff;
}

.fz-answer.is-wrong .fz-answer-status {
    color: #dc2626;
}

/* Feedback box */
.fz-feedback {
    margin-top: 18px;
    padding: 16px 18px;

    border-radius: 14px;

    font-size: 15px;
    line-height: 1.55;
}

.fz-feedback.is-correct {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.fz-feedback.is-wrong {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

/* Buttons */
.fz-submit-answer,
.fz-next-question {
    width: 100%;
    min-height: 54px;

    margin-top: 18px;
    padding: 12px 20px;

    border: 0;
    border-radius: 14px;

    font-size: 16px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        opacity 0.18s ease;
}

.fz-submit-answer {
    background: #172b45;
    color: #ffffff;
}

.fz-next-question {
    background: #16a34a;
    color: #ffffff;
}

.fz-submit-answer:hover:not(:disabled),
.fz-next-question:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.15);
}

.fz-submit-answer:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* Quiz header */
.fz-quiz-header {
    margin-bottom: 18px;
    padding: 17px 20px;

    border: 1px solid #e5e7eb;
    border-radius: 16px;

    background: #ffffff;
}

/* Progress track */
.fz-progress {
    width: 100%;
    height: 9px;

    margin-top: 12px;

    overflow: hidden;

    border-radius: 999px;

    background: #e5e7eb;
}

.fz-progress-bar {
    height: 100%;
    width: 0;

    border-radius: inherit;

    background: #16a34a;

    transition: width 0.35s ease;
}

/* Mobile */
@media (max-width: 600px) {

    .fz-question {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .fz-question-image {
        margin:
            -20px
            -16px
            20px;

        border-radius: 18px 18px 0 0;
    }

    .fz-question-image img {
        max-height: 300px;
    }

    .fz-question h2,
    .fz-question h3,
    .fz-question-title {
        font-size: 23px;
    }

    .fz-answer {
        min-height: 62px;
        padding: 10px 12px;
        gap: 11px;
    }

    .fz-answer-letter {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .fz-answer-text {
        font-size: 15px;
    }

    .fz-answer-status {
        flex-basis: 25px;
        width: 25px;
        font-size: 19px;
    }
}
.fz-progress-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.fz-progress-text {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
}

.fz-progress-percent {
    font-size: 14px;
    font-weight: 800;
    color: #64748b;
}

.fz-submit-answer {
    width: 100%;
}

.fz-next-question {
    width: 100%;
}

/* Always respect hidden elements inside quizzes */
.fz-quiz [hidden] {
    display: none !important;
}

/* ==================================================
   FINAL RESULT SCREEN
   ================================================== */

.fz-final-result {
    text-align: center;
    padding: 42px 30px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(15, 23, 42, .08);
}

.fz-result-badge-wrap {
    margin-bottom: 14px;
}

.fz-result-badge-icon {
    font-size: 58px;
    line-height: 1;
    margin-bottom: 10px;
}

.fz-result-rank {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #172b45;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.fz-result-title {
    margin: 18px 0 20px;
    color: #172b45;
    font-size: 30px;
    font-weight: 900;
}

.fz-result-score-circle {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;

    min-width: 150px;
    padding: 18px 25px;

    border-radius: 22px;
    background: #172b45;
    color: #ffffff;

    font-weight: 900;
}

.fz-result-score-circle .fz-score {
    font-size: 46px;
    line-height: 1;
}

.fz-score-separator,
.fz-total-score {
    font-size: 24px;
    opacity: .9;
}

.fz-result-percentage-main {
    margin-top: 14px;
    font-size: 24px;
    font-weight: 900;
    color: #16a34a;
}

.fz-result-description {
    max-width: 520px;
    margin: 14px auto 26px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

.fz-challenge-box {
    display: flex;
    flex-direction: column;
    gap: 4px;

    margin: 0 auto 26px;
    padding: 18px;

    border-radius: 16px;
    background: #f8fafc;

    color: #172b45;
}

.fz-challenge-box strong {
    font-size: 17px;
}

.fz-challenge-box span {
    color: #64748b;
    font-size: 14px;
}

.fz-retry-quiz {
    width: 100%;
    min-height: 50px;
    margin-top: 16px;

    border: 0;
    border-radius: 14px;

    background: #172b45;
    color: #ffffff;

    font-size: 15px;
    font-weight: 900;

    cursor: pointer;
}

@media (max-width: 600px) {

    .fz-final-result {
        padding: 32px 18px;
        border-radius: 18px;
    }

    .fz-result-badge-icon {
        font-size: 50px;
    }

    .fz-result-title {
        font-size: 25px;
    }

    .fz-result-score-circle .fz-score {
        font-size: 40px;
    }
}
/* Respect HTML hidden attribute */
.fz-quiz [hidden] {
    display: none !important;
}
/* Homepage Featured Quiz - lightweight layout */

.fz-home-featured {
    margin: 32px 0;
}

.fz-featured-card {
    display: grid;
    grid-template-columns: minmax(220px, 38%) 1fr;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
}

.fz-featured-image {
    display: block;
    min-height: 220px;
    overflow: hidden;
}

.fz-featured-thumb {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
}

.fz-featured-content {
    padding: 24px;
}

.fz-featured-content h3 {
    margin: 10px 0;
    font-size: 26px;
    line-height: 1.25;
}

.fz-featured-content h3 a {
    color: inherit;
    text-decoration: none;
}

.fz-featured-excerpt {
    margin-bottom: 18px;
    color: #64748b;
    line-height: 1.6;
}

.fz-play-quiz-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 10px;
    background: #16a34a;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 700px) {
    .fz-featured-card {
        grid-template-columns: 1fr;
    }

    .fz-featured-image {
        min-height: 0;
    }

    .fz-featured-thumb {
        aspect-ratio: 16 / 9;
        max-height: none;
    }

    .fz-featured-content {
        padding: 18px;
    }

    .fz-featured-content h3 {
        font-size: 22px;
    }
}
/* ==================================================
   HOMEPAGE - LATEST QUIZZES
   ================================================== */

.fz-home-latest {
    margin: 50px 0;
}

.fz-home-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.fz-home-section-heading h2 {
    margin: 4px 0 0;
    font-size: clamp(25px, 3vw, 32px);
    line-height: 1.2;
    color: #172b45;
}

.fz-home-kicker {
    display: block;
    color: #16a34a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fz-view-all {
    flex-shrink: 0;
    color: #172b45;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.fz-view-all:hover {
    color: #16a34a;
}


/* Grid */

.fz-quiz-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}


/* Card */

.fz-quiz-card {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.fz-quiz-card:hover {
    transform: translateY(-4px);
    border-color: #d1d5db;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .09);
}


/* Image */

.fz-quiz-card-image {
    display: block;
    overflow: hidden;
    background: #f1f5f9;
    aspect-ratio: 16 / 9;
}

.fz-quiz-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.fz-quiz-card:hover .fz-quiz-card-image img {
    transform: scale(1.035);
}

.fz-quiz-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 40px;
}


/* Content */

.fz-quiz-card-content {
    padding: 17px;
}

.fz-quiz-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
}

.fz-quiz-card-meta span {
    padding: 5px 8px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
}

.fz-quiz-card-content h3 {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.35;
}

.fz-quiz-card-content h3 a {
    color: #172b45;
    text-decoration: none;
}

.fz-quiz-card-content h3 a:hover {
    color: #16a34a;
}

.fz-card-play {
    display: inline-block;
    color: #16a34a;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}


/* Tablet */

@media (max-width: 900px) {

    .fz-quiz-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* Mobile */

@media (max-width: 600px) {

    .fz-home-latest {
        margin: 36px 0;
    }

    .fz-home-section-heading {
        align-items: flex-start;
    }

    .fz-home-section-heading h2 {
        font-size: 24px;
    }

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

    .fz-quiz-card-content {
        padding: 15px;
    }
}

/* ==================================================
   HOMEPAGE HERO
   ================================================== */

.fz-home-hero {
    position: relative;
    overflow: hidden;
    margin: 20px 0 42px;
    padding: 48px 50px;

    border: 1px solid #e5e7eb;
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(22, 163, 74, .10),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #ffffff,
            #f8fafc
        );
}

.fz-home-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.fz-home-hero-kicker {
    margin-bottom: 14px;

    color: #16a34a;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fz-home-hero-title {
    margin: 0;

    color: #172b45;

    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.04;
    letter-spacing: -.03em;
    font-weight: 900;
}

.fz-home-hero-title span {
    display: block;
    color: #16a34a;
}

.fz-home-hero-description {
    max-width: 650px;

    margin: 20px 0 26px;

    color: #64748b;

    font-size: 17px;
    line-height: 1.65;
}

.fz-home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 28px;
}

.fz-home-hero-primary,
.fz-home-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 50px;

    padding: 12px 19px;

    border-radius: 12px;

    font-size: 15px;
    font-weight: 900;

    text-decoration: none;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.fz-home-hero-primary {
    background: #16a34a;
    color: #ffffff;
}

.fz-home-hero-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(22, 163, 74, .22);
}

.fz-home-hero-secondary {
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #172b45;
}

.fz-home-hero-secondary:hover {
    color: #172b45;
    background: #f8fafc;
    transform: translateY(-2px);
}

.fz-home-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;

    color: #64748b;

    font-size: 13px;
}

.fz-home-hero-stats span {
    display: flex;
    gap: 5px;
}

.fz-home-hero-stats strong {
    color: #172b45;
}

.fz-home-hero-ball {
    position: absolute;
    right: 42px;
    top: 50%;

    z-index: 1;

    transform: translateY(-50%) rotate(-12deg);

    font-size: 150px;
    line-height: 1;

    opacity: .07;

    pointer-events: none;
}

@media (max-width: 700px) {

    .fz-home-hero {
        margin-top: 10px;
        padding: 34px 22px;
        border-radius: 18px;
    }

    .fz-home-hero-title {
        font-size: 40px;
    }

    .fz-home-hero-description {
        font-size: 16px;
    }

    .fz-home-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .fz-home-hero-primary,
    .fz-home-hero-secondary {
        width: 100%;
    }

    .fz-home-hero-ball {
        right: -15px;
        top: 35%;
        font-size: 110px;
    }

    .fz-home-hero-stats {
        flex-direction: column;
        gap: 7px;
    }
}
/* Homepage - hide Blocksy "Home" title */
body.page-id-8 .hero-section[data-type="type-1"] {
    display: none !important;
}
body.page-id-8 article#post-8 {
    --theme-content-vertical-spacing: 0px;
}

/* ========================================
   Football Zone - Ad Slots
======================================== */

.fz-ad-slot {
    width: 100%;
    clear: both;
}

.fz-ad-placeholder {
    min-height: 90px;
    margin: 32px auto;
    border: 1px dashed #d7dde5;
    border-radius: 10px;
    background: #f8fafc;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    color: #8a94a3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fz-ad-placeholder small {
    margin-top: 5px;
    font-size: 10px;
    opacity: 0.7;
}

@media (max-width: 767px) {

    .fz-ad-placeholder {
        min-height: 70px;
        margin: 22px auto;
    }
}