* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
  background: #0a0c10;
  color: #c8d0dc;
  font-family: "Courier New", Courier, monospace;
}

body {
  position: relative;
  padding: 28px 32px 48px;
}

.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 3px
  );
  z-index: 0;
}

header,
main,
footer {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1a2430;
}

.brand {
  color: #7dffb3;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0.04em;
}

.sub {
  color: #6a7888;
  font-size: 12px;
  margin-top: 6px;
}

.version {
  color: #9ab;
  font-size: 12px;
}

.intro {
  padding: 36px 0 28px;
}

.intro h1 {
  color: #ffe08a;
  font-size: 28px;
  margin-bottom: 8px;
}

.intro p {
  color: #9ab;
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #11161e;
  border: 1px solid #1a2430;
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.card:hover,
.card:focus-visible {
  border-color: #7dffb3;
  transform: translateY(-2px);
  outline: none;
}

.card.soon {
  opacity: 0.55;
  pointer-events: none;
}

.thumb {
  height: 140px;
  background: #0c1018 center / cover no-repeat;
  border-bottom: 1px solid #1a2430;
}

.body {
  padding: 16px 18px 18px;
}

.body h2 {
  color: #7dffb3;
  font-size: 18px;
  margin-bottom: 6px;
}

.body p {
  color: #9ab;
  font-size: 12px;
  line-height: 1.45;
}

.meta {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  color: #6a7888;
}

.badge {
  color: #0a0c10;
  background: #7dffb3;
  padding: 2px 8px;
  font-weight: bold;
}

.badge.soon {
  background: #6a7888;
}

footer {
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid #1a2430;
  color: #6a7888;
  font-size: 11px;
}

@media (max-width: 560px) {
  body {
    padding: 20px 16px 32px;
  }

  .brand {
    font-size: 18px;
  }
}
