:root {
  --black__color: #000;
  --light__gray: #d7d7d7;
  --background: #f5f5f7;
}

[class*="__container"] {
  width: 1200px;
  margin: 0 auto;
  /* background: var(--test__color); */
}

section {
  background: #fff;
}

a {
  text-decoration: none;
}

/* header start */
.header {
  height: 100px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--black__color);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 80px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  text-transform: capitalize;

  span {
    text-transform: uppercase;
  }
}

.menu__img {
  height: 24px;
}

.menu__link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--black__color);
}

/* header end */

/* main start */

.main {
  padding-top: 70px;
}

.hero {
  background: url(./image/background.jpg);
  height: 50vh;
  background-position: center -100px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #d7d7d7;
}

.categorie__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.categories__item {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #717182;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  height: 180px;
}

.categories__description {
  font-size: 14px;
  color: #717182;
}

.categories__title {
  font-size: 24px;
  font-weight: 700;
}

.categories__button {
  width: 100%;
  background: none;
  border: 1px solid #717182;
  color: var(--black__color);
  border-radius: 4px;
}

.icon-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.pets {
  background: #FFEDD4;
  color: #9F2D00;
}

.wiki {
  background: #DBEAFE;
  color: #2547BC;
}

.controller {
  background: #DBFCE7;
  color: #016630;
}

.tv {
  background: #F3E8FF;
  color: #6E11B0;
}

.bitcoin {
  background: #FEF9C2;
  color: #894B00;
}

.music {
  background: #FCE7F3;
  color: #A3004C;
}

.code {
  background: #E0E7FF;
  color: #3A2EAE;
}

.sport {
  background: #D0FAE5;
  color: #0B694E;
}


button:hover {
  background: #E9EBEF;
  cursor: pointer;
}




/* Cats start */

.about__block {
  text-align: center;
  margin-bottom: 50px;
}

.about__cat-subtitle,
.about__section-subtitle {
  font-size: 14px;
  color: #717182;
}

.info-section {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #717182;
  margin-top: 20px;
}

.info-section__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: normal;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
}

.gallery__item {
  overflow: hidden;
  border-radius: 8px;
}

.gallery__img {
  object-fit: cover;
  height: 300px;
  width: 285px;
}

.gallery__img:hover {
  transform: scale(1.05);
}

.cats-facts__item {
  padding: 16px;
  border-radius: 8px;
  background: #ECECF0;
}

.info-section__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-section__item {
  position: relative;
}

.cats-breed__desc {
  font-size: 14px;
  color: #717182;
}

.cats-breed__country {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 12px;
  border: 1px solid #ECECF0;
  padding: 5px;
  border-radius: 4px;
}

.cats-breed {
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #717182;
}

.cats-reading__time {
  background: #ECECF0;
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 0 4px;
  border-radius: 4px;
  font-size: 14px;
}

.history-section .info-section__item {
  margin-top: 20px;
}



/* Модальне вікно */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal__content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

/* Кнопка для випадкового факту */
.random-fact__btn {
  display: inline-block;
  margin: 10px 0;
  padding: 8px 14px;
  background: #ff9800;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.random-fact__btn:hover {
  background: #e68900;
}

.random-fact__result {
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}


/* cats end */


/* wiki start */


.game-block {
  border: 1px solid #717182;
  border-radius: 12px;
  padding: 20px;
  margin: auto;
}

.filter-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
}

.filter-row input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* кастомний селект */
.custom-select {
  position: relative;
  width: 200px;
  user-select: none;
}

.custom-select .selected {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff url("arrow.svg") no-repeat right 0.75rem center;
  background-size: 16px;
  cursor: pointer;
}

.custom-select .options {
  position: absolute;
  top: calc(100% + 5px);
  /* відступ 5px */
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 10;
}

.custom-select .options li {
  padding: 10px;
  cursor: pointer;
}

.custom-select .options li:hover,
.custom-select .options li.active {
  background: #e0e0e0;
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.game-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 15px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  background: #e5e5e5;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  margin-right: 6px;
  display: inline-block;
}

.rating {
  font-weight: bold;
  background: #f3f3f3;
  padding: 4px 8px;
  border-radius: 6px;
}

.game-title {
  font-size: 18px;
  font-weight: bold;
  margin: 6px 0;
}

.platforms {
  font-size: 13px;
  color: #666;
}

.guides__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid #d7d7d7;
}

.guides__row:last-child {
  border-bottom: none;
}

.guides__row span {
  display: inline-block;
  padding: 1px 4px;
  border-radius: 4px;
  font-size: 14px;
}

.guides__cell--type span {
  border: 1px solid var(--black__color);
}

.guides__cell--difficulty-hard span {
  color: #fff;
  background: #C2185B;
}

.guides__cell--difficulty-easy span {
  background: var(--black__color);
  color: #fff;
}

.guides__cell--difficulty-medium span {
  background: #d7d7d7;
}


/* games-rating start */
.games-rating__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.games-rating__info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.games-rating__number {
  display: inline-block;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  text-align: center;
  line-height: 50px;
  background: var(--black__color);
  color: #fff;
}


/* wiki end */

/* games start */


.info-section__desc {
  color: #717182;
  font-size: 14px;
}

.new__game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.new__game-item {
  border: 1px solid #717182;
  overflow: hidden;
  border-radius: 8px;
}

.new__game-img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}

.new__game-desc {
  padding: 0 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.new__game-title {
  font-size: 20px;
  font-weight: normal;
}

.new__game-studio {
  font-size: 14px;
  color: #717182;
}

.new__game-meta span {
  font-size: 14px;
  padding: 1px 6px;
  border-radius: 4px;
  /* background: red; */
}

.new__game-genre {
  border: 1px solid #717182;
}

.new__game-platform {
  background: #d7d7d7;
}

.new__game-extra {
  display: flex;
  justify-content: space-between;
}

.recommended__games-card {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.recommended__games-title {
  font-weight: 600;
  font-size: 18px;
}

.recommended__games-features {
  display: flex;
  gap: 5px;
}

.recommended__games-features li {
  padding: 1px 6px;
  background: #d7d7d7;
  border-radius: 4px;
}

.recommended__games-right {
  font-size: 14px;
  text-align: right;
}

.recommended__games-score {
  margin-bottom: 4px;
}

.recommended__games-score span {
  border: 1px solid #717182;
  padding: 1px 6px;
  border-radius: 4px;
}

.recommended__games-time {
  font-size: 12px;
  color: #717182;
}

.top-games__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.top-games__info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-games__score {
  padding: 1px 6px;
  border: 1px solid #717182;
  border-radius: 4px;
  font-size: 14px;
}

.top-games__number {
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  background: var(--black__color);
  color: #fff;
  border-radius: 100px;
  display: inline-block;
}

.top-games__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.expected-releases__item {
  display: flex;
  justify-content: space-between;
}

.expected-releases__title {
  font-size: 16px;
}

.expected-releases__studio,
.expected-releases__platforms {
  color: #717182;
  font-size: 14px;
}

.expected-releases__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  text-align: center;
}

.expected-releases__right span {
  padding: 1px 6px;
  border-radius: 4px;
}

.expected-releases__hype--high {
  background: var(--black__color);
  color: #fff;
}

.expected-releases__hype--medium {
  background: #d7d7d7;
}

.expected-releases__hype--low {
  border: 1px solid #717182;
}



.vscode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;

  .info-section {
    margin: 0;
  }
}

.vscode-item__name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.vscode-item__name span {
  font-size: 12px;
  border: 1px solid #d7d7d7;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: normal;
}

.vscode-desc {
  font-size: 14px;
  color: #717182;
}


.plugin__info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  color: #717182;
  margin-top: 8px;
}

.rating-img {
  height: 14px;
  margin-right: 4px;
}

.plugin__info span {
  background: none;
}

/* Підсвітка при кліку */
.combination-key.flash,
.combination.flash {
  background: #ffe066;
  transition: background 0.3s;
}

/* Toast справа внизу */
#hotkey-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  font-size: 20px;
  padding: 12px 20px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1000;
}

#hotkey-toast.show {
  opacity: 1;
  transform: translateY(0);
}




.hot-key__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid #d7d7d7;
  gap: 20px;
  padding: 4px 8px;
  font-size: 14px;

  &:last-child {
    border: none;
  }
}

.combination {
  background: #d7d7d7;
  border-radius: 4px;
  padding: 4px 8px;
  display: inline-block;
}


.info-section-vscode {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.guide__item {
  display: flex;
  align-items: start;
  gap: 8px;
  margin-top: 16px;
}

.number span {
  height: 30px;
  width: 30px;
  color: #fff;
  background: #000;
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  line-height: 30px;
}

.guide-title {
  font-weight: 600;
}

.text {
  font-size: 14px;
  color: #717182;
}


.vscode-combination__block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 85vh;
}

.item-vscode .combination-key {
  background: #d7d7d7;
}

.grid-vscode-combination {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;

  .combination-title {
    font-size: 16px;
    font-weight: 600;
  }
}

.combination-grid__list .vscode-item {
  font-size: 14px;
}

.combination-grid__list .action {
  margin-top: 4px;
}

.combination-grid__list .combination-key {
  margin-top: 8px;
}

.navigation {
  margin-bottom: 10px;
}

/* крипта старт */



.crypto-section {
  /* max-width: 900px; */
  margin: 40px auto;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.crypto-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  font-weight: bold;
}

.about__section-title .material-symbols-outlined {
  font-size: 24px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background: #fafafa;
  font-weight: bold;
}

.crypto-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.crypto-name span.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f97316;
  /* помаранчевий */
  color: #fff;
  font-size: 16px;
}

.positive {
  color: green;
}

.negative {
  color: red;
}

.crypto__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

canvas {
  background: white;
  border: 1px solid #ccc;
  margin: 40px auto;
  display: block;
}

.crypto__news {
  margin-top: 50px;
}

.cripto__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.news-item {
  font-size: 14px;
}

.news__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.news-item span,
.news-item .raiting {
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

.read__time {
  border: 1px solid #d7d7d7;
}

.news-item .raiting {
  margin-top: 8px;
}

.positive__raiting {
  background: #000;
  color: #fff;
}

.neutral__raiting {
  background: #d7d7d7;
}

/* серіали старт */


.custom-select {
  position: relative;
  width: 200px;
  user-select: none;
}

.custom-select .selected {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff url("arrow.svg") no-repeat right 0.75rem center;
  background-size: 16px;
  cursor: pointer;
}

.custom-select .options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 10;
}

.custom-select .options li {
  padding: 10px;
  cursor: pointer;
}

.custom-select .options li:hover,
.custom-select .options li.active {
  background: #e0e0e0;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.media-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.poster {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.media-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.media-title {
  font-weight: bold;
  font-size: 16px;
}

.info-row {
  font-size: 14px;
  color: #555;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-top: auto;
}

.rating {
  font-weight: bold;
  color: #333;
}

.serials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.serial__item {
  font-size: 14px;
}

.serial__title,
.serial-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.serial__title span {
  padding: 2px 4px;
  border-radius: 4px;
  border: 1px solid #d7d7d7;
  font-size: 12px;
}

.serial-desc,
.date {
  color: #555;
}


/* sport start */

.sport-news-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* мультиклас */
.info-section {
  border: 1px solid #d7d7d7;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.custom-select {
  position: relative;
  width: 220px;
  user-select: none;
}

.custom-select .selected {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff url("arrow.svg") no-repeat right 0.75rem center;
  background-size: 16px;
  cursor: pointer;
}

.custom-select .options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 10;
}

.custom-select .options li {
  padding: 10px;
  cursor: pointer;
}

.custom-select .options li:hover,
.custom-select .options li.active {
  background: #e0e0e0;
}


.news-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-title {
  /* font-weight: bold; */
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
}

.news-meta {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.tone {
  font-size: 13px;
  margin-bottom: 8px;
}

.news-desc {
  font-size: 14px;
  margin-bottom: 12px;
  flex: 1;
}

.news-footer {
  font-size: 13px;
  color: #777;
}

.news-title {
  display: flex;
  justify-content: space-between;
}

.news-meta,
.tone {
  font-size: 12px;
  padding: 4px 8px;
}

.tone {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
}

.tone.позитивний {
  background: green;
  color: #fff;
}

.tone.нейтральний {
  background: #d7d7d7;
}

.tone.негативний {
  background: #f44336;
}

.sport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  font-size: 14px;

}

.sport__header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  div {
    span {
      padding: 4px 8px;
      border-radius: 4px;
      border: 1px solid #d7d7d7;
    }


  }

  .date {
    margin-top: 8px;
    text-align: right;
  }
}

.liga {
  background: #d7d7d7;
  margin-left: 8px;
  padding: 4px 8px;

  border-radius: 4px;
}

.score {
  font-weight: 600;
}

.vs,
.place {
  color: #d7d7d7;
}

.target-sport__title,
.top-sportmen__title {
  display: flex;
  justify-content: space-between;
}

.interest-block {
  background: #d7d7d7;
  height: 8px;
  position: relative;
  border-radius: 4px;
  margin-bottom: 12px;
  margin-top: 12px;
}

.interest-block span {
  height: 8px;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;

}

.interest-block-1 span {
  width: 95%;
}

.interest-block-2 span {
  width: 78%;
}

.interest-block-3 span {
  width: 72%;
}

.interest-block-4 span {
  width: 65%;
}

.interest-block-5 span {
  width: 58%;
}

.top-sport__name,
.top-sport__desc {
  color: #d7d7d7;
}

.top-sport__desc {
  margin-top: 4px;
}


.statistic-sport__name {
  font-size: 12px;
  font-weight: normal;
  color: #d7d7d7;
}

/* music start */


.nav-block {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
}

.nav__btn {
  padding: 10px 20px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.nav__btn:hover {
  background: #ddd;
}

.nav__btn.active {
  background: #333;
  color: #fff;
}

.content-section {
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  /* background: #f9f9f9; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hidden {
  display: none;
}

.music-section {
  width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 20px;
}

.music-section h2 {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.track:hover {
  background: #f0f0f0;
}

.track-info {
  display: flex;
  flex-direction: column;
}

.track-title {
  font-weight: bold;
}

.track-year {
  font-size: 12px;
  color: #666;
}

.track-views {
  font-size: 14px;
  color: #444;
}

audio {
  width: 100%;
  margin-top: 20px;
}

.band__bio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.band__bio h3 {
  font-size: 20px;
  font-weight: normal;
}

.band__bio p {
  color: #717182;
  margin-top: 30px;
}

.tags {
  display: flex;
  gap: 4px;
  margin-top: 40px;
}

.tags span {
  border: 1px solid #717182;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 12px;  
  color: #717182;
}

.hidden {
  display: none;
}

.fact-title {
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: normal;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.fact-item {
  padding: 8px;
  background: #d7d7d7;
  border-radius: 8px;
  font-size: 12px;
}

.album {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.album-item {
  padding: 20px;
  position: relative;

  img {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    object-fit: cover;
  }

  h3 {
    font-size: 24px;
    font-weight: normal;
  }

  p {
    color: #d7d7d7;
  }

  ol {
    list-style:decimal ;
    color: #bdbaba;
  }

  li {
    margin-top: 16px;
  }

  .album__tag {
    position: absolute;
    top: 20px;
    right: 20px;  
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #000;
    padding: 4px 8px;
  }
}

.member__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;

  .info-section {
    margin: 0;
  }
}

.musician {
  color: #d7d7d7;
}

.instrument {
  font-size: 12px;
}

.year {
  color: #d7d7d7;
  font-size: 14px;
}


/* sport page scroll */

/* Початковий стан (невидимий) */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Коли елемент з’являється */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


.game-icon {
  height: 16px;
}