:root {
    --hf-orange: #d46b21;
    --hf-orange-dark: #a94713;
    --hf-gold: #f2a341;
    --hf-black: #11100e;
    --hf-charcoal: #211b16;
    --hf-cream: #fff7e8;
    --hf-paper: #f5ead8;
    --hf-brown: #5a321e;
    --hf-muted: #8a7867;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body.hf-video-page {
    margin: 0;
    background: var(--hf-black);
    color: var(--hf-cream);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hf-video-background {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 45%, rgba(212, 107, 33, .30), rgba(17, 16, 14, .92) 48%, rgba(8, 7, 6, 1) 100%),
        linear-gradient(135deg, #1b120d, #0d0b09);
}

.hf-video-background::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,.08) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,.06) 25%, transparent 25%);
    background-size: 14px 14px;
    pointer-events: none;
}

.hf-video-modal {
    position: relative;
    z-index: 2;
    width: min(1120px, 96vw);
}

.hf-video-backdrop {
    position: absolute;
    inset: -80px;
    background:
        radial-gradient(circle at center, rgba(242, 163, 65, .18), transparent 62%);
    pointer-events: none;
}

.hf-video-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    background: var(--hf-charcoal);
    border: 7px solid var(--hf-orange);
    box-shadow: 0 32px 110px rgba(0, 0, 0, .72);
}

/* Side triangles intentionally removed */

.hf-video-header {
    background: var(--hf-cream);
    color: var(--hf-black);
    text-align: center;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(1.7rem, 3.5vw, 3rem);
    padding: 16px 48px;
    border-bottom: 5px solid var(--hf-orange);
}

.hf-flame {
    margin: 0 12px;
}

.hf-video-frame {
    background: #000;
}

.hf-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000;
    object-fit: contain;
}

.hf-video-footer {
    background:
        linear-gradient(90deg, rgba(212, 107, 33, .20), transparent),
        var(--hf-charcoal);
    text-align: center;
    padding: 22px 20px 24px;
    border-top: 5px solid var(--hf-orange);
}

.hf-video-footer p {
    margin: 0 0 8px;
    color: #fff;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.hf-video-footer span {
    display: block;
    color: var(--hf-paper);
    font-size: 1rem;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 768px) {
    .hf-video-background {
        padding: 14px;
    }

    .hf-video-dialog {
        border-width: 5px;
    }

    .hf-video-header {
        padding: 14px 22px;
    }

    .hf-flame {
        margin: 0 6px;
    }

    .hf-video-footer {
        padding: 18px 14px;
    }
}

@media (max-width: 575px) {
    .hf-video-modal {
        width: 98vw;
    }

    .hf-video-background {
        padding: 10px;
    }

    .hf-video-dialog {
        border-width: 4px;
    }

    .hf-video-header {
        font-size: clamp(1.35rem, 8vw, 2rem);
        padding: 12px 14px;
        border-bottom-width: 4px;
    }

    .hf-video-footer {
        border-top-width: 4px;
    }

    .hf-video-footer p {
        font-size: clamp(1.25rem, 7vw, 2rem);
    }

    .hf-video-footer span {
        font-size: .92rem;
    }
}