.bfm-hub {
    --bfm-red: #e10600;
    --bfm-red-dark: #8b0703;
    --bfm-black: #080808;
    --bfm-panel: #151515;
    --bfm-silver: #c9c9c9;
    --bfm-line: #343434;
    background: var(--bfm-black);
    color: #fff;
    font-family: Manrope, system-ui, sans-serif;
    margin: 0;
}

.bfm-hub * { box-sizing: border-box; }

.bfm-hero {
    background: linear-gradient(135deg, #020202 0%, #171717 58%, #660000 100%);
    padding: clamp(3rem, 8vw, 7rem) max(1.25rem, calc((100vw - 1160px) / 2));
}

.bfm-hero h1 {
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: .9;
    margin: .3em 0;
}

.bfm-hero > p:not(.bfm-kicker) {
    color: #e1e1e1;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    max-width: 720px;
}

.bfm-kicker,
.bfm-step {
    color: var(--bfm-red);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.bfm-timezone,
.bfm-on-air {
    border: 1px solid var(--bfm-line);
    border-radius: 999px;
    color: var(--bfm-silver);
    display: inline-block;
    font-size: .86rem;
    margin-top: 1.5rem;
    padding: .55rem .9rem;
}

.bfm-notice {
    border-left: 5px solid;
    margin: 1.5rem auto 0;
    max-width: 1160px;
    padding: 1rem 1.25rem;
}

.bfm-notice--success { background: #102918; border-color: #43b867; }
.bfm-notice--error { background: #35100f; border-color: var(--bfm-red); }

.bfm-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    margin: 0 auto;
    max-width: 1160px;
    padding: clamp(3rem, 6vw, 6rem) 1.25rem;
}

.bfm-card {
    background: var(--bfm-panel);
    border: 1px solid var(--bfm-line);
    border-radius: 24px;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.bfm-card--vote {
    align-self: start;
    background: linear-gradient(160deg, #1a1a1a, #260604);
    position: sticky;
    top: 1.5rem;
}

.bfm-card h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.05;
    margin: .4rem 0 1.25rem;
}

.bfm-card form > label:not(.bfm-consent),
.bfm-card legend {
    display: block;
    font-size: .88rem;
    font-weight: 800;
    margin: 1.2rem 0 .45rem;
}

.bfm-card input[type="text"],
.bfm-card input:not([type]),
.bfm-card select {
    background: #090909;
    border: 1px solid #4a4a4a;
    border-radius: 10px;
    color: #fff;
    font: inherit;
    min-height: 48px;
    padding: .75rem .9rem;
    width: 100%;
}

.bfm-card input:focus,
.bfm-card select:focus {
    border-color: var(--bfm-red);
    outline: 3px solid rgba(225, 6, 0, .2);
}

.bfm-card fieldset {
    border: 0;
    margin: 1.2rem 0 0;
    padding: 0;
}

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

.bfm-check,
.bfm-vote,
.bfm-consent {
    align-items: flex-start;
    cursor: pointer;
    display: flex;
    gap: .65rem;
}

.bfm-check,
.bfm-vote {
    background: #0c0c0c;
    border: 1px solid #383838;
    border-radius: 10px;
    padding: .75rem;
}

.bfm-check:has(input:checked),
.bfm-vote:has(input:checked) {
    background: #300806;
    border-color: var(--bfm-red);
}

.bfm-consent {
    color: var(--bfm-silver);
    font-size: .84rem;
    line-height: 1.5;
    margin: 1.4rem 0;
}

.bfm-card button {
    background: var(--bfm-red);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    padding: .95rem 1.5rem;
}

.bfm-card button:hover { background: #ff1811; }

.bfm-vote-options {
    display: grid;
    gap: .65rem;
    margin: 1.4rem 0;
}

.bfm-empty {
    background: #090909;
    border: 1px dashed #555;
    border-radius: 12px;
    color: var(--bfm-silver);
    margin-top: 1.5rem;
    padding: 1.25rem;
}

.bfm-privacy {
    background: var(--bfm-red);
    color: #fff;
    padding: 2.5rem max(1.25rem, calc((100vw - 1160px) / 2));
}

.bfm-privacy strong { display: block; font-size: 1.25rem; }

@media (max-width: 820px) {
    .bfm-grid { grid-template-columns: 1fr; }
    .bfm-card--vote { position: static; }
}

@media (max-width: 480px) {
    .bfm-check-grid { grid-template-columns: 1fr; }
}

