/* Apply true black background to the entire viewport */
html, body {
    background-color: #000000; /* True black background */
    color: #ffffff;            /* White text for contrast */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;          /* Prevent scrolling */
}

/* Center the player and style the container */
#player {
    background-color: #000000; /* True black for the player area */
    width: 100%;
    max-width: 800px; /* Adjust the maximum width of the player */
    height: 800px;    /* Adjust the height of the player */
    margin: auto;     /* Center the player horizontally */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: none; /* No border for a seamless look */
}
