body {
    margin: 0;
    background-color: #040738;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container {
    width: 100%;
    max-width: 600px;
}

.container img {
    max-width: 100%;    /* Limits width to the size of the screen/container */
    height: auto;       /* Maintains the correct proportions (no stretching) */
    display: block;     /* Removes the tiny gap at the bottom of images */
    margin: 20px auto;  /* Centers the image and adds space above/below */
    border-radius: 4px; /* Optional: adds a slight rounded corner to match a clean UI */
}

.header {
    font-family: "Times New Roman", Times, serif;
    font-size: 50px;
    margin: -5px 0px 0px 0px; /* Added 10px to the top to match the bottom gap */
}

.subtitle {
    font-family: "Times New Roman", Times, serif;
    font-size: 14px;
    letter-spacing: 8px;
    margin: 0px 0px 20px 0; 
    text-transform: lowercase;
    opacity: 0.9;
}

hr {
    border: 0;
    border-top: 1px solid #FFFFFF;
    margin: 10px 0;
}

.controls-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5px 20px;
    gap: 18px;
}

#numberSelect {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 4px 8px;
    font-size: 1.25rem;
    border-radius: 4px;
    max-width: 75%;
}

#numberSelect option {
    background-color: #040738;
    color: white;
}

.go-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.25rem;
    border: 1px solid #FFFFFF;
    padding: 4px 15px;
    border-radius: 4px;
    transition: background 0.2s;
}

.go-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.video-title {
    margin: 10px 0;
    font-size: 1rem;
    padding: 0 20px;
    line-height: 1.4;
}

.footer-text {
    margin: -20px 0px 0px 0px;
    font-size: 1.25rem;
    letter-spacing: 2px;
}