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

:root {
  --bg: #FAFAFA;
  --text: #1A1A1A;
  --text-muted: #888;
  --accent: #6C5CE7;
  --accent-hover: #5A4BD1;
  --font: 'Quicksand', sans-serif;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
}

.center-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.wordmark {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text);
  line-height: 1;
  user-select: none;
}

.tagline {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-align: center;
}

.subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  text-align: center;
}

.links {
  margin-top: 24px;
}

.button-wrap {
  position: relative;
  display: inline-block;
  padding-top: 40px;
}

.chicken {
  position: absolute;
  width: 57px;
  height: auto;
  left: 50%;
  top: -14px;
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
  z-index: 0;
}

.button-wrap:hover .chicken {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.game-link {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 14px 36px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: var(--accent);
  border: none;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(108, 92, 231, 0.25);
}

.game-link:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.35);
}

.game-link:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(108, 92, 231, 0.2);
}

.footer {
  padding: 24px;
  text-align: center;
}

.footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .wordmark {
    font-size: 3rem;
    letter-spacing: 0.14em;
  }

  .tagline {
    font-size: 1rem;
  }

  .game-link {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .chicken {
    width: 36px;
  }
}
