        /* ===========================================
           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;
            }
        }
        .pricing-btn:disabled {
          opacity: 0.45;
          cursor: not-allowed;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 12px;
            overflow: hidden;
        }
        .faq-question {
            width: 100%;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            border: none;
            cursor: pointer;
            text-align: left;
        }
        .faq-question h3 {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-primary);
            margin: 0;
        }
        .faq-question svg {
            width: 20px;
            height: 20px;
            color: var(--text-secondary);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 16px;
        }
        .faq-question[aria-expanded="true"] svg {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-answer.open {
            max-height: 300px;
        }
        .faq-answer p {
            padding: 0 24px 20px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }
        
        /* Genres Section */
        .genres-section {
            padding: 60px 0;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        .genres-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            max-width: 900px;
            margin: 0 auto;
        }
        .genre-tag {
            padding: 8px 16px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 20px;
            font-size: 0.875rem;
            color: var(--text-secondary);
            transition: all 0.2s ease;
        }
        .genre-tag:hover {
            background: rgba(99, 102, 241, 0.2);
            color: var(--text-primary);
        }
        
        
        
        /* Modal large variant */
        .modal-content-large {
            max-width: 700px;
            max-height: 90vh;
            overflow-y: auto;
        }
        .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;
            transition: background 0.2s;
        }
        .modal-close:hover {
            background: rgba(255,255,255,0.2);
        }
        .modal-close svg {
            width: 18px;
            height: 18px;
            color: var(--text-secondary);
        }
        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 24px 0;
            text-align: left;
        }
        .use-case-item h4 {
            font-size: 1rem;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .use-case-item p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin: 0;
        }
        @media (max-width: 600px) {
            .use-cases-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* ===========================================
           PRIVACY CHECKBOX
           =========================================== */
        
        .privacy-option {
            margin-top: 16px;
            margin-bottom: 8px;
        }
        
        .privacy-checkbox {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            padding: 10px 14px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 10px;
            transition: all 0.2s ease;
        }
        
        .privacy-checkbox:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.12);
        }
        
        .privacy-checkbox input {
            display: none;
        }
        
        .privacy-checkmark {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }
        
        .privacy-checkmark svg {
            width: 12px;
            height: 12px;
            color: #1a1a1a;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.2s ease;
        }
        
        .privacy-checkbox input:checked + .privacy-checkmark {
            background: var(--gold-1, #F5A623);
            border-color: var(--gold-1, #F5A623);
        }
        
        .privacy-checkbox input:checked + .privacy-checkmark svg {
            opacity: 1;
            transform: scale(1);
        }
        
        .privacy-label {
            font-size: 0.875rem;
            color: var(--text-secondary);
            transition: color 0.2s ease;
        }
        
        .privacy-checkbox:hover .privacy-label {
            color: var(--text-primary);
        }
        
        .privacy-tooltip {
            display: flex;
            align-items: center;
            margin-left: 4px;
        }
        
        .privacy-tooltip svg {
            width: 16px;
            height: 16px;
            color: var(--text-muted);
            cursor: help;
            transition: color 0.2s ease;
        }
        
        .privacy-tooltip:hover svg {
            color: var(--text-secondary);
        }
        
        /* ===========================================
           RECENT SONGS - LIKES & PLAYS
           =========================================== */
        
        .recent-song-stats {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 8px;
        }
        
        .recent-song-stat {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        
        .recent-song-stat svg {
            width: 14px;
            height: 14px;
        }
        
        .recent-song-like-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 6px 10px;
            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;
            font-size: 0.75rem;
            color: var(--text-secondary);
        }
        
        .recent-song-like-btn svg {
            width: 16px;
            height: 16px;
            transition: all 0.2s ease;
        }
        
        .recent-song-like-btn:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.15);
        }
        
        .recent-song-like-btn.liked {
            background: rgba(245, 166, 35, 0.15);
            border-color: rgba(245, 166, 35, 0.3);
            color: var(--gold-1, #F5A623);
        }
        
        .recent-song-like-btn.liked svg {
            fill: var(--gold-1, #F5A623);
            color: var(--gold-1, #F5A623);
        }
        
        .recent-song-like-btn:active {
            transform: scale(0.95);
        }
        
        /* Like animation */
        @keyframes likePopIn {
            0% { transform: scale(1); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }
        
        .recent-song-like-btn.liked svg {
            animation: likePopIn 0.3s ease;
        }
        
        /* Plays icon */
        .recent-song-plays {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        
        .recent-song-plays svg {
            width: 14px;
            height: 14px;
        }
        
        /* Ajustar layout de la card para incluir stats */
        .recent-song-card {
            position: relative;
        }
        
        .recent-song-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.10);
        }
        
        .recent-song-actions .recent-song-plays {
            margin-left: auto;
        }
        
        /* ===========================================
           EXPLORE COMMUNITY SECTION
           =========================================== */
        
        .explore-community-section {
            padding: 60px 20px;
            background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%);
        }
        
        .explore-community-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .explore-community-content {
            text-align: center;
            padding: 48px 32px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 24px;
        }
        
        .explore-community-icon-wrapper {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
            background: rgba(245, 166, 35, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .explore-community-icon-wrapper svg {
            width: 32px;
            height: 32px;
            color: #F5A623;
        }
        
        .explore-community-content h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #fff;
        }
        
        .explore-community-content p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 28px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .explore-community-btn-large {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #F5A623 0%, #F7B731 40%, #FFC857 100%);
            color: #1a1a1a;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
        }
        
        .explore-community-btn-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(245, 166, 35, 0.4);
        }
        
        .explore-community-btn-large:active {
            transform: translateY(-1px);
        }
        
        .explore-community-btn-large svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }
        
        .explore-community-btn-large:hover svg {
            transform: translateX(4px);
        }
        
        @media (max-width: 640px) {
            .explore-community-section {
                padding: 40px 16px;
            }
            
            .explore-community-content {
                padding: 32px 20px;
                border: 1px solid rgba(245, 166, 35, 0.35);
            }
            
            .explore-community-content h2 {
                font-size: 1.5rem;
            }
            
            .explore-community-btn-large {
                width: 100%;
                justify-content: center;
            }
        }

        /* ===========================================
           COOKIE CONSENT BANNER
           =========================================== */
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            padding: 16px;
            transform: translateY(100%);
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
            pointer-events: none;
        }
        
        .cookie-banner.visible {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }
        
        .cookie-banner-content {
            max-width: 1000px;
            margin: 0 auto;
            background: rgba(15, 15, 20, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);
        }
        
        .cookie-banner-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), rgba(255, 200, 87, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .cookie-banner-icon svg {
            width: 28px;
            height: 28px;
            color: #F5A623;
        }
        
        .cookie-banner-text {
            flex: 1;
        }
        
        .cookie-banner-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 4px 0;
        }
        
        .cookie-banner-text p {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }
        
        .cookie-banner-text a {
            color: var(--accent-1);
            text-decoration: none;
        }
        
        .cookie-banner-text a:hover {
            text-decoration: underline;
        }
        
        .cookie-banner-actions {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
        }
        
        .cookie-btn-settings {
            background: rgba(255, 255, 255, 0.12);
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .cookie-btn-settings:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        .cookie-btn-secondary {
            background: rgba(255, 255, 255, 0.12);
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .cookie-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        
        .cookie-btn-accept {
            background: linear-gradient(135deg, #F5A623 0%, #F7B84B 100%);
            color: #000;
        }
        
        .cookie-btn-accept:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
        }
        
        /* Cookie Settings Modal */
        .modal-content-cookies {
            max-width: 520px;
        }
        
        .cookie-settings-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 24px;
            text-align: center;
        }
        
        .cookie-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }
        
        .cookie-option {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 12px;
        }
        
        .cookie-option-info {
            flex: 1;
        }
        
        .cookie-option-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px;
        }
        
        .cookie-option-name {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.9375rem;
        }
        
        .cookie-badge {
            font-size: 0.7rem;
            padding: 3px 8px;
            border-radius: 6px;
            font-weight: 500;
        }
        
        .cookie-badge-required {
            background: rgba(245, 166, 35, 0.15);
            color: #F5A623;
        }
        
        .cookie-badge-optional {
            background: rgba(99, 102, 241, 0.15);
            color: #818cf8;
        }
        
        .cookie-badge-payment {
            background: rgba(245, 166, 35, 0.15);
            color: #F5A623;
        }
        
        .cookie-option-desc {
            font-size: 0.8125rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin: 0;
        }
        
        /* Toggle switch */
        .cookie-toggle {
            position: relative;
            flex-shrink: 0;
            width: 48px;
            height: 26px;
            cursor: pointer;
        }
        
        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .cookie-toggle-slider {
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 26px;
            transition: all 0.3s ease;
        }
        
        .cookie-toggle-slider::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            left: 3px;
            bottom: 3px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }
        
        .cookie-toggle input:checked + .cookie-toggle-slider {
            background: linear-gradient(135deg, #F5A623, #F7B84B);
        }
        
        .cookie-toggle input:checked + .cookie-toggle-slider::before {
            transform: translateX(22px);
        }
        
        .cookie-toggle-disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .cookie-settings-footer {
            display: flex;
            gap: 12px;
            justify-content: flex-end;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .cookie-banner-content {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }
            
            .cookie-banner-icon {
                display: none;
            }
            
            .cookie-banner-actions {
                width: 100%;
                flex-direction: column;
            }
            
            .cookie-btn {
                width: 100%;
                padding: 12px;
            }
            
            .cookie-settings-footer {
                flex-direction: column;
            }
            
            .cookie-settings-footer .cookie-btn {
                width: 100%;
            }
            
            /* Modal de cookies compacto con scroll completo */
            .modal-content-cookies {
                max-width: calc(100vw - 24px);
                width: 100%;
                max-height: calc(100vh - 48px);
                overflow-y: auto;
                padding: 20px;
                margin: 24px 12px;
            }
            
            .modal-content-cookies .modal-close {
                top: 10px;
                right: 10px;
                width: 28px;
                height: 28px;
            }
            
            .modal-content-cookies .modal-icon {
                width: 44px;
                height: 44px;
                margin-bottom: 10px;
            }
            
            .modal-content-cookies .modal-icon svg {
                width: 22px;
                height: 22px;
            }
            
            .modal-content-cookies .modal-title {
                font-size: 1.05rem;
                margin-bottom: 6px;
            }
            
            .modal-content-cookies .cookie-settings-desc {
                font-size: 0.8rem;
                margin-bottom: 14px;
                line-height: 1.4;
            }
            
            .modal-content-cookies .cookie-options {
                gap: 8px;
                margin-bottom: 14px;
            }
            
            .modal-content-cookies .cookie-option {
                padding: 10px 12px;
                gap: 10px;
            }
            
            .modal-content-cookies .cookie-option-header {
                flex-wrap: wrap;
                gap: 6px;
                margin-bottom: 3px;
            }
            
            .modal-content-cookies .cookie-option-name {
                font-size: 0.8rem;
            }
            
            .modal-content-cookies .cookie-badge {
                font-size: 0.6rem;
                padding: 2px 5px;
            }
            
            .modal-content-cookies .cookie-option-desc {
                font-size: 0.7rem;
                line-height: 1.35;
            }
            
            .modal-content-cookies .cookie-toggle {
                width: 40px;
                height: 22px;
                flex-shrink: 0;
            }
            
            .modal-content-cookies .cookie-toggle-slider::before {
                width: 16px;
                height: 16px;
            }
            
            .modal-content-cookies .cookie-toggle input:checked + .cookie-toggle-slider::before {
                transform: translateX(18px);
            }
            
            .modal-content-cookies .cookie-settings-footer {
                gap: 8px;
                margin-top: 4px;
            }
            
            .modal-content-cookies .cookie-settings-footer .cookie-btn {
                padding: 10px 14px;
                font-size: 0.8rem;
            }
        }
        
        /* Main layout base styles */
        .main-layout {
            display: flex;
            flex-direction: column;
        }
        
        .generator-column,
        .songs-column {
            width: 100%;
        }
        
        /* Songs placeholder (when not logged in) - hidden by default on mobile */
        .songs-placeholder {
            display: none;
        }
        
        /* ===========================================
           DESKTOP TWO-COLUMN LAYOUT
           =========================================== */
        
        @media (min-width: 1200px) {
            .main-layout {
                display: flex;
                flex-direction: row;
                gap: 48px;
                align-items: flex-start;
            }
            
            .generator-column {
                flex: 0 0 540px;
                max-width: 540px;
                position: sticky;
                top: 100px;
            }
            
            .songs-column {
                flex: 1;
                min-width: 0;
            }
            
            /* Placeholder visible solo en desktop cuando no logueado */
            .songs-placeholder {
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 450px;
                background: rgba(255,255,255,0.05);
                border: 1px dashed rgba(255,255,255,0.15);
                border-radius: 20px;
            }
            
            .songs-placeholder.hidden {
                display: none;
            }
            
            .placeholder-content {
                text-align: center;
                padding: 40px;
                max-width: 300px;
            }
            
            .placeholder-icon {
                width: 64px;
                height: 64px;
                margin: 0 auto 20px;
                opacity: 0.3;
            }
            
            .placeholder-icon svg {
                width: 100%;
                height: 100%;
                stroke: currentColor;
            }
            
            .placeholder-content h3 {
                font-size: 1.25rem;
                font-weight: 600;
                margin-bottom: 12px;
                color: var(--text-primary);
            }
            
            .placeholder-content p {
                font-size: 0.875rem;
                color: var(--text-secondary);
                line-height: 1.5;
                margin-bottom: 24px;
            }
            
            .placeholder-btn {
                display: inline-block;
                padding: 12px 24px;
                background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
                color: white;
                font-weight: 500;
                border-radius: 12px;
                text-decoration: none;
                transition: transform 0.2s, box-shadow 0.2s;
            }
            
            .placeholder-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
            }
            
            /* Ajustar my-songs para columna */
            .songs-column .my-songs-section {
                margin-top: 0;
                padding-top: 0;
                border-top: none;
            }
            
            .songs-column .my-songs-header {
                position: sticky;
                top: 0;
                background: var(--bg-card, rgba(255,255,255,0.05));
                border: 1px solid var(--border-subtle, rgba(255,255,255,0.10));
                border-radius: var(--radius-xl, 16px);
                padding: 6px;
                margin-bottom: 24px;
                z-index: 10;
            }
            
            .songs-column .my-songs-title-wrapper {
                flex: 1;
                padding: 10px 14px;
            }
            
            .songs-column .my-songs-header h2 {
                font-size: 0.9375rem;
            }
            
            .songs-column .my-songs-icon-wrapper {
                width: 32px;
                height: 32px;
            }
            
            .songs-column .my-songs-icon {
                width: 18px;
                height: 18px;
            }
            
            .songs-column .btn-refresh {
                width: 36px;
                height: 36px;
                margin: 4px;
            }
            
            .songs-column .my-songs-list {
                max-height: calc(100vh - 220px);
                overflow-y: auto;
                padding-right: 8px;
            }
            
            /* Scrollbar estilizado */
            .songs-column .my-songs-list::-webkit-scrollbar {
                width: 6px;
            }
            
            .songs-column .my-songs-list::-webkit-scrollbar-track {
                background: rgba(255,255,255,0.05);
                border-radius: 3px;
            }
            
            .songs-column .my-songs-list::-webkit-scrollbar-thumb {
                background: rgba(255,255,255,0.15);
                border-radius: 3px;
            }
            
            .songs-column .my-songs-list::-webkit-scrollbar-thumb:hover {
                background: rgba(255,255,255,0.2);
            }
            
            /* Empty state más visual */
            .songs-column .my-songs-empty {
                min-height: 300px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            
            .songs-column .my-songs-empty svg {
                width: 64px;
                height: 64px;
                opacity: 0.3;
                margin-bottom: 16px;
            }
            
            /* Status y results dentro del generador */
            .status-section,
            .results-section {
                margin-top: 24px;
            }
        }
        
        /* ===========================================
           MINI PROGRESS BAR - MIS CANCIONES
           =========================================== */
        
        .song-card-mini {
            flex-wrap: wrap;
        }
        
        .mini-progress-container {
            display: none;
            align-items: center;
            gap: 10px;
            width: 100%;
            padding-top: 12px;
            margin-top: 4px;
            border-top: 1px solid rgba(255, 255, 255, 0.10);
        }
        
        .mini-progress-container.active {
            display: flex;
        }
        
        .mini-progress-bar {
            flex: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
            touch-action: none;
        }
        
        .mini-progress-bar:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        
        .mini-progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--accent-1, #6366F1), var(--accent-2, #8B5CF6));
            border-radius: 3px;
            transition: width 0.05s linear;
            position: relative;
        }
        
        /* Thumb/puntito de la barra de progreso */
        .mini-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;
        }
        
        .mini-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);
        }
        
        .mini-progress-thumb:active,
        .mini-progress-thumb.dragging {
            cursor: grabbing;
            transform: translateY(-50%) scale(1.2);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(99, 102, 241, 0.5);
        }
        
        .mini-time-display {
            font-size: 0.75rem;
            color: var(--text-muted, #6b7280);
            font-variant-numeric: tabular-nums;
            min-width: 36px;
            text-align: right;
        }
        
        /* Ajuste de song-card-mini cuando está reproduciendo */
        .song-card-mini.playing {
            border-color: rgba(99, 102, 241, 0.3);
            background: rgba(99, 102, 241, 0.05);
        }
        
        /* ===========================================
           SONG-CARD-MINI - Estilos base y móvil
           =========================================== */
        .song-card-mini {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 12px;
            margin-bottom: 8px;
            transition: all 0.2s ease;
            flex-wrap: wrap;
        }
        
        .song-card-mini:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.15);
        }
        
        .song-cover-mini {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
        
        .song-info-mini {
            flex: 1;
            min-width: 0;
        }
        
        .song-title-mini {
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 2px;
        }
        
        .song-tags-mini {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .song-actions-mini {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .btn-mini {
            width: 36px;
            height: 36px;
            min-width: 36px;
            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;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .btn-mini:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        
        .btn-mini svg {
            width: 16px;
            height: 16px;
        }
        
        .btn-play-mini {
            background: linear-gradient(135deg, #6366F1, #8B5CF6);
            border: none;
            color: #fff;
        }
        
        .btn-play-mini:hover {
            background: linear-gradient(135deg, #7c7ff4, #9d78f7);
        }
        
        .btn-play-mini .icon-pause {
            display: none;
        }
        
        .btn-play-mini.playing .icon-play {
            display: none;
        }
        
        .btn-play-mini.playing .icon-pause {
            display: block;
        }
        
        .btn-delete:hover {
            background: rgba(239, 68, 68, 0.15);
            border-color: rgba(239, 68, 68, 0.3);
            color: #ef4444;
        }
        .btn-download-mini {
            text-decoration: none;
        }
        
        .btn-download-mini:hover {
            background: rgba(34, 197, 94, 0.15);
            border-color: rgba(34, 197, 94, 0.3);
            color: #22c55e;
        }
        
        /* MÓVIL: Reestructurar song-card-mini */
        @media (max-width: 640px) {
            .song-card-mini {
                display: grid;
                grid-template-columns: 52px 1fr;
                grid-template-rows: auto auto auto;
                column-gap: 12px;
                row-gap: 0;
                padding: 12px;
                align-items: start;
                border: 1px solid rgba(255, 255, 255, 0.15);
            }
            
            .form-card {
                border: 1px solid rgba(255, 255, 255, 0.15);
            }
            
            .tabs {
                border: 1px solid rgba(255, 255, 255, 0.15);
            }
            
            .song-cover-mini {
                grid-column: 1;
                grid-row: 1 / 3;
                width: 52px;
                height: 52px;
            }
            
            .song-info-mini {
                grid-column: 2;
                grid-row: 1;
            }
            
            .song-title-mini {
                white-space: normal;
                word-wrap: break-word;
                overflow-wrap: break-word;
                display: block;
                line-height: 1.3;
            }
            
            .song-actions-mini {
                grid-column: 2;
                grid-row: 2;
                justify-content: flex-end;
                margin-top: 8px;
                gap: 12px;
            }
            
            .btn-mini {
                width: 32px;
                height: 32px;
                min-width: 32px;
            }
            
            .btn-mini svg {
                width: 14px;
                height: 14px;
            }
            
            .btn-play-mini {
                width: 36px;
                height: 36px;
                min-width: 36px;
                border-radius: 10px;
            }
            
            .btn-play-mini svg {
                width: 14px;
                height: 14px;
                margin-left: 2px;
            }
            
            .mini-progress-container {
                grid-column: 1 / 3;
                grid-row: 3;
                margin-top: 10px;
                padding-top: 10px;
            }
            
            .mini-progress-bar {
                height: 4px;
            }
            
            .mini-progress-thumb {
                width: 12px;
                height: 12px;
                right: -5px;
            }
            
            .mini-time-display {
                font-size: 0.7rem;
                min-width: 28px;
            }
        }
        
        /* Botón crear cuenta: más pequeño y púrpura */
        .btn-signup {
            background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%) !important;
            padding: 8px 14px !important;
            font-size: 0.8rem !important;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3) !important;
        }
        
        .btn-signup:hover {
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4) !important;
        }
        
        @media (min-width: 1400px) {
            .main-layout {
                gap: 64px;
            }
            
            .generator-column {
                flex: 0 0 580px;
                max-width: 580px;
            }
        }
        
        /* Entre 1200 y 1400, ajustar proporciones */
        @media (min-width: 1200px) and (max-width: 1400px) {
            .generator-column {
                flex: 0 0 480px;
                max-width: 480px;
            }
        }
        
        /* ===========================================
           CUSTOM SELECT DROPDOWN
           =========================================== */
        
        .custom-select {
            position: relative;
            width: 100%;
        }
        
        .custom-select-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 16px;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid var(--border-medium, rgba(255,255,255,0.15));
            border-radius: var(--radius-md, 12px);
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: left;
        }
        
        .custom-select-icon {
            width: 18px;
            height: 18px;
            color: var(--accent-1, #818cf8);
            flex-shrink: 0;
        }
        
        .custom-select-trigger:hover {
            border-color: rgba(255, 255, 255, 0.15);
            background: rgba(0, 0, 0, 0.5);
        }
        
        .custom-select.open .custom-select-trigger {
            border-color: var(--accent-1, #818cf8);
            background: rgba(0, 0, 0, 0.6);
        }
        
        .custom-select-value {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-primary, #fff);
        }
        
        .custom-select-desc {
            font-size: 0.8rem;
            color: var(--text-secondary, #9ca3af);
            margin-left: auto;
        }
        
        .custom-select-arrow {
            width: 18px;
            height: 18px;
            color: var(--text-muted, #6b7280);
            transition: transform 0.2s ease;
            flex-shrink: 0;
        }
        
        .custom-select.open .custom-select-arrow {
            transform: rotate(180deg);
        }
        
        .custom-select-dropdown {
            position: fixed;
            top: 0;
            left: 0;
            width: max-content;
            min-width: 250px;
            background: rgba(20, 20, 30, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-md, 12px);
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
            z-index: 1000;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            max-height: 280px;
            overflow-y: auto;
        }
        
        .custom-select.open .custom-select-dropdown,
        .custom-select-dropdown.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .custom-select-option {
            position: relative;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.15s ease;
        }
        
        .custom-select-option:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        
        .custom-select-option.selected {
            background: rgba(99, 102, 241, 0.15);
        }
        
        .custom-select-option.selected .option-name {
            color: var(--accent-1, #818cf8);
        }
        
        .custom-select-option.selected::after {
            content: '';
            width: 18px;
            height: 18px;
            margin-left: auto;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23818cf8' stroke-width='2.5'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            flex-shrink: 0;
        }
        
        .option-name {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-primary, #fff);
        }
        
        .option-desc {
            font-size: 0.8rem;
            color: var(--text-secondary, #9ca3af);
            margin-left: auto;
        }
        
        .option-badge {
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            padding: 3px 8px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }
        
        .option-badge.new {
            background: rgba(34, 197, 94, 0.2);
            color: #4ade80;
        }
        
        /* Mobile adjustments */
        @media (max-width: 768px) {
            .custom-select-trigger {
                padding: 12px 14px;
                gap: 8px;
            }
            
            .custom-select-icon {
                width: 16px;
                height: 16px;
            }
            
            .custom-select-value {
                font-size: 0.9rem;
            }
            
            .custom-select-desc {
                font-size: 0.75rem;
            }
            
            .custom-select-dropdown {
                position: fixed;
                top: auto;
                bottom: 0;
                left: 0;
                right: 0;
                border-radius: 20px 20px 0 0;
                padding: 12px 12px calc(24px + env(safe-area-inset-bottom));
                max-height: 60vh;
                transform: translateY(100%);
                z-index: 1001;
            }
            
            /* Handle indicator */
            .custom-select-dropdown::before {
                content: '';
                display: block;
                width: 36px;
                height: 4px;
                background: rgba(255, 255, 255, 0.3);
                border-radius: 2px;
                margin: 0 auto 16px;
            }
            
            .custom-select.open .custom-select-dropdown,
            .custom-select-dropdown.open {
                transform: translateY(0);
            }
            
            /* Overlay backdrop */
            .custom-select.open::before {
                content: '';
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.6);
                z-index: 1000;
                animation: fadeIn 0.2s ease;
            }
            
            @keyframes fadeIn {
                from { opacity: 0; }
                to { opacity: 1; }
            }
            
            .custom-select-option {
                padding: 16px;
            }
            
            .option-name {
                font-size: 1rem;
            }
            
            .option-desc {
                font-size: 0.85rem;
            }
        }
        
        /* ===========================================
           RESULT CARDS & AUDIO PLAYER
           =========================================== */
        
        .result-card {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding: 20px;
            background: rgba(12, 12, 18, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle, rgba(255,255,255,0.10));
            border-radius: var(--radius-xl, 16px);
            margin-bottom: 16px;
            transition: all 0.2s ease;
        }
        
        .result-card:hover {
            border-color: rgba(99, 102, 241, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .result-cover-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            max-width: 200px;
            margin: 0 auto;
            border-radius: var(--radius-lg, 12px);
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        }
        
        .result-cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .result-cover-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
        }
        
        .result-content {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .result-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        
        .result-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary, #fff);
            margin: 0;
        }
        
        .result-duration {
            font-size: 0.8rem;
            color: var(--text-muted, #6b7280);
            background: rgba(255,255,255,0.08);
            padding: 4px 10px;
            border-radius: 20px;
            flex-shrink: 0;
        }
        
        .result-tags {
            font-size: 0.85rem;
            color: var(--text-secondary, #9ca3af);
            line-height: 1.4;
            margin: 0;
        }
        
        /* Audio Player */
        .audio-player {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: rgba(0,0,0,0.3);
            border-radius: var(--radius-md, 12px);
        }
        
        .play-btn {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }
        
        .play-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
        }
        
        .play-btn:active {
            transform: scale(0.98);
        }
        
        .play-btn svg {
            width: 20px;
            height: 20px;
            color: white;
        }
        
        .play-btn .icon-pause {
            display: none;
        }
        
        .play-btn.playing .icon-play {
            display: none;
        }
        
        .play-btn.playing .icon-pause {
            display: block;
        }
        
        .progress-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
        }
        
        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(255,255,255,0.15);
            border-radius: 3px;
            cursor: pointer;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #6366F1, #8B5CF6);
            border-radius: 3px;
            transition: width 0.1s linear;
        }
        
        .time-display {
            font-size: 0.75rem;
            color: var(--text-muted, #6b7280);
            font-variant-numeric: tabular-nums;
        }
        
        /* Result Actions */
        .result-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .result-actions .btn-action {
            flex: 1;
            min-width: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 16px;
            background: rgba(255,255,255,0.08);
            border: 1px solid var(--border-medium, rgba(255,255,255,0.15));
            border-radius: var(--radius-md, 12px);
            color: var(--text-secondary, #9ca3af);
            font-size: 0.85rem;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .result-actions .btn-action:hover {
            background: rgba(255,255,255,0.15);
            color: var(--text-primary, #fff);
            border-color: rgba(255,255,255,0.2);
        }
        
        .result-actions .btn-action svg {
            width: 18px;
            height: 18px;
        }
        
        .btn-download:hover {
            background: rgba(34, 197, 94, 0.15);
            border-color: rgba(34, 197, 94, 0.3);
            color: #4ade80;
        }
        
        /* Share Container */
        .share-container {
            position: relative;
            flex: 1;
            min-width: 120px;
        }
        
        .share-container .btn-share {
            width: 100%;
        }
        
        .share-menu {
            position: absolute;
            bottom: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%) scale(0.95);
            background: rgba(20, 20, 30, 0.98);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: var(--radius-md, 12px);
            padding: 8px;
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
            z-index: 100;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }
        
        .share-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) scale(1);
        }
        
        .share-option {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 100%;
            padding: 10px 12px;
            background: transparent;
            border: none;
            border-radius: 8px;
            color: var(--text-secondary, #9ca3af);
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.15s ease;
            text-align: left;
        }
        
        .share-option:hover {
            background: rgba(255,255,255,0.12);
            color: var(--text-primary, #fff);
        }
        
        .share-option svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }
        
        /* Desktop layout for result cards */
        @media (min-width: 768px) {
            .result-card {
                flex-direction: row;
                align-items: center;
                gap: 24px;
            }
            
            .result-cover-wrapper {
                width: 120px;
                max-width: 120px;
                margin: 0;
            }
            
            .result-content {
                flex: 1;
                min-width: 0;
            }
            
            .result-actions {
                flex-wrap: nowrap;
            }
            
            .result-actions .btn-action {
                min-width: auto;
                flex: none;
                padding: 10px 14px;
            }
        }
        
        /* ===========================================
           TEXTAREA ACTION BUTTONS (Clear & Voice)
           =========================================== */
        
        .textarea-wrapper {
            position: relative;
        }
        
        .textarea-wrapper textarea {
            padding-right: 50px;
        }
        
        .btn-textarea-action {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            -webkit-tap-highlight-color: transparent;
            z-index: 5;
        }
        
        .btn-textarea-action svg {
            width: 14px;
            height: 14px;
            color: var(--text-secondary, #9ca3af);
        }
        
        .btn-textarea-action:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        .btn-textarea-action:hover svg {
            color: var(--text-primary, #fff);
        }
        
        .btn-textarea-action:active {
            transform: scale(0.95);
        }
        
        /* Clear button - arriba derecha */
        .btn-clear {
            top: 12px;
            right: 12px;
        }
        
        .btn-clear:hover {
            background: rgba(239, 68, 68, 0.15);
            border-color: rgba(239, 68, 68, 0.3);
        }
        
        .btn-clear:hover svg {
            color: #f87171;
        }
        
        /* Voice button - abajo derecha, solo móvil */
        .btn-voice {
            display: none;
            bottom: 12px;
            right: 12px;
        }
        
        .btn-voice .mic-active-icon {
            display: none;
        }
        
        @media (max-width: 768px) {
            /* Deshabilitar resize y forzar padding simétrico */
            .textarea-wrapper textarea {
                padding: 14px 60px 14px 16px;
                resize: none;
                margin: 0;
                display: block;
                box-sizing: border-box;
            }
            
            .btn-textarea-action {
                width: 36px;
                height: 36px;
                border-radius: 8px;
            }
            
            .btn-textarea-action svg {
                width: 18px;
                height: 18px;
            }
            
            .btn-clear {
                top: 12px;
                right: 12px;
            }
            
            .btn-voice {
                display: flex;
                top: calc(100% - 12px - 36px);
                bottom: auto;
                right: 12px;
                background: rgba(99, 102, 241, 0.12);
                border-color: rgba(99, 102, 241, 0.25);
            }
            
            .btn-voice svg {
                color: var(--accent-1, #818cf8);
            }
            
            .btn-voice.listening {
                background: rgba(34, 197, 94, 0.15);
                border-color: rgba(34, 197, 94, 0.4);
                animation: pulse-mic 1.5s ease-in-out infinite;
            }
            
            .btn-voice.listening .mic-icon {
                display: none;
            }
            
            .btn-voice.listening .mic-active-icon {
                display: block;
                color: #22c55e;
            }
            
            @keyframes pulse-mic {
                0%, 100% {
                    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
                }
                50% {
                    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
                }
            }
        }
        
        /* ===========================================
           MOBILE APP-LIKE STYLES
           =========================================== */
        
        @media (max-width: 768px) {
            /* Safe areas para notch y home indicator */
            html {
                padding-top: env(safe-area-inset-top);
                padding-bottom: env(safe-area-inset-bottom);
                padding-left: env(safe-area-inset-left);
                padding-right: env(safe-area-inset-right);
            }
            
            /* Ocultar decoraciones para rendimiento */
            .bg-aurora,
            .bg-orbs,
            .bg-grid {
                display: none;
            }
            
            /* Header tipo app bar */
            .header {
                padding: 12px 16px;
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                background: rgba(10, 10, 15, 0.85);
                position: sticky;
                top: 0;
                z-index: 100;
                border-bottom: 1px solid rgba(255,255,255,0.10);
            }
            
            .nav {
                padding: 0;
            }
            
            .logo-icon-wrapper {
                width: 44px;
                height: 44px;
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            /* Hero compacto sin imagen */
            .hero {
                padding: 24px 16px 32px;
                min-height: auto;
            }
            
            .hero-content {
                gap: 0;
            }
            
            .hero-visual {
                display: none;
            }
            
            .hero-text {
                text-align: center;
                padding: 0;
            }
            
            .hero-badge {
                margin: 0 auto 16px;
                font-size: 0.75rem;
                padding: 6px 12px;
            }
            
            .hero-title {
                font-size: 1.75rem;
                line-height: 1.2;
                margin-bottom: 12px;
            }
            
            .hero-subtitle {
                font-size: 0.9rem;
                margin-bottom: 20px;
                opacity: 0.8;
            }
            
            .hero-features {
                display: flex;
                justify-content: center;
                gap: 16px;
                flex-wrap: wrap;
            }
            
            .hero-feature {
                font-size: 0.75rem;
                gap: 4px;
            }
            
            .hero-feature svg {
                width: 14px;
                height: 14px;
            }
            
            /* Main content - más espacio */
            .main {
                padding: 24px 16px 40px;
            }
            
            /* Secciones con más espaciado */
            .how-it-works,
            .pricing,
            .faq-section,
            .genres-section {
                padding: 60px 16px;
            }
            
            .section-container {
                padding: 0;
            }
            
            .section-header {
                margin-bottom: 32px;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .section-subtitle {
                font-size: 0.875rem;
            }
            
            /* Cards con bordes más redondeados (app-like) */
            .form-card,
            .pricing-card,
            .step,
            .faq-item,
            .song-card,
            .status-card {
                border-radius: 20px;
            }
            
            /* Botones con touch feedback */
            .btn-submit,
            .btn-signup,
            .pricing-btn,
            .modal-btn,
            .tab {
                transition: transform 0.1s ease, opacity 0.1s ease;
                -webkit-tap-highlight-color: transparent;
            }
            
            .btn-submit:active,
            .btn-signup:active,
            .pricing-btn:active,
            .modal-btn:active,
            .tab:active {
                transform: scale(0.97);
                opacity: 0.9;
            }
            
            /* Inputs más grandes para touch */
            input, textarea, select {
                font-size: 16px !important; /* Evita zoom en iOS */
                min-height: 48px;
            }
            
            textarea {
                min-height: 100px;
            }
            
            
            
            /* Pricing cards stack */
            .pricing-grid {
                gap: 16px;
            }
            
            .pricing-card {
                padding: 24px 20px;
            }
            
            /* Steps horizontal scroll en móvil pequeño */
            .steps {
                gap: 16px;
            }
            
            .step {
                padding: 24px 20px;
            }
            
            .step h3 {
                font-size: 1rem;
            }
            
            .step p {
                font-size: 0.85rem;
            }
            
            /* FAQ más compacto */
            .faq-question {
                padding: 16px 20px;
            }
            
            .faq-question h3 {
                font-size: 0.9rem;
            }
            
            .faq-answer p {
                padding: 0 20px 16px;
                font-size: 0.85rem;
            }
            
            /* Genres más pequeños */
            .genre-tag {
                padding: 6px 12px;
                font-size: 0.75rem;
            }
            
            /* Modals full screen en móvil */
            .modal-content {
                margin: 16px;
                max-height: calc(100vh - 32px);
                border-radius: 24px;
            }
            
            .modal-content-large {
                margin: 0;
                max-width: 100%;
                max-height: 100%;
                border-radius: 0;
                height: 100%;
            }
            
            /* Animación de scroll suave */
            * {
                scroll-behavior: smooth;
            }
            
            /* Ocultar scrollbar pero mantener funcionalidad */
            .app {
                -webkit-overflow-scrolling: touch;
            }
            
            /* My songs section */
            .my-songs-section {
                margin-top: 32px;
            }
            
            /* Tabs más grandes para touch */
            .tabs {
                border-radius: 16px;
            }
            
            .tab {
                padding: 14px 20px;
                font-size: 0.875rem;
            }
        }
        
        /* Extra small devices */
        @media (max-width: 380px) {
            .hero-title {
                font-size: 1.5rem;
            }
            
            .hero-features {
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }
            
            .footer-links {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .pricing-toggle {
                flex-direction: column;
                gap: 8px;
            }
            
            .pricing-toggle-btn {
                width: 100%;
            }
        }
        
        /* User name - mostrar nombre completo en desktop, solo primer nombre en móvil */
        .user-name-short {
            display: none;
        }
        
        @media (max-width: 768px) {
            .user-name-full {
                display: none;
            }
            .user-name-short {
                display: inline;
            }
        }
        
        /* Barra Comunidad - Solo Desktop */
        .hero-visual {
            position: relative;
        }
        
        .desktop-community-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex !important;
            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: 600;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            z-index: 100;
        }
        
        .desktop-community-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
        }
        
        .desktop-community-btn svg {
            width: 14px;
            height: 14px;
        }
        
        .desktop-community-btn .arrow-icon {
            width: 12px;
            height: 12px;
            opacity: 0.7;
        }
        
        @media (max-width: 768px) {
            .desktop-community-btn {
                display: none;
            }
        }
        
        /* Banner Comunidad - Solo móvil */
        .mobile-community-banner {
            display: none;
        }
        
        @media (max-width: 768px) {
            .mobile-community-banner {
                display: block;
                position: relative;
                margin: 0;
                overflow: hidden;
                height: 100px;
            }
            
            .mobile-community-banner img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                filter: brightness(0.5);
            }
            
            .mobile-community-banner-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.3) 50%, rgba(245, 166, 35, 0.2) 100%);
                display: flex;
                align-items: center;
                justify-content: flex-end;
                padding: 12px 20px;
            }
            
            .mobile-community-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-community-banner-cta:active {
                transform: scale(0.95);
            }
            
            .mobile-community-banner-cta svg {
                width: 14px;
                height: 14px;
            }
        }
        
        /* Centrar pricing-grid cuando el usuario está logueado (3 cards) */
        #pricing-packs.logged-in {
            display: flex !important;
            flex-wrap: wrap !important;
            justify-content: center !important;
            gap: 24px !important;
        }
        
        /* Respetar hidden aunque tenga logged-in */
        #pricing-packs.logged-in.hidden {
            display: none !important;
        }
        
        /* Centrar suscripciones (siempre 3 cards en línea) */
        #pricing-subscription {
            display: flex !important;
            flex-wrap: nowrap !important;
            justify-content: center !important;
            gap: 24px !important;
        }
        
        #pricing-subscription .pricing-card {
            flex: 0 0 300px;
        }
        
        #pricing-subscription.hidden {
            display: none !important;
        }
        
        @media (max-width: 992px) {
            #pricing-subscription {
                flex-wrap: wrap !important;
            }
            #pricing-subscription .pricing-card {
                flex: 0 0 280px;
            }
        }
        /* ===========================================
           MY SONGS TABS
           =========================================== */
        
        .my-songs-tabs {
            display: flex;
            gap: 4px;
            flex: 1;
        }
        
        .my-songs-tab {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: transparent;
            border: none;
            border-radius: 10px;
            color: var(--text-secondary, #9ca3af);
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .my-songs-tab svg {
            width: 18px;
            height: 18px;
        }
        
        .my-songs-tab:hover {
            color: var(--text-primary, #fff);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .my-songs-tab.active {
            color: var(--text-primary, #fff);
            background: rgba(255, 255, 255, 0.12);
        }
        
        .my-songs-tab.active svg {
            color: var(--accent-1, #818cf8);
        }
        
        /* Contenido de tabs */
        .my-songs-content {
            display: none;
        }
        
        .my-songs-content.active {
            display: block;
        }
        
        /* Ajustar header para tabs */
        .my-songs-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 16px;
        }
        
        /* Mobile adjustments */
        @media (max-width: 640px) {
            .my-songs-tabs {
                gap: 2px;
            }
            
            .my-songs-tab {
                padding: 8px 12px;
                font-size: 0.8rem;
                gap: 6px;
                flex: 1;
                justify-content: center;
            }
            
            .my-songs-tab svg {
                width: 16px;
                height: 16px;
            }
            
            .my-songs-tab span {
                display: none;
            }
            
            .my-songs-tab.active span {
                display: inline;
            }
        }
        .btn-unfavorite {
            color: #f87171;
        }
        
        .btn-unfavorite:hover {
            background: rgba(248, 113, 113, 0.15);
            border-color: rgba(248, 113, 113, 0.3);
        }
        
        .btn-unfavorite svg {
            fill: #f87171;
            color: #f87171;
        }
/* ===========================================
   BOTONES DE COMPRA NO DISPONIBLES
   =========================================== */

.pricing-btn-unavailable {
    opacity: 0.45;
    cursor: not-allowed;
}
/* ============================================
   FOOTER STYLES (from community.html)
   ============================================ */
.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.7);
    line-height: 1.6;
}

.footer-seo-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin-top: 12px;
    max-width: 300px;
}

.footer-links {
    flex: 1;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.footer-section-title {
    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.6);
    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.65);
}

/* 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;
    }
}

/* ==========================================
   YOUTUBE MODAL STYLES
   ========================================== */

/* YouTube Copy Buttons */
.yt-copy-buttons {
    display: flex;
    gap: 10px;
    margin: 16px 0;
}

.modal-content .yt-copy-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 12px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.modal-content .yt-copy-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.modal-content .yt-copy-btn:active {
    transform: scale(0.98);
}

.modal-content .yt-copy-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
}

.modal-content .yt-copy-btn span {
    color: inherit;
}

@media (max-width: 480px) {
    .yt-copy-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .modal-content .yt-copy-btn {
        padding: 14px 16px;
        font-size: 14px;
    }
}
/* ===========================================
   REVIEWS SECTION
   =========================================== */

.reviews-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%);
}

.reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.reviews-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.reviews-average {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews-average-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.reviews-stars {
    display: flex;
    gap: 4px;
}

.reviews-stars svg {
    width: 24px;
    height: 24px;
    color: #F5A623;
    fill: #F5A623;
}

.reviews-stars svg.empty {
    fill: none;
    color: rgba(255, 255, 255, 0.3);
}

.reviews-stars svg.half {
    fill: url(#halfStarGradient);
}

.reviews-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: Carrusel horizontal */
@media (max-width: 640px) {
    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding: 0 16px 16px;
        margin: 0;
    }
    
    .reviews-grid::-webkit-scrollbar {
        display: none;
    }
    
    .reviews-grid .review-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 280px;
        max-width: 320px;
    }
    
    .reviews-section {
        padding: 60px 0;
    }
}

/* Indicadores del carrusel (solo móvil) */
.reviews-carousel-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

@media (max-width: 640px) {
    .reviews-carousel-dots {
        display: flex;
    }
}

.reviews-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-carousel-dot.active {
    background: #6366F1;
    width: 24px;
    border-radius: 4px;
}

/* Review Card */
.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-verified-badge {
    width: 16px;
    height: 16px;
    color: #22c55e;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating svg {
    width: 16px;
    height: 16px;
    color: #F5A623;
    fill: #F5A623;
}

.review-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.review-comment {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Write Review Button */
.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-write-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-write-review:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(99, 102, 241, 0.4);
}

.btn-write-review svg {
    width: 20px;
    height: 20px;
}

/* Reviews Empty State */
.reviews-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-secondary);
}

.reviews-empty svg {
    width: 64px;
    height: 64px;
    color: var(--text-muted);
    margin-bottom: 16px;
    opacity: 0.5;
}

.reviews-empty p {
    font-size: 1rem;
    margin-bottom: 8px;
}

.reviews-empty span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Review Modal */
.review-modal-content {
    max-width: 480px;
}

.review-rating-input {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 24px 0;
}

.review-rating-input button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: transform 0.15s ease;
}

.review-rating-input button:hover {
    transform: scale(1.2);
}

.review-rating-input button svg {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.3);
    fill: none;
    stroke-width: 1.5;
    transition: all 0.15s ease;
}

.review-rating-input button.active svg,
.review-rating-input button:hover svg {
    color: #F5A623;
    fill: #F5A623;
}

.review-form-group {
    margin-bottom: 16px;
}

.review-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.review-form-group input,
.review-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.review-form-group input:focus,
.review-form-group textarea:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.5);
}

.review-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.review-form-group .char-count {
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.review-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.review-form-actions button {
    flex: 1;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-review-cancel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
}

.btn-review-cancel:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-review-submit {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    border: none;
    color: white;
}

.btn-review-submit:hover {
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-review-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* User's existing review notice */
.review-existing-notice {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.review-existing-notice svg {
    width: 18px;
    height: 18px;
    color: #818cf8;
    flex-shrink: 0;
}

/* Delete review button */
.btn-delete-review {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 12px;
}

.btn-delete-review:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* TikTok Modal */
.tiktok-copy-buttons {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.tiktok-copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.tiktok-copy-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.tiktok-copy-btn svg {
    width: 18px;
    height: 18px;
}
/* Instagram Modal */
.instagram-copy-buttons {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.instagram-copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.instagram-copy-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.instagram-copy-btn svg {
    width: 18px;
    height: 18px;
}
