        /* ============================================
           COMMUNITY PAGE - ESTILOS ADICIONALES
           ============================================ */
        
        .community-hero {
            padding: 80px 0 40px;
            text-align: center;
        }
        
        .community-hero-content {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .community-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(245, 166, 35, 0.1);
            border: 1px solid rgba(245, 166, 35, 0.3);
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            color: #F5A623;
            margin-bottom: 20px;
        }
        
        .community-badge svg {
            width: 18px;
            height: 18px;
        }
        
        .community-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .community-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }
        
        /* Tabs */
        .community-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            padding: 0 16px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .community-tab {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .community-tab svg {
            width: 18px;
            height: 18px;
            opacity: 0.7;
        }
        
        .community-tab:hover {
            background: rgba(255, 255, 255, 0.10);
            color: rgba(255, 255, 255, 0.9);
        }
        
        .community-tab.active {
            background: rgba(245, 166, 35, 0.15);
            border-color: rgba(245, 166, 35, 0.4);
            color: #F5A623;
        }
        
        .community-tab.active svg {
            opacity: 1;
        }
        
        /* Section */
        .community-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px 100px;
        }
        
        /* ============================================
           SONGS GRID - DESKTOP
           ============================================ */
        .community-songs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 20px;
        }
        
        /* Song Card - Desktop */
        .community-song-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .community-song-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.12);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .community-song-cover-wrapper {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
        }
        
        .community-song-cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .community-song-card:hover .community-song-cover {
            transform: scale(1.05);
        }
        
        .community-song-rank {
            position: absolute;
            top: 10px;
            left: 10px;
            min-width: 28px;
            height: 28px;
            padding: 0 8px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            color: #F5A623;
        }
        
        .community-song-play {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #6366F1, #8B5CF6);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
            transition: all 0.2s ease;
            opacity: 0;
            transform: scale(0.9);
        }
        
        .community-song-card:hover .community-song-play,
        .community-song-play.playing {
            opacity: 1;
            transform: scale(1);
        }
        
        .community-song-play:active {
            transform: scale(0.95);
        }
        
        .community-song-play svg {
            width: 20px;
            height: 20px;
            color: #fff;
        }
        
        .community-song-play .icon-pause {
            display: none;
        }
        
        .community-song-play.playing .icon-play {
            display: none;
        }
        
        .community-song-play.playing .icon-pause {
            display: block;
        }
        
        .community-song-info {
            padding: 14px;
        }
        
        .community-song-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .community-song-tags {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 12px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .community-song-author {
            font-size: 0.75rem;
            color: rgba(167, 139, 250, 1);
            margin-top: 4px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            cursor: pointer;
            padding: 2px 8px 2px 4px;
            border-radius: 12px;
            background: rgba(139, 92, 246, 0.1);
            transition: all 0.2s ease;
            width: fit-content;
        }
        
        .community-song-author:hover {
            background: rgba(139, 92, 246, 0.2);
            color: rgba(139, 92, 246, 1);
        }
        
        .community-song-author svg {
            width: 12px;
            height: 12px;
        }
        
        .community-song-stats {
            display: flex;
            align-items: center;
            gap: 8px;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.10);
        }
        
        .community-song-stat {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
        }
        
        .community-song-stat svg {
            width: 14px;
            height: 14px;
        }
        
        .community-song-like-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.75rem;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-left: auto;
        }
        
        .community-song-like-btn:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        
        .community-song-like-btn.liked {
            background: rgba(245, 166, 35, 0.15);
            border-color: rgba(245, 166, 35, 0.3);
            color: #F5A623;
        }
        
        .community-song-like-btn.liked svg {
            fill: #F5A623;
        }
        
        .community-song-like-btn svg {
            width: 14px;
            height: 14px;
        }
        
        @keyframes likePopIn {
            0% { transform: scale(1); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }
        
        .community-song-like-btn.liked svg {
            animation: likePopIn 0.3s ease;
        }
        
        /* ============================================
           BARRA DE PROGRESO
           ============================================ */
        .community-progress-container {
            display: none;
            align-items: center;
            gap: 10px;
            width: 100%;
            padding-top: 12px;
            margin-top: 8px;
            border-top: 1px solid rgba(255, 255, 255, 0.10);
        }
        
        .community-progress-container.active {
            display: flex;
        }
        
        .community-progress-bar {
            flex: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
            touch-action: none;
        }
        
        .community-progress-bar:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        
        .community-progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #6366F1, #8B5CF6);
            border-radius: 3px;
            transition: width 0.05s linear;
            position: relative;
        }
        
        .community-progress-thumb {
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(99, 102, 241, 0.3);
            cursor: grab;
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }
        
        .community-progress-thumb:hover {
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(99, 102, 241, 0.4);
        }
        
        .community-progress-thumb:active,
        .community-progress-thumb.dragging {
            cursor: grabbing;
            transform: translateY(-50%) scale(1.2);
        }
        
        .community-time-display {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            font-variant-numeric: tabular-nums;
            min-width: 36px;
            text-align: right;
        }
        
        /* ============================================
           MODAL DE COMPARTIR
           ============================================ */
        .share-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }
        
        .share-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .share-modal-content {
            background: linear-gradient(145deg, #1a1a2e 0%, #16162a 100%);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 32px;
            max-width: 420px;
            width: 100%;
            position: relative;
            transform: scale(0.9) translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .share-modal-overlay.active .share-modal-content {
            transform: scale(1) translateY(0);
        }
        
        .share-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.5rem;
            transition: all 0.2s ease;
        }
        
        .share-modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }
        
        .share-modal-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #fff;
        }
        
        .share-song-title {
            font-size: 0.95rem;
            color: #F5A623;
            margin-bottom: 24px;
        }
        
        .share-buttons-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }
        
        .share-btn-large {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 16px 8px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            color: #fff;
        }
        
        .share-btn-large:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .share-btn-large:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        .share-btn-large.loading {
            position: relative;
        }
        
        .share-btn-large.loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .share-btn-large svg {
            width: 28px;
            height: 28px;
        }
        
        .share-btn-large span {
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        /* Colores específicos para cada plataforma */
        .share-btn-large[data-platform="tiktok"]:hover {
            background: rgba(0, 0, 0, 0.8);
            border-color: #ff0050;
        }
        
        .share-btn-large[data-platform="whatsapp"]:hover {
            background: rgba(37, 211, 102, 0.2);
            border-color: #25d366;
        }
        
        .share-btn-large[data-platform="x"]:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
        }
        
        .share-btn-large[data-platform="facebook"]:hover {
            background: rgba(24, 119, 242, 0.2);
            border-color: #1877f2;
        }
        
        .share-btn-large[data-platform="telegram"]:hover {
            background: rgba(0, 136, 204, 0.2);
            border-color: #0088cc;
        }
        
        .share-btn-large[data-platform="email"]:hover {
            background: rgba(234, 67, 53, 0.2);
            border-color: #ea4335;
        }
        
        .share-btn-large[data-platform="copy"]:hover {
            background: rgba(99, 102, 241, 0.2);
            border-color: #6366f1;
        }
        
        @media (max-width: 480px) {
            .share-modal-content {
                padding: 24px 20px;
            }
            
            .share-buttons-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
            
            .share-btn-large {
                padding: 14px 6px;
            }
            
            .share-btn-large svg {
                width: 24px;
                height: 24px;
            }
            
            .share-btn-large span {
                font-size: 0.7rem;
            }
        }
        
        /* Botón compartir en card desktop */
        .community-song-share-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.2s ease;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.75rem;
            margin-left: auto;
        }
        
        .community-song-share-btn:hover {
            background: rgba(99, 102, 241, 0.15);
            border-color: rgba(99, 102, 241, 0.3);
            color: #8B5CF6;
        }
        
        .community-song-share-btn svg {
            width: 14px;
            height: 14px;
        }
        
        /* Notificación toast */
        .toast-notification {
            position: fixed;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: rgba(30, 30, 40, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 14px 24px;
            color: #fff;
            font-size: 0.9rem;
            z-index: 10001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .toast-notification.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        
        .toast-notification.success {
            border-color: rgba(34, 197, 94, 0.3);
        }
        
        .toast-notification.error {
            border-color: rgba(239, 68, 68, 0.3);
        }
        
        /* ============================================
           MOBILE - Cards tipo lista compacta
           ============================================ */
        @media (max-width: 640px) {
            .community-hero {
                padding: 60px 0 20px;
            }
            
            .community-title {
                font-size: 1.75rem;
            }
            
            .community-subtitle {
                font-size: 0.95rem;
            }
            
            .community-tabs {
                gap: 6px;
                margin-bottom: 24px;
            }
            
            .community-tab {
                padding: 10px 14px;
                font-size: 0.8rem;
            }
            
            .community-tab svg {
                width: 16px;
                height: 16px;
            }
            
            .community-songs-grid {
                display: flex;
                flex-direction: column;
                gap: 8px;
            }
            
            /* Card móvil - layout vertical */
            .community-song-card {
                display: flex;
                flex-direction: column;
                border-radius: 12px;
                padding: 12px;
                gap: 0;
            }
            
            .community-song-card:hover {
                transform: none;
            }
            
            /* Fila superior: cover + info en horizontal */
            .community-song-card > .community-song-cover-wrapper,
            .community-song-card > .community-song-info {
                display: inline;
            }
            
            .community-song-card {
                display: grid;
                grid-template-columns: 52px 1fr;
                grid-template-rows: auto auto auto;
                column-gap: 12px;
                row-gap: 0;
                border: 1px solid rgba(255, 255, 255, 0.15);
            }
            
            .community-song-cover-wrapper {
                grid-column: 1;
                grid-row: 1 / 3;
                width: 52px;
                height: 52px;
                min-width: 52px;
                aspect-ratio: 1;
                border-radius: 8px;
                align-self: start;
            }
            
            .community-song-rank {
                top: 2px;
                left: 2px;
                min-width: 16px;
                height: 16px;
                font-size: 0.6rem;
                padding: 0 3px;
                border-radius: 4px;
            }
            
            /* Ocultar botón play en la imagen en móvil */
            .community-song-play {
                display: none;
            }
            
            .community-song-info {
                grid-column: 2;
                grid-row: 1 / 2;
                padding: 0;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                min-width: 0;
                gap: 2px;
            }
            
            .community-song-title {
                font-size: 0.9rem;
                font-weight: 600;
                margin-bottom: 0;
                white-space: normal;
                word-wrap: break-word;
                overflow-wrap: break-word;
                display: block;
                line-height: 1.3;
                max-height: none;
                overflow: visible;
            }
            
            .community-song-tags {
                font-size: 0.7rem;
                margin-bottom: 0;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            /* Stats desktop ocultos en móvil */
            .community-song-stats {
                display: none !important;
            }
            
            /* Progress container en móvil */
            .community-progress-container {
                display: none;
            }
            
            .community-progress-container.active {
                grid-column: 1 / 3;
                grid-row: 3;
                display: flex;
                margin-top: 10px;
                padding-top: 10px;
                border-top: 1px solid rgba(255, 255, 255, 0.10);
                gap: 8px;
            }
            
            .community-progress-bar {
                height: 4px;
            }
            
            .community-progress-thumb {
                width: 12px;
                height: 12px;
                right: -5px;
            }
            
            .community-time-display {
                font-size: 0.7rem;
                min-width: 28px;
            }
            
            /* Fila inferior con stats y botones */
            .mobile-bottom-row {
                grid-column: 2;
                grid-row: 2;
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-top: 6px;
            }
            
            /* Stats en móvil */
            .mobile-stats {
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 0.7rem;
                color: rgba(255,255,255,0.45);
            }
            
            .mobile-stats span {
                display: flex;
                align-items: center;
                gap: 3px;
            }
            
            .mobile-stats svg {
                width: 12px;
                height: 12px;
            }
            
            /* Botones de acción - estilo cuadrado */
            .mobile-actions {
                display: flex;
                align-items: center;
                gap: 6px;
            }
            
            .mobile-share-btn,
            .mobile-like-btn {
                width: 32px;
                height: 32px;
                min-width: 32px;
                background: rgba(255, 255, 255, 0.08);
                border: 1px solid rgba(255, 255, 255, 0.15);
                border-radius: 8px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.2s ease;
            }
            
            .mobile-share-btn svg,
            .mobile-like-btn svg {
                width: 14px;
                height: 14px;
                color: rgba(255, 255, 255, 0.5);
            }
            
            .mobile-share-btn:active {
                background: rgba(99, 102, 241, 0.15);
                border-color: rgba(99, 102, 241, 0.3);
            }
            
            .mobile-share-btn:active svg {
                color: #8B5CF6;
            }
            
            .mobile-like-btn.liked {
                background: rgba(245, 166, 35, 0.15);
                border-color: rgba(245, 166, 35, 0.3);
            }
            
            .mobile-like-btn.liked svg {
                color: #F5A623;
                fill: #F5A623;
            }
            
            .mobile-play-btn {
                width: 36px;
                height: 36px;
                min-width: 36px;
                background: linear-gradient(135deg, #6366F1, #8B5CF6);
                border: none;
                border-radius: 10px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
            }
            
            .mobile-play-btn svg {
                width: 14px;
                height: 14px;
                color: #fff;
                margin-left: 2px;
            }
            
            .mobile-play-btn .icon-pause {
                display: none;
                margin-left: 0;
            }
            
            .mobile-play-btn.playing .icon-play {
                display: none;
            }
            
            .mobile-play-btn.playing .icon-pause {
                display: block;
            }
        }
        
        /* Ocultar elementos móviles en desktop */
        .mobile-play-btn,
        .mobile-like-btn,
        .mobile-share-btn,
        .mobile-stats,
        .mobile-actions,
        .mobile-bottom-row {
            display: none;
        }
        
        /* Banner CTA móvil */
        .mobile-hero-banner {
            display: none;
        }
        
        @media (max-width: 640px) {
            .mobile-play-btn,
            .mobile-like-btn,
            .mobile-share-btn,
            .mobile-stats,
            .mobile-actions,
            .mobile-bottom-row {
                display: flex;
            }
            
            .mobile-hero-banner {
                display: block;
                position: relative;
                margin: 0;
                overflow: hidden;
                height: 100px;
            }
            
            .mobile-hero-banner img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                filter: brightness(0.5);
            }
            
            .mobile-hero-banner-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(135deg, rgba(99, 102, 241, 0.5) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(245, 166, 35, 0.3) 100%);
                display: flex;
                align-items: center;
                justify-content: flex-end;
                padding: 12px 20px;
            }
            
            .mobile-hero-banner-cta {
                display: flex;
                align-items: center;
                gap: 6px;
                padding: 8px 14px;
                background: linear-gradient(135deg, #F5A623 0%, #FFC857 100%);
                border-radius: 8px;
                color: #1a1a1a;
                font-size: 0.75rem;
                font-weight: 700;
                text-decoration: none;
                box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
                transition: all 0.2s ease;
            }
            
            .mobile-hero-banner-cta:active {
                transform: scale(0.95);
            }
            
            .mobile-hero-banner-cta svg {
                width: 14px;
                height: 14px;
            }
            
            /* Notas flotantes */
            .mobile-hero-banner .floating-note {
                position: absolute;
                color: rgba(255, 255, 255, 0.25);
                animation: floatNote 3s ease-in-out infinite;
            }
            
            .mobile-hero-banner .floating-note-1 {
                top: 14px;
                left: 16px;
                width: 16px;
                height: 16px;
                animation-delay: 0s;
            }
            
            .mobile-hero-banner .floating-note-2 {
                top: 40px;
                right: 20px;
                width: 12px;
                height: 12px;
                animation-delay: 1s;
            }
            
            .mobile-hero-banner .floating-note-3 {
                top: 30px;
                left: 50px;
                width: 14px;
                height: 14px;
                animation-delay: 2s;
            }
            
            @keyframes floatNote {
                0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.25; }
                50% { transform: translateY(-6px) rotate(10deg); opacity: 0.5; }
            }
            
            /* Barra sticky volver */
            .mobile-back-bar {
                display: block;
                position: sticky;
                top: 56px;
                z-index: 90;
                background: rgba(10, 10, 15, 0.95);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(255, 255, 255, 0.10);
            }
            
            .mobile-back-bar-inner {
                padding: 0;
            }
            
            .mobile-back-bar a {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                padding: 12px 20px;
                color: rgba(255, 255, 255, 0.6);
                font-size: 0.85rem;
                font-weight: 500;
                text-decoration: none;
                transition: all 0.2s ease;
            }
            
            .mobile-back-bar a:active {
                background: rgba(255, 255, 255, 0.08);
                color: #fff;
            }
            
            .mobile-back-bar svg {
                width: 16px;
                height: 16px;
            }
        }
        
        /* Barra sticky volver - Desktop */
        .mobile-back-bar {
            display: block !important;
            position: sticky !important;
            top: 60px !important;
            z-index: 90 !important;
            background: rgba(10, 10, 15, 0.85) !important;
            backdrop-filter: blur(10px) !important;
        }
        
        .mobile-back-bar-inner {
            max-width: 1280px !important;
            margin: 0 auto !important;
            padding: 0 24px !important;
        }
        
        .mobile-back-bar a {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: flex-start !important;
            gap: 6px !important;
            padding: 10px 0 !important;
            color: rgba(255, 255, 255, 0.5) !important;
            font-size: 0.8rem !important;
            font-weight: 500 !important;
            text-decoration: none !important;
            transition: all 0.2s ease !important;
        }
        
        .mobile-back-bar a:hover {
            color: rgba(255, 255, 255, 0.8) !important;
        }
        
        .mobile-back-bar svg {
            width: 14px !important;
            height: 14px !important;
        }
        
        @media (max-width: 768px) {
            .mobile-back-bar-inner {
                padding: 0 !important;
            }
            
            .mobile-back-bar a {
                justify-content: center !important;
                padding: 12px 20px !important;
            }
        }
        
        /* ============================================
           PAGINATION
           ============================================ */
        .community-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 40px;
        }
        
        .pagination-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 24px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            color: #fff;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .pagination-btn:hover:not(:disabled) {
            background: rgba(255, 255, 255, 0.12);
        }
        
        .pagination-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        .pagination-btn svg {
            width: 18px;
            height: 18px;
        }
        
        .pagination-info {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            min-width: 120px;
            text-align: center;
        }
        
        @media (max-width: 640px) {
            .community-pagination {
                gap: 10px;
                margin-top: 24px;
            }
            
            .pagination-btn {
                padding: 12px 16px;
                font-size: 0.85rem;
            }
            
            .pagination-info {
                font-size: 0.8rem;
                min-width: 80px;
            }
        }
        
        /* ============================================
           LOADING & EMPTY
           ============================================ */
        .community-loading {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 80px 20px;
            gap: 16px;
        }
        
        .community-loading .mini-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(255, 255, 255, 0.15);
            border-top-color: #F5A623;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .community-loading span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        .community-empty {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 80px 20px;
            text-align: center;
        }
        
        .community-empty svg {
            width: 64px;
            height: 64px;
            color: rgba(255, 255, 255, 0.15);
            margin-bottom: 20px;
        }
        
        .community-empty h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }
        
        .community-empty p {
            color: rgba(255, 255, 255, 0.6);
            max-width: 300px;
        }
        
        /* ===========================================
           LOGO DESKTOP - TAMAÑO AUMENTADO
           =========================================== */
        @media (min-width: 769px) {
            .logo {
                gap: 16px;
            }
            
            .logo-icon-wrapper {
                width: 56px;
                height: 56px;
            }
            
            .logo-text {
                font-size: 2.25rem;
            }
            
            .logo-pulse {
                inset: -8px;
            }
        }
        
        /* Hidden */
        .hidden {
            display: none !important;
        }
        
        /* User Menu Dropdown */
        .user-menu {
            position: relative;
        }
        
        .user-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .user-btn:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        
        .user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .user-name {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .user-btn svg {
            width: 16px;
            height: 16px;
            color: rgba(255, 255, 255, 0.6);
            transition: transform 0.2s ease;
        }
        
        .user-menu.open .user-btn svg {
            transform: rotate(180deg);
        }
        
        .user-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 200px;
            background: rgba(20, 20, 25, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            z-index: 1000;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(20px);
        }
        
        .user-menu.open .user-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .user-info {
            padding: 10px 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            margin-bottom: 8px;
        }
        
        .user-email {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }
        
        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            padding: 10px 12px;
            background: transparent;
            border: none;
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.15s ease;
        }
        
        .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        
        .dropdown-item svg {
            width: 18px;
            height: 18px;
        }
        
        /* ===========================================
           FOOTER STYLES
           =========================================== */
        .footer {
            padding: 60px 24px 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.10);
            background: rgba(10, 10, 15, 0.5);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 60px;
        }
        
        .footer-brand {
            flex: 0 0 280px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            margin-bottom: 16px;
        }
        
        .footer-logo-icon {
            width: 40px;
            height: 40px;
        }
        
        .footer-logo span {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #6366F1, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .footer-tagline {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }
        
        .footer-seo-text {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
            margin-top: 12px;
            max-width: 300px;
        }
        
        .footer-links {
            flex: 1;
            display: flex;
            gap: 40px;
            justify-content: space-between;
        }
        
        .footer-section h4 {
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .footer-section a {
            display: block;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            padding: 6px 0;
            transition: color 0.2s ease;
        }
        
        .footer-section a:hover {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 8px;
        }
        
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.2s ease;
        }
        
        .footer-social a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        
        .footer-social svg {
            width: 18px;
            height: 18px;
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 32px;
            margin-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.10);
            text-align: center;
        }
        
        .footer-bottom p {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Footer móvil */
        @media (max-width: 768px) {
            .footer {
                padding: 40px 16px 24px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 32px;
            }
            
            .footer-brand {
                flex: none;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .footer-tagline {
                text-align: center;
            }
            
            .footer-seo-text {
                display: none;
            }
            
            .footer-links {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
                width: 100%;
            }
            
            .footer-section {
                text-align: center;
            }
            
            .footer-section h4 {
                font-size: 0.8rem;
                margin-bottom: 12px;
            }
            
            .footer-section a {
                font-size: 0.8rem;
                padding: 6px 0;
            }
            
            .footer-social {
                justify-content: center;
                margin-top: 8px;
            }
            
            .footer-bottom {
                padding-top: 24px;
                padding-bottom: env(safe-area-inset-bottom, 16px);
            }
            
            .footer-bottom p {
                font-size: 0.7rem;
            }
        }
        
        @media (max-width: 380px) {
            .footer-links {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        /* Modal Perfil de Usuario */
        .user-profile-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .user-profile-modal.active {
            display: flex;
            opacity: 1;
        }
        
        .user-profile-content {
            background: #0a0a0f;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            width: 100%;
            max-width: 600px;
            max-height: 80vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .user-profile-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.2s;
            z-index: 10;
        }
        
        .user-profile-close:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }
        
        .user-profile-close svg {
            width: 20px;
            height: 20px;
        }
        
        .user-profile-header {
            padding: 32px 24px 24px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .user-profile-avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }
        
        .user-profile-avatar svg {
            width: 36px;
            height: 36px;
            color: rgba(139, 92, 246, 0.8);
        }
        
        .user-profile-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
        }
        
        .user-profile-stats-row {
            display: flex;
            gap: 20px;
            justify-content: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 16px;
        }
        
        .user-profile-stats-row strong {
            color: rgba(139, 92, 246, 0.9);
        }
        
        .user-song-count {
            color: rgba(139, 92, 246, 0.9);
            font-weight: 600;
        }
        
        .user-profile-follow-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: rgba(139, 92, 246, 0.2);
            border: 1px solid rgba(139, 92, 246, 0.4);
            border-radius: 24px;
            color: rgba(139, 92, 246, 1);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .user-profile-follow-btn:hover {
            background: rgba(139, 92, 246, 0.3);
            transform: scale(1.02);
        }
        
        .user-profile-follow-btn svg {
            width: 18px;
            height: 18px;
        }
        
        .user-profile-follow-btn .icon-following {
            display: none;
        }
        
        .user-profile-follow-btn.following {
            background: rgba(139, 92, 246, 0.4);
            border-color: rgba(139, 92, 246, 0.6);
        }
        
        .user-profile-follow-btn.following .icon-follow {
            display: none;
        }
        
        .user-profile-follow-btn.following .icon-following {
            display: block;
        }
        
        .user-profile-follow-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .user-profile-follow-btn.hidden {
            display: none;
        }
        
        /* Songs container */
        .user-profile-songs {
            flex: 1;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .user-profile-loading,
        .user-profile-empty {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
            color: rgba(255, 255, 255, 0.5);
            gap: 12px;
        }
        
        .user-profile-loading .spinner {
            width: 24px;
            height: 24px;
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-top-color: rgba(139, 92, 246, 0.9);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        
        .user-profile-empty {
            display: none;
        }
        
        .user-profile-songs-grid {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 16px;
            max-height: 400px;
            overflow-y: auto;
        }
        
        /* Card de canción - Layout horizontal */
        .user-profile-song {
            display: flex;
            flex-direction: column;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            transition: all 0.2s;
        }
        
        .user-profile-song:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.15);
        }
        
        /* Fila principal: [Cover] [Info] [Play] */
        .user-profile-song-row {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 100%;
        }
        
        .user-profile-song-cover {
            width: 48px;
            height: 48px;
            min-width: 48px;
            flex-shrink: 0;
            border-radius: 8px;
            object-fit: cover;
        }
        
        .user-profile-song-info {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .user-profile-song-title {
            font-size: 0.9rem;
            font-weight: 500;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .user-profile-song-meta {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 2px;
        }
        
        .user-profile-song-play {
            width: 40px;
            height: 40px;
            min-width: 40px;
            flex-shrink: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, #6366F1, #8B5CF6);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: all 0.2s;
            box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
        }
        
        .user-profile-song-play:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
        }
        
        .user-profile-song-play svg {
            width: 16px;
            height: 16px;
        }
        
        .user-profile-song-play .icon-play {
            margin-left: 2px;
        }
        
        .user-profile-song-play .icon-pause {
            display: none;
        }
        
        .user-profile-song-play.playing .icon-play {
            display: none;
        }
        
        .user-profile-song-play.playing .icon-pause {
            display: block;
        }
        
        /* Barra de progreso */
        .user-profile-song-progress {
            display: none;
            align-items: center;
            gap: 10px;
            padding-top: 12px;
            margin-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            width: 100%;
        }
        
        .user-profile-song-progress.active {
            display: flex;
        }
        
        .user-profile-progress-bar {
            flex: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
            touch-action: none;
        }
        
        .user-profile-progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #6366F1, #8B5CF6);
            border-radius: 3px;
            transition: width 0.05s linear;
            position: relative;
        }
        
        .user-profile-progress-thumb {
            position: absolute;
            right: -7px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(99, 102, 241, 0.3);
            cursor: grab;
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }
        
        .user-profile-progress-thumb:hover {
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(99, 102, 241, 0.4);
        }
        
        .user-profile-progress-thumb:active,
        .user-profile-progress-thumb.dragging {
            cursor: grabbing;
            transform: translateY(-50%) scale(1.2);
        }
        
        .user-profile-time {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            font-variant-numeric: tabular-nums;
            min-width: 36px;
            text-align: right;
            flex-shrink: 0;
        }
        .following-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(139, 92, 246, 0.15);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 24px;
            color: rgba(167, 139, 250, 1);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .following-btn:hover {
            background: rgba(139, 92, 246, 0.25);
            border-color: rgba(139, 92, 246, 0.5);
        }
        
        .following-btn svg {
            width: 18px;
            height: 18px;
        }
        
        
        /* Modal Siguiendo */
        .following-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .following-modal.active {
            display: flex;
            opacity: 1;
        }
        
        .following-content {
            background: #0a0a0f;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            width: 100%;
            max-width: 500px;
            max-height: 70vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .following-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.2s;
            z-index: 10;
        }
        
        .following-close:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }
        
        .following-close svg {
            width: 20px;
            height: 20px;
        }
        
        .following-header {
            padding: 24px 24px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .following-header h2 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
        }
        
        .following-count {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }
        
        .following-count span:first-child {
            color: rgba(139, 92, 246, 0.9);
            font-weight: 600;
        }
        
        .following-list {
            flex: 1;
            overflow-y: auto;
            padding: 16px;
        }
        
        .following-loading,
        .following-empty {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
            color: rgba(255, 255, 255, 0.5);
            gap: 12px;
        }
        
        .following-loading .spinner {
            width: 24px;
            height: 24px;
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-top-color: rgba(139, 92, 246, 0.9);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        
        .following-empty {
            display: none;
        }
        
        .following-grid {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .following-user {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .following-user:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.15);
        }
        
        .following-user-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .following-user-avatar svg {
            width: 24px;
            height: 24px;
            color: rgba(139, 92, 246, 0.8);
        }
        
        .following-user-info {
            flex: 1;
            min-width: 0;
        }
        
        .following-user-name {
            font-size: 0.95rem;
            font-weight: 500;
            color: #fff;
        }
        
        .following-user-stats {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 2px;
        }
        
        .following-user-btn {
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .following-user-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        /* ============================================
           FLOATING CTA - MOBILE
           ============================================ */
        .floating-create-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            left: auto;
            transform: none;
            z-index: 100;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #F5A623 0%, #FFC857 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
            transition: box-shadow 0.3s ease;
        }
        
        .floating-create-btn:hover {
            box-shadow: 0 6px 30px rgba(245, 166, 35, 0.5);
        }
        
        .floating-create-btn:active {
            transform: none;
        }
        
        .floating-create-btn .floating-icon-note {
            position: absolute;
            width: 28px;
            height: 28px;
            color: #1a1a1a;
            opacity: 0.9;
        }
        
        .floating-create-btn .floating-icon-plus {
            position: absolute;
            width: 16px;
            height: 16px;
            color: #1a1a1a;
            top: 8px;
            right: 8px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            padding: 2px;
        }
        
        @media (min-width: 769px) {
            .floating-create-btn {
                display: none;
            }
        }
        
        /* ============================================
           FLOATING CTA - DESKTOP
           ============================================ */
        .floating-create-btn-desktop {
            display: none;
        }
        
        @media (min-width: 769px) {
            .floating-create-btn-desktop {
                position: fixed;
                bottom: 32px;
                right: 32px;
                z-index: 100;
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 14px 24px;
                background: linear-gradient(135deg, #F5A623 0%, #FFC857 100%);
                border-radius: 50px;
                text-decoration: none;
                color: #1a1a1a;
                font-size: 0.95rem;
                font-weight: 600;
                box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
                transition: all 0.3s ease;
            }
            
            .floating-create-btn-desktop:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
            }
            
            .floating-create-btn-desktop:active {
                transform: translateY(0);
            }
            
            .floating-create-btn-desktop svg {
                width: 22px;
                height: 22px;
            }
        }
        /* Progress bar en modal de perfil */
        .user-profile-song-progress {
            display: none;
            grid-column: 1 / -1;
            grid-row: 2;
            align-items: center;
            gap: 10px;
            padding-top: 12px;
            margin-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .user-profile-song-progress.active {
            display: flex;
        }
        
        .user-profile-progress-bar {
            flex: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
        }
        
        .user-profile-progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #6366F1, #8B5CF6);
            border-radius: 3px;
            transition: width 0.05s linear;
            position: relative;
        }
        
        .user-profile-progress-thumb {
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(99, 102, 241, 0.3);
            cursor: grab;
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }
        
        .user-profile-progress-thumb:hover {
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(99, 102, 241, 0.4);
        }
        
        .user-profile-progress-thumb:active,
        .user-profile-progress-thumb.dragging {
            cursor: grabbing;
            transform: translateY(-50%) scale(1.2);
        }
        
        .user-profile-time {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            font-variant-numeric: tabular-nums;
            min-width: 36px;
            text-align: right;
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
