#tris-popup-overlay {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.tris-popup-content {
    background: transparent;
    max-width: 800px;
    padding: 20px;
    margin: 80px auto;
    position: relative;
    border-radius: 8px;
}

.tris-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #333;
    border-radius: 50%;
    border: 2px solid #ddd;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 34px; /* pour centrer le X verticalement */
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 1000000;
}

.tris-popup-close:hover {
    background: #333;
    color: #fff;
}

.tris-popup-content video {
    margin-bottom: 0px!important;
}

