.button-back {
  display: inline-block;
  margin: 20px;
  padding: 12px 24px;
  background: linear-gradient(145deg, #f0c040, #d39e00);
  color: #1a1a1a !important;
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 12px;
  border: 2px solid #a56d00;
  text-decoration: none;
  box-shadow: 0 0 6px #000;
  transition: all 0.3s ease;
}

.button-back:hover {
  background: linear-gradient(145deg, #ffd966, #c08a00);
  transform: scale(1.05);
  box-shadow: 0 0 10px #f0c040;
}

body {
  background-color: #1a1a1a;
  color: #fff;
  font-family: 'Georgia', serif;
  margin: 0;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #f0c040;
  margin-bottom: 30px;
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-card {
  background-color: #2c2c2c;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 10px #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tech-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.tech-content h2 {
  color: #f0c040;
  margin-bottom: 10px;
}

.tech-content table {
  width: 100%;
  color: #ccc;
  font-size: 0.9rem;
  border-spacing: 4px;
}

.tech-content details {
  margin: 10px 0;
  color: #ddd;
}

.tech-content ul {
  padding-left: 18px;
  margin: 0;
}

.tech-content li {
  font-size: 0.95rem;
  margin-bottom: 5px;
}

/* Пагинация */
.pagination {
  text-align: center;
  margin-top: 40px;
}

.pagination a {
  color: #f0c040;
  background-color: #2c2c2c;
  padding: 8px 12px;
  border-radius: 6px;
  margin: 0 5px;
  text-decoration: none;
  box-shadow: 0 0 4px #000;
}

.pagination a.active {
  background-color: #f0c040;
  color: #1a1a1a;
  font-weight: bold;
}

.back-button {
  display: inline-block;
  margin-bottom: 20px;
  margin-left: 20px;
  padding: 10px 18px;
  background: linear-gradient(145deg, #f0c040, #d39e00);
  color: #1a1a1a;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid #a56d00;
  box-shadow: 0 0 6px #000;
  transition: 0.3s ease;
}

.back-button:hover {
  background: linear-gradient(145deg, #ffd966, #c08a00);
  transform: scale(1.05);
}

