body {
    margin: 0;
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding-top: 40px;
}

.encabezado {
    text-align: center;
    color: brown;
}

/* ← LA CAJA CONTENEDORA */
.tv-caja {
    position: relative;
    width: 1300px;
    height: 1000px;      /* ajusta hasta que la tv se vea completa */
    overflow: hidden;   /* nada se sale de aquí */
}

.tv-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.tv-img {
    width: 100%;
    height: 100%;
    top: -15%;
    left: 13%;
    width: 74%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.tv-screen {
    position: absolute;
    top: 4%;
    left: 12.6%;
    width: 75%;
    height: 46%;
    z-index: 1;
}

.tv-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.info-pelicula {
    width: 70%;
    margin-top: -300px;
    color: rgb(200, 200, 200);
    font-family: monospace;
}

.info-pelicula h2 {
    color: brown;
    font-size: 32px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.info-pelicula p {
    font-size: 18px;
    line-height: 1.6;
    color: rgb(170, 170, 170);
}