/* ===========================
   Featured Video Section
   =========================== */

.featured-video-section {
    padding: 150px 0 50px;
    background: black;
}

/* Card with gradient border */
.featured-video-card {
    position: relative;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #c41ccd, #3a4bdb, #1eb7d4);
}

.featured-video-card > .row {
    background: #0d0d14;
    border-radius: 16px;
    overflow: hidden;
    margin: 0;
}

/* Left content */
.featured-video-content {
    padding: 44px 40px 44px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

/* Badge */
.video-badge {
    display: inline-block;
    background: linear-gradient(90deg, #e91ee8, #7b2ff7);
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    width: fit-content;
}

/* Title */
.featured-video-title {
    color: #ffffff !important;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
}

/* Description */
.featured-video-description {
    color: #b0b0c0 !important;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Button */
.featured-video-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    cursor: pointer;
    width: fit-content;
    position: relative;
    z-index: 0;
    transition: opacity 0.2s;
}

.featured-video-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(90deg, #e91ee8, #1eb7d4);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.featured-video-btn:hover {
    opacity: 0.8;
}

/* Right video player area */
.featured-video-player {
    padding: 24px 28px 24px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 767px) {
    .featured-video-content {
        padding: 32px 24px 20px;
        gap: 16px;
        text-align: left;
    }

    .featured-video-title {
        font-size: 22px;
    }

    .featured-video-player {
        padding: 0 24px 32px;
    }

    .featured-video-section {
        padding: 24px 0 36px;
    }
}

@media (max-width: 480px) {
    .featured-video-title {
        font-size: 20px;
    }

    .featured-video-description {
        font-size: 13px;
    }

    .video-badge {
        font-size: 10px;
    }
}

