/* ==========================================================================
   八戒影院 - 八戒电影网 官方企业站
   视觉规范：淡黑金 (Pale Black-Gold) 高端视听品牌
   100% 纯 CSS 样式库
   ========================================================================== */

:root {
  --bg-deep: #08090d;
  --bg-main: #0c0e14;
  --bg-card: #13151f;
  --bg-card-hover: #191c29;
  --bg-input: #171a26;
  
  --gold-primary: #d4af37;
  --gold-light: #f5ebb8;
  --gold-dark: #997922;
  --gold-border: rgba(212, 175, 55, 0.28);
  --gold-border-hover: rgba(212, 175, 55, 0.65);
  --gold-glow: rgba(212, 175, 55, 0.18);
  
  --text-main: #f3f4f6;
  --text-muted: #9ba1b4;
  --text-dim: #646a7d;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(212, 175, 55, 0.2);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #090a0e;
}
::-webkit-scrollbar-thumb {
  background: #252838;
  border-radius: 4px;
  border: 1px solid var(--gold-border);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography Utilities */
.text-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.font-serif {
  font-family: 'Cinzel', Georgia, serif;
}

/* Global Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0dfa8 0%, #d4af37 50%, #856a23 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.brand-info h1 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-info p {
  font-size: 11px;
  color: var(--text-muted);
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-link {
  display: inline-block;
  padding: 8px 16px;
  color: #c9cee0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #f7ebb8 0%, #d4af37 50%, #9e7922 100%);
  color: #090a0e;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.28);
}

.btn-gold:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.42);
}

.btn-dark {
  background: #181b28;
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
}

.btn-dark:hover {
  background: #23273a;
  color: #fff;
  border-color: var(--gold-border-hover);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 8px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 14px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
}

.hero-card {
  background: linear-gradient(135deg, #131520 0%, #1a1e2d 50%, #12141f 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* Stats Row */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0 60px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.stat-val {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.stat-sub {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Section Header */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 12px;
}

.section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  font-family: 'Cinzel', serif;
}

.section-more {
  color: var(--gold-primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.section-more:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

/* Movie Card & Grid */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.movie-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.movie-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.movie-poster-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  background: #000;
  overflow: hidden;
}

.movie-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .movie-poster {
  transform: scale(1.06);
}

.movie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.movie-card:hover .movie-overlay {
  opacity: 1;
}

.play-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7ebb8, #d4af37);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transform: scale(0.85);
  transition: var(--transition);
}

.movie-card:hover .play-icon-circle {
  transform: scale(1);
}

.movie-badge-rating {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 3px;
}

.movie-badge-quality {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--gold-border);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  color: #fff;
  font-weight: 600;
}

.movie-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.movie-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
  transition: var(--transition);
}

.movie-card:hover .movie-title {
  color: var(--gold-light);
}

.movie-meta {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.movie-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dim);
}

.movie-play-hint {
  color: var(--gold-primary);
  font-weight: 600;
}

/* Products Matrix (Core Products) */
.core-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.core-prod-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.core-prod-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.core-prod-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #1b1e2c;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.core-prod-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.core-prod-sub {
  font-size: 11px;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.core-prod-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.core-prod-features {
  list-style: none;
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.core-prod-features li::before {
  content: '✓';
  color: #10b981;
  margin-right: 6px;
  font-weight: bold;
}

/* VIP Banner */
.vip-banner {
  background: linear-gradient(135deg, #181610 0%, #292415 50%, #15130e 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.vip-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
}

.vip-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.vip-desc {
  font-size: 14px;
  color: #d1cbbd;
}

.vip-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.vip-pill {
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--gold-border);
  font-size: 12px;
  color: var(--gold-light);
}

.invite-box {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  max-width: 480px;
}

.invite-input {
  flex: 1;
  background: #0d0f17;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: #fff;
  font-family: monospace;
}

/* News & Dynamics */
.news-dynamics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-item:hover {
  border-color: var(--gold-border);
  background: var(--bg-card-hover);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.news-badge {
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  font-weight: 600;
}

.news-date {
  color: var(--text-dim);
}

.news-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

.news-title:hover {
  color: var(--gold-light);
}

.news-summary {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Dynamics scroll box */
.dynamics-scroll {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px;
  max-height: 520px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dynamic-item {
  padding: 12px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dynamic-item:last-child {
  border-bottom: none;
}

.dynamic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.dynamic-tag {
  color: var(--gold-primary);
  font-weight: 600;
}

.dynamic-time {
  color: var(--text-dim);
}

.dynamic-content {
  font-size: 13px;
  color: #e2e8f0;
  font-weight: 500;
}

/* Products Filter Bar (products.html) */
.filter-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.filter-label {
  width: 70px;
  font-weight: 700;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.filter-btn {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13px;
  transition: var(--transition);
}

.filter-btn:hover {
  color: #fff;
  background: #1b1e2c;
}

.filter-btn.active {
  background: var(--gold-primary);
  color: #08090d;
  font-weight: 700;
}

.filter-tag-pill {
  padding: 5px 12px;
  border-radius: 50px;
  background: #171926;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #b3b9cc;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tag-pill:hover {
  border-color: var(--gold-border);
  color: #fff;
}

.filter-tag-pill.active {
  background: linear-gradient(135deg, #d4af37, #997922);
  color: #000;
  font-weight: 700;
  border-color: transparent;
}

/* Search and Sort Toolbar */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.search-input-wrap {
  position: relative;
  width: 320px;
}

.search-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 10px 16px 10px 40px;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--gold-primary);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
}

.sort-group {
  display: inline-flex;
  background: #151824;
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
}

.sort-btn {
  padding: 6px 14px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.sort-btn.active {
  background: var(--gold-primary);
  color: #000;
  font-weight: 700;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 40px 0 60px;
}

.page-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: #c9cee0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.page-btn:hover:not(:disabled) {
  border-color: var(--gold-primary);
  color: #fff;
}

.page-btn.active {
  background: linear-gradient(135deg, #f7ebb8, #d4af37);
  color: #000;
  border-color: transparent;
}

.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Timeline (about.html) */
.timeline {
  position: relative;
  border-left: 2px solid var(--gold-border);
  margin-left: 120px;
  padding: 20px 0 20px 36px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.timeline-item {
  position: relative;
}

.timeline-year {
  position: absolute;
  left: -150px;
  top: 0;
  width: 100px;
  text-align: right;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
}

.timeline-dot {
  position: absolute;
  left: -44px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 3px solid var(--gold-primary);
  transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
  background: var(--gold-primary);
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition);
}

.timeline-card:hover {
  border-color: var(--gold-border-hover);
}

.timeline-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Team Grid (about.html) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-4px);
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid var(--gold-border);
  margin-bottom: 14px;
}

.team-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.team-title {
  font-size: 12px;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.skill-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #191c2a;
  color: #9ba1b4;
}

/* Contact Grid & Form (contact.html) */
.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 36px;
  margin-bottom: 50px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #cfd4e2;
  margin-bottom: 6px;
}

.form-label span {
  color: #ef4444;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  background: #171a26;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info-label {
  font-size: 12px;
  color: var(--text-dim);
}

.contact-info-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
}

/* Map Section */
.map-card {
  background: #090a0e;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 50px;
}

.map-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(var(--gold-primary) 1px, transparent 1px);
  background-size: 16px 16px;
}

.map-pin {
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.map-pin-icon {
  font-size: 36px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Footer */
.footer {
  background: #08090d;
  border-top: 1px solid var(--gold-border);
  padding: 60px 0 30px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.footer-tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #12141d;
  border: 1px solid var(--border-subtle);
  color: var(--text-dim);
  text-decoration: none;
}

.footer-tag:hover {
  color: var(--gold-primary);
  border-color: var(--gold-border);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
}

/* Floating Controls (浮漂下载APP与客服按钮) */
.floating-controls {
  position: fixed;
  right: 24px;
  bottom: 30px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
  text-decoration: none;
}

.floating-btn-app {
  background: linear-gradient(135deg, #f7ebb8 0%, #d4af37 50%, #9e7922 100%);
  color: #08090d;
  font-weight: 800;
  font-size: 10px;
  border-color: transparent;
  animation: pulse-gold 2.5s infinite;
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.floating-btn-chat {
  background: #141724;
  color: var(--gold-light);
  font-size: 18px;
}

.floating-btn-chat:hover,
.floating-btn-top:hover {
  background: #202438;
  color: #fff;
  border-color: var(--gold-border-hover);
}

.floating-btn-top {
  background: #141724;
  color: #9ba1b4;
  font-size: 16px;
  display: none;
}

/* Modal Windows (Movie Player & Live Chat) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}

.modal-backdrop.open {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: #11131c;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--gold-primary);
  color: #000;
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .movie-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .core-products-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 64px;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #0d0f17;
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--gold-border);
  }
  .nav-menu.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .movie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hero-card {
    padding: 36px 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .news-dynamics-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .timeline {
    margin-left: 20px;
    padding-left: 20px;
  }
  .timeline-year {
    position: static;
    text-align: left;
    margin-bottom: 6px;
    width: auto;
  }
  .timeline-dot {
    left: -27px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}
