:root {
  font-family: Arial, Helvetica, sans-serif;
  color: #24251f;
  background: #f3efe6;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background:
    radial-gradient(ellipse at top, #fffaf0, transparent 75%), #f3efe6;
}
.page {
  width: min(100%, 640px);
  min-height: 100svh;
  margin: auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}
header {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 80px;
  border-bottom: 1px solid #d9d5c9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.dot {
  width: 12px;
  height: 12px;
  background: #e13b2b;
  border-radius: 50%;
  box-shadow: 0 2px 0 #a82e21;
}
main {
  padding: clamp(38px, 9svh, 76px) 0 40px;
  flex: 1;
}
.eyebrow {
  font:
    600 10px ui-monospace,
    monospace;
  letter-spacing: 1.2px;
  color: #77786d;
  margin: 0 0 18px;
}
h1 {
  margin: 0;
  font-size: clamp(42px, 10vw, 64px);
  letter-spacing: -2.7px;
  line-height: 1.08;
}
.intro {
  margin: 15px 0 36px;
  color: #68695f;
  font-size: 16px;
  line-height: 1.5;
}
.game-link {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 132px;
  padding: 24px 22px;
  color: inherit;
  text-decoration: none;
  background: #fffdf7;
  border: 1px solid #d5d1c5;
  border-radius: 16px;
  box-shadow: 0 5px 0 #e6e1d5;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition:
    border-color 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
}
.game-link:hover {
  border-color: #e13b2b;
}
.game-link:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #e6e1d5;
}
.game-link:focus-visible {
  outline: 3px solid #3574bc;
  outline-offset: 5px;
}
.button-icon {
  flex-shrink: 0;
  width: 49px;
  height: 49px;
  border: 3px solid #b42b20;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 20%, #ff7655, #e43524 70%);
  box-shadow:
    0 4px 0 #8f2118,
    0 0 0 5px #e2ded2;
}
.game-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.game-name {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.7px;
}
.description {
  font-size: 13px;
  line-height: 1.45;
  color: #68695f;
}
.details {
  font:
    9px ui-monospace,
    monospace;
  letter-spacing: 0.6px;
  color: #77786d;
}
.details span {
  margin: 0 5px;
}
.arrow {
  margin-left: auto;
  font-size: 27px;
  color: #e13b2b;
}
footer {
  padding: 22px 0 max(22px, env(safe-area-inset-bottom));
  border-top: 1px solid #d9d5c9;
  color: #77786d;
  font-size: 11px;
}
@media (max-width: 360px) {
  .page {
    padding: 0 18px;
  }
  .game-link {
    padding: 20px 16px;
    gap: 14px;
  }
  .button-icon {
    width: 38px;
    height: 38px;
  }
  .game-name {
    font-size: 21px;
  }
  .description {
    font-size: 12px;
  }
  .arrow {
    font-size: 23px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .game-link {
    transition: none;
  }
}
