body {
            background-color: #f8fafc;
            transition: background-color 0.3s ease;
        }
        .dark body {
            background-color: #111827;
        }
        #add-profile-btn-header, #add-profile-btn-footer, #add-profile-btn-header-mobile {
            background: linear-gradient(115deg, #62cff4, #2c67f2) !important;
            border: none;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease-in-out !important;
            transform: scale(1);
        }
        #add-profile-btn-header:hover, #add-profile-btn-footer:hover, #add-profile-btn-header-mobile:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 15px rgba(44, 103, 242, 0.3);
            opacity: 1;
        }
        #add-profile-btn-header:active, #add-profile-btn-footer:active, #add-profile-btn-header-mobile:active {
            transform: scale(0.98);
            box-shadow: 0 4px 10px rgba(44, 103, 242, 0.2);
        }
        a[href="/leaderboard"] {
            position: relative;
            transition: color 0.3s ease;
        }
        .dark a[href="/leaderboard"] {
            color: #cbd5e1;
        }
        a[href="/leaderboard"]::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(115deg, #62cff4, #2c67f2);
            transition: width 0.3s ease-out;
        }
        a[href="/leaderboard"]:hover::after {
            width: 100%;
        }
        a[href="/leaderboard"]:hover {
            color: #2c67f2;
        }
        .dark a[href="/leaderboard"]:hover {
            color: #62cff4;
        }
        #boost-btn {
            background: linear-gradient(115deg, #fab2ff, #0597e6) !important;
            border: none;
            transition: opacity 0.3s;
        }
        #boost-btn:hover {
            opacity: 0.9;
        }
        .filter-btn-active {
            background: linear-gradient(115deg, #86cdff, #0994f7);
            color: white !important;
            border-color: #0994f7 !important;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.05);
            transform: translateY(-1px);
            transition: all 0.2s ease-in-out;
        }
        /* --- START: Pro Badge Styles --- */
        .pro-badge-container {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 5;
            cursor: pointer;
            transition: transform 0.2s ease-in-out;
        }
        .pro-badge-container:hover {
            transform: scale(1.1);
        }
        .pro-badge {
            width: 36px;
            height: 36px;
            position: relative;
            transform: rotate(45deg);
            background: linear-gradient(135deg, #a2f2ff, #789cff, #ff9cf8, #fff0a8);
            border-radius: 6px;
            animation: pro-badge-pulse 3s ease-in-out infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 12px rgba(129, 245, 255, 0.6), 0 0 24px rgba(255, 130, 242, 0.5);
        }
        .pro-badge::before {
            content: '';
            position: absolute;
            top: -2px; left: -2px; right: -2px; bottom: -2px;
            background: inherit;
            border-radius: 8px;
            filter: blur(6px);
            opacity: 0.75;
            z-index: -1;
        }
        .pro-badge .pro-badge-icon-svg {
            transform: rotate(-45deg);
            width: 24px;
            height: 24px;
            filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
        }
        .pro-badge-mini .pro-badge-icon-svg {
            transform: rotate(-45deg);
            width: 14px;
            height: 14px;
        }
        @keyframes pro-badge-pulse {
            0%, 100% {
                transform: rotate(45deg) scale(1);
                box-shadow: 0 0 12px rgba(129, 245, 255, 0.6), 0 0 24px rgba(255, 130, 242, 0.5);
            }
            50% {
                transform: rotate(45deg) scale(1.1);
                box-shadow: 0 0 18px rgba(129, 245, 255, 0.9), 0 0 36px rgba(255, 130, 242, 0.7);
            }
        }
        .profile-card .image-container, .swiper {
            position: relative;
        }
        /* --- END: Pro Badge Styles --- */
        header .flex.justify-between {
            gap: 1rem;
        }
        header .flex.items-center.space-x-3 a,
        header .flex.items-center.space-x-3 button {
            white-space: nowrap;
        }
        .gradient-text {
            background: linear-gradient(115deg, #86cdff, #0994f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }
        .dark #review-form-container {
            background-color: #1f2937;
            border-color: #374151;
        }
        .dark #review-form h3,
        .dark #review-form label {
            color: #d1d5db;
        }
        .dark #review-form textarea,
        .dark #review-form #captcha-answer {
            background-color: #374151;
            border-color: #4b5563;
            color: #f9fafb;
        }
        .dark #review-form textarea::placeholder {
            color: #9ca3af;
        }
        .dark #review-form input:disabled {
            background-color: #1f2937;
            color: #9ca3af;
            border-color: #374151;
        }
        .dark .star-rating-modern label {
            color: #6b7280;
        }
        .pro-badge-mini {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            font-size: 14px;
            line-height: 1;
            transform: rotate(45deg);
            background: linear-gradient(135deg, #a2f2ff, #789cff, #ff9cf8, #fff0a8);
            border-radius: 4px;
            box-shadow: 0 0 6px rgba(129, 245, 255, 0.4), 0 0 12px rgba(255, 130, 242, 0.3);
            position: relative;
            flex-shrink: 0;
        }
        .pro-badge-mini::before {
            content: '';
            position: absolute;
            top: -1px; left: -1px; right: -1px; bottom: -1px;
            background: inherit;
            border-radius: 6px;
            filter: blur(3px);
            opacity: 0.6;
            z-index: -1;
        }
        .promoted-tag .pro-badge-mini {
            margin-right: 4px;
        }
        .promoted-tag .boost-timer-countdown.ml-1 {
            margin-left: 0;
        }
        .promoted-tag {
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            padding: 4px 8px;
        }
        .promoted-tag svg {
            margin-right: 4px;
        }
        #priority-wishlist-desktop-container {
            display: none;
        }
        .profile-content-grid.no-wishlist #reviews-section {
            grid-column: 1 / -1;
        }
        .profile-content-grid {
            display: block;
        }
        @media (min-width: 768px) {
            #priority-wishlist-mobile-container {
                display: none;
            }
            #priority-wishlist-desktop-container {
                display: block;
            }
            .profile-content-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
                align-items: start;
                margin-top: 4rem;
            }
            .profile-content-grid > #priority-wishlist-desktop-container,
            .profile-content-grid > #reviews-section {
                margin-top: 0 !important;
            }
            #priority-wishlist-desktop-container .priority-wishlist-grid {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
            }
            #priority-wishlist-desktop-container .wish-card {
                flex: 0 1 150px;
            }
        }
        .star-rating-modern { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 0.25rem; }
        .star-rating-modern input[type="radio"] { display: none; }
        .star-rating-modern label { font-size: 2.5rem; line-height: 1; color: #d1d5db; cursor: pointer; transition: color 0.2s ease-in-out; }
        .star-rating-modern label:hover,
        .star-rating-modern label:hover ~ label,
        .star-rating-modern input[type="radio"]:checked ~ label { color: #f59e0b; }
        .dark .star-rating-modern label {
            color: #9ca3af;
        }
        .dark .star-rating-modern label:hover,
        .dark .star-rating-modern label:hover ~ label,
        .dark .star-rating-modern input[type="radio"]:checked ~ label {
            color: #f59e0b !important;
        }
        .star-rating { display: none; }
        #search-container { position: relative; }
        #search-preview { position: absolute; top: 100%; left: 0; right: 0; background-color: white; border-radius: 0.75rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); z-index: 50; max-height: 500px; overflow-y: auto; margin-top: 0.5rem; border: 1px solid #e5e7eb; }
        .dark #search-preview { background-color: #1f2937; border-color: #374151; }
        .search-result-item { display: flex; align-items: center; padding: 0.75rem 1rem; border-bottom: 1px solid #f3f4f6; transition: background-color 0.2s ease-in-out; }
        .dark .search-result-item { border-bottom-color: #374151; }
        .search-result-item:last-child { border-bottom: none; }
        .search-result-item:hover { background-color: #f9fafb; }
        .dark .search-result-item:hover { background-color: #374151; }
        .search-result-avatar { width: 48px; height: 48px; border-radius: 9999px; object-fit: cover; flex-shrink: 0; }
        .search-result-info { flex-grow: 1; margin-left: 0.75rem; min-width: 0; }
        .search-result-info h4 { font-weight: 600; color: #111827; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .dark .search-result-info h4 { color: #f9fafb; }
        .search-result-info p { font-size: 0.875rem; color: #6b7280; margin-top: 0.125rem; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; }
        .dark .search-result-info p { color: #9ca3af; }
        .view-profile-btn { padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 600; color: white; background: linear-gradient(115deg, #62cff4, #2c67f2); border-radius: 9999px; text-decoration: none; white-space: nowrap; transition: opacity 0.2s ease-in-out; margin-left: 1rem; flex-shrink: 0; }
        .view-profile-btn:hover { opacity: 0.9; }
        .leaderboard-badge { position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); font-size: 0.7rem; font-weight: 800; padding: 2px 8px; border-radius: 9999px; color: white; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
        .badge-gold { background: linear-gradient(135deg, #FFD700, #F0C000); border: 1px solid #FFD700; }
        .badge-silver { background: linear-gradient(135deg, #C0C0C0, #A9A9A9); border: 1px solid #C0C0C0; }
        .badge-bronze { background: linear-gradient(135deg, #CD7F32, #A0522D); border: 1px solid #CD7F32; }
        .custom-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 1050; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
        .custom-modal-overlay:not(.hidden) { opacity: 1; visibility: visible; }
        .custom-modal { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.2); padding: 2rem; border-radius: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; max-width: 90%; width: 450px; transform: scale(0.9); transition: transform 0.3s ease; }
        .dark .custom-modal { background: rgba(31, 41, 55, 0.75); border: 1px solid rgba(255, 255, 255, 0.1); }
        .custom-modal-overlay:not(.hidden) .custom-modal { transform: scale(1); }
        .custom-modal .form-input { text-align: left; width: 100%; padding: 0.75rem; border: 1px solid #cbd5e1; border-radius: 0.5rem; margin-bottom: 1rem; transition: border-color 0.2s, box-shadow 0.2s; background-color: #f8fafc; }
        .dark .custom-modal .form-input { border-color: #4b5563; background-color: #374151; color: #f9fafb; }
        .custom-modal .form-input:focus { border-color: #a239ff; box-shadow: 0 0 0 2px rgba(162, 57, 255, 0.4); outline: none; }
        .custom-modal .form-label { text-align: left; display: block; margin-bottom: 0.5rem; font-weight: 600; color: #475569;}
        .dark .custom-modal .form-label { color: #9ca3af; }
        .custom-modal-buttons { display: flex; gap: 1rem; justify-content: flex-end; margin-top: 1.5rem; }
        .custom-modal-buttons .modal-cancel-btn { padding: 0.6rem 1.25rem; border: none; border-radius: 9999px; font-weight: 600; cursor: pointer; transition: all 0.2s; background-color: #e2e8f0; color: #475569; }
        .dark .custom-modal-buttons .modal-cancel-btn { background-color: #4b5563; color: #e5e7eb; }
        .amount-control { display: flex; align-items: center; justify-content: center; background-color: #f1f5f9; border-radius: 0.5rem; padding: 0.25rem; }
        .dark .amount-control { background-color: #374151; }
        .amount-control button { background-color: #cbd5e1; color: #475569; border: none; width: 40px; height: 40px; font-size: 1.5rem; font-weight: bold; cursor: pointer; border-radius: 0.375rem; transition: background-color 0.2s; }
        .dark .amount-control button { background-color: #4b5563; color: #d1d5db; }
        .amount-control button:hover { background-color: #94a3b8; }
        .dark .amount-control button:hover { background-color: #6b7280; }
        .amount-control input { width: 100px; text-align: center; font-size: 1.5rem; font-weight: bold; border: none; background: transparent; color: #0c4a6e; }
        .dark .amount-control input { color: #f9fafb; }
        .amount-control input:focus { outline: none; }
        .spinner { animation: spin 1s linear infinite; border-color: rgba(255,255,255,0.2); border-top-color: white; }
        @keyframes spin { to { transform: rotate(360deg); } }
        .pinned-post { position: relative; margin-top: 1.5rem; padding: 1rem; background: linear-gradient(135deg, #f0f9ff, #e0f2fe); border: 1px solid #7dd3fc; border-radius: 0.75rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
        .dark .pinned-post { background: linear-gradient(135deg, #1e293b, #0f172a); border-color: #38bdf8; }
        .pinned-post p { overflow-wrap: break-word; word-wrap: break-word; }
        #swipe-tutorial-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 101; pointer-events: none; opacity: 0; transition: opacity 0.5s ease; background: rgba(0,0,0,0.3); }
        #swipe-tutorial-overlay.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .swipe-indicator-container { position: absolute; left: 50%; transform: translateX(-50%); color: white; text-align: center; font-weight: 500; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
        .swipe-up-indicator { bottom: 10%; }
        .swipe-down-indicator { top: 10%; }
        .swipe-icon { width: 48px; height: 48px; margin: 0 auto; animation: swipe-up-down 2s ease-in-out infinite; }
        .swipe-down-indicator .swipe-icon { animation-name: swipe-down-up; }
        @keyframes swipe-up-down { 0% { transform: translateY(10px); opacity: 0; } 50% { transform: translateY(-10px); opacity: 1; } 100% { transform: translateY(-20px); opacity: 0; } }
        @keyframes swipe-down-up { 0% { transform: translateY(-10px) scaleY(-1); opacity: 0; } 50% { transform: translateY(10px) scaleY(-1); opacity: 1; } 100% { transform: translateY(20px) scaleY(-1); opacity: 0; } }
        .theme-toggle:hover, .theme-toggle:focus, .theme-toggle:active, .theme-toggle:focus-visible { background: transparent !important; outline: none !important; box-shadow: none !important; border: none !important; }
        .swiper-button-next, .swiper-button-prev { display: none !important; }
        img { -webkit-user-drag: none; user-select: none; -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; pointer-events: none; }
        #notification-container { position: fixed; bottom: 1rem; right: 1rem; z-index: 9999; width: calc(100% - 2rem); max-width: 400px; pointer-events: none; }
        .notification-toast { background: linear-gradient(115deg, rgba(31, 41, 55, 0.7), rgba(55, 65, 81, 0.7)); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: white; padding: 1rem 1.25rem; border-radius: 0.75rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; font-weight: 500; border: 1px solid rgba(255, 255, 255, 0.1); animation: toast-in 0.5s cubic-bezier(0.21, 1.02, 0.73, 1); pointer-events: auto; }
        .notification-toast.success { background: linear-gradient(115deg, rgba(16, 185, 129, 0.7), rgba(5, 150, 105, 0.7)); }
        .notification-toast.error { background: linear-gradient(115deg, rgba(96, 165, 250, 0.8), rgba(59, 130, 246, 0.8)); }
        .notification-toast.copy { background: linear-gradient(115deg, rgba(168, 85, 247, 0.7), rgba(147, 51, 234, 0.7)); }
        .notification-toast.pro { background: linear-gradient(135deg, rgba(162, 242, 255, 0.85), rgba(120, 156, 255, 0.85), rgba(255, 156, 248, 0.85), rgba(255, 240, 168, 0.85)); }
        .notification-toast.fade-out { animation: toast-out 0.5s ease-out forwards; }
        @keyframes toast-in { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }
        @keyframes toast-out { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(100%); } }
        @media (max-width: 768px) { #notification-container { bottom: 1rem; left: 1rem; right: 1rem; width: auto; max-width: none; } }
        #reviews-pagination { display: flex; justify-content: space-between; align-items: center; }
        .review-pagination-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; font-weight: 600; border-radius: 9999px; border: 1px solid #e2e8f0; background-color: white; color: #334155; cursor: pointer; transition: all 0.2s ease-in-out; }
        .dark .review-pagination-btn { background-color: #374151; border-color: #4b5563; color: #e5e7eb; }
        .review-pagination-btn:not(:disabled):hover { border-color: #38bdf8; background-color: #f0f9ff; color: #0284c7; }
        .dark .review-pagination-btn:not(:disabled):hover { border-color: #38bdf8; background-color: #1e293b; }
        .review-pagination-btn:disabled { opacity: 0.5; cursor: not-allowed; }
        #filters-overlay { position: fixed; inset: 0; background-color: rgba(0,0,0,0.4); z-index: 39; opacity: 0; pointer-events: none; transition: opacity 0.3s ease-in-out; }
        #filters-overlay.active { opacity: 1; pointer-events: auto; }
        #filters-wrapper { position: fixed; top: 0; right: 0; transform: translateX(100%); width: 340px; max-width: 85vw; height: 100vh; background-color: #ffffff; z-index: 40; transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); overflow-y: auto; padding: 1rem; }
        .dark #filters-wrapper { background-color: #1f2937; }
        #filters-wrapper.active { transform: translateX(0); box-shadow: -10px 0 25px -5px rgba(0,0,0,0.1); }
        .filter-close-btn { position: absolute; top: 1rem; left: 1rem; }
        #filters-wrapper .max-h-0 { max-height: none !important; }
        @media (min-width: 1024px) {
            #filters-wrapper { position: absolute; top: calc(100% + 0.5rem); right: 0; transform: scale(0.95) translateY(-10px); transform-origin: top right; width: 400px; height: auto; max-height: 80vh; border-radius: 0.75rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); border: 1px solid #e5e7eb; opacity: 0; visibility: hidden; transition: transform 0.2s ease-out, opacity 0.2s ease-out; padding-top: 1rem; }
            .dark #filters-wrapper { border-color: #374151; }
            #filters-wrapper.active { transform: scale(1) translateY(0); opacity: 1; visibility: visible; }
            .filter-close-btn { display: none; }
        }
        #advanced-filters-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            align-items: start;
        }
        .filter-span-full {
            grid-column: 1 / -1;
        }
        .verified-icon .verified-path { fill: url(#light-gradient); }
        .dark .verified-icon .verified-path { fill: url(#dark-gradient); }
        .profile-action-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            text-align: center;
            font-weight: bold;
            padding: 0.75rem 1rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            background-size: 200% auto;
        }
        .profile-action-button:hover {
            background-position: right center;
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }
        .profile-action-button .domain-tag {
            background-color: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            padding: 0.15rem 0.5rem;
            border-radius: 9999px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-left: 0.75rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .profile-action-button svg {
            width: 1.25rem;
            height: 1.25rem;
            margin-right: 0.5rem;
        }
        #pinned-video-gift {
            position: absolute;
            top: 5rem;
            right: 1rem;
            z-index: 10;
            cursor: pointer;
            width: 56px;
            height: 56px;
            transition: transform 0.3s ease;
        }
        #pinned-video-gift:hover {
            transform: scale(1.1);
        }
        .pinned-video-avatar-container {
            width: 100%;
            height: 100%;
            position: relative;
            border-radius: 9999px;
            animation: pulse-glow 2.5s ease-in-out infinite;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            padding: 3px;
        }
        .dark .pinned-video-avatar-container {
            background: rgba(55, 65, 81, 0.2);
        }
        .pinned-video-avatar {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 9999px;
        }
        .pinned-video-play-icon {
            position: absolute;
            bottom: -2px;
            right: -2px;
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #60a5fa, #3b82f6);
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .pinned-video-play-icon svg {
            width: 12px;
            height: 12px;
            color: white;
            margin-left: 1px;
        }
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7), 0 0 20px rgba(168, 85, 247, 0.5); }
            50% { box-shadow: 0 0 0 4px rgba(255, 255, 255, 1), 0 0 30px rgba(168, 85, 247, 0.8); }
        }
        #video-player-modal {
            position: fixed; inset: 0;
            background-color: rgba(0,0,0,0.85);
            backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        #video-player-modal:not(.hidden) { opacity: 1; visibility: visible; }
        #main-video-player {
            border-radius: 0.75rem;
            max-height: 85vh;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.1);
            background-color: #000;
        }
        #close-video-player-btn {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: rgba(0,0,0,0.6);
            color: white;
            border: 2px solid white;
            border-radius: 9999px;
            width: 2.5rem;
            height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            line-height: 1;
            transition: all 0.2s ease;
        }
        #close-video-player-btn:hover { transform: scale(1.1); background-color: rgba(0,0,0,0.8); }
        #extra-subscriptions-modal .custom-modal {
            width: 500px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.25);
        }
        .dark #extra-subscriptions-modal .custom-modal {
            background: rgba(31, 41, 55, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        #priority-wishlist-section {
            margin-top: 2rem;
        }
        .priority-wishlist-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        .wish-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0.75rem;
            padding: 1rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .dark .wish-card {
            background: rgba(31, 41, 55, 0.7);
            border-color: rgba(255, 255, 255, 0.1);
        }
        .wish-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .wish-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 0.5rem;
            margin-bottom: 0.75rem;
        }
        .wish-title {
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            height: 2.5em;
            overflow: hidden;
        }
        .gift-wish-btn {
            background: linear-gradient(115deg, #a855f7, #ec4899) !important;
            color: white;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        .gift-wish-btn:hover {
            opacity: 0.9;
            transform: scale(1.05);
        }
        #wishlist-owner-controls { margin-top: 1rem; }
        @media (min-width: 1024px) {
            #advanced-filters-grid {
                gap: 1.25rem 1.5rem;
            }
        }
        @keyframes boost-pulse-glow {
            0% {
                transform: scale(1);
                box-shadow: 0 0 8px rgba(96, 165, 250, 0.4);
                background-position: 0% 50%;
            }
            50% {
                transform: scale(1.03);
                box-shadow: 0 0 20px rgba(96, 165, 250, 0.8);
                background-position: 100% 50%;
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 8px rgba(96, 165, 250, 0.4);
                background-position: 0% 50%;
            }
        }
        .profile-card.boosted .gallery-action-btn {
            background-size: 250% 250%;
            animation: boost-pulse-glow 2.5s ease-in-out infinite;
        }
        .review-filter-container {
            position: relative;
            z-index: 10;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 9999px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .dark .review-filter-container {
            background: rgba(31, 41, 55, 0.6);
            border-color: rgba(255, 255, 255, 0.1);
        }
        .review-filter-select {
            background-color: transparent;
            border: none;
            padding-right: 2rem;
            font-weight: 600;
            color: #334155;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 0.5rem center;
            background-repeat: no-repeat;
            background-size: 1.5em 1.5em;
            cursor: pointer;
        }
        .dark .review-filter-select {
            color: #e5e7eb;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
        }
        .review-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
            transition: all 0.3s ease;
        }
        .dark .review-card {
            background: rgba(31, 41, 55, 0.6);
            border-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
        }
        .review-card .review-text {
            color: #334155;
            font-size: 1rem;
            line-height: 1.6;
        }
        .dark .review-card .review-text {
            color: #cbd5e1;
        }
        .creator-reply-container {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            border-radius: 0.75rem;
            padding: 1rem;
            border: 1px solid #7dd3fc;
        }
        .dark .creator-reply-container {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            border-color: #38bdf8;
        }
        .toggle-reply-btn {
            background: linear-gradient(115deg, #a855f7, #ec4899);
            color: white;
            font-weight: 600;
            font-size: 0.875rem;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .toggle-reply-btn:hover {
            opacity: 0.9;
            transform: scale(1.05);
        }
        .custom-select-container {
            position: relative;
            display: inline-block;
        }
        .custom-select-trigger {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background-color: transparent;
            border: none;
            font-weight: 600;
            cursor: pointer;
            color: #334155;
        }
        .dark .custom-select-trigger {
            color: #e5e7eb;
        }
        .custom-select-trigger svg {
            width: 1.2em;
            height: 1.2em;
            transition: transform 0.2s ease;
        }
        .custom-select-container.open .custom-select-trigger svg {
            transform: rotate(180deg);
        }
        .custom-select-options {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            z-index: 100;
            min-width: 100%;
            display: none;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 0.75rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            padding: 0.5rem;
            overflow: hidden;
        }
        .dark .custom-select-options {
            background: rgba(55, 65, 81, 0.85);
            border-color: rgba(255, 255, 255, 0.15);
        }
        .custom-select-container.open .custom-select-options {
            display: block;
        }
        .custom-select-option {
            padding: 0.6rem 1rem;
            border-radius: 0.5rem;
            cursor: pointer;
            white-space: nowrap;
            color: #1f2937;
            transition: background-color 0.2s ease;
        }
        .dark .custom-select-option {
            color: #d1d5db;
        }
        .custom-select-option:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }
        .dark .custom-select-option:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .promoted-tag {
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            padding: 4px 8px;
            border-radius: 9999px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 4;
            overflow: hidden;
        }
        .promoted-tag::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: var(--progress-width, 100%);
            background-color: rgba(135, 206, 250, 0.5);
            z-index: -1;
            transition: width 1s linear;
        }
        .dark .promoted-tag {
            background: rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.15);
        }
        .dark .promoted-tag {
            background: transparent;
            border-color: rgba(255, 255, 255, 0.1);
        }
        .promoted-tag > * {
            position: relative;
            z-index: 1;
        }
        .promoted-tag svg {
            color: #0994f7;
        }
        .promoted-tag .boost-timer-countdown {
            background: linear-gradient(115deg, #86cdff, #0994f7, #86cdff);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            animation: shimmer-text 3s linear infinite;
        }
        @keyframes shimmer-text {
            to {
                background-position: -200% center;
            }
        }
        @keyframes premium-glow-pulse {
            0%, 100% {
                box-shadow: 0 0 20px rgba(120, 156, 255, 0.6), 0 0 30px rgba(255, 156, 248, 0.5);
            }
            50% {
                box-shadow: 0 0 30px rgba(162, 242, 255, 0.8), 0 0 45px rgba(255, 156, 248, 0.7);
            }
        }
        .profile-card.boosted {
            border: 2px solid #3b82f6;
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
        }
        .profile-card.boosted::before {
            content: none;
        }
        .profile-card.premium-boosted {
            border: 3px solid transparent;
            background-clip: padding-box;
            animation: premium-glow-pulse 2.5s ease-in-out infinite;
            position: relative;
            z-index: 1;
            transition: box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
        }
        .profile-card.premium-boosted::before {
            content: '';
            position: absolute;
            top: -3px; bottom: -3px; left: -3px; right: -3px;
            background: linear-gradient(135deg, #a2f2ff, #789cff, #ff9cf8, #fff0a8);
            z-index: -1;
            border-radius: 1rem;
            padding: 3px;
            filter: blur(8px);
            opacity: 0.8;
            transition: opacity 0.3s ease-in-out;
        }
        #trending-spotlight-container {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 0;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
            overflow: hidden;
        }
        .dark #trending-spotlight-container {
            background: rgba(31, 41, 55, 0.2);
            border-color: rgba(255, 255, 255, 0.1);
        }
        .spotlight-scroller {
            display: flex;
            gap: 1.5rem;
            width: max-content;
            animation: scroll 60s linear infinite;
        }
        #trending-spotlight-container:hover .spotlight-scroller {
            animation-play-state: paused;
        }
        @keyframes scroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }
        .dark .spotlight-item {
            background: rgba(55, 65, 81, 0.4);
        }
        .spotlight-item:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.05);
        }
        .dark .spotlight-item:hover {
            background: rgba(55, 65, 81, 0.7);
        }
        .spotlight-avatar {
            width: 48px;
            height: 48px;
            border-radius: 9999px;
            object-fit: cover;
            border: 2px solid #ec4899;
        }
        .spotlight-live-tag {
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #ef4444;
            color: white;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 1px 6px;
            border-radius: 0.25rem;
            border: 1px solid white;
            line-height: 1.2;
        }
        .spotlight-pro-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            background: linear-gradient(135deg, #a2f2ff, #789cff);
            color: white;
            font-size: 0.65rem;
            font-weight: 800;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 9999px;
            border: 1px solid white;
            box-shadow: 0 0 5px rgba(120, 156, 255, 0.8);
        }
        .spotlight-info {
            color: #1e293b;
        }
        .dark .spotlight-info {
            color: #f1f5f9;
        }
        .spotlight-name {
            display: flex;
            align-items: center;
            font-weight: 600;
            white-space: nowrap;
        }
        .spotlight-verified-icon {
            width: 16px;
            height: 16px;
            margin-left: 4px;
        }
        .spotlight-stats {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.75rem;
            color: #475569;
        }
        .dark .spotlight-stats {
            color: #94a3b8;
        }
        .spotlight-stats span {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            font-weight: 500;
        }
        .spotlight-stat-boost {
            background: linear-gradient(115deg, #86cdff, #0994f7);
            -webkit-background-clip: text;
            -moz-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .spotlight-stat-boost svg {
            color: #0994f7;
        }
        .spotlight-item .pro-badge-container {
            pointer-events: none;
        }
        .spotlight-verified-icon .verified-path {
            fill: url(#light-gradient);
        }
        .dark .spotlight-verified-icon .verified-path {
            fill: url(#dark-gradient);
        }
        .spotlight-item .pro-badge-container {
            pointer-events: none;
            position: absolute;
            z-index: 10;
        }
        .spotlight-item .pro-badge-container .pro-badge {
            opacity: 0.75;
        }
        .spotlight-item .pro-badge-container .pro-badge::before {
            opacity: 0.5;
        }
        .spotlight-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 1rem;
            padding-bottom: 10px;
            border-radius: 9999px;
            background: rgba(255, 255, 255, 0.4);
            transition: background-color 0.3s ease, transform 0.3s ease;
            flex-shrink: 0;
            text-decoration: none;
        }
        #profile-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
        @media (min-width: 640px) {
            #profile-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        @media (min-width: 768px) {
            #profile-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }
        @media (min-width: 1024px) {
            #profile-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }
        @media (min-width: 1280px) {
            #profile-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr));
            }
        }



/* Stiluri noi pentru Add Your Profile Card */
.add-profile-card {
    display: flex;
    text-decoration: none;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dark .add-profile-card {
    background-color: #1f2937;
    border-color: #374151;
}

.add-profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
    border-color: #dbeafe;
}

.dark .add-profile-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: #3b82f6;
}

/* Containerul interior pentru aliniere */
.add-profile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
    width: 100%;
    text-align: center;
}

/* Stil pentru iconița nouă (SVG) */
.add-profile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border-radius: 9999px;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.dark .add-profile-icon {
    background: linear-gradient(135deg, #1e3a8a, #374151);
    color: #93c5fd;
}

.add-profile-card:hover .add-profile-icon {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.3);
}

.add-profile-icon svg {
    width: 2.25rem;
    height: 2.25rem;
}

/* Stiluri pentru noua structură a textului */
.add-profile-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.add-profile-text .main-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
}

.dark .add-profile-text .main-text {
    color: #f1f5f9;
}

.add-profile-text .sub-text {
    font-weight: 600;
    color: #3b82f6;
    transition: color 0.3s ease;
}

.dark .add-profile-text .sub-text {
    color: #93c5fd;
}

.add-profile-card:hover .add-profile-text .sub-text {
    background: linear-gradient(115deg, #62cff4, #2c67f2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.info-cards-section {
    margin-top: 4rem;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .info-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
}

.dark .info-card {
    background-color: #1f2937; 
    border-color: #374151;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.info-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.info-card-title {
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.dark .info-card-title {
    color: #9ca3af;
}

.info-card-title strong {
    color: #111827;
    font-weight: 700;
}

.dark .info-card-title strong {
    color: #ffffff;
}

.info-card-text {
    color: #4b5563;
    line-height: 1.6;
}

.dark .info-card-text {
    color: #d1d5db;
}

.info-card-text strong {
    color: #000;
    font-weight: 600;
}

.dark .info-card-text strong {
    color: #fff;
}


@media (max-width: 639px) {
    #profile-grid.mobile-1-col {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    #profile-grid.mobile-2-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


