body {
  font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  background: #f8f9fa;
  margin: 0;
  color: #222;
}
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2rem 0 1rem 0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  overflow: hidden;
}
header .star-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  display: block;
}
header h1 {
  margin: 0 auto;
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  letter-spacing: 2px;
  color: #1e90ff;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  width: 90vw;
  min-height: 2.5em;
  word-break: break-word;
  white-space: normal;
  max-width: 100vw;
  box-sizing: border-box;
}
.letter-float {
  display: inline-block;
  opacity: 0;
  transform: translateY(30%);
  animation: letter-float-in 0.7s cubic-bezier(.4,2,.6,1) forwards;
}
@keyframes letter-float-in {
  0% {
    opacity: 0;
    transform: translateY(30%);
  }
  60% {
    opacity: 1;
    transform: translateY(-10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-content {
  margin-top: 8rem;
  padding-top: 1rem;
  position: relative;
  z-index: 1;
}
.places-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.place-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: box-shadow 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 120px;
}
.place-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}
.place-card img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
  flex-shrink: 0;
}
.place-card .card-content {
  padding: 1rem 1.2rem;
  flex: 1;
}
.place-card h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: #1a237e;
}
.place-card p {
  margin: 0;
  color: #555;
  font-size: 1rem;
}
footer {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  margin: 2rem 0 1rem 0;
}
@media (max-width: 600px) {
  .places-list {
    gap: 1rem;
  }
  .place-card {
    flex-direction: column;
    align-items: stretch;
  }
  .place-card img {
    width: 100%;
    height: 120px;
    border-radius: 1rem;
  }
  .main-content {
    margin-top: 9rem;
  }
} 