.projects-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
  }

  .projects-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
      radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 99, 71, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(70, 130, 180, 0.07) 0%, transparent 50%);
  }

  .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-particle 20s infinite linear;
  }

  @keyframes float-particle {
    0% {
      transform: translate(0, 0);
    }
    25% {
      transform: translate(50px, 30px);
    }
    50% {
      transform: translate(100px, -20px);
    }
    75% {
      transform: translate(-30px, -60px);
    }
    100% {
      transform: translate(0, 0);
    }
  }

  .projects-title {
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
  }

  body.dark-theme .projects-title {
    color: #e0e0e0;
    text-shadow: 0 2px 15px rgba(100, 150, 255, 0.3);
  }

  .projects-list {
    list-style: none;
    padding: 0;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .project-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
  }

  .project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #81C784);
  }

  body.dark-theme .project-card {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  body.dark-theme .project-card::before {
    background: linear-gradient(90deg, #66BB6A, #459E48);
  }

  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
  }

  body.dark-theme .project-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .project-title {
    color: #333;
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
  }

  body.dark-theme .project-title {
    color: #e0e0e0;
  }

  .project-description {
    color: #666;
    margin: 0 0 1rem 0;
    font-size: 1rem;
    line-height: 1.5;
  }

  body.dark-theme .project-description {
    color: #aaa;
  }

  .project-link {
    display: inline-flex;
    align-items: center;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    gap: 0.5rem;
    position: relative;
  }

  .project-link::before {
    content: "🔗";
    font-size: 1.2rem;
  }

  .project-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
  }

  .project-link:hover {
    color: #0056b3;
  }

  .project-link:hover::after {
    width: 100%;
  }

  body.dark-theme .project-link {
    color: #00aaff;
  }

  body.dark-theme .project-link:hover {
    color: #007acc;
  }

  body.dark-theme .project-link::after {
    background: #00aaff;
  }

  /* Адаптивность */
  @media (max-width: 768px) {
    .projects-container {
      padding: 1rem;
    }

    .projects-title {
      font-size: 2.5rem;
      margin: 2rem 0 2rem 0;
    }

    .project-card {
      padding: 1.5rem;
    }

    .project-title {
      font-size: 1.2rem;
    }
  }