
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Cormorant Garamond", "Playfair Display", serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            font-size: 16px;
        }

        .container {
            max-width: 1400px;
            margin: 50px auto;
            padding: 20px;
            background: var(--bg-secondary);
            border-radius: 16px;
            border: 2px solid var(--border-color);
            box-shadow: var(--shadow-medium);
        }

        /* ===== PROFESSIONAL NOTIFICATION SYSTEM ===== */
        .notification-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 10000;
            max-width: 350px;
        }

        .notification {
            background: var(--bg-secondary);
            border-radius: var(--border-radius);
            padding: 16px;
            margin-bottom: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-left: 4px solid var(--accent-primary);
            display: flex;
            align-items: center;
            gap: 12px;
            transform: translateX(400px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            overflow: hidden;
            font-size: 16px;
        }

        .notification.show {
            transform: translateX(0);
            opacity: 1;
        }

        .notification.hide {
            transform: translateX(400px);
            opacity: 0;
        }

        .notification.success {
            border-left-color: #28a745;
        }

        .notification.error {
            border-left-color: #dc3545;
        }

        .notification.warning {
            border-left-color: #ffc107;
        }

        .notification.info {
            border-left-color: #17a2b8;
        }

        .notification-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 16px;
        }

        .notification.success .notification-icon {
            background: #28a745;
            color: white;
        }

        .notification.error .notification-icon {
            background: #dc3545;
            color: white;
        }

        .notification.warning .notification-icon {
            background: #ffc107;
            color: #000;
        }

        .notification.info .notification-icon {
            background: #17a2b8;
            color: white;
        }

        .notification-content {
            flex: 1;
        }

        .notification-title {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .notification-message {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.4;
            font-weight: 500;
        }

        .notification-close {
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 4px;
            border-radius: 4px;
            transition: all 0.3s ease;
            flex-shrink: 0;
            font-size: 18px;
        }

        .notification-close:hover {
            background: rgba(255,255,255,0.1);
            color: var(--text-primary);
        }

        .notification-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: var(--accent-primary);
            width: 100%;
            transform: scaleX(1);
            transform-origin: left;
            transition: transform 5s linear;
        }

        .notification.success .notification-progress {
            background: #28a745;
        }

        /* ===== BACK LINK ===== */
        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
            padding: 10px 16px;
            background: var(--bg-primary);
            color: var(--accent-primary);
            text-decoration: none;
            border-radius: var(--border-radius);
            border: 1.5px solid var(--accent-primary);
            font-weight: 700;
            transition: all 0.3s ease;
            font-family: "Cormorant Garamond", serif;
            font-size: 18px;
        }

        .back-link:hover {
            background: var(--accent-primary);
            color: var(--bg-primary);
            transform: translateX(-5px);
        }

        /* ===== PROFILE HEADER ===== */
        .profile-header {
            background: var(--bg-secondary);
            padding: 30px;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            margin-bottom: 30px;
            box-shadow: var(--shadow-light);
        }

        .profile-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .user-avatar {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .avatar-img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--bg-primary);
            box-shadow: 0 0 0 2px var(--accent-primary);
        }

        .avatar-placeholder {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: var(--bg-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid var(--bg-primary);
            box-shadow: 0 0 0 2px var(--accent-primary);
            color: var(--accent-primary);
            font-size: 2rem;
        }

        .user-details h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .user-meta {
            color: var(--text-secondary);
            font-size: 18px;
            font-weight: 600;
        }

        .user-meta p {
            margin: 8px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .verified-badge {
            background: var(--accent-primary);
            color: var(--bg-primary);
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            margin-left: 8px;
        }

        /* ===== NUEVO: BADGE "FOLLOWS YOU" ===== */
        .follows-you-badge {
            background: var(--success-color, #28a745);
            color: white;
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 0.85rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
            margin-left: 10px;
            vertical-align: middle;
            animation: fadeIn 0.3s ease-out;
        }

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

        .profile-actions {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            background: var(--accent-primary);
            color: var(--bg-primary);
            text-decoration: none;
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
            font-weight: 700;
            font-size: 16px;
            border: none;
            cursor: pointer;
            font-family: "Cormorant Garamond", serif;
        }

        .btn:hover {
            background: var(--accent-secondary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .btn-secondary {
            background: rgba(201, 169, 110, 0.1);
            color: var(--accent-primary);
        }

        .btn-secondary:hover {
            background: rgba(201, 169, 110, 0.2);
        }

        .btn-info {
            background: #17a2b8;
            color: white;
        }

        .btn-info:hover {
            background: #138496;
        }

        .btn-success {
            background: #28a745;
            color: white;
        }

        .btn-success:hover {
            background: #218838;
        }

        /* ✅ NUEVO: Estilos para botones de bloqueo */
        .btn-danger {
            background: #dc3545;
            color: white;
            border: none;
        }

        .btn-danger:hover {
            background: #c82333;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
        }

        /* ===== NUEVO: BOTÓN MUTUAL FOLLOW (LILA) ===== */
        .btn-purple {
            background: linear-gradient(135deg, #8a2be2 0%, #9b30ff 100%);
            color: white;
            border: none;
            box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
        }

        .btn-purple:hover {
            background: linear-gradient(135deg, #7a1bd2 0%, #8b25e6 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
        }

        .btn-chat {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .btn-chat:hover {
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        /* ===== ✅ NUEVO: ESTILOS PARA BOTÓN DE SUSCRIPCIÓN ===== */
        .btn-warning {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #000;
            border: none;
            box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
        }

        .btn-warning:hover {
            background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
        }

        /* ===== ✅ NUEVO: BOTÓN RULES (MARRÓN) ===== */
        .btn-brown {
            background: #8B4513;
            color: white;
            border: none;
        }

        .btn-brown:hover {
            background: #A0522D;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
        }

        /* ===== ✅ NUEVO: BOTÓN SHARE CREATIONS (VERDE) ===== */
        .btn-share-creations {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            border: none;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }

        .btn-share-creations:hover {
            background: linear-gradient(135deg, #218838 0%, #1aa179 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
        }

        /* Badge para usuarios que ofrecen servicios */
        .pro-badge {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #000;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            margin-left: 8px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* ===== BIOGRAPHY ===== */
        .user-bio {
            background: var(--bg-primary);
            padding: 20px;
            border-radius: var(--border-radius);
            margin-top: 20px;
            border-left: 4px solid var(--accent-primary);
            box-shadow: var(--shadow-light);
            font-size: 18px;
            font-weight: 600;
            line-height: 1.5;
        }

        /* ===== SMALLER FOLLOWERS SECTION ===== */
        .followers-section {
            background: var(--bg-secondary);
            padding: 20px;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            margin-bottom: 30px;
            box-shadow: var(--shadow-light);
        }

        .section-title {
            margin-bottom: 16px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .followers-stats {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .follower-stat {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px;
            background: var(--bg-primary);
            border: 1.5px solid var(--accent-primary);
            border-radius: var(--border-radius);
            min-width: 120px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .follower-stat:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .follower-stat i {
            font-size: 1.2rem;
            color: var(--accent-primary);
        }

        .follower-info {
            display: flex;
            flex-direction: column;
        }

        .follower-count {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-primary);
        }

        .follower-label {
            font-size: 16px;
            color: var(--text-secondary);
            font-weight: 600;
        }

        /* ===== SMALLER STATISTICS ===== */
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 10px;
            margin-bottom: 30px;
        }

        .stat-card {
            background: var(--bg-primary);
            border: 1.5px solid var(--accent-primary);
            padding: 16px;
            border-radius: var(--border-radius);
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            box-shadow: var(--shadow-light);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-primary);
            display: block;
            margin-bottom: 8px;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 16px;
            font-weight: 600;
        }

        /* ===== PUBLICATIONS COUNT ===== */
        .publications-count {
            text-align: center;
            margin-bottom: 25px;
            color: var(--text-secondary);
            font-size: 18px;
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            font-weight: 600;
        }

        .publications-count strong {
            color: var(--accent-primary);
        }

        /* ===== CATEGORIES ===== */
        .categories-section {
            background: var(--bg-secondary);
            padding: 30px;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            margin-bottom: 30px;
            box-shadow: var(--shadow-light);
        }

        .category-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: var(--bg-primary);
            color: var(--accent-primary);
            border-radius: 16px;
            font-size: 16px;
            font-weight: 700;
            margin: 5px 8px 5px 0;
            border: 1.5px solid var(--accent-primary);
            transition: all 0.3s ease;
        }

        .category-badge:hover {
            background: var(--accent-primary);
            color: var(--bg-primary);
            transform: translateY(-2px);
        }

        /* ===== PUBLICATIONS - GALLERY STYLE 6 COLUMNS ===== */
        .photos-section {
            background: var(--bg-secondary);
            padding: 30px;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-light);
        }

        /* GALLERY GRID 6 COLUMNS */
        .gallery {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin: 0 auto;
            width: 100%;
        }

        /* ===== POST CARD (GALLERY STYLE) ===== */
        .post-card {
            background: var(--bg-secondary);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-light);
        }

        .post-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
            border-color: var(--accent-primary);
        }

        /* ===== STATUS BADGE ===== */
        .status-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--bg-primary);
            color: var(--accent-primary);
            border: 1.5px solid var(--accent-primary);
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(201, 169, 110, 0.2);
            z-index: 25;
        }

        /* ===== PRICE OVERLAY ===== */
        .price-overlay {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: var(--bg-primary);
            color: var(--accent-primary);
            padding: 6px 10px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.8rem;
            z-index: 20;
            border: 1.5px solid var(--accent-primary);
            box-shadow: var(--shadow-light);
        }

        /* ===== COMPACT MEDIA CONTAINER ===== */
        .media-container {
            position: relative;
            width: 100%;
            aspect-ratio: 1/1;
            background: var(--bg-primary);
            overflow: hidden;
            border-radius: 8px;
        }

        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
            border-radius: 8px;
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 100%;
            background: var(--bg-primary);
            border-radius: 8px;
            overflow: hidden;
        }

        .video-player {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
            border-radius: 8px;
            background-color: #000;
        }

        /* MODIFICADO: NUEVO ESTILO PARA VIDEO OVERLAY (como runway.php) */
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        .video-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .play-button {
            width: 60px;
            height: 60px;
            background: rgba(201, 169, 110, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .video-overlay:hover .play-button {
            background: var(--accent-primary);
            transform: scale(1.1);
        }

        /* ===== VIDEO VIEWS COUNTER (MODIFICADO: MÁS COMPACTO) ===== */
        .video-views {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
            z-index: 10;
        }

        /* ===== VIDEO SOUND CONTROLS (NUEVO: EN LA MISMA LÍNEA QUE LAS VISTAS) ===== */
        .video-sound-controls {
            position: absolute;
            bottom: 10px;
            right: 10px;
            z-index: 20;
        }

        .sound-control-btn {
            width: 32px;
            height: 32px;
            background: rgba(0, 0, 0, 0.8);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 0.8rem;
        }

        .sound-control-btn:hover {
            background: var(--accent-primary);
            transform: scale(1.1);
        }

        .sound-control-btn.active {
            background: var(--accent-primary);
        }

        /* ===== COMPACT THUMBNAILS ===== */
        .thumbnails-container {
            display: flex;
            gap: 4px;
            padding: 8px;
            overflow-x: auto;
            background: var(--bg-primary);
            border-top: 1px solid var(--border-color);
            border-radius: 0 0 8px 8px;
        }

        .thumbnail, .video-thumbnail {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .thumbnail {
            object-fit: cover;
        }

        .video-thumbnail {
            background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.7rem;
        }

        .thumbnail.active, .video-thumbnail.active {
            border-color: var(--accent-primary);
        }

        /* ===== PRODUCT INFORMATION ===== */
        .product-info {
            padding: 12px;
            background: var(--bg-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-info:hover {
            background: rgba(201, 169, 110, 0.05);
        }

        .product-badges {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        .condition-badge, .swap-badge, .shipping-badge {
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.65rem;
            font-weight: 700;
            border: 1px solid;
            white-space: nowrap;
            color: var(--text-primary);
        }

        .condition-badge {
            background: var(--bg-primary);
            color: var(--text-primary);
            border-color: var(--accent-primary);
        }

        .swap-badge {
            background: var(--bg-primary);
            color: var(--text-primary);
            border-color: var(--accent-secondary);
        }

        .shipping-badge {
            background: var(--bg-primary);
            color: var(--text-primary);
            border-color: #28a745;
        }

        .post-description {
            color: var(--text-primary);
            font-size: 0.75rem;
            line-height: 1.4;
            text-align: left;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-weight: bold;
            margin-bottom: 6px;
        }

        .post-description.expanded {
            display: block;
            -webkit-line-clamp: unset;
        }

        .read-more-btn {
            background: none;
            border: none;
            color: var(--accent-primary);
            cursor: pointer;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-family: "Cormorant Garamond", serif;
        }

        .read-more-btn:hover {
            background: rgba(201, 169, 110, 0.1);
            color: var(--accent-light);
        }

        /* ===== STATISTICS ===== */
        .post-stats {
            display: flex;
            gap: 8px;
            padding: 8px 12px;
            background: rgba(201, 169, 110, 0.05);
            border-top: 1px solid var(--border-color);
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--text-primary);
            background: var(--bg-primary);
            padding: 4px 8px;
            border-radius: 6px;
            border: 1px solid var(--border-color);
        }

        /* ===== VIDEO ERROR STATE ===== */
        .video-error {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: var(--bg-primary);
            color: var(--text-secondary);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            z-index: 10;
        }

        .video-error i {
            font-size: 2rem;
            color: #dc3545;
            margin-bottom: 10px;
        }

        .video-error p {
            font-size: 0.8rem;
            margin-bottom: 10px;
        }

        .retry-button {
            padding: 6px 12px;
            background: var(--accent-primary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.8rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .retry-button:hover {
            background: var(--accent-secondary);
        }

        /* ===== VIDEO LOADING PLACEHOLDER ===== */
        .video-loading {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-primary);
            border-radius: 8px;
            z-index: 5;
        }

        .video-loading-spinner {
            width: 30px;
            height: 30px;
            border: 3px solid rgba(201, 169, 110, 0.3);
            border-top: 3px solid var(--accent-primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* ===== PAGINATION ===== */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            margin: 40px 0 20px;
            padding: 20px;
            background: var(--bg-secondary);
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

        .pagination a {
            padding: 8px 12px;
            background: var(--bg-primary);
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            font-family: "Cormorant Garamond", serif;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .pagination a:hover {
            background: var(--accent-primary);
            color: var(--bg-primary);
            transform: translateY(-2px);
        }

        .pagination-info {
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 15px;
            width: 100%;
            font-weight: 600;
        }

        .pagination-current {
            padding: 8px 12px;
            background: var(--accent-primary);
            color: var(--bg-primary);
            border-radius: 8px;
            font-weight: 700;
            border: 1px solid var(--accent-primary);
        }

        .pagination-dots {
            color: var(--text-secondary);
            padding: 8px 4px;
        }

        /* ===== EMPTY STATES ===== */
        .empty-state {
            text-align: center;
            padding: 40px 20px;
            color: var(--text-secondary);
            grid-column: 1 / -1;
            font-size: 18px;
            font-weight: 600;
        }

        .empty-state h3 {
            margin-bottom: 20px;
            color: var(--text-primary);
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* ===== PRIVATE INFORMATION ===== */
        .private-info {
            background: rgba(201, 169, 110, 0.1);
            border: 1px solid var(--accent-primary);
            border-radius: var(--border-radius);
            padding: 16px;
            margin-top: 20px;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.5;
        }

        .private-badge {
            background: var(--accent-primary);
            color: var(--bg-primary);
            padding: 4px 8px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            margin-left: 6px;
        }

        /* ===== NUEVOS ESTILOS PARA MODAL DE CHAT ===== */
        .chat-modal {
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }

        .chat-modal-content {
            background-color: var(--bg-primary);
            margin: 5% auto;
            padding: 25px;
            border-radius: 12px;
            width: 95%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: var(--shadow-large);
            border: 2px solid var(--border-color);
            position: relative;
            font-size: 16px;
        }

        .chat-close {
            color: var(--text-secondary);
            float: right;
            font-size: 32px;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 20px;
            transition: all 0.3s ease;
        }

        .chat-close:hover {
            color: var(--accent-primary);
            transform: scale(1.1);
        }

        /* ESTILOS ESPECÍFICOS PARA EL MODAL DE CHAT */
        .chat-user-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .chat-user-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent-primary);
        }

        .chat-user-details h4 {
            font-size: 1.3rem;
            color: var(--text-primary);
            margin-bottom: 5px;
            font-weight: 700;
        }

        .chat-user-details p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .chat-follow-status {
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .chat-follow-status.mutual {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            border: 1px solid rgba(40, 167, 69, 0.3);
        }

        .chat-follow-status.not-mutual {
            background: rgba(255, 193, 7, 0.1);
            color: #ffc107;
            border: 1px solid rgba(255, 193, 7, 0.3);
        }

        .chat-options {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 20px;
        }

        .chat-option {
            text-align: center;
        }

        .btn-chat-internal, .btn-contact-form {
            width: 100%;
            padding: 12px 20px;
            background: var(--accent-primary);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: "Cormorant Garamond", serif;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-chat-internal:hover, .btn-contact-form:hover {
            background: var(--accent-secondary);
            transform: translateY(-2px);
        }

        .chat-option-description {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-top: 8px;
            line-height: 1.4;
        }

        .chat-contact-form {
            margin-top: 20px;
            padding: 20px;
            background: rgba(201, 169, 110, 0.05);
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .chat-contact-form h4 {
            margin-bottom: 15px;
            color: var(--text-primary);
            font-size: 1.1rem;
        }

        .chat-contact-form textarea {
            width: 100%;
            height: 120px;
            padding: 12px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            resize: vertical;
            margin-bottom: 15px;
            font-family: inherit;
            font-size: 1rem;
            background: var(--bg-secondary);
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .chat-contact-form textarea:focus {
            outline: none;
            border-color: var(--accent-primary);
        }

        .chat-contact-form button {
            width: 100%;
            padding: 12px;
            background: var(--accent-primary);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .chat-contact-form button:hover {
            background: var(--accent-secondary);
        }

        /* ===== THEME SELECTOR ===== */
        .theme-selector {
            position: fixed;
            top: 160px;
            right: 10px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 8px;
            background: var(--bg-glass);
            padding: 8px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid var(--accent-primary);
        }

        .theme-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--accent-primary);
            background: var(--bg-glass);
            backdrop-filter: blur(10px);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: var(--text-primary);
            font-size: 18px;
        }

        .theme-btn:hover {
            transform: scale(1.1);
            background: var(--accent-primary);
            color: white;
        }

        .theme-btn.active {
            background: var(--accent-primary);
            color: white;
            transform: scale(1.1);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1400px) {
            .gallery {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        @media (max-width: 1200px) {
            .gallery {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .gallery {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .container {
                max-width: 1000px;
            }
        }

        @media (max-width: 768px) {
            .gallery {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .container {
                padding: 15px;
                margin: 30px auto;
            }
            
            .profile-info {
                flex-direction: column;
                text-align: center;
            }

            .user-avatar {
                flex-direction: column;
            }

            .profile-actions {
                justify-content: center;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .followers-stats {
                flex-direction: column;
            }

            .follower-stat {
                min-width: auto;
                width: 100%;
                justify-content: center;
            }

            .profile-header,
            .photos-section {
                padding: 20px;
            }

            .notification-container {
                right: 10px;
                left: 10px;
                max-width: none;
            }

            .btn {
                padding: 10px 14px;
                font-size: 16px;
                font-weight: 700;
            }

            .profile-actions {
                gap: 6px;
            }

            .theme-selector {
                top: 130px !important;
                right: 10px !important;
            }

            body {
                font-size: 16px;
            }

            .user-details h1 {
                font-size: 2rem;
            }

            .user-meta {
                font-size: 16px;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .stat-number {
                font-size: 1.3rem;
            }

            .stat-label {
                font-size: 14px;
            }
            
            .pagination {
                flex-direction: column;
                gap: 15px;
            }
            
            /* Video responsive */
            .play-button {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
            .video-sound-controls {
                bottom: 8px;
                right: 8px;
            }
            
            .sound-control-btn {
                width: 28px;
                height: 28px;
                font-size: 0.7rem;
            }
            
            .video-views {
                bottom: 8px;
                left: 8px;
                font-size: 0.6rem;
                padding: 3px 6px;
            }
        }

        @media (max-width: 480px) {
            .gallery {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            .profile-actions {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                justify-content: center;
                width: 100%;
                padding: 12px;
                font-size: 16px;
            }

            .avatar-img,
            .avatar-placeholder {
                width: 70px;
                height: 70px;
                font-size: 1.5rem;
            }

            .user-details h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.2rem;
            }

            .followers-section {
                padding: 15px;
            }

            .follower-stat {
                padding: 10px;
                min-width: 100px;
            }

            .follower-count {
                font-size: 1.2rem;
            }

            .follower-label {
                font-size: 14px;
            }

            .theme-selector {
                top: 120px !important;
                right: 8px !important;
                padding: 6px !important;
            }
            
            .pagination a {
                padding: 10px 15px;
                font-size: 0.8rem;
            }
            
            /* Video responsive para móviles pequeños */
            .play-button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            /* Modal de chat responsive */
            .chat-modal-content {
                padding: 20px 15px;
                margin: 10% auto;
            }
            
            .chat-user-info {
                flex-direction: column;
                text-align: center;
            }
            
            .chat-user-avatar {
                width: 50px;
                height: 50px;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .profile-header,
        .followers-section,
        .stats-container,
        .categories-section,
        .photos-section {
            animation: fadeInUp 0.6s ease-out;
        }

        .post-card {
            animation: fadeInUp 0.4s ease-out;
        }
 