/* Story Container */
.story-container {
    max-width: 270px;
    height: 480px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Video Wrapper */
.video-wrapper video,
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
    border: none;
}

/* Mute/Unmute Button */
.mute-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    text-align: center;
}

.mute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.mute-btn i {
    pointer-events: none;
}

/* Story Thumbnails Container */
.story-thumbnails {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 35px;
}

/* Individual Story Item */
.story-item img {
    width: 80px;
    height: 80px !important;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    object-fit: cover;
    border: 3px solid #f6bf20;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.story-item {
    width: 100px;
    text-align: center;
}

.story-item p {
    line-height: 22px;
}

.story-item:hover img {
    transform: scale(1.1);
}

iframe#player {
    width: 270px;
    height: 480px;
}
#instagram-story {
    clear: both;
    padding: 50px 0px 80px;
}
p.title_view {
    font-size: 26px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 50px;
    line-height: 35px;
}
/* Play/Stop Buttons */
.play-btn,
.stop-btn {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    text-align: center;
}

.play-btn:hover,
.stop-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.play-btn i,
.stop-btn i {
    pointer-events: none;
}
.testi_text {

  text-align: center;
  margin-bottom: 50px;
}

