*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f8e9;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #555;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
}

.logo {
  width: 120px;
  height: 120px;
  border-radius: 20px;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #2e7d32;
  letter-spacing: -0.5px;
}

.tagline {
  font-size: 1rem;
  color: #555;
  margin-top: -8px;
}

.play-badge img {
  max-width: 200px;
  width: 100%;
  transition: opacity 0.2s ease;
}

.play-badge:hover img {
  opacity: 0.85;
}

footer {
  margin-top: 8px;
}

footer a {
  font-size: 0.875rem;
  color: #43a047;
  text-decoration: none;
  border-bottom: 1px solid #a5d6a7;
  padding-bottom: 1px;
}

footer a:hover {
  color: #2e7d32;
  border-bottom-color: #2e7d32;
}
