/* =========================
   RESET
========================= */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}


/* =========================
   MENU (INDEX PAGE)
========================= */

.menu{

    display:grid;

    grid-template-columns:repeat(4, 1fr);

    gap:50px 30px;

    max-width:1400px;

    margin:0 auto;

    padding:80px 30px;

    justify-items:center;

}

.item {
  text-align: center;
  text-decoration: none;
  color: #fff;
}

.item img {

  width: 160px;
  height: 160px;

  object-fit: cover;

  border-radius: 22px;

  transition: 0.3s;

}

.item img:hover {
  transform: scale(1.05);
}

.item span {
  display: block;
  margin-top: 16px;

  font-size: 18px;
  font-weight: normal;

  letter-spacing: 1px;
  color: #fff;
}


/* =========================
   BACK BUTTON (FIXED)
========================= */

.back-button {
  position: fixed;
  top: 20px;
  left: 20px;

  width: 56px;
  height: 56px;

  border-radius: 50%;
  background: #e5e5e5;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 1000;

  transition: all 0.2s ease;
}

.back-button:hover {
  background: #ffffff;
  transform: scale(1.05);
}

.back-button svg {
  width: 22px;
  height: 22px;
}

.back-button svg path {
  stroke: #000;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.back-button svg,
.back-button svg * {
  stroke: #000 !important;
  fill: none !important;
  opacity: 1 !important;
}


/* =========================
   WANTED PAGE
========================= */

.wanted-container {
  max-width: 900px;
  margin: 120px auto;
  padding: 0 20px;
}

.wanted-title {
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.wanted-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;

  padding-bottom: 15px;
  margin-bottom: 10px;

  border-bottom: 1px solid #444;

  font-size: 13px;
  color: #777;
  letter-spacing: 1px;
}

.wanted-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;

  padding: 22px 0;
  border-bottom: 1px solid #222;

  font-size: 17px;
  align-items: center;
}

.wanted-item div:nth-child(n+2) {
  color: #aaa;
}

.wanted-item:hover {
  background: #111;
  padding-left: 10px;
  transition: 0.2s;
}


/* =========================
   RELEASE GRID (OBR PAGE)
========================= */

#grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;

  max-width: 1400px;
  margin: 120px auto;
  padding: 20px;
}


/* =========================
   VERSIONS VIEW
========================= */

.versions-view {
  display: flex;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

.menu {

    grid-template-columns:repeat(2,1fr);

    gap:40px 20px;

}

  .wanted-header,
  .wanted-item {
    grid-template-columns: 1fr;
    gap: 5px;
  }

}