.vt-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px auto;
    padding: 20px;
    background: #0d0d0f;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
}

.vt-item {
    flex: 1;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    transform: translateY(0);
    transition: 0.3s ease;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.05);
}

.vt-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255,255,255,0.08);
}

.vt-item iframe {
    width: 100%;
    height: 260px;
    border: none;
}
