/*GAME GRID*/

/* Grid-Container */

   .grid-project-container h1 {
      font-family: 'Press Start 2P', cursive;
      font-size: 3em;
      text-align: center;
      margin-bottom: 40px;
      background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .grid-project-container {
      display: grid;
      grid-template-columns: repeat(4, 300px);
      gap: 30px;
      justify-content: flex-start;
    }
    
    .project-card {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .project-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
    }
    
    .project-card img {
      width: 100%;
      height: auto;
      display: block;
      transition: opacity 0.3s ease;
    }
    
    .project-card:hover img {
      opacity: 0.9;
    }
    
    .project-info {
      padding: 20px;
      text-align: center;
    }
    .project-info p, a .project-info p {
      margin-top: 10px;
      font-size: 0.9em;
      color: var(--description-color);
      line-height: 1.4;
    }
    .project-info h3, a .project-info h3 {
      margin: 0;
      font-family: 'Press Start 2P', cursive;
      font-size: 1.4em;
      color: var(--primary-color);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .project-title , a .project-title {
      font-size: 1em !important;
    }
    
    .project-button {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 20px;
      font-size: 0.9em;
      font-weight: bold;
      text-transform: uppercase;
      text-decoration: none;
      color: #000;
      background: var(--button-bg);
      border-radius: 5px;
      transition: all 0.3s ease;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    }

    .project-button:hover {
      transform: scale(1.1);
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.7);
    }
.project-button a{
	color: #000;
}

    /* Responsive Anpassungen */
    @media (max-width: 1280px) {
      .projects-grid {
        grid-template-columns: repeat(3, 300px);
      }
    }
    
    @media (max-width: 980px) {
      .projects-grid {
        grid-template-columns: repeat(2, 300px);
      }
    }
    
    @media (max-width: 640px) {
      .projects-grid {
        grid-template-columns: 300px;
        justify-content: center;
      }
    }