/* Aregue todo su codigo personalizado aquí */
.station-description {
    color: #fff;
    opacity: .9;
}

.station-img {
    border: 3px solid #ffffff00;
    padding: 0.15rem;
}

.player-artwork {
    padding: 0.75rem;
    border-radius: 1rem;
    background-color: #ffffff00;
}

.player-artwork img {
    border-radius: 0.65rem;
    box-shadow: var(--shadow-xl);
}

.player-cover-image {
    animation: bga 60s linear infinite;
}

@keyframes bga {
    50% {
        transform: scale(2)
    }
}

.items-start {
    align-items: flex-start;
    margin-top: 0px;
}

/* Sidebar Styles - Fixed Rayitas & Animations */
.mobile-menu {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(25px);
    width: 300px;
    height: 100%;
    position: fixed;
    right: -300px;
    top: 0;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex !important;
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu.is-active {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.sidebar-logo {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    object-fit: cover;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.9rem;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent, #fff);
}

/* Volume Slider Responsiveness fix */
.player-button-volume {
    position: relative;
    overflow: visible !important;
}

#player-volume {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 10px;
    bottom: 50px;
}

/* Header Layout */
.header-centered {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    position: relative;
}

.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 10;
}

.header-logo-img {
    height: 48px !important;
    width: auto !important;
    object-fit: contain;
}

.header-side-right {
    margin-left: auto;
}

/* Header Buttons & Menu */
.toggle-options {
    display: flex !important;
    gap: 0.8rem;
    align-items: center;
}

.btn-menu {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.btn-menu:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent, #e74c3c);
}

.btn-menu svg {
    width: 22px;
    height: 22px;
}

/* Modal and Menu Layering */
.modal-overlay {
    z-index: 999;
}

.mobile-menu {
    z-index: 1000 !important;
}

.modal {
    z-index: 1001 !important;
}

/* Social Icons Interactive Fix */
.player-social-item {
    width: 42px;
    /* Un poco mas grande */
    height: 42px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    margin: 6px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    pointer-events: auto !important;
    /* Asegurar clics */
    cursor: pointer !important;
}

.player-social-item:hover {
    background: var(--accent, #e74c3c);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 15px rgba(231, 76, 60, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.player-social-item svg {
    width: 20px;
    height: 20px;
}

/* Footer & Sidebar Brand */
.footer-copyright a {
    color: var(--accent, #e74c3c);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .header-logo-img {
        height: 40px !important;
    }
}

/* Social Items Styling */
.player-social-item {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    margin: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.player-social-item:hover {
    background: var(--accent, #e74c3c);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.player-social-item svg {
    width: 18px;
    height: 18px;
}

.footer-copyright a {
    color: var(--accent, #e74c3c);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-copyright a:hover {
    opacity: 0.8;
}