.category-detail {
    padding: 40px 20px;
    color: #9333ea;
  }
  
  .breadcrumbs {
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #0f766e;
  }
  
  .breadcrumbs a {
    color: #9333ea;
    text-decoration: none;
  }
  
  .category-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .category-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
  }
  
  .category-info h1 {
    font-size: 2.4rem;
    color: #0f766e;
    margin: 0;
  }
  
  .category-info p {
    font-size: 1.1rem;
    color: #333333;
  }
  
  .game-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);  /* Exactly 6 columns */
    gap: 20px;
    margin-top: 20px;
  }
  
  
  .game-card {
    background: linear-gradient(145deg, #4a00e0, #6a00f0);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.2s;
  }
  
  .game-card:hover {
    transform: scale(1.03);
  }
  
  .game-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
  
  .game-card h3 {
    margin: 0;
    font-size: 1rem;
    color: white;
  }
  .play-button {
    display: inline-block;
    margin-top: 22px;
    padding: 10px 20px;
    background: linear-gradient(90deg, #fba504, #ff7b00);
    color: white;
    font-weight: bold;
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.2s ease;
  }
  
  .play-button:hover {
    transform: scale(1.05);
  }

  @media screen and (max-width: 1200px) {
    .game-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media screen and (max-width: 768px) {
    .game-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }