* {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: linear-gradient(135deg, #141414 0%, #1a1a1a 40%, #3a2005 100%);
  color: #f0ead6;
  line-height: 1.75;
  min-height: 100vh;
}
header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border-bottom: 2px solid #b45309;
  box-shadow: 0 6px 30px rgba(180, 83, 9, 0.4);
}
.nav-links a {
  font-weight: 600;
  font-size: 1rem;
  color: #fbbf24;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  transition: all 0.3s;
  text-decoration: none;
}
.nav-links a:hover {
  background: rgba(251, 191, 36, 0.15);
  opacity: 0.85;
  transform: translateY(-2px);
}
main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.2rem;
}
section {
  background: linear-gradient(145deg, #1e1e1e, #2b2418);
  border: 1px solid #b45309;
  border-radius: 18px;
  padding: 2.2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(251, 191, 36, 0.25);
}
h1 {
  font-size: 2.3rem;
  color: #fbbf24;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
  margin-bottom: 1rem;
  line-height: 1.3;
}
h2 {
  font-size: 1.8rem;
  color: #fbbf24;
  border-left: 5px solid #b45309;
  padding-left: 0.8rem;
  margin-bottom: 1.4rem;
}
h3 {
  font-size: 1.15rem;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}
p { margin-bottom: 0.8rem; }
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(180, 83, 9, 0.4);
}
.hero-section {
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #291d07, #1a1a1a);
}
.hero-section img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin-top: 1.2rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.card {
  background: rgba(20, 20, 20, 0.6);
  border-radius: 14px;
  padding: 1.4rem;
  border: 1px solid rgba(180, 83, 9, 0.5);
  text-align: center;
  transition: all 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: #fbbf24;
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.2);
}
.card img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  margin-bottom: 0.8rem;
  border-radius: 50%;
}
.news-card {
  background: rgba(20, 20, 20, 0.7);
  border-radius: 14px;
  padding: 1.4rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(180, 83, 9, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  transition: border-color 0.3s;
}
.news-card:hover {
  border-color: #fbbf24;
}
.news-card img {
  width: 200px;
  height: 130px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 10px;
}
.news-card .news-content {
  flex: 1;
  min-width: 250px;
}
.news-date {
  color: #fbbf24;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.faq-item {
  border-bottom: 1px solid rgba(180, 83, 9, 0.3);
  padding: 1rem 0;
}
.faq-question {
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.4rem;
}
.faq-answer {
  color: #d5cfc0;
}
footer {
  background: #111;
  border-top: 2px solid #b45309;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #c9c2b3;
}
footer a {
  color: #fbbf24;
  margin: 0 0.4rem;
  text-decoration: none;
}
.footer-links {
  margin: 0.8rem 0;
}
.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2.4rem;
  background: linear-gradient(135deg, #b45309, #fbbf24);
  color: #1a1a1a;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
}
.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.5);
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
th, td {
  padding: 0.8rem;
  text-align: left;
  border-bottom: 1px solid rgba(180, 83, 9, 0.3);
}
th {
  color: #fbbf24;
  font-weight: 700;
}
.event-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.event-item img {
  width: 260px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}
.event-item .event-info {
  flex: 1;
  min-width: 220px;
}
.vision-text {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
blockquote {
  background: rgba(20, 20, 20, 0.6);
  border-left: 4px solid #b45309;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-style: italic;
  color: #d5cfc0;
}
footer .footer-copy {
  margin-top: 1.2rem;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  .nav-links { gap: 0.8rem; padding: 0.6rem 0.8rem; }
  .news-card img { width: 100%; height: auto; }
  section { padding: 1.2rem; }
}