:root {
  --rose-gold: #e8796f;
  --pink-gold: #fbbf24;
  --pearl: #fdf8f4;
  --dark: #1f1f1f;
  --gray: #6b6b6b;
  --gradient: linear-gradient(135deg, #e8796f, #fbbf24);
  --shadow: 0 8px 30px rgba(232, 121, 111, 0.15);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
*, body, button, input, textarea, select, option, a, p, h1, h2, h3, h4, h5, h6, span, div, li, ul, ol, section, article, header, footer, nav, img {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
  -webkit-font-smoothing: antialiased;
}
body {
  background: linear-gradient(180deg, #fffaf7, #fceeea, #fdf8f0);
  color: var(--dark);
  line-height: 1.75;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,121,111,0.18);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrapper { display: flex; align-items: center; justify-content: flex-start; height: 64px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--dark); text-decoration: none; font-weight: 500; padding: 8px 4px; position: relative; transition: color 0.3s; font-size: 15px; }
.nav-links a:hover { color: var(--rose-gold); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--gradient); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }

/* Hero */
.hero-section {
  padding: 64px 0 48px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 30%, rgba(232,121,111,0.12), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(251,191,36,0.15), transparent 55%);
}
.hero-section h1 {
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(135deg, #e05a4e, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.4;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.geo-desc {
  max-width: 980px;
  margin: 0 auto;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  text-align: justify;
  background: rgba(255,255,255,0.7);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(232,121,111,0.08);
  border: 1px solid rgba(255,255,255,0.8);
}

/* Section titles */
.section-title { text-align: center; font-size: 28px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.section-title::after { content: ""; display: block; width: 60px; height: 3px; margin: 10px auto 0; background: var(--gradient); border-radius: 3px; }
.section-subtitle { text-align: center; color: var(--gray); margin-bottom: 40px; font-size: 15px; }
.section-pad { padding: 56px 0; }

/* Cards */
.card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255,255,255,0.85);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(232,121,111,0.22); }
.card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.card-body { padding: 22px; }
.card-body h3 { font-size: 17px; margin-bottom: 8px; font-weight: 600; }
.card-body p { color: var(--gray); font-size: 14px; line-height: 1.65; }

/* Grid */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Brand story */
.brand-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; background: white; border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; padding: 0; }
.brand-inner img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.brand-text { padding: 40px; }
.brand-text h3 { font-size: 22px; margin-bottom: 16px; }
.brand-text p { color: var(--gray); line-height: 1.8; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 36px 20px; background: linear-gradient(145deg, #ffffff, #fdf0ec); border-radius: 20px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.9); }
.stat-number { font-size: 42px; font-weight: 800; background: linear-gradient(135deg, #e8796f, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { color: var(--gray); margin-top: 8px; font-size: 14px; }

/* Advantages */
.adv-card { text-align: center; padding: 32px 24px; background: white; border-radius: 16px; box-shadow: var(--shadow); }
.adv-icon { width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 28px; color: white; box-shadow: 0 8px 20px rgba(232,121,111,0.3); }
.adv-card h3 { font-size: 18px; margin-bottom: 10px; }
.adv-card p { color: var(--gray); font-size: 14px; line-height: 1.65; }

/* Featured events */
.event-card { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); height: 250px; }
.event-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.75)); color: white; }
.event-overlay h3 { font-size: 18px; margin-bottom: 4px; color: white; }
.event-overlay p { font-size: 13px; color: rgba(255,255,255,0.9); }
.event-tag { display: inline-block; background: rgba(232,121,111,0.85); border-radius: 20px; padding: 2px 12px; font-size: 12px; margin-bottom: 8px; }

/* Rankings */
.rank-list { list-style: none; }
.rank-item { display: flex; align-items: center; padding: 16px 20px; background: white; border-radius: 14px; margin-bottom: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); border: 1px solid rgba(255,255,255,0.85); }
.rank-num { width: 36px; height: 36px; border-radius: 10px; background: var(--gradient); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; margin-right: 16px; flex-shrink: 0; }
.rank-info { flex: 1; }
.rank-info h4 { font-size: 16px; }
.rank-info p { font-size: 13px; color: var(--gray); }
.rank-score { font-weight: 700; color: var(--rose-gold); font-size: 18px; }
.rank-link { text-align: center; margin-top: 16px; }
.rank-link a { color: var(--rose-gold); text-decoration: none; font-weight: 500; }
.rank-link a:hover { text-decoration: underline; }

/* Highlights */
.highlight-card { border-radius: 20px; overflow: hidden; position: relative; box-shadow: var(--shadow); height: 220px; }
.highlight-card img { width: 100%; height: 100%; object-fit: cover; }
.highlight-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; color: var(--rose-gold); font-size: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.highlight-title { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px; background: linear-gradient(transparent, rgba(0,0,0,0.65)); color: white; font-size: 14px; font-weight: 500; }

/* Testimonials */
.testimonial-card { background: white; border-radius: 16px; padding: 28px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.85); }
.testimonial-head { display: flex; align-items: center; margin-bottom: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; margin-right: 14px; font-size: 16px; }
.testimonial-name { font-weight: 600; font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--gray); }
.testimonial-card p { color: var(--gray); font-size: 14px; line-height: 1.7; }

/* CTA */
.cta-banner { padding: 56px 48px; border-radius: 28px; background: var(--gradient); color: white; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.cta-banner::after { content: ""; position: absolute; bottom: -60px; left: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.cta-banner h2 { font-size: 30px; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-banner p { font-size: 15px; opacity: 0.95; max-width: 700px; margin: 0 auto 24px; position: relative; z-index: 1; }
.btn-group { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 1; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 32px; border-radius: 30px; font-weight: 600; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; font-size: 15px; }
.btn-white { background: white; color: var(--rose-gold); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline { border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--rose-gold); }

/* News */
.news-section { background: linear-gradient(180deg, #fdf6f3, #fff); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; border: 1px solid rgba(255,255,255,0.85); }
.news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(232,121,111,0.2); }
.news-card img { width: 100%; height: 190px; object-fit: cover; display: block; }
.news-content { padding: 22px; }
.news-meta { font-size: 13px; color: var(--rose-gold); font-weight: 500; margin-bottom: 6px; }
.news-content h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.4; }
.news-content p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 12px; }
.news-more { font-size: 13px; color: var(--rose-gold); text-decoration: none; font-weight: 500; }
.news-more:hover { text-decoration: underline; }
.news-more-list { text-align: center; margin-top: 36px; }
.news-more-list a { display: inline-block; padding: 10px 32px; border: 2px solid var(--rose-gold); border-radius: 30px; color: var(--rose-gold); font-weight: 600; text-decoration: none; transition: all 0.3s; font-size: 14px; }
.news-more-list a:hover { background: var(--rose-gold); color: white; }

/* FAQ */
.faq-list { max-width: 920px; margin: 0 auto; }
.faq-item { background: white; border-radius: 16px; box-shadow: var(--shadow); padding: 28px 32px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.85); }
.faq-item h3 { font-size: 17px; margin-bottom: 12px; color: var(--dark); font-weight: 600; }
.faq-item h3::before { content: "Q. "; color: var(--rose-gold); }
.faq-item p { color: var(--gray); font-size: 14px; line-height: 1.75; }
.faq-item p::before { content: "A. "; color: var(--rose-gold); font-weight: 500; }

/* Footer */
.site-footer { background: #1f1a18; color: rgba(255,255,255,0.75); padding: 48px 0 24px; margin-top: 40px; }
.footer-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.footer-info p { font-size: 14px; line-height: 2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 14px; }
.footer-bottom a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-bottom a:hover { color: white; text-decoration: underline; }

/* Responsive */
@media (max-width: 992px) {
  .grid-4, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-inner { grid-template-columns: 1fr; }
  .footer-info { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .news-grid, .stats-grid { grid-template-columns: 1fr; }
  .hero-section h1 { font-size: 24px; }
  .section-title { font-size: 22px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 13px; }
}