body {
    background-image: url('../img/FONDOWEB.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #000;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
}

.main-wrapper {
    width: 100%;
    min-height: 100vh;
    background-image: url('../img/FONDOWEB.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.logo-img {
    width: 350px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 187, 0.3));
    animation: float 6s ease-in-out infinite;
}

.player-frame {
    border: none;
    height: 265px;
    width: 200px;
}

.metadata-container {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.song-name {
    color: #00ffbb;
    font-size: 1.1rem;
    font-weight: 600;
    width: 60%;
    text-shadow: 0 0 8px rgba(0, 255, 187, 0.4);
}


.store-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.store-links a {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    gap: 15px;
    text-align: left;
}

.store-links a img {
    width: 65px;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-links a .store-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.store-links a .store-subtitle {
    font-size: 0.7rem;
    color: #00ffbb;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.store-links a:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px #00ffbb);
}

.store-links a:hover .store-title {
    color: #00ffbb;
    text-shadow: 0 0 10px rgba(0, 255, 187, 0.8);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a img {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}

.social-links a:hover img {
    transform: translateY(-8px) scale(1.1);
    filter: drop-shadow(0 0 12px #00ffbb);
}

.footer-img {
    width: 450px;
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
    transition: filter 0.3s ease;
}

.footer-img:hover {
    filter: drop-shadow(0 0 8px rgba(0, 255, 187, 0.4));
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Estilos personalizados para Tooltips de Bootstrap */
.tooltip-inner {
    background-color: #000 !important;
    color: #00ffbb !important;
    border: 1px solid #00ffbb;
    box-shadow: 0 0 10px rgba(0, 255, 187, 0.5);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #00ffbb !important;
}

@media (max-width: 768px) {
    .logo-img {
        width: 220px;
    }

    .store-links {
        gap: 15px;
        flex-wrap: nowrap;
    }

    .store-links a {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .store-links a img {
        width: 40px;
    }

    .store-text {
        align-items: center;
    }

    .social-links a img {
        width: 35px;
    }

    .footer-img {
        width: 250px;
    }
}