.project-details {
    padding: 2rem 0 4rem;
  }
  
  .back-link {
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #777779;
    transition: color 0.3s ease;
  }
  
  .back-link:hover {
    color: #534848;
  }
  
  .project-header {
    margin-bottom: 2rem;
  }
  
  .project-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #777779;
  }
  
  .project-content {
    line-height: 1.6;
  }
  
  .project-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 2rem 0 1rem;
  }
  
  .project-content p {
    margin-bottom: 1.2rem;
  }
  
  .project-content a {
    color: #4361ee;
    transition: color 0.3s ease;
  }
  
  .project-content a:hover {
    color: #3a0ca3;
    text-decoration: underline;
  }
  
  .keywords {
    color: #3a0ca3;
    font-weight: 500;
  }
  
  /* Few-Shot Demo Styles */
  .giochino {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
  }
  
  .canvas-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .canvas-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .canvas-wrapper {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.75rem;
  }
  
  .demo-canvas {
    background-color: #ffffff;
    touch-action: none;
    cursor: crosshair;
  }
  
  .canvas-button {
    padding: 0.5rem 1rem;
    background-color: #e9ecef;
    color: #495057;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
  }
  
  .canvas-button:hover {
    background-color: #dee2e6;
  }
  
  .canvas-instructions {
    text-align: center;
    margin: 1rem 0;
    font-weight: 500;
    color: #495057;
  }
  
  .canvas-divider {
    height: 2px;
    background-color: #dee2e6;
    margin: 1.5rem 0;
    border-radius: 2px;
  }
  
  .run-button {
    display: block;
    width: max-content;
    margin: 2rem auto 0;
    padding: 0.75rem 1.5rem;
    background-color: #4361ee;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
  }
  
  .run-button:hover {
    background-color: #3a0ca3;
    transform: translateY(-2px);
  }
  
  .loader {
    width: 40px;
    height: 40px;
    margin: 2rem auto 0;
    border: 4px solid rgba(67, 97, 238, 0.3);
    border-radius: 50%;
    border-top: 4px solid #4361ee;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .canvas-row {
      flex-direction: column;
      align-items: center;
    }
    
    .canvas-wrapper {
      max-width: 100%;
    }
    
    .project-header h1 {
      font-size: 2rem;
    }
  }
  
  /* Medium screens and above */
  @media (min-width: 768px) {
    .canvas-row {
      flex-direction: row;
      flex-wrap: nowrap;
    }
    
    .canvas-column {
      flex: 1;
      max-width: 33.333%;
    }
  }