/* Body styling for the sky-like gradient background */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to bottom, #87cefa, #ffffff); /* Sky-blue to white gradient */
    font-family: Arial, sans-serif;
}

/* Center the video on the page */
.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
}

/* Style the video wrapper */
.video-wrapper {
    position: relative;
    width: 80%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 12px solid #222; /* Dark bevel border */
    border-radius: 20px; /* Rounded corners like an iPad */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 6px 6px rgba(0, 0, 0, 0.22); /* Subtle shadow for depth */
    overflow: hidden;
    background-color: #000; /* Black background inside the wrapper */
}

/* Video styling */
.styled-video {
    width: 100%;
    height: 100%;
    display: block;
}

/* Play button styling */
.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 30px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

/* Video title styling */
.video-title {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
}

/* Byline styling */
.byline {
    margin-top: 5px;
    font-size: 1rem;
    color: #666;
    text-align: center;
}

/* Ensure video controls are always visible */
video::-webkit-media-controls {
    display: flex;
    visibility: visible !important;
}
