body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  background: url('your-background.jpg') no-repeat center center;
  background-size: cover;
  color: #333;
}

.header {
  text-align: center;
  padding: 30px 10px 20px;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 8px;
  margin: 20px auto;
  max-width: 600px;
}

h1 {
  margin: 0;
  font-size: 28px;
  color: #2e5c3f;
}

#search {
  width: 90%;
  max-width: 500px;
  padding: 10px 15px;
  margin-top: 15px;
  font-size: 16px;
  border: 2px solid #8fbf8f;
  border-radius: 25px;
  outline: none;
}

.map-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.fishing-spot {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.fishing-spot img {
  width: 90px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.fishing-spot h3 {
  margin: 0;
  font-size: 18px;
  color: #2d6a4f;
}

.fishing-spot p {
  margin: 4px 0;
  color: #555;
  font-size: 14px;
}

.fishing-spot a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: bold;
  margin-left: auto;
  font-size: 14px;
}

.fishing-spot a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  .map-container {
    padding: 15px;
  }

  h1 {
    font-size: 22px;
  }

  #search {
    font-size: 14px;
  }

  .fishing-spot h3 {
    font-size: 16px;
  }

  .fishing-spot img {
    width: 70px;
    height: 50px;
  }
}

