/* =========================================
   ESTILOS SPLASH / INTRO (VERSIÓN FINAL)
   Ubicación: assets/splash/splash.css
   ========================================= */

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    font-family: system-ui, -apple-system, sans-serif;
}

/* El Video de Fondo */
#intro-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

/* Capa contenedora */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none; /* Permite clicks a través */
}

/* Botón Saltar Intro - SUPERIOR DERECHA */
.btn-skip {
    position: absolute;
    /* Usamos env() para respetar el "Notch" o isla dinámica de los iPhone */
    top: max(20px, env(safe-area-inset-top) + 20px);
    right: 20px;
    
    pointer-events: auto; /* Clickable */
    display: flex;
    align-items: center;
    gap: 8px;
    
    /* Diseño Minimalista y Pequeño */
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4); /* Fondo muy sutil */
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.75rem; /* Texto pequeño elegante */
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px; /* Forma de píldora */
    backdrop-filter: blur(8px); /* Efecto cristal */
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards; /* Aparece suavemente tras 1seg */
}

.btn-skip:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-skip i {
    font-size: 0.7rem;
}

@keyframes fadeIn {
    to { opacity: 1; }
}