.fcfzb {
    --fcfzb-gold: #d8b65a;
    --fcfzb-dark-gold: #9b6b12;
    --fcfzb-black: #12100b;
    --fcfzb-text: #2c2923;
    --fcfzb-muted: rgba(44, 41, 35, 0.72);
    --fcfzb-border: rgba(18, 16, 11, 0.16);
    --fcfzb-gold-border: rgba(216, 182, 90, 0.45);
    --fcfzb-soft: #fff9ed;
    --fcfzb-card: #ffffff;
    font-family: inherit;
    color: var(--fcfzb-text);
    margin: 1.5rem auto;
    max-width: 1120px;
    font-size: 16px;
    line-height: 1.55;
}

.fcfzb *,
.fcfzb *::before,
.fcfzb *::after { box-sizing: border-box; }

.fcfzb__hero,
.fcfzb-card,
.fcfzb-notice {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--fcfzb-border);
    background: linear-gradient(145deg, #fff 0%, #fffdf8 50%, var(--fcfzb-soft) 100%);
    box-shadow: 0 16px 38px rgba(18, 16, 11, 0.08);
}

.fcfzb__hero::before,
.fcfzb-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--fcfzb-black), var(--fcfzb-gold), var(--fcfzb-black));
    opacity: 0.72;
}

.fcfzb__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1.45rem;
    border-radius: 26px;
    margin-bottom: 1rem;
}

.fcfzb__eyebrow,
.fcfzb-card__topline {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 0.48rem;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fcfzb-dark-gold);
}

.fcfzb__hero h2,
.fcfzb-card h3 {
    margin: 0 0 0.55rem;
    color: var(--fcfzb-text);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.13;
}

.fcfzb__hero h2 { font-size: clamp(1.75rem, 4vw, 2.55rem); }
.fcfzb-card h3 { font-size: clamp(1.38rem, 3vw, 1.95rem); }

.fcfzb__hero p,
.fcfzb-card p,
.fcfzb-debate ol,
.fcfzb-quiz small {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--fcfzb-muted);
}

.fcfzb__hero p,
.fcfzb-card p { margin: 0 0 1rem; }

.fcfzb__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.fcfzb-card {
    min-width: 0;
    padding: 1.2rem;
    border-radius: 24px;
}

.fcfzb-card--wide { grid-column: span 2; }

.fcfzb-button,
.fcfzb__heroButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.82rem 1.18rem;
    background: var(--fcfzb-black);
    color: #fff !important;
    font-size: 0.98rem;
    font-weight: 900;
    text-decoration: none !important;
    line-height: 1;
    border: 1px solid var(--fcfzb-black);
    box-shadow: 0 8px 18px rgba(18, 16, 11, 0.16);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.fcfzb-button:hover,
.fcfzb__heroButton:hover,
.fcfzb-button:focus,
.fcfzb__heroButton:focus {
    transform: translateY(-1px);
    background: var(--fcfzb-dark-gold);
    border-color: var(--fcfzb-dark-gold);
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(155, 107, 18, 0.22);
}

.fcfzb-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 0.75rem;
    border-radius: 999px;
    padding: 0.34rem 0.7rem;
    background: rgba(216, 182, 90, 0.18);
    border: 1px solid var(--fcfzb-gold-border);
    color: var(--fcfzb-black);
    font-size: 0.78rem;
    font-weight: 900;
}

.fcfzb-debates,
.fcfzb-quizList {
    display: grid;
    gap: 0.85rem;
    margin: 0.9rem 0 1rem;
}

.fcfzb-debate,
.fcfzb-quiz {
    border: 1px solid var(--fcfzb-border);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.86);
}

.fcfzb-debate { padding: 1rem; }

.fcfzb-debate strong {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--fcfzb-black);
    font-size: 1.04rem;
    line-height: 1.42;
}

.fcfzb-options {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.42rem;
}

.fcfzb-options li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.55rem;
    align-items: start;
    margin: 0;
}

.fcfzb-optionLetter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 999px;
    background: rgba(216, 182, 90, 0.2);
    border: 1px solid var(--fcfzb-gold-border);
    color: var(--fcfzb-black);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
}

.fcfzb-quiz {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.78rem;
    align-items: start;
    padding: 1rem;
    color: var(--fcfzb-black) !important;
    text-decoration: none !important;
}

.fcfzb-quiz:hover,
.fcfzb-quiz:focus {
    border-color: rgba(216, 182, 90, 0.88);
    box-shadow: 0 8px 18px rgba(18, 16, 11, 0.07);
}

.fcfzb-quiz__emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    background: rgba(216, 182, 90, 0.13);
    font-size: 1.05rem;
    line-height: 1;
}

.fcfzb-quiz strong,
.fcfzb-quiz small { display: block; }
.fcfzb-quiz strong { font-size: 1.03rem; line-height: 1.4; }
.fcfzb-quiz small { margin-top: 0.24rem; }

.fcfzb-notice {
    padding: 1rem;
    border-radius: 18px;
}

@media (max-width: 720px) {
    .fcfzb {
        margin: 1rem 0;
        font-size: 15px;
    }

    .fcfzb__hero {
        display: block;
        padding: 1.15rem;
        border-radius: 22px;
    }

    .fcfzb__heroButton { margin-top: 0.75rem; }

    .fcfzb__grid { grid-template-columns: 1fr; }

    .fcfzb-card,
    .fcfzb-debate,
    .fcfzb-quiz { padding: 1rem; }

    .fcfzb-card--wide { grid-column: span 1; }

    .fcfzb-button,
    .fcfzb__heroButton {
        width: auto;
        max-width: 100%;
    }
}
