/* ===== 老街腾龙娱乐中心 - 样式表 ===== */

:root {
  --primary: #ff00aa;
  --primary-dark: #cc0088;
  --secondary: #00e5ff;
  --dark: #0a0a14;
  --dark-2: #12122a;
  --dark-3: #1a1a35;
  --gold: #ffd700;
  --gold-2: #ffaa00;
  --text: #e0e0f0;
  --text-muted: #8888aa;
  --white: #ffffff;
  --success: #00cc66;
  --danger: #ff4444;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(0,0,0,.5);
  --shadow-glow: 0 0 20px rgba(255,0,170,.3);
  --shadow-glow-cyan: 0 0 20px rgba(0,229,255,.3);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Microsoft YaHei","PingFang SC","Helvetica Neue",Arial,sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--secondary); text-decoration: none; }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; display: block; }

.container { width: 92%; max-width: 1200px; margin: 0 auto; }

/* ===== 顶部通知栏 ===== */
.top-bar {
  background: linear-gradient(90deg, #1a0a2a 0%, #0a0a14 50%, #1a0a2a 100%);
  border-bottom: 1px solid rgba(255,0,170,.2);
  padding: 8px 0;
  font-size: 13px;
  position: relative;
  z-index: 100;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left { color: #ccc; }
.top-bar-right { display: flex; gap: 15px; align-items: center; }
.top-link {
  color: #ccc;
  font-size: 13px;
  padding: 2px 8px;
  border-radius: 3px;
  transition: all .3s;
}
.top-link:hover { color: var(--primary); }
.top-link.highlight {
  color: var(--gold);
  font-weight: 700;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .7; }
}

/* ===== 导航栏 ===== */
.site-header {
  background: rgba(10,10,20,.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: sticky;
  top: 0;
  z-index: 99;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-logo-img { height: 46px; width: auto; }
.header-actions { display: flex; gap: 12px; }
.btn-login, .btn-register {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all .3s;
}
.btn-login {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.btn-login:hover { background: var(--primary); color: #fff; }
.btn-register {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #1a0a2a;
  border: none;
}
.btn-register:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(255,215,0,.4); }

.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
.main-nav a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: all .3s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: all .3s;
}

/* ===== Hero 横幅 ===== */
.hero-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a2a 0%, #0a0a14 50%, #0a1a2a 100%);
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,0,170,.15) 0%, rgba(10,10,20,.7) 70%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 0;
}
.hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-shadow: none;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 20px);
  color: var(--text-muted);
  margin-bottom: 25px;
}
.hero-contact-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 15px;
  color: #ddd;
}
.hero-contact-bar span { white-space: nowrap; }
.hero-contact-bar .hero-reg a {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}
.hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .3s;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,0,170,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,0,170,.6); color: #fff; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a0a2a;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,215,0,.5); }
.btn-outline-light {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.btn-outline-light:hover { background: rgba(255,255,255,.2); color: #fff; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}
.btn-outline:hover { background: var(--secondary); color: var(--dark); }
.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: #1a0a2a; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { display: block; width: 100%; }

/* ===== 区块标题 ===== */
.section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 16px;
}

/* ===== 业态卡片 ===== */
.features-section { padding: 80px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.feature-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 30px 25px;
  text-align: center;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform .4s;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,0,170,.3);
  box-shadow: var(--shadow-glow);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-img-wrap {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,0,170,.3);
}
.feature-img { width: 100%; height: 100%; object-fit: cover; }
.feature-card h3 { color: #fff; margin-bottom: 12px; font-size: 20px; }
.feature-card p { color: var(--text-muted); font-size: 14px; }
.feature-tag {
  display: inline-block;
  margin-top: 15px;
  padding: 4px 14px;
  background: rgba(0,229,255,.1);
  color: var(--secondary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== 内页横幅 ===== */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a2a, #0a0a14);
}
.page-hero .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .3;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,20,.6);
}
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  font-weight: 800;
}
.page-hero p { color: var(--text-muted); margin-top: 10px; font-size: 16px; }

/* ===== 面包屑 ===== */
.breadcrumb {
  padding: 15px 0;
  font-size: 14px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--secondary); }

/* ===== 数据栏 ===== */
.stats-section { padding: 50px 0; background: var(--dark-2); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-item .stat-number {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item .stat-label { color: var(--text-muted); font-size: 14px; margin-top: 5px; }

/* ===== 空间卡片 ===== */
.spaces-section, .projects-section { padding: 80px 0; }
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.15);
  background: var(--dark-2);
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  transition: all .3s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.spaces-grid, .games-grid, .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.space-card, .game-card, .news-card {
  background: var(--dark-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: all .4s;
}
.space-card:hover, .game-card:hover, .news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(255,0,170,.3);
}
.space-cover, .game-cover, .news-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.space-cover img, .game-cover img, .news-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.space-card:hover img, .game-card:hover img, .news-card:hover img {
  transform: scale(1.08);
}
.space-info, .game-info, .news-info {
  padding: 22px;
}
.space-info h3, .game-info h3, .news-info h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 18px;
}
.space-info p, .game-info p, .news-info p {
  color: var(--text-muted);
  font-size: 14px;
}
.space-meta {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.space-tag {
  padding: 3px 12px;
  background: rgba(0,229,255,.1);
  color: var(--secondary);
  border-radius: 4px;
  font-size: 12px;
}
.space-price {
  padding: 3px 12px;
  background: rgba(255,215,0,.1);
  color: var(--gold);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== 活动 ===== */
.events-section { padding: 80px 0; background: var(--dark-2); }
.event-list { display: grid; gap: 25px; }
.event-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 25px;
  background: var(--dark-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: all .3s;
}
.event-card:hover { border-color: rgba(255,0,170,.3); box-shadow: var(--shadow-glow); }
.event-card img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.event-body { padding: 25px; }
.event-body h3 { color: #fff; margin-bottom: 10px; font-size: 20px; }
.event-body p { color: var(--text-muted); font-size: 14px; }
.event-time {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 14px;
  background: rgba(255,0,170,.1);
  color: var(--primary);
  border-radius: 4px;
  font-size: 13px;
}

/* ===== 价格 ===== */
.pricing-section { padding: 80px 0; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.price-card {
  background: var(--dark-2);
  border-radius: var(--radius);
  padding: 30px 25px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(255,215,0,.15);
}
.price-card .price-img {
  width: 70px; height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 2px solid var(--gold);
}
.price-card h3 { color: #fff; margin-bottom: 15px; }
.price-card .price-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 5px;
}
.price-card .price-unit { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.price-card ul { list-style: none; text-align: left; }
.price-card ul li { padding: 6px 0; color: var(--text-muted); font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.05); }
.price-card ul li::before { content: '✓ '; color: var(--success); }

/* 会员 */
.member-section { padding: 80px 0; background: var(--dark-2); }
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.member-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.member-card.vip { border-color: var(--primary); }
.member-card.svip { border-color: var(--gold); background: linear-gradient(135deg, rgba(255,215,0,.05), rgba(255,170,0,.05)); }
.member-card h3 { color: #fff; margin-bottom: 15px; }
.member-card .member-price { font-size: 32px; font-weight: 800; color: var(--gold); margin-bottom: 20px; }
.member-card ul { list-style: none; text-align: left; }
.member-card ul li { padding: 8px 0; color: var(--text-muted); font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.05); }

/* ===== 预约表单 ===== */
.booking-section { padding: 80px 0; }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
}
.booking-form {
  background: var(--dark-2);
  padding: 35px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
}
.booking-form .form-group { margin-bottom: 20px; }
.booking-form label { display: block; color: var(--text); margin-bottom: 6px; font-size: 14px; font-weight: 500; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 15px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(255,0,170,.2);
}
.booking-form textarea { resize: vertical; min-height: 100px; }

.booking-side { display: flex; flex-direction: column; gap: 20px; }
.booking-tips {
  background: var(--dark-2);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
}
.booking-tips h4 { color: #fff; margin-bottom: 12px; }
.booking-tips ul { list-style: none; }
.booking-tips ul li { padding: 6px 0; color: var(--text-muted); font-size: 14px; }

/* ===== 联系弹窗 ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--dark-2);
  border-radius: 16px;
  padding: 40px 30px 30px;
  max-width: 520px;
  width: 100%;
  position: relative;
  border: 1px solid rgba(255,0,170,.2);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none; border: none;
  color: var(--text-muted); font-size: 24px;
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: rgba(255,255,255,.1); color: #fff; }
.modal-box h2 { color: #fff; text-align: center; margin-bottom: 5px; }
.modal-sub { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 25px; }

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.contact-card:hover { transform: translateY(-3px); border-color: var(--primary); }
.contact-card.primary { border-color: rgba(0,229,255,.3); }
.contact-card.primary:hover { box-shadow: var(--shadow-glow-cyan); }
.contact-card.gold-star { border-color: var(--gold); box-shadow: 0 0 15px rgba(255,215,0,.15); }
.contact-card.gold-star:hover { box-shadow: 0 0 25px rgba(255,215,0,.35); }
.contact-icon { font-size: 26px; margin-bottom: 6px; }
.contact-label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.contact-value { font-size: 16px; font-weight: 700; color: #fff; word-break: break-all; }
.contact-action { font-size: 11px; color: var(--primary); margin-top: 4px; }
.contact-extra {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.contact-extra a { color: var(--secondary); }

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark-3);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  border: 1px solid var(--primary);
  box-shadow: 0 5px 20px rgba(0,0,0,.5);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== 关于页 ===== */
.about-section { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.about-text p { color: var(--text-muted); margin-bottom: 18px; font-size: 15px; line-height: 1.9; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stat {
  background: var(--dark-2);
  padding: 25px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
}
.about-stat .num { font-size: 36px; font-weight: 900; color: var(--primary); }
.about-stat .lbl { color: var(--text-muted); font-size: 14px; margin-top: 5px; }

/* 团队 */
.team-section { padding: 60px 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.team-card { background: var(--dark-2); border-radius: var(--radius); padding: 25px; text-align: center; border: 1px solid rgba(255,255,255,.06); }
.team-avatar { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 15px; overflow: hidden; border: 3px solid var(--primary); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { color: #fff; margin-bottom: 5px; }
.team-card p { color: var(--text-muted); font-size: 13px; }

/* 文化 */
.culture-section { padding: 60px 0; background: var(--dark-2); }
.culture-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.culture-card { background: var(--dark-3); border-radius: var(--radius); padding: 25px; text-align: center; }
.culture-icon { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 15px; overflow: hidden; }
.culture-icon img { width: 100%; height: 100%; object-fit: cover; }
.culture-card h4 { color: #fff; margin-bottom: 8px; }
.culture-card p { color: var(--text-muted); font-size: 14px; }

/* ===== 联系页 ===== */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-cards { display: grid; gap: 18px; }
.contact-info-card {
  background: var(--dark-2);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-info-card .ci-icon { font-size: 30px; flex-shrink: 0; }
.contact-info-card h4 { color: #fff; margin-bottom: 8px; }
.contact-info-card p { color: var(--text-muted); font-size: 14px; }
.contact-info-card a { color: var(--secondary); }

.contact-form-wrap {
  background: var(--dark-2);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
}
.contact-form-wrap h3 { color: #fff; margin-bottom: 20px; }

/* ===== 新闻列表 ===== */
.news-section { padding: 80px 0; }
.news-list { display: grid; gap: 25px; }
.news-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 25px;
  background: var(--dark-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: all .3s;
}
.news-item:hover { border-color: rgba(255,0,170,.3); }
.news-item img { width: 100%; height: 100%; object-fit: cover; min-height: 160px; }
.news-body { padding: 22px; }
.news-body time { color: var(--primary); font-size: 13px; font-weight: 600; }
.news-body h3 { color: #fff; margin: 8px 0; font-size: 18px; }
.news-body p { color: var(--text-muted); font-size: 14px; }

/* ===== 404 ===== */
.error-section { padding: 100px 0; text-align: center; }
.error-section img { max-width: 300px; margin: 0 auto 30px; opacity: .8; }
.error-section h1 { font-size: 72px; color: var(--primary); margin-bottom: 15px; }
.error-section p { color: var(--text-muted); margin-bottom: 30px; font-size: 16px; }

/* ===== 弹窗触发按钮 ===== */
.contact-trigger-bar {
  text-align: center;
  margin: 30px 0;
}
.contact-trigger-bar .btn { margin: 0 8px; }

/* ===== 页脚 ===== */
.site-footer {
  background: #060610;
  padding: 60px 0 25px;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 35px;
}
.footer-col h4 { color: #fff; margin-bottom: 15px; font-size: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 5px 0; color: var(--text-muted); font-size: 14px; }
.footer-col ul li a { color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-col p { color: var(--text-muted); font-size: 14px; }
.footer-logo-img { height: 40px; margin-bottom: 15px; }
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.05);
  color: var(--text-muted);
  font-size: 13px;
}
.footer-bottom a { color: var(--secondary); }

/* ===== 图库墙 ===== */
.gallery-section { padding: 60px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,.06);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.1); }

/* ===== 评价 ===== */
.testimonials-section { padding: 60px 0; background: var(--dark-2); }
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.test-card { background: var(--dark-3); padding: 25px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.06); }
.test-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.test-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 2px solid var(--primary); }
.test-avatar img { width: 100%; height: 100%; object-fit: cover; }
.test-name { color: #fff; font-weight: 600; font-size: 14px; }
.test-stars { color: var(--gold); font-size: 13px; }
.test-card p { color: var(--text-muted); font-size: 14px; line-height: 1.8; }

/* ===== 合作伙伴 ===== */
.partners-section { padding: 50px 0; }
.partners-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; }
.partner-logo {
  width: 120px; height: 60px;
  background: var(--dark-2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.06);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

/* ===== 认证徽章 ===== */
.badges-row { display: flex; gap: 12px; margin-top: 15px; flex-wrap: wrap; }
.badge-item {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  background: var(--dark-2);
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== 交通 ===== */
.transport-section { padding: 60px 0; }
.transport-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.transport-card { background: var(--dark-2); padding: 20px; border-radius: var(--radius); text-align: center; }
.transport-card .t-icon { font-size: 32px; margin-bottom: 10px; }
.transport-card h4 { color: #fff; margin-bottom: 8px; }
.transport-card p { color: var(--text-muted); font-size: 13px; }

/* ===== Sitemap页 ===== */
.sitemap-section { padding: 60px 0; }
.sitemap-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.sitemap-col h4 { color: #fff; margin-bottom: 15px; }
.sitemap-col ul { list-style: none; }
.sitemap-col ul li { padding: 6px 0; }
.sitemap-col ul li a { color: var(--text-muted); }
.sitemap-col ul li a:hover { color: var(--primary); }

/* ===== 表格 ===== */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 15px; }
.hours-table th, .hours-table td { padding: 10px 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.05); font-size: 14px; }
.hours-table th { color: var(--primary); }
.hours-table td { color: var(--text-muted); }

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .about-grid, .contact-grid, .booking-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 200px 1fr; }
}
@media (max-width: 768px) {
  .top-bar-inner { font-size: 12px; }
  .top-bar-right { gap: 8px; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark-2); padding: 20px; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 15px; }
  .nav-toggle { display: flex; }
  .event-card { grid-template-columns: 1fr; }
  .event-card img { min-height: 180px; }
  .news-item { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .hero-contact-bar { font-size: 13px; gap: 10px; }
  .header-actions { display: none; }
}
@media (max-width: 480px) {
  .container { width: 95%; }
  .hero-content h1 { font-size: 28px; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .feature-card, .price-card, .space-card { padding: 20px 15px; }
}
