/* Base Styles */
        :root {
            --primary: #FF00A8;
            --primary-dark: #734172;
            --secondary: #5F9D3F;
            --background: #f5f5f5;
            --surface: #ffffff;
            --error: #b00020;
            --text-primary: #333333;
            --text-secondary: #666666;
            --border: #e0e0e0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inconsolata', monospace;
            }

        body {
            background-color: var(--background);
            color: var(--text-primary);
            line-height: 1.8;
        }

        a {
            text-decoration: none;
            color: var(--primary);
        }

        h1, h2, h3 {
            letter-spacing: -0.02em;
            line-height: 1.8;
        }

        h4 {
                line-height: 1;
        }

        p {
            line-height: 1.3;
            font-size:90%;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header Styles */
        header {
            background-color: var(--surface);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: center; /* Center the logo */
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo-container {
            text-align: center;
        }
        
        .logo-container img {
            max-height: 60px;
            vertical-align: middle;
        }

        /* Only needed if you decide to restore the nav icons */
        .nav-icons {
            display: flex;
            gap: 20px;
        }
        
        .nav-icons a {
            color: var(--text-secondary);
            font-size: 20px;
        }
        
        .nav-icons a:hover {
            color: var(--primary);
        }

        /* Profile Section */
        .profile-section {
            display: flex;
            padding: 20px;
            background-color: var(--surface);
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .profile-pic {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background-color: #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .profile-pic i {
            font-size: 60px;
            color: var(--surface);
        }

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

        .profile-info h1 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .profile-info p {
            color: var(--text-secondary);
            margin-bottom: 15px;
        }

        .profile-stats {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-weight: bold;
            font-size: 18px;
        }

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

        /* Tabs */
        .tabs {
            display: flex;
            justify-content: center;
            border-bottom: 1px solid var(--border);
            margin-bottom: 20px;
            background-color: var(--surface);
            border-radius: 8px 8px 0 0;
            overflow: hidden;
        }

        .tab {
            padding: 15px 25px;
            cursor: pointer;
            position: relative;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .tab.active {
            color: var(--primary);
        }

        .tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary);
        }

        /* Filter Section */
        .filter-section {
            background-color: var(--surface);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .filter-title {
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 15px;
        }

        .filter-btn {
            background-color: #f0f0f0;
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s;
        }

        .filter-btn:hover {
            background-color: #e0e0e0;
        }

        .filter-btn.active {
            background-color: var(--primary);
            color: white;
        }

        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .filter-tag-title {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .filter-tag {
            background-color: #f0f0f0;
            padding: 5px 10px;
            border-radius: 16px;
            font-size: 14px;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s;
        }

        .filter-tag:hover, .filter-tag.active {
            background-color: var(--primary);
            color: white;
        }

        /* Feed & Posts */
        .feed {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .post {
            background-color: var(--surface);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .post-header {
            display: flex;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid var(--border);
        }

        .post-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
            font-weight: bold;
        }

        .post-user {
            flex-grow: 1;
        }

        .post-username {
            font-weight: bold;
            font-size: 16px;
        }

        .post-meta {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .post-more {
            color: var(--text-secondary);
            cursor: pointer;
        }

        .post-content {
            padding: 15px;
        }

        .post-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .post-text {
            margin-bottom: 15px;
        }

        .post-image {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 15px;
            max-height: 400px;
            object-fit: cover;
        }

        .post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .post-tag {
            background-color: #eee;
            padding: 5px 10px;
            border-radius: 16px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .post-actions {
            display: flex;
            padding: 10px 15px;
            border-top: 1px solid var(--border);
        }

        .post-action {
            display: flex;
            align-items: center;
            margin-right: 20px;
            color: var(--text-secondary);
            font-size: 14px;
            cursor: pointer;
        }

        .post-action i {
            margin-right: 5px;
        }

        .post-action:hover {
            color: var(--primary);
        }

        .post-type-indicator {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            margin-right: 8px;
        }

        .post-type-project {
            background-color: #e1f5fe;
            color: #0288d1;
        }

        .post-type-publication {
            background-color: #e8f5e9;
            color: #388e3c;
        }

        .post-type-media {
            background-color: #f3e5f5;
            color: #7b1fa2;
        }

        /* Publication Specific Styles */
        .publication-details {
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .publication-authors {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .publication-citation {
            color: var(--text-secondary);
            margin-bottom: 5px;
            line-height: 1.4;
        }

        .publication-doi {
            color: var(--primary);
        }

        .publication-buttons {
            display: flex;
            gap: 10px;
        }

        .publication-button {
            background-color: #f0f0f0;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .publication-button:hover {
            background-color: #e0e0e0;
        }

        /* Tab Content */
        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        /* About Section Styles */
        .profile-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .highlight-card {
            background-color: var(--surface);
            border-radius: 8px;
            padding: 20px;
            display: flex;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .highlight-icon {
            width: 50px;
            height: 50px;
            background-color: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary);
            font-size: 20px;
        }

        .highlight-content h3 {
            margin-bottom: 15px;
            font-size: 18px;
        }

        .highlight-detail {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 10px;
        }

        /* Blog Styles */
        .blog-post {
            padding: 20px;
            background-color: var(--surface);
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .blog-title {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .blog-meta i {
            margin-right: 5px;
        }

        .blog-meta span {
            margin-right: 15px;
        }

        .blog-content {
            line-height: 1.8;
        }

        .blog-content p {
            margin-bottom: 15px;
        }

        .blog-content h3 {
            margin: 25px 0 15px;
        }

        /* Contact Section */
        .contact-section {
            margin-top: 20px;
            padding: 20px;
            background-color: var(--surface);
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .contact-section h2 {
            margin-bottom: 15px;
        }

        .contact-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .contact-link {
            display: flex;
            align-items: center;
            background-color: #f5f5f5;
            padding: 8px 15px;
            border-radius: 4px;
        }

        .contact-link i {
            margin-right: 8px;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 30px 0;
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .profile-section {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .profile-pic {
                margin-right: 0;
                margin-bottom: 20px;
            }

            .tabs {
                overflow-x: auto;
            }

            .profile-highlights {
                grid-template-columns: 1fr;
            }

            .expertise-tags {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
                margin: 15px 0;
            }
            
            .expertise-tag {
                background-color: var(--primary);
                color: white;
                padding: 5px 12px;
                border-radius: 20px;
                font-size: 14px;
                font-weight: 500;
            }
            
            .methods-section {
                margin-top: 20px;
                width: 100%;
            }
            
            .methods-section h3 {
                font-size: 16px;
                margin-bottom: 10px;
                color: var(--text-primary);
            }
            
            .methods-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 10px;
            }
            
            .method-item {
                background-color: #f5f5f5;
                padding: 10px;
                border-radius: 8px;
                display: flex;
                align-items: center;
                gap: 8px;
                font-size: 14px;
            }
            
            .method-item i {
                color: var(--primary);
                font-size: 16px;
            }
        }
        
        @media (max-width: 768px) {
            .methods-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .expertise-tags {
                justify-content: center;
            }
        }
