/* --- LAYOUT --- */
.maincontainer {
    display: flex;
    justify-content: center; /* Centers the video box horizontally */
    align-items: center;     /* Centers it vertically (if page height allows) */
    padding: 40px;
    min-height: 60vh;        /* Ensures the footer isn't cramped against the video */
}

/* --- VIDEO WRAPPER (The Box) --- */
.video-wrapper {
    background: linear-gradient(145deg, #383838, #2b2b2b);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-top: 5px solid #94d8ff; /* Your Blue Accent */
    
    width: 100%;
    max-width: 900px; /* Prevents it from getting too huge on big screens */
    text-align: center;
}

/* --- TITLE --- */
.video-title {
    color: #94d8ff; /* Blue Text */
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(148, 216, 255, 0.2);
    padding-bottom: 15px;
}

/* --- THE PLAYER --- */
video {
    width: 100%;       /* Fills the wrapper */
    border-radius: 8px; /* Soft corners on the video itself */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    outline: none;
    display: block;    /* Removes weird spacing below video */
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .maincontainer {
        padding: 20px;
    }
    
    .video-title {
        font-size: 1.8rem;
    }
    
    .video-wrapper {
        padding: 15px;
    }
}