
        /* =============================================
           CSS VARIABLES
           ============================================= */
        :root {
            --bg-primary: #0D0D0F;
            --bg-secondary: #151518;
            --bg-tertiary: #1A1A1F;
            --bg-card: rgba(21, 21, 24, 0.85);
            --border-color: #2A2A30;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A8;
            --text-tertiary: #6B7280;
            --accent-primary: #7C3AED;
            --accent-secondary: #6366F1;
            --accent-pink: #EC4899;
            --success: #22C55E;
            --warning: #F59E0B;
            --error: #EF4444;
            --gradient-primary: linear-gradient(135deg, #7C3AED, #6366F1, #EC4899);
            --shadow-glow: 0 0 60px rgba(124, 58, 237, 0.15);
            --transition: cubic-bezier(0.4, 0, 0.2, 1);
                --scrollbar-track: #1a1a1a;
    --scrollbar-thumb: #333;
        }

        ::-webkit-scrollbar {
    width: 5px;
    height: 8px;}

        ::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 4px;
}

        ::-webkit-scrollbar-track {
    background: var(--scrollbar-track);}


        [data-theme="light"] {
            --bg-primary: #F8F9FA;
            --bg-secondary: #FFFFFF;
            --bg-tertiary: #F3F4F6;
            --bg-card: rgba(255, 255, 255, 0.9);
            --border-color: #E5E7EB;
            --border-subtle: rgba(0, 0, 0, 0.06);
            --text-primary: #1F2937;
            --text-secondary: #6B7280;
            --text-tertiary: #9CA3AF;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* =============================================
           ANIMATED BACKGROUND
           ============================================= */
        .hero-ring {
            position: fixed;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
            top: -400px;
            right: -400px;
            z-index: 0;
            animation: pulse-ring 8s ease-in-out infinite;
            pointer-events: none;
        }

        .hero-ring2 {
            position: fixed;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
            bottom: -300px;
            left: -300px;
            z-index: 0;
            animation: pulse-ring 10s ease-in-out infinite reverse;
            pointer-events: none;
        }

        @keyframes pulse-ring {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        /* =============================================
           LOADING OVERLAY
           ============================================= */
        .loading-overlay {
            position: fixed;
            inset: 0;
            background: var(--bg-primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s var(--transition), visibility 0.5s var(--transition);
        }

        .loading-overlay.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid var(--border-color);
            border-top-color: var(--accent-primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .loading-text {
            margin-top: 16px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* =============================================
           HEADER
           ============================================= */
        .page-header {
            position: sticky;
            top: 0;
            z-index: 100;

            backdrop-filter: blur(4px);
            border-bottom: 1px solid var(--border-subtle);
            padding: 14px 24px;
        }

        [data-theme="light"] .page-header {
            background: rgba(255, 255, 255, 0.9);
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 36px;
            width: auto;
        }

        .logo .logo-light { display: none; }
        .logo .logo-dark { display: block; }
        [data-theme="light"] .logo .logo-light { display: block; }
        [data-theme="light"] .logo .logo-dark { display: none; }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .theme-toggle {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s var(--transition);
        }

        .theme-toggle:hover {
            border-color: var(--accent-primary);
            color: var(--accent-primary);
            transform: rotate(15deg);
        }

        .btn-login {
            padding: 10px 24px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 12px;
            color: white;
            font-family: inherit;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s var(--transition);
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
        }

        /* =============================================
           EMPOWERMENT SIDE TAB
           ============================================= */
        .empowerment-side-tab {
            position: fixed;
            left: -10px;
            top: 32%;
            transform: translateY(-50%) rotate(180deg);
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            padding: 18px 12px;
            border-radius: 14px 0 0 14px;
            writing-mode: vertical-rl;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 13px;
            box-shadow: 4px 0 25px rgba(124, 58, 237, 0.3);
            transition: all 0.3s var(--transition);
            z-index: 99;
        }

        .empowerment-side-tab:hover {
            padding-left: 18px;
            box-shadow: 8px 0 35px rgba(124, 58, 237, 0.5);
            left:0px;
        }

        .empowerment-side-tab .tab-icon {
            font-size: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        /* =============================================
           MAIN CONTAINER
           ============================================= */
        .main-container {
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
            padding: 32px 24px 80px;
        }

        /* =============================================
           PROFILE COVER & INFO (Matching my_profile.html)
           ============================================= */
        .profile-cover {
            position: relative;
            height: 220px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            border-radius: 20px 20px 0 0;
            overflow: hidden;
        }

        .profile-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-cover-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
        }

        .profile-info-wrapper {
            padding: 0 28px 20px;
            background: var(--bg-secondary);
            border-radius: 0 0 20px 20px;
            border-top: 4px solid var(--accent-primary);
            margin-bottom: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .profile-info-row {
            display: flex;
            gap: 24px;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        /* Avatar */
        #avatar-image {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            border: 5px solid var(--bg-secondary);
            background: var(--bg-tertiary);
            overflow: hidden;
            position: relative;
            margin-top: -65px;
            flex-shrink: 0;

        }

        #avatar-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .avatar-initials {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 52px;
            font-weight: 700;
            background: var(--gradient-primary);
            color: white;
        }

        .verified-badge {
            position: absolute;
            bottom: 6px;
            right: 6px;
            width: 30px;
            height: 30px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            border: 3px solid var(--bg-secondary);
            box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
        }

        /* Profile Meta */
        .profile-meta-info {
            flex: 1;
            min-width: 200px;
            padding-top: 0;
            margin-top: -48px;
            z-index: 1;
        }

        .profile-display-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: #fff;
            margin: 8px 0 0;
            line-height: 1.1;

        }

        .profile-username-text {
            font-size: 1rem;
            color: var(--text-primary);
            margin: 6px 0 12px;
        }

        .profile-username-text a {
            color: var(--accent-primary);
            text-decoration: none;
            font-weight: 500;
        }

        .profile-username-text a:hover {
            text-decoration: underline;
        }

        .profile-bio-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0 0 14px;
            max-width: 620px;
            height: 100px;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .profile-location,
        .profile-headline {
            font-size: 13px;
            color: var(--text-tertiary);
            margin: 4px 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Focused Tags */
        .focused-tags-section {
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .focused-tag {
            display: inline-block;
            padding: 5px 14px;
            background: rgba(124, 58, 237, 0.15);
            color: var(--accent-primary);
            border-radius: 16px;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.2s var(--transition);
        }

        .focused-tag:hover {
            background: rgba(124, 58, 237, 0.25);
            transform: translateY(-1px);
        }

        /* Social Links */
        .social-links-row {
            display: flex;
            gap: 10px;
            margin-top: 14px;
        }

        .social-link {
            width: 36px;
            height: 36px;
            background: var(--bg-tertiary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s var(--transition);
        }

        .social-link:hover {
            background: var(--accent-primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
        }

        /* Action Buttons */
        .profile-action-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-top: 20px;
            flex-shrink: 0;
        }

        .profile-action-btn {
            padding: 8px 15px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 300;
            cursor: pointer;
            transition: all 0.3s var(--transition);
            border: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            white-space: nowrap;
        }

        .profile-action-btn.primary {
            background: var(--gradient-primary);
            color: white;
        }

        .profile-action-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
        }

        .profile-action-btn.primary.liked {
            background: linear-gradient(135deg, #EF4444, #F87171);
        }

        .profile-action-btn.secondary {
            background: var(--bg-tertiary);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
        }

        .profile-action-btn.secondary:hover {
            background: var(--border-color);
            transform: translateY(-2px);
        }

        .profile-action-btn.highlight {
            background: linear-gradient(135deg, #F59E0B, #FBBF24);
            color: #1F2937;
        }

        .profile-action-btn.highlight:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
        }

        /* =============================================
           STATS ROW
           ============================================= */
        .profile-stats-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 16px;
            padding: 24px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            margin-bottom: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .profile-stat {
            text-align: center;
            padding: 8px;
        }

        .profile-stat-value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .profile-stat-label {
            font-size: 12px;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* =============================================
           PROFILE CARDS
           ============================================= */
        .profile-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 20px;
            transition: all 0.3s var(--transition);
        }

        .profile-card:hover {
            border-color: rgba(124, 58, 237, 0.3);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), var(--shadow-glow);
        }

        .profile-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
        }

        .profile-card-title {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Interest/Area Tags */
        .interest-tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .interest-tag-item {
            padding: 10px 18px;
            background: rgba(124, 58, 237, 0.1);
            color: var(--accent-primary);
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s var(--transition);
        }

        .interest-tag-item:hover {
            background: rgba(124, 58, 237, 0.2);
            transform: translateY(-2px);
        }

        .interest-tag-item.empty {
            background: var(--bg-tertiary);
            color: var(--text-tertiary);
        }

        /* Your Why Section */
        .your-why-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .why-subsection h4 {
            font-size: 12px;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 0 10px;
        }

        .mission-text {
            font-size: 15px;
            color: var(--text-primary);
            font-style: italic;
            line-height: 1.7;
            padding-left: 16px;
            border-left: 3px solid var(--accent-primary);
        }

        .value-badge {
            display: inline-block;
            padding: 8px 16px;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(99, 102, 241, 0.15));
            color: var(--accent-primary);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            margin: 4px;
        }

        .non-negotiable-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 16px;
            background: var(--bg-tertiary);
            border-radius: 12px;
            margin-bottom: 10px;
        }

        .nn-number {
            width: 30px;
            height: 30px;
            background: var(--accent-primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .nn-text {
            flex: 1;
            font-size: 14px;
            color: var(--text-primary);
        }

        /* About Section */
        .about-text-content {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .favorite-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
        }

        .favorite-item {
            padding: 16px;
            background: var(--bg-tertiary);
            border-radius: 12px;
        }

        .favorite-item label {
            font-size: 12px;
            color: var(--text-tertiary);
            display: block;
            margin-bottom: 6px;
        }

        .favorite-item span {
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 500;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 14px;
        }

        .gallery-item {
            aspect-ratio: 1;
            border-radius: 14px;
            overflow: hidden;
            position: relative;
            background: var(--bg-tertiary);
            cursor: pointer;
            transition: all 0.3s var(--transition);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s var(--transition);
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item.blurred img {
            filter: blur(8px);
        }

        .gallery-item.blurred::after {
            content: '🔒';
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            background: rgba(0, 0, 0, 0.4);
        }

        .gallery-empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: 40px;
            color: var(--text-tertiary);
            font-size: 14px;
        }

        /* =============================================
           MODALS
           ============================================= */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s var(--transition);
            padding: 24px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            width: 100%;
            max-width: 450px;
            overflow: hidden;
            transform: scale(0.95) translateY(20px);
            transition: transform 0.3s var(--transition);
        }

        .modal-overlay.active .modal-content {
            transform: scale(1) translateY(0);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            border-bottom: 1px solid var(--border-color);
        }

        .modal-header h2 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .modal-close {
            width: 38px;
            height: 38px;
            background: var(--bg-tertiary);
            border: none;
            border-radius: 10px;
            color: var(--text-secondary);
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s var(--transition);
        }

        .modal-close:hover {
            background: var(--error);
            color: white;
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 24px;
        }

        /* Share Modal */
        .share-url-group {
            display: flex;
            gap: 10px;
            margin-bottom: 24px;
        }

        .share-url-input {
            flex: 1;
            padding: 14px 16px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 14px;
            font-family: inherit;
        }

        .btn-copy {
            padding: 14px 20px;
            background: var(--accent-primary);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s var(--transition);
        }

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

        .share-platforms {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .share-platform {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 18px 12px;
            background: var(--bg-tertiary);
            border-radius: 14px;
            text-decoration: none;
            color: var(--text-primary);
            transition: all 0.2s var(--transition);
        }

        .share-platform:hover {
            background: var(--border-color);
            transform: translateY(-3px);
        }

        .share-platform .platform-icon {
            font-size: 28px;
        }

        .share-platform .platform-name {
            font-size: 12px;
            color: var(--text-secondary);
        }

        /* Recommendations Panel */
        .recommendations-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s var(--transition);
        }

        .recommendations-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .recommendations-panel {
            position: fixed;
            top: 0;
            right: -450px;
            width: 100%;
            max-width: 420px;
            height: 100vh;
            background: var(--bg-secondary);
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
            z-index: 1000;
            overflow-y: auto;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .recommendations-panel.active {
            right: 0;
        }

        .reco-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            background: var(--bg-secondary);
            z-index: 10;
        }

        .reco-header h2 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .reco-close {
            width: 38px;
            height: 38px;
            background: var(--bg-tertiary);
            border: none;
            border-radius: 10px;
            color: var(--text-secondary);
            font-size: 18px;
            cursor: pointer;
            transition: all 0.2s var(--transition);
        }

        .reco-close:hover {
            background: var(--error);
            color: white;
        }

        .reco-body {
            padding: 20px 24px;
        }

        .reco-grid {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .reco-card {
            background: var(--bg-tertiary);
            border-radius: 16px;
            padding: 20px;
            transition: all 0.2s var(--transition);
        }

        .reco-card:hover {
            background: var(--border-color);
            transform: translateX(6px);
        }

        .reco-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 10px;
        }

        .reco-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
        }

        .reco-category {
            font-size: 12px;
            color: var(--text-tertiary);
            margin: 4px 0 0;
        }

        .reco-rating {
            font-size: 13px;
            color: var(--warning);
            font-weight: 600;
        }

        .reco-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin: 0;
        }

        /* =============================================
           TOAST
           ============================================= */
        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            padding: 14px 28px;
            border-radius: 14px;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            z-index: 9999;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .toast.visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        /* =============================================
           404 / NOT FOUND
           ============================================= */
        .not-found {
            text-align: center;
            padding: 100px 24px;
        }

        .not-found-icon {

            margin-bottom: 0px;
        }

        .not-found h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 36px;
            color: var(--text-primary);
            margin: 0 0 12px;
        }

        .not-found p {
            font-size: 16px;
            color: var(--text-secondary);
            margin: 0 0 28px;
        }

        .not-found .profile-action-btn {
            display: inline-flex;
                font-weight: 900;
    font-size: 15px;
        }

        /* =============================================
           RESPONSIVE
           ============================================= */
        @media (max-width: 768px) {
            .main-container {
                padding: 20px 16px 60px;
            }

            .profile-cover {
                height: 160px;
                border-radius: 16px 16px 0 0;
            }

            .profile-info-wrapper {
                padding: 0 20px 24px;
                border-radius: 0 0 16px 16px;
            }

            .profile-info-row {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            #avatar-image {
                margin-top: -55px;
                width: 110px;
                height: 110px;
            }

            .profile-meta-info {
                margin-top: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .profile-display-name {
                font-size: 2rem;
                text-align: center;
            }

            .profile-bio-text {
                text-align: center;
            }

            .focused-tags-section {
                justify-content: center;
            }

            .social-links-row {
                justify-content: center;
            }

            .profile-action-buttons {
                width: 100%;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }

            .profile-action-buttons .profile-action-btn {
                flex: 1;
                min-width: 100px;
            }

            .empowerment-side-tab {
                display: none;
            }

            .profile-stats-row {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }

            .profile-stat-value {
                font-size: 22px;
            }

            .profile-card {
                padding: 20px;
                border-radius: 14px;
            }

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

            .recommendations-panel {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .profile-action-buttons .profile-action-btn {
                padding: 10px 14px;
                font-size: 13px;
            }

            .interest-tags-list {
                justify-content: center;
            }

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


        .hero-ring,
 .hero-ring2 {
    position: fixed;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hero-ring {
    bottom: -200px;
    left: 20px;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.25;
}

.hero-ring2 {
    top: -200px;
    right: -120px;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.25;
}

/* Light theme decorative elements */
body.light-theme .hero-ring,
body.light-theme .hero-ring2 {
    border-color: rgba(139, 92, 246, 0.15);
    opacity: 0.3;
}
