.vxr_text17_main_box {
    position: relative;
    min-height: 100vh;
    z-index: 10;
    pointer-events: none;
}

.vxr_text17_content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 0 80px;
    pointer-events: auto;
}

.vxr_text17_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.vxr_text17_content_inner {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.vxr_text17_title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 25px;
    background: linear-gradient(135deg, #ae2cff6e, #b26bff, #db8bff75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 107, 168, 0.3));
}

.vxr_text17_description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.vxr_text17_subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 30px 0 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.vxr_text17_video_wrapper {
    margin: 0 0 40px;
}

.vxr_text17_video_preview {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 40px rgb(142 56 255 / 30%);
}

.vxr_text17_video_preview:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgb(184 107 255 / 50%);
}

.vxr_text17_video_preview img {
    display: block;
    width: 100%;
    height: auto;
}

.vxr_text17_video_preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / 0%), rgb(34 0 76 / 79%));
    transition: opacity 0.3s ease;
}

.vxr_text17_video_preview:hover::before {
    opacity: 0.5;
}

.vxr_text17_play_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 107, 168, 0.5);
}

.vxr_text17_play_button i {
    margin-left: 5px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.vxr_text17_video_preview:hover .vxr_text17_play_button {
    background: linear-gradient(135deg, #b26bff, #9a3dff);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgb(171 107 255 / 80%);
}

.vxr_text17_cta {
    margin-top: 50px;
}

.vxr_text17_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    background: linear-gradient(135deg, #b26bff, #9a3dff);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgb(191 107 255 / 50%);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.vxr_text17_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgb(148 51 255 / 70%);
}

.vxr_text17_video_popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vxr_text17_video_popup.active {
    display: flex;
}

.vxr_text17_popup_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.vxr_text17_popup_content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    z-index: 1;
}

.vxr_text17_popup_close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vxr_text17_popup_close:hover {
    background: #ff6ba8;
    transform: rotate(90deg);
}

.vxr_text17_video_container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
}

.vxr_text17_video_container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .vxr_text17_title {
        font-size: 48px;
    }

    .vxr_text17_description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .vxr_text17_content {
        padding: 100px 0 60px;
    }

    .vxr_text17_title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .vxr_text17_description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .vxr_text17_subtitle {
        font-size: 14px;
    }

    .vxr_text17_play_button {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .vxr_text17_btn {
        padding: 15px 35px;
        font-size: 15px;
    }

    .vxr_text17_popup_close {
        top: -40px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}