/*#region RESET*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*#endregion*/


:root {
    --main-bg: #1a1a1a;
    --text-color: #f1f1f1;
    --lighter-bg: #262626;
    --darker-bg: #0F0F0F;
    --theme-dark: #FF7E00;
    --theme-light: #FFC402;
    --accent-dark: #2F1059;
    --accent-light: #6231A7;
    --accent-green: #3DFF9B;
    --accent-green-dark: #197A48;
    --accent-gray-light: #979797;
    --list-container-padding: 32px;
    --list-container-border-radius: 10px;
    --list-container-border-color: #979797;
    --list-container-margin-top-bottom: 64px;
    --list-container-gap: 8px;
    --container-max-width: 1200px;
    --info-blue: #0031D0;
    --error-red: rgba(255, 63, 95, 1);
}

html, body {
    width: 100%;
    height: 100%;
    font-size: 75%;
    overflow: hidden;
    background-color: var(--main-bg);
    color: var(--text-color);
    font-family: Roboto, Arial, Helvetica, sans-serif;
}

.main {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    font-size: 14px;
}

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9; /* keeps proper height automatically */
    background-color: black; /* optional letterbox background */
}

    .video-player,
    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: contain; /* show full video without cropping */
        display: block;
        border: none;
    }