.sa-secure-player {
    position: relative;
    background: #020617;
    border-radius: 18px;
    overflow: hidden;
    min-height: 430px;
    margin-bottom: 20px;
}

.sa-player-status,
.sa-player-blocked {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 30px;
}

.sa-player-blocked {
    background: #450a0a;
}

.sa-player-blocked strong {
    color: #fecaca;
    font-size: 22px;
}

.sa-video-frame {
    position: relative;
    min-height: 430px;
    background: #000000;
}

.sa-video {
    display: block;
    width: 100%;
    min-height: 430px;
    max-height: 75vh;
    background: #000000;
    object-fit: contain;
}

.sa-dynamic-watermark {
    position: absolute;
    z-index: 999;
    max-width: 50%;

    color: rgba(250, 204, 21, 0.35); /* أخف */
    font-size: 11px; /* أصغر */
    line-height: 1.4;

    pointer-events: none;
    user-select: none;

    text-shadow: 0 0 6px rgba(0,0,0,0.6);

    transform: rotate(-6deg);
    transition: all 0.6s ease;

    opacity: 0.6;
}

/* Visible watermark */
.sa-dynamic-watermark {
    position: absolute;
    z-index: 999;
    max-width: 50%;

    color: rgba(250, 204, 21, 0.35);
    font-size: 11px;

    pointer-events: none;
    user-select: none;

    transform: rotate(-6deg);
}

/* Hidden watermark (background) */
.sa-hidden-watermark {
    position: absolute;
    inset: 0;

    font-size: 40px;
    color: rgba(255,255,255,0.03);

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;
    user-select: none;

    transform: rotate(-20deg);
}

/* Alert watermark */
.sa-alert-watermark {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    background: rgba(220, 38, 38, 0.85);
    color: white;

    padding: 6px 14px;
    border-radius: 8px;

    font-size: 13px;
    font-weight: bold;

    opacity: 0;
    transition: 0.3s;
}