.tinvideo-hv-style-1 {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

.tinvideo-hv-style-1 .main-video-container {
    width: 100%;
}

.tinvideo-hv-style-1 .main-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 13;
    background-color: #000;
    overflow: hidden;
}

.tinvideo-hv-style-1 .main-video-title {
    padding: 10px;
    background-color: #E0E0E04D;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    line-height: 25.2px;
    color: #2E2E2E;
}

.tinvideo-hv-style-1 .video-list-container {
    width: 100%;
}

.tinvideo-hv-style-1 .video-list-header {
    padding: 8px;
    background-color: #E0E0E04D;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    line-height: 25.2px;
    color: #2E2E2E;
    margin-bottom: 0;
}

.tinvideo-hv-style-1 .video-list {
    height: auto;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #E0E0E04D;
}

.tinvideo-hv-style-1 .video-item {
    padding: 8px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
    line-height: 22.4px;
    color: #2E2E2E;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #E0E0E04D;
    transition: all 0.3s ease;
}

.tinvideo-hv-style-1 .video-item:last-child {
    border-bottom: none;
}

.tinvideo-hv-style-1 .video-item:hover,
.tinvideo-hv-style-1 .video-item.active {
    color: #DE3A37;
    background-color: rgba(222, 58, 55, 0.05);
}

.tinvideo-hv-style-1 .video-item svg.icon-default {
    display: block;
}

.tinvideo-hv-style-1 .video-item svg.icon-active {
    display: none;
}

.tinvideo-hv-style-1 .video-item:hover svg.icon-default,
.tinvideo-hv-style-1 .video-item.active svg.icon-default {
    display: none;
}

.tinvideo-hv-style-1 .video-item:hover svg.icon-active,
.tinvideo-hv-style-1 .video-item.active svg.icon-active {
    display: block;
}

.tinvideo-hv-style-1 .video-item p {
    margin: 0;
}

#main-video-player {
    height: 100%;
    position: relative;
}

#main-video-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 40px;
    height: 40px;
    background: #A2090C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-button svg {
    margin-left: 3px;
}

@media screen and (max-width: 576px) {
    .main-video video {
        height: 186px !important;
    }
    .tinvideo-hv-style-1 .main-video {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        background-color: #000;
        overflow: hidden;
    }
    .play-button {
        width: 60px;
        height: 60px;
    }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
    .main-video video {
        height: 409px;
    }
    .tinvideo-hv-style-1 .main-video {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        background-color: #000;
        overflow: hidden;
    }
}

@media screen and (min-width: 1600px) {
    .main-video video {
        height: 230px !important;
    }
    .tinvideo-hv-style-1 .main-video {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        background-color: #000;
        overflow: hidden;
    }
}