/* Основен стил на тялото */
body {
  font-family: Arial, sans-serif;
  background: #f0f0f0;
  margin: 0;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #333;
}

/* ✅ Навигация (нова, адаптивна) */
.navbar {
  background-color: #333;
  padding: 10px;
  position: relative;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  margin: 5px;
}

.nav-btn {
  display: block;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #444;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.nav-btn:hover {
  background-color: #555;
}

.nav-btn.active {
  background-color: #2196F3;
}

/* 📱 Мобилен изглед */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-bottom: 10px;
  }

  .menu {
    display: none;
    flex-direction: column;
    align-items: center; /* Центрира бутоните в мобилен режим */
  }

  .menu.active {
    display: flex;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-bottom: 1px solid #555;
    background-color: #333;

    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* 🧱 Карти с игри / модове */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.item {
  background: white;
  border-radius: 10px;
  padding: 15px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
}

.item p {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
}

.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.buttons button {
  padding: 8px 12px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.download-btn {
  background-color: #4CAF50;
  color: white;
}

.info-btn {
  background-color: #2196F3;
  color: white;
}
/* Прозрачни бутони за категории */
.transparent-btn {
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  padding: 8px 16px;
  margin: 4px;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.transparent-btn:hover {
  background: rgba(0, 255, 255, 0.1);
}

.transparent-btn.active {
  box-shadow: 0 0 10px #00ffff;
  background: rgba(0, 255, 255, 0.2);
}

.category-buttons {
  text-align: center;
  margin-bottom: 20px;
}
.category-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.transparent-btn {
  background: rgba(10, 10, 10, 0.8); /* по-тъмен фон */
  border: 2px solid #007777;        /* по-тъмен контур */
  color: #00cccc;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.transparent-btn:hover {
  background: rgba(0, 100, 100, 0.1);
  box-shadow: 0 0 4px #008888;
}

.transparent-btn.active {
  background: rgba(0, 100, 100, 0.2);
  box-shadow: 0 0 6px #00aaaa;
}


