@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&display=swap');

:root {
    --primary-color: #fd8100;
    --bg-gradient: radial-gradient(circle, #fd8100 33%, #ff0000 100%);
    --text-white: #ffffff;
    --border-radius: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg-gradient);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    text-align: center;
    overflow: hidden;
}

header {
    padding: 3rem 0rem 2rem;
}

header h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
}

main {
    min-height: 0;
}

.video-container {
    position: relative;
    height: 100%;
    width: auto;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    background: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    overflow: hidden;
}

footer {
    padding: 1.5rem 0rem 2rem;
    opacity: 0.9;
    font-size: clamp(0.7rem, 2vw, 1rem);
}