/* RESET & FULLSCREEN CONTAINER */
#intro-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* VIDEO COVER MODE - fills screen, maintains aspect ratio */
#intro-video-overlay video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

/* SKIP BUTTON - Bottom Center Floating */
#skip-intro-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 32px;
    background: transparent;
    backdrop-filter: blur(6px);
    border: 0;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#skip-intro-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%) scale(1.05);
}

/* SAFETY OVERRIDE CLASS */
.ivr-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 999999 !important;
}

/* MOBILE OPTIMIZATION */
#skip-intro-btn {
    font-size: 10px; /* Prevent iOS zoom */
}