.vsl-container {
    max-width: 1080px;
    margin: 0 auto 2.5rem auto;
    width: 100%;
    position: relative;
    padding-top: 56.25%; 
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    margin-top: 15px;
}

.vsl-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    background-color: #000;
}

.vsl-inner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background-color: #000;
    object-fit: cover;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 12px;
}

.video-placeholder:hover {
    background: rgba(0, 0, 0, 0.3);
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F2C238, #A88717);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(242, 194, 56, 0.4);
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(242, 194, 56, 0.5);
}

.play-button::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid var(--dark);
    margin-left: 6px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}


