/*main video*/
.video-section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.video-clip{
    width: 100%;
}



/* Responsive Container - The crucial missing part */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
}

h3{
    color:white;
}
/* Forces the iframe to fill the container perfectly */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Your Grid Layout */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 50px 5%;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    .video-section h1{
        font-size: 20px;
        padding-top: 5px;
        margin-left: 1%;
    }
    .video-section h2{
        font-size: 24px;
        margin-left: -6%;
    }
    .video-section{
        width: 91%;
    }
    header{
        height: 80px;
    }
    
    
}
.latest-release {
    padding: 80px 5%;
    background-color: #000; /* Dark theme focus */
    color: #fff;
}

.release-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.release-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.release-info { flex: 1; }

.release-info h2 { font-size: 1.2rem; color: #ff5722; } /* Brand Accent Color */
.release-info h1 { font-size: 3rem; margin: 20px 0; }

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}


.btn-primary:hover {
    background-color: white;
    color: black;
}

/* Mobile: Stack columns */
@media (max-width: 768px) {
    .release-container { flex-direction: column; text-align: center; }
    .video-section h2{
        font-size: 2.5rem
    }
}


