/* 1. Estilos Generales */
body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    background-color: #000;
    font-family: Arial, sans-serif;
    display: grid;
    place-items: center;
}

/* 2. Estilos del Cebo (#cebo-gatitos) */
#cebo-gatitos {
    position: relative;
    cursor: pointer;
    text-align: center;
    color: white;
    max-width: 90vw;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

#cebo-gatitos img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    display: block;
}

#cebo-gatitos .texto-superpuesto {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 8px black;
}

#cebo-gatitos .play-falso {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 0 10px black;
}

/* 3. Estilos del Overlay (#overlay-ataque) */
#overlay-ataque {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 1000;
}

/* 4. Estilos del Video (#video-ataque) */
#video-ataque {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 5. Clase de Ocultar */
.oculto {
    display: none !important;
}