html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
}

#tv {
    position: fixed;
    inset: 0;
    background: black;
}

#player {
    position: absolute;
    inset: 0;

    width: 100vw;
    height: 100vh;

    object-fit: contain;
    background: black;
}

#screenbug {
    position: fixed;

    top: 24px;
    right: 24px;

    width: 256px;
    height: auto;

    z-index: 100;
    pointer-events: none;
}

#status {
    position: fixed;
    left: 24px;
    bottom: 20px;

    z-index: 100;

    padding: 8px 12px;

    background: rgba(0, 0, 0, 0.7);
    color: white;

    font-family: sans-serif;
    font-size: 14px;
}
