/* Video consent overlay - covers video container */
.video-consent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-consent-overlay .video-consent-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Info box - hidden by default, shown on hover */
.video-consent-overlay .video-consent-info {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 25px;
    color: #fff;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}

.video-consent-overlay:hover .video-consent-info {
    opacity: 1;
    transform: translateY(0);
}

.video-consent-overlay:hover .video-consent-bg {
    filter: brightness(0.3);
}

.video-consent-info p {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.5;
}

.video-consent-info strong {
    font-size: 18px;
}

.video-load-btn {
    background: #cc0000 !important;
    border: none !important;
    color: #fff !important;
    padding: 14px 28px !important;
    font-size: 15px !important;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.video-load-btn:hover {
    background: #aa0000 !important;
}

.video-consent-link {
    margin-top: 15px !important;
    margin-bottom: 0 !important;
    font-size: 12px !important;
}

.video-consent-link a {
    color: #ccc;
    text-decoration: underline;
}

.video-consent-link a:hover {
    color: #fff;
}

/* Play icon overlay when not hovering */
.video-consent-overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    z-index: 2;
    transition: opacity 0.3s;
}

.video-consent-overlay::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #fff;
    z-index: 3;
    transition: opacity 0.3s;
}

.video-consent-overlay:hover::before,
.video-consent-overlay:hover::after {
    opacity: 0;
}
