/* Стили блока «At a glance» / Technical Specifications (таблица) */

.demo-game-specs {
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.demo-game-specs-title {
  font-size: 38px;
  margin-top: 20px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 0 40px;
  line-height: 39px;
}

.demo-game-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.demo-game-spec-item {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 10px;
  border-radius: 10px;
  height: 40px;
}

.demo-game-spec-item:last-child {
  border-bottom: none;
}

.demo-game-spec-item .spec-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 14px;
  font-family: var(--second-family);
}

.demo-game-spec-item .spec-value {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--second-family);
}

.demo-game-spec-item .spec-value--highlight {
  color: #61f400;
  font-weight: 700;
}

@media (min-width: 768px) {
  .demo-game-specs {
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  .demo-game-specs {
    padding: 1rem;
  }

  .demo-game-specs-title {
    font-size: 16px;
    margin-bottom: 1rem;
  }

  .demo-game-specs-table td {
    padding: 0.75rem 0;
    font-size: 13px;
  }
}
