/* RESET Y BASE */
body {
    margin: 0;
    padding: 0;
    background-color: #050505;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: white;
    overflow-x: hidden; /* Permitimos scroll vertical para ver el copyright */
}

/* HEADER Y PERFIL */
.apple-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 80px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

.nav-menu {
    display: flex;
    gap: 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-item {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.4);
    padding: 10px 25px;
    border-radius: 40px;
    transition: 0.3s;
}

.nav-item.is-focused { background: white; color: black; transform: scale(1.1); }

/* PERFIL LADO DERECHO */
.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    object-fit: cover;
}

/* CONTENEDOR Y FILAS */
.main-container {
    padding-top: 160px;
    min-height: 100vh;
}

.apple-row {
    margin-bottom: 70px; /* Más espacio entre filas */
    width: 100%;
}

.row-title {
    font-size: 32px;
    margin-left: 80px;
    margin-bottom: 35px; /* MÁS DISTANCIA entre título y carátulas */
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.apple-grid {
    display: block;
    white-space: nowrap;
    padding-left: 80px;
    padding-right: 300px;
}

/* CARÁTULAS */
.poster {
    display: inline-block;
    width: 300px !important;
    height: 450px !important;
    margin-right: 40px;
    background-color: #1a1a1a;
    border-radius: 20px;
    vertical-align: top;
    transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1);
    border: 4px solid transparent;
    overflow: hidden;
}

.poster.is-focused {
    transform: scale(1.15);
    border-color: #ffa100;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
}

/* COPYRIGHT FOOTER */
.apple-footer {
    padding: 80px 80px 40px 80px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 50px;
}

.copyright-text {
    font-size: 18px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
}

.apple-video-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #000; z-index: 9999; }