.adc-phone-video-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone Frame Wrapper - unique prefix "adc-pv-" to avoid conflicts */
.adc-pv-phone-wrapper {
    position: relative;
    width: 300px;
    height: auto;
    z-index: 1;
    display: block;
}

/* Layer 2: Phone Frame (on top of video) */
.adc-pv-phone-img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 20;
    pointer-events: none;
}

/* Layer 3: Pill (on top of everything) */
.adc-pv-pill-img {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: auto;
    z-index: 105;
    pointer-events: none;
}

/* Layer 1: Screen Content (Video) - Behind Frame */
.adc-pv-screen-content {
    position: absolute;
    top: 2%;
    left: 4%;
    width: 92%;
    height: 96%;
    border-radius: 35px;
    overflow: hidden;
    z-index: 100;
    background: #000;
}

.adc-pv-video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.adc-pv-video-container wistia-player,
.adc-pv-video-container iframe,
.adc-pv-video-container video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .adc-pv-phone-wrapper {
        width: 250px;
    }
}
