* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden; /* Evita scroll */
}

.app-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

video {
    width: 100%;
    height: 100%;
    /* 'cover' es clave: recorta el video para que llene la pantalla vertical 
       exactamente como lo hace la cámara de TikTok o Instagram */
    object-fit: cover; 
}

/* Pantalla de inicio centrada */
#startScreen {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

button {
    padding: 15px 30px;
    font-size: 18px;
    background: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
}