      /* Additional styles for manual project cards */
      .project-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 30px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        overflow: hidden;
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
      }

      .project-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #4ecdc4, #667eea, #ff6b6b);
        background-size: 200% 100%;
        animation: gradientShift 3s ease infinite;
      }

      @keyframes gradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
      }

      .project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.08);
      }

      .project-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 15px;
        gap: 10px;
      }

      .project-header h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #ffffff;
        margin: 0;
        flex: 1;
      }

      .private-badge {
        background: rgba(255, 107, 107, 0.2);
        color: #ff6b6b;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        border: 1px solid rgba(255, 107, 107, 0.3);
        white-space: nowrap;
      }

      .language-tag {
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        border: 1px solid rgba(102, 126, 234, 0.3);
        white-space: nowrap;
      }

      .project-description {
        color: #a0aec0;
        margin-bottom: 20px;
        line-height: 1.6;
        font-size: 0.95rem;
        flex: 1;
      }

      .project-technologies {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
      }

      .tech-tag {
        background: rgba(78, 205, 196, 0.1);
        color: #4ecdc4;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        border: 1px solid rgba(78, 205, 196, 0.3);
      }

      .project-meta {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        font-size: 0.85rem;
        color: #718096;
      }

      .project-links {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: auto;
      }

      .btn-secondary {
        background: linear-gradient(135deg, #4ecdc4, #44a08d);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border: none;
      }

      .btn-secondary:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
      }

      .btn-outline {
        background: transparent;
        color: #667eea;
        padding: 8px 16px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border: 1px solid rgba(102, 126, 234, 0.5);
      }

      .btn-outline:hover {
        background: rgba(102, 126, 234, 0.1);
        border-color: #667eea;
      }

      /* Ensure grid layout works properly */
      .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }

      /* Loading state for manual projects */
      .manual-projects-loading {
        text-align: center;
        padding: 40px;
        color: #a0aec0;
      }

      /* Animation for project cards */
      .projects-section.animate-in .project-card {
        animation: fadeInUp 0.6s ease forwards;
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Stagger animation for project cards */
      .project-card:nth-child(1) { animation-delay: 0.1s; }
      .project-card:nth-child(2) { animation-delay: 0.2s; }
      .project-card:nth-child(3) { animation-delay: 0.3s; }
      .project-card:nth-child(4) { animation-delay: 0.4s; }
      .project-card:nth-child(5) { animation-delay: 0.5s; }

      /* Responsive improvements */
      @media (max-width: 768px) {
        .projects-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        
        .project-card {
          padding: 20px;
        }
        
        .project-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 8px;
        }
        
        .project-links {
          flex-direction: column;
        }
        
        .btn-secondary, .btn-outline {
          width: 100%;
          justify-content: center;
        }
      }