/* ===== 8-битный блок ===== */

.seoms-eightbit {
  position: relative;
  padding: 80px 0 88px;
  color: #fff;
  font-family: "MontserratCustom", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 10, 15, 0.9) 0%,
      rgba(10, 10, 15, 0.7) 35%,
      rgba(5, 5, 10, 0.95) 100%
    ),
    url("../../images/fon-2.gif") center center / cover no-repeat;
  overflow: hidden;
}

.seoms-eightbit__overlay {
  /* на будущее, если захочешь доп. эффекты — сейчас просто слой под контент */
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.seoms-eightbit__inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

/* Заголовок */

.seoms-eightbit__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 36px;
}

.seoms-eightbit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.75);
}

.seoms-eightbit__title {
  margin: 0;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-shadow:
    0 4px 16px rgba(0, 0, 0, 0.9),
    0 0 1px rgba(0, 0, 0, 0.8);
}

/* Список «фич» */

.seoms-eightbit__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 56px;
  margin: 0;
}

.seoms-eightbit__item {
  text-align: left;
}

.seoms-eightbit__item--full {
  grid-column: 1 / -1; /* последняя — на всю ширину */
}

.seoms-eightbit__item-title {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
}

.seoms-eightbit__item-text {
  margin: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Адаптив */

@media (max-width: 980px) {
  .seoms-eightbit {
    padding: 64px 0 72px;
  }

  .seoms-eightbit__title {
    font-size: 24px;
  }

  .seoms-eightbit__list {
    gap: 18px 32px;
  }

  .seoms-eightbit__item-title {
    font-size: 17px;
  }

  .seoms-eightbit__item-text {
    font-size: 14px;
  }
}

@media (max-width: 680px) {
  .seoms-eightbit {
    padding: 52px 0 60px;
  }

  .seoms-eightbit__inner {
    max-width: 100%;
  }

  .seoms-eightbit__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .seoms-eightbit__item,
  .seoms-eightbit__item--full {
    grid-column: auto;
  }

  .seoms-eightbit__item {
    text-align: left;
  }

  .seoms-eightbit__header {
    margin-bottom: 28px;
  }

  .seoms-eightbit__title {
    font-size: 21px;
  }
}
