* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #181818;
  color: #fff;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.hero {
  background: #6b005c;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: 1px;
}

.hero p {
  margin: 14px 0 0;
  font-family: Arial, sans-serif;
  font-size: 13px;
  opacity: .75;
}

.tabs {
  height: 48px;
  background: #303030;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.tabs a:hover {
  background: #444;
}

.container {
  padding: 34px 22px 90px;
  max-width: 1100px;
  margin: 0 auto;
}

.intro {
  text-align: center;
  margin-bottom: 34px;
}

.intro h2 {
  margin: 0;
  font-size: 30px;
}

.intro p {
  font-family: Arial, sans-serif;
  color: #cfcfcf;
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.game-card {
  background: #242424;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  transition: .2s;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: #ff00d4;
  box-shadow: 0 0 30px rgba(255,0,212,.22);
}

.game-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #00ff00;
  display: block;
}

.game-card div {
  padding: 16px;
}

.game-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.game-card p {
  margin: 0 0 14px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #cfcfcf;
  line-height: 1.35;
}

.game-card span {
  color: #00ff66;
  font-size: 14px;
}

footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 58px;
  background: #181818;
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.06);
}

footer a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

footer a:hover {
  color: #ff00d4;
}

@media (max-width: 760px) {
  .hero {
    min-height: 180px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  footer {
    gap: 14px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 18px;
  }
}

@media (max-width: 520px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    max-width: 320px;
    margin: 0 auto;
  }
}


.empty {
  text-align: center;
  padding: 60px 20px;
  background: #242424;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,.18);
}

.empty h3 {
  font-size: 32px;
  margin: 0 0 12px;
  color: #ff00d4;
}

.empty p {
  font-family: Arial, sans-serif;
  color: #cfcfcf;
}