/* Extracted from assets/base.css */
html,
body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  background: #f7f7fa;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

main.homepage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1.homepage-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
}

p.homepage-desc {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
  font-family: "Inter", sans-serif;
}

a.homepage-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #68d2f6 0, #4f8cff 100%);
  border: none;
  border-radius: 2rem;
  box-shadow: 0 2px 8px 0 rgba(80, 143, 255, 0.15);
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}
a.homepage-btn:hover {
  background: linear-gradient(90deg, #4f8cff 0, #68d2f6 100%);
  box-shadow: 0 4px 16px 0 rgba(80, 143, 255, 0.25);
}

footer.homepage-footer {
  margin-top: auto;
  padding: 2rem 0;
  text-align: center;
  color: #aaa;
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
}

img.homepage-logo {
  width: 120px;
  margin-bottom: 2rem;
}

img.homepage-world {
  width: 40px;
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0.1;
}

.homepage-hearts {
  position: absolute;
  width: 20px;
  bottom: 30px;
  height: 40px;
}
