/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    background-color: #000;
}

/* Contenedor de imagen a pantalla completa */
.fullscreen-image {
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Imagen principal */
.fullscreen-image img {
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
}

/* Responsive para diferentes dispositivos */
@media (max-width: 768px) {
    .fullscreen-image img {
        object-fit: cover;
    }
}

@media (orientation: portrait) {
    .fullscreen-image img {
        object-fit: cover;
    }
}

@media (orientation: landscape) {
    .fullscreen-image img {
        object-fit: cover;
    }
}
