/* ============ ANIMACIONES ============ */
@keyframes zoomIn {
    from {
        background-size: 100%;
    }
    to {
        background-size: 120%;
    }
}

@keyframes slideX {
    from {
        background-position: 0 center;
    }
    to {
        background-position: 100px center;
    }
}

@keyframes slideY {
    from {
        background-position: center 0;
    }
    to {
        background-position: center 100px;
    }
}

/* ============ BODY Y GENERAL ============ */
body {
    min-height: 100vh;
    background: url("assets/bg.png") no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    animation: zoomIn 8s ease-in-out infinite alternate;
}

/* ============ BOTONES ============ */
.btn {
    border-radius: 50px;
    font-weight: 700;
}

/* ============ SECCIONES ============ */
.section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-heading::after {
    content: "";
    flex: 1;
    height: 8px;
    border-radius: 50px;
    background-color: black;
}

/* ============ MODAL ============ */
.modal-article-title {
    font-weight: 800;
}

.modal-content {
    background-color: #00ff00;
    width: 100%;
    padding: 10px;
    max-width: 900px;
    border-radius: 15px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: modalOpen var(--player-duration) ease;
}

/* ============ PLAYER ============ */
.player {
    --container-width: 1250px;
}

.player.is-static {
    position: static;
}

.player:not(.is-static) {
    --container-width: 1250px;
}

.player.is-static .player-desc .artist-name {
    background-color: #000;
    font-weight: 800;
    padding: 0.25rem 0.5rem;
}

.player-equalizer {
    border-radius: 0.5rem;
    overflow: hidden;
}

/* ============ VOLUME DROPDOWN ============ */
.volume-dropdown {
    position: absolute;
    left: 50%;
    bottom: 100%;
    padding: 0.75rem;
    border-radius: 9999px;
    background-color: #fbfbfb;
    transform: translate(-50%, 0);
    box-shadow: var(--box-shadow-high);
    transition: opacity var(--player-duration), transform var(--player-duration);
}

/* ============ SOCIAL ============ */
.social-item {
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 0.3rem;
    background-color: rgb(255 255 255);
    border-radius: 999px;
    color: black;
}

.social-item:hover {
    color: var(--player-primary);
    transform: scale(1.1);
}

/* ============ FOOTER ============ */
.footer {
    background-color: #00ff00;
    color: var(--player-footer-color);
}

/* ============ MOBILE MENU ============ */
.mobile-menu-list {
    font-size: 12px;
    font-weight: 600;
    gap: 12px;
}

/* ============ INSTALL BUTTONS ============ */
.install-buttons-wrapper {
    background-color: #3b3b3b;
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
}

.install-botton .install-button {
    align-items: center;
    gap: var(--button-gap, 0.5rem);
    padding: var(--button-padding, 0.75rem);
    text-transform: capitalize;
    transition: transform 0.3s ease;
    white-space: nowrap;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    --btn-bg: #fff;
    --btn-color: #ffffff;
}

.install-botton .install-button:hover {
    transform: scale(1.1);
}

/* OPCIÓN 1: Más alto */
#facebook-container {
    height: 450px;
    margin: 20px 0;
}