body, html {
    margin: 0;
    padding: 0;
    background: black;
    font-family: 'Montserrat', Arial, sans-serif;
    overflow-x: hidden;
    height: 100%;
}

/* --- Layout Wrapper --- */
.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    min-height: 100vh;
    box-sizing: border-box;
}


/* --- Video Frame --- */
.video-frame-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}
.video-frame {
    width: 100%;
    max-width: calc((100vh - 20px) * (9 / 16));
    aspect-ratio: 9 / 16;
    border: none;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

/* --- Download Button --- */
.btn-main {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    z-index: 2;
}
.Down-button {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: bold;
    color: #00f7ff;
    background: black;
    border: 2px solid #00f7ff;
    border-radius: 30px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 1;
}
.Down-button::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00f7ff, #ffffff, #00f7ff);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: animatedGradient 3s linear infinite;
}
.Down-button:hover {
    color: black;
    transform: scale(1.05);
}
.Down-button:hover::before {
    opacity: 1;
}

@keyframes animatedGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Optional Loader Styles (keep if needed) --- */
#loadingOverlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: opacity 0.5s ease;
}
.loader-text {
    color: #00f7ff;
    font-size: 20px;
    padding: 15px 30px;
    border: 2px solid #00f7ff;
    border-radius: 10px;
    background-color: #000;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}
.featured-title-back {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    padding: 20px; 
    box-shadow: 0px 6px 15px -6px #00f7ff4d; /* shadow only at bottom */
}
