html, body {
    height: 100%;
    margin: 0;
    background: #000;
    color: #fff
}

.wrap {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-color: #000;
}

video {
    max-width: 100vw;
    max-height: 100vh;
    width: 100%;
    height: auto;
    object-fit: contain;
    background-color: #000;
}

.cta {
    position: fixed;
    /* Centrer milieu bas sur la video */
    left: 50%;
    /* transform: translateX(-50%); */
    bottom: calc( max(16px, env(safe-area-inset-bottom)) + 8px);
    z-index: 2;
    /* Placer en bas a droite de l'écran en dehors de la video
    right: clamp(12px, 2vw, 24px);   
    bottom: clamp(12px, 2vw, 24px);
    */
    background: #D1B520;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.7rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font: 600 16px/1.1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    transition: transform 0.15s ease, background 0.2s ease;
}

.cta:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.18);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.fade-out {
    animation: fade 0.45s ease forwards;
}

@keyframes fade {
    to {
        opacity: 0;
    }
}