body, html {
    height: 100%;
    margin: 0;
    color: white;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

a{
    text-decoration: none !important;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

video {
    width: 90%; /* Adjust as needed */
    max-width: 1440px; /* Adjust as needed */
}

.cta-container {
    margin-top: 40px;
    width: 800px;
}

.watch-now-btn {
    font-family: Arial, sans-serif;
    background-color: #ff0000; /* Red background */
    color: #ffffff; /* White text */
    font-size: 1.2em; /* Large font size */
    border: none;
    border-radius: 5px; /* Slightly rounded corners */
    padding: 0.8em;
    cursor: pointer;
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* A slight shadow */
    text-transform: uppercase; /* Uppercase text */
}

.play-icon {
    font-size: 32px; /* Larger icon size */
    margin-right: 8px; /* Spacing between icon and text */
}

/* Hover effect for button */
.watch-now-btn:hover {
    background-color: #e60000; /* A slightly darker red */
}

/* Focus styles for accessibility */
.watch-now-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7);
}

/* Responsive media query for phones */
@media (max-width: 767px) {
    .cta-container {
        width: 80%; /* Responsive width for phones */
        max-width: 700px;
    }
}