/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body.hero {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: 100%;
  background: url('../images/logo.webp') center/cover no-repeat fixed;
  font-family: 'Noto Sans SC', sans-serif;
  color: #fff;
}
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  max-width: 600px;
  margin: 0 auto;
}
.title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}
.description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.site-footer {
  width: 100%;
  text-align: center;
  padding: 8px 0;
  font-size: 12px;
  color: #666;
  background: rgba(255,255,255,0.5);
}
.site-footer a {
  color: #666;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}
