/* Reset mặc định */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Logo ở góc phải */
.logo-container {
    position: fixed;
    top: 3px;
    left: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

/* Logo */
.logo {
    width: 150px;
    height: auto;
}
.logo-container-1 {
    position: fixed;
    top: 3px;
    left: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

/* Logo */
.logo-1 {
    width: 150px;
    height: auto;
}

/* Ẩn trình phát nhạc */
audio {
    display: none;
}

/* Nút bật/tắt âm thanh */
.audio-btn {
    margin-top: 10px;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
}

/* Icon âm thanh */
.audio-btn img {
    width: 40px;
    height: 40px;
}

/* Full màn hình iFrame */
iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border: none;
}

/* Nút hiển thị video */
.video-btn {
    position: fixed;
    bottom: 10px;
    right: 20px;
    padding: 12px 20px;
    background: #ff0000;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
}

/* Popup chứa video */
.video-popup {
    position: fixed;
    top: 30%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 75vw;
    height: 75vh;
    max-width: 800px;
    max-height: 450px;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    display: none;
    z-index: 1001;
    border-radius: 10px;
}

/* Video trong popup */
.video-popup video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Nút đóng popup */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    color: black;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1002; /* Đảm bảo nút hiển thị trên video */
}

/* Responsive: Popup nhỏ hơn trên điện thoại */
/* @media screen and (max-width: 600px) {
    .video-popup {
        width: 90vw;
        height: 50vh;
    }
    .video-btn {
        font-size: 14px;
        padding: 10px 15px;
    }
} */

