/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Neue Plak', 'Inter', sans-serif;
    line-height: 1.6;
    color: white;
    overflow-x: hidden;
    background-color: #000;
    margin: 0;
    padding: 0;
}

/* Contenedor principal */
.landing-container {
    position: relative;
    width: 100%;
    height: 177.78vw; /* Proporción 1920/1080 = 1.7778, altura = ancho * 1.7778 */
    max-height: none;
    background-image: url('assets/UA_SOLA Landing.jpg');
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}

/* Zonas clickeables */
.clickable-area {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.clickable-area:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Área de playlist */
.playlist-area {
    top: 52%;
    left: 5%;
    width: 40%;
    height: 10%;
    background: transparent;
    border: none;
}


/* Área de colección web */
.collection-area {
    top: 52%;
    right: 5%;
    width: 40%;
    height: 10%;
    background: transparent;
    border: none;
}



/* Responsive Design */
@media (max-width: 768px) {
    .landing-container {
        background-size: contain;
    }
    
    .playlist-area,
    .collection-area {
        width: 45%;
        height: 8%;
        top: 55%;
    }
    
    .playlist-area {
        left: 3%;
    }
    
    .collection-area {
        right: 3%;
    }
}

@media (max-width: 480px) {
    .playlist-area,
    .collection-area {
        width: 48%;
        height: 7%;
        top: 58%;
    }
    
    .playlist-area {
        left: 2%;
    }
    
    .collection-area {
        right: 2%;
    }
}