:root {
  --bg: #fff4df;
  --ink: #2b2118;
  --muted: #756252;
  --orange: #e96b2c;
  --cream: #fffaf2;
  --cream-strong: #fff8ed;
  --border: #edc29d;
  --shadow: 0 18px 45px rgba(69, 42, 16, .16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 0, #ffe0a3, var(--bg) 42%, #ffe9e0);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.landing {
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
}

.hero {
  text-align: center;
  padding: 24px 16px 8px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 86px);
  line-height: 1;
}

.intro {
  margin: 16px auto 0;
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
}

.game-tile {
  position: relative;
  min-height: clamp(260px, 45vh, 520px);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(230, 110, 46, .22);
  border-radius: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease;
}

.game-tile::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 3px dashed rgba(237, 194, 157, .9);
  border-radius: 26px;
  pointer-events: none;
}

.game-tile::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 159, 28, .32), transparent 65%);
  filter: blur(2px);
  z-index: 0;
}

.game-tile:hover,
.game-tile:focus-visible {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 60px rgba(69, 42, 16, .22);
  border-color: rgba(233, 107, 44, .5);
  background: #fffaf4;
  outline: none;
}

.game-tile:focus-visible {
  outline: 4px solid rgba(233, 107, 44, .35);
  outline-offset: 5px;
}

.game-icon {
  position: relative;
  z-index: 1;
  font-size: clamp(90px, 18vw, 210px);
  line-height: 1;
  filter: drop-shadow(0 16px 18px rgba(69, 42, 16, .18));
  transition: transform .18s ease;
}

.game-tile:hover .game-icon,
.game-tile:focus-visible .game-icon {
  transform: rotate(-3deg) scale(1.08);
}

.hotdog-tile:hover .game-icon,
.hotdog-tile:focus-visible .game-icon {
  transform: rotate(3deg) scale(1.08);
}

.footer {
  display: flex;
  justify-content: center;
  padding: 8px 0 24px;
  color: var(--muted);
  font-weight: 850;
}

.footer span {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(237, 194, 157, .7);
  border-radius: 999px;
  padding: 10px 16px;
}

@media (max-width: 760px) {
  .landing {
    width: min(100% - 22px, 520px);
    padding: 18px 0;
    gap: 20px;
  }

  .game-grid {
    grid-template-columns: 1fr;
  }

  .game-tile {
    min-height: 220px;
    border-radius: 28px;
  }

  .game-tile::before {
    inset: 12px;
    border-radius: 20px;
  }
}