@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #1f1f1f, #3a3a3a);
}

/* Pantalla */
.smartwatch{
    width: 300px;
    height: 300px;
    border: 5px solid #000;
    background-image: url(../img/inicio/wallpapers/wallpaper1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    transition: background-color 3s ease-in-out, background-image 1s ease-in-out;
}

/* Pantalla Apagada */
.smartwatch.blackout {
    background-color: #000; 
    background-image: none; 
}



/* Botón de Encendido/Apagado */
.on-off{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    right: -28px;
    top: 20%;
    position: absolute;
    background: #666;
    border: 4px solid  #111;
    border-left-color: #000;
    width: 25px;
    height: 30px;
    cursor: pointer;
}


/* Íconos en pantalla */
.battery, .config{
    position: absolute;
    width: 35px;
    height: 35px;
    background-size: 35px;
}

.config{
    background-image: url(../img/inicio/config.png);
    top: 5%;
    left: 85%;
    width: 25px;
    height: 25px;
    background-size: 25px;
    cursor: pointer;
}


.battery{
    background-image: url(../img/inicio/battery\ icon.png);
    top: 70%;
    left: 44%;
}



/* BOTONES DE NAVEGACIÓN */
.btn{
    width: 35px;
    height: 35px;
    position: absolute;
    transition: opacity .2s ease-in-out;
    background-size: 35px;
    cursor: pointer;
}

.btn:hover{
    opacity: 0.6;
}

.up{
    background-image: url(../img/inicio/btn-top.png);
    left: 127px;
}

.left{
    background-image: url(../img/inicio/btn-left.png);
    top: 125px;
}

.right{
    background-image: url(../img/inicio/btn-right.png);
    top: 125px;
    right: 0;
}

.down{
    background-image: url(../img/inicio/btn-bottom.png);
    bottom: 0;
    left: 127px;
}