        /* Responsive Design */
        @media (max-width: 1024px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
                order: 2;
            }
            
            .main-content {
                order: 1;
            }
        }

        @media (max-width: 768px) {
            .header {
                max-width: 90vw;
                min-height: 255px;
                background-size: 90vw auto;
            }
            
            .header h1 {
                font-size: calc(90vw * 0.055); /* Larger ratio to maintain visual proportion */
                margin: 0; /* Remove margins for centered layout */
            }
            
            /* Tagline already hidden by 1162px rule */
            
            .nav-tabs {
                gap: 2px;
            }
            
            .nav-tab {
                min-width: calc(50% - 1px);
                padding: 10px 12px;
                font-size: 0.85em;
                gap: 6px;
            }
            
            .nav-tab img {
                width: 14px;
                height: 14px;
            }
            
            .container {
                padding: 10px;
            }
            
            .main-content {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: calc(95vw * 0.053); /* Larger ratio to maintain visual proportion */
                margin: 0; /* Remove margins for centered layout */
            }
            
            /* Tagline already hidden by 1162px rule */
            
            .nav-tab {
                min-width: calc(50% - 1px);
                padding: 8px 8px;
                font-size: 0.75em;
                gap: 4px;
            }
            
            .nav-tab span {
                font-size: 0.9em;
            }
            
            .welcome-section h2 {
                font-size: 18px;
            }
        }

        @media (max-width: 360px) {
            /* Further scale down header logo for very small screens */
            .header h1 {
                font-size: calc(100vw * 0.05); /* Maintain visual proportion even on tiny screens */
                margin: 0; /* Remove margins for centered layout */
            }
            
            /* Tagline already hidden by 1162px rule */

            .nav-tab span {
                display: none;
            }
            
            .nav-tab {
                padding: 10px 8px;
                justify-content: center;
            }
        }
        @media (max-width: 1023px){
            .music-icons .fa-brands {
          font-size: 30px;         /* Tamaño (ajustable) */
          gap: 20px;
        }
        }

@media (max-width: 1200px) {
.desktop-only {
display: none;
}

.mobile-only {
display: block;
text-align: center;
margin-top: 15px;
}
}

@media (max-width: 768px) {
    .header {
        max-width: 90vw;
        height: calc(90vw * 255 / 1162);
        min-height: auto;
        background-size: 90vw calc(90vw * 255 / 1162);
        background-position: center bottom;
        background-repeat: no-repeat;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

.mobile-only img {
width: auto;
max-width: 100%;
height: auto;
image-rendering: pixelated; /* mantiene el estilo retro si es pixelart */
transition: transform 0.3s ease, filter 0.3s ease;
}

.mobile-only img:hover {
transform: scale(1.1);
filter: invert(1);
}
.music-icons .fa-brands {
font-size: 34px;         /* Tamaño (ajustable) */
}
.music-icons{
gap: 20px;
}

}

@media (max-width: 480px) {
    .header {
        max-width: 95vw;
        height: calc(95vw * 255 / 1162);
        min-height: auto;
        background-size: 95vw calc(95vw * 255 / 1162);
        background-position: center bottom;
        background-repeat: no-repeat;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
}

@media (max-width: 390px) {
    .music-icons .fa-brands {
        font-size: 24px;
    }
}

/* Fix background gradient scrolling on mobile */
@media (max-width: 768px) {
    body {
        background-attachment: scroll, scroll !important;
        background-size: 100% 100%, auto !important;
    }
}

/* Add smooth transitions for header elements */
.header {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header h1 {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header .tagline {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1162px) {
    .header {
        max-width: 100vw;
        height: calc(100vw * 255 / 1162);
        min-height: auto;
        background-size: 100vw calc(100vw * 255 / 1162);
        background-position: center bottom;
        background-repeat: no-repeat;
        padding-bottom: 0px;
        margin-bottom: 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* Scale logo to maintain same visual proportion within header */
    .header h1 {
        font-size: calc(100vw * 0.05); /* Larger ratio to maintain visual size */
    }
    
    /* Hide tagline on smaller screens with smooth transition */
    .header .tagline {
        opacity: 0;
        transform: translateY(-10px);
        display: none;
    }
}
