/**
 * Fichier  : /ott/item/assets/css/live/replay-coming.css
 * Fonction : style du panneau d'attente du replay
 */


/* ==================================================
   CONTAINER
================================================== */

#replay-coming {
    position: relative;
    overflow: hidden;
}

#replay-coming {
    width: 100%;
}

#replay-coming {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

#replay-coming {
    box-shadow:
        0 14px 40px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.05);
}


/* ==================================================
   OVERLAY
================================================== */

#replay-coming .overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

#replay-coming .overlay {
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.38),
            rgba(0,0,0,0.78)
        );
}

#replay-coming .overlay::before {
    content: "";
}

#replay-coming .overlay::before {
    position: absolute;
    inset: 0;
}

#replay-coming .overlay::before {
    background:
        radial-gradient(
            circle at center,
            rgba(255,120,0,0.14),
            transparent 50%
        );
}


/* ==================================================
   CONTENT
================================================== */

#replay-coming .content {
    position: absolute;
    inset: 0;
    z-index: 3;
}

#replay-coming .content {
    padding: 30px;
}

#replay-coming .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

#replay-coming .content {
    text-align: center;
}


/* ==================================================
   BADGE
================================================== */

#replay-coming .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#replay-coming .badge {
    padding: 7px 12px;
}

#replay-coming .badge {
    background:
        linear-gradient(
            135deg,
            #8e0e00,
            #e9401b 60%,
            #ff7b00
        );
    border-radius: 999px;
    box-shadow:
        0 8px 24px rgba(233,64,27,0.35),
        inset 0 1px 0 rgba(255,255,255,0.18);
}

#replay-coming .badge span {
    width: 8px;
    height: 8px;
}

#replay-coming .badge span {
    background: #fff;
    border-radius: 999px;
}

#replay-coming .badge span {
    animation: replayPulse 1.8s infinite;
}

#replay-coming .badge p {
    font-family: 'content-font';
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #fff;
}


/* ==================================================
   TITLE
================================================== */

#replay-coming .content h3 {
    font-family: 'title-font';
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
}

#replay-coming .content h3 {
    text-shadow:
        0 4px 20px rgba(0,0,0,0.45);
}


/* ==================================================
   DESCRIPTION
================================================== */

#replay-coming .description {
    max-width: 520px;
}

#replay-coming .description {
    font-family: 'content-font';
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255,255,255,0.78);
}


/* ==================================================
   BACKGROUND
================================================== */

#replay-coming .background {
    position: relative;
    z-index: 1;
}

#replay-coming .background img {
    display: block;
}

#replay-coming .background img {
    width: 100%;
    height: auto;
    min-height: 280px;
}

#replay-coming .background img {
    object-fit: cover;
}

#replay-coming .background img {
    filter:
        brightness(.65)
        saturate(1.05);
    transform: scale(1.02);
}


/* ==================================================
   ANIMATION
================================================== */

@keyframes replayPulse {

    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .45;
        transform: scale(1.4);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}


/* ==================================================
   RESPONSIVE
================================================== */

@media screen and (max-width: 768px) {

    #replay-coming {
        border-radius: 14px;
    }

    #replay-coming .content {
        padding: 20px;
        gap: 10px;
    }

    #replay-coming .content h3 {
        font-size: 22px;
    }

    #replay-coming .description {
        font-size: 12px;
        line-height: 1.55;
    }

    #replay-coming .background img {
        min-height: 220px;
    }

}

@media screen and (max-width: 480px) {

    #replay-coming .content h3 {
        font-size: 18px;
    }

    #replay-coming .badge {
        padding: 6px 10px;
    }

    #replay-coming .badge p {
        font-size: 10px;
    }

    #replay-coming .background img {
        min-height: 180px;
    }

}