* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  background-color: #e6f2ff;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  padding: 20px 0 30px;
}

h1 {
  font-size: 2.5rem;
  color: #4d79ff;
  margin-bottom: 10px;
}

.slogan {
  font-size: 1.2rem;
  color: #5e8cff;
  font-weight: 500;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(77, 121, 255, 0.3);
  margin-bottom: 20px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote {
  font-size: 1.3rem;
  color: #4d79ff;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
}

.cta-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #4d79ff, #75a0ff);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(77, 121, 255, 0.3);
  text-align: center;
  min-width: 150px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(77, 121, 255, 0.4);
  background: linear-gradient(135deg, #3366ff, #5e8cff);
}

.love-story {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 25px;
  border-radius: 15px;
  margin: 30px auto;
  max-width: 800px;
  box-shadow: 0 4px 15px rgba(77, 121, 255, 0.15);
  text-align: center;
  line-height: 1.8;
  color: #555;
  font-size: 1.05rem;
}

footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(77, 121, 255, 0.2);
  text-align: center;
}

.tagline {
  font-size: 1.1rem;
  color: #4d79ff;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #5e8cff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #4d79ff;
  text-decoration: underline;
}

.copyright {
  font-size: 0.9rem;
  color: #888;
  margin-top: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  .slogan {
    font-size: 1rem;
  }
  
  .quote {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .avatar {
    width: 120px;
    height: 120px;
  }
  
  .love-story {
    padding: 20px 15px;
    font-size: 0.95rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
