/* ==========================================================================
   八戒影院（八戒电影网）官方品牌企业站 - 纯静态纯原生 CSS
   视觉风格：淡黑金 (深曜石黑 + 香槟金/流光金)
   ========================================================================== */

:root {
  --bg-main: #0b0c10;
  --bg-card: #13141c;
  --bg-card-hover: #191b26;
  --bg-panel: #161722;
  --bg-header: rgba(11, 12, 16, 0.92);

  --gold-light: #fce09b;
  --gold-primary: #dfb246;
  --gold-dark: #b8860b;
  --gold-border: rgba(223, 178, 70, 0.25);
  --gold-border-hover: rgba(223, 178, 70, 0.6);
  --gold-glow: rgba(223, 178, 70, 0.35);

  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-faint: #6b7280;

  --accent-red: #ef4444;
  --accent-green: #10b981;

  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  font-size: 14px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.2s ease;
}

input, textarea, select {
  font-family: inherit;
  outline: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #2a2c3a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.gold-gradient-text {
  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;
}

.section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  .section-title-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.section-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-h2 {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
}
@media (min-width: 640px) {
  .section-h2 {
    font-size: 28px;
  }
}

.section-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

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

.brand-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0c10;
  font-weight: 900;
  font-size: 22px;
  box-shadow: 0 0 20px var(--gold-glow);
}

.brand-title-group h1 {
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
}
.brand-title-group span {
  font-size: 10px;
  color: var(--gold-primary);
  letter-spacing: 0.5px;
  display: block;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 4px;
  list-style: none;
}
@media (min-width: 960px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: #d1d5db;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
  background: rgba(223, 178, 70, 0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-bar {
  position: relative;
  display: none;
}
@media (min-width: 640px) {
  .search-bar {
    display: block;
  }
}
.search-input {
  background: #15161f;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  padding: 8px 16px 8px 36px;
  color: #fff;
  font-size: 12px;
  width: 180px;
  transition: all 0.3s;
}
.search-input:focus {
  border-color: var(--gold-primary);
  width: 240px;
  box-shadow: 0 0 15px rgba(223, 178, 70, 0.2);
}
.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 14px;
  pointer-events: none;
}

.btn-chat-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(223, 178, 70, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.btn-chat-nav:hover {
  background: var(--gold-primary);
  color: #0b0c10;
  box-shadow: 0 0 15px var(--gold-glow);
}

.btn-mobile-toggle {
  display: flex;
  font-size: 22px;
  color: var(--gold-light);
  padding: 6px;
}
@media (min-width: 960px) {
  .btn-mobile-toggle {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  background: #0e0f16;
  border-bottom: 1px solid var(--gold-border);
  padding: 16px 20px;
}
.mobile-nav-drawer.open {
  display: block;
}
.mobile-nav-drawer .nav-link {
  display: block;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

/* ==========================================================================
   Hero Showcase
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gold-border);
  background: #08090d;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.2);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0b0c10 0%, rgba(11,12,16,0.7) 60%, rgba(0,0,0,0.85) 100%),
              linear-gradient(to right, #0b0c10 0%, rgba(11,12,16,0.85) 45%, transparent 100%);
}

.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(223, 178, 70, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
}

.hero-title {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .hero-title {
    font-size: 48px;
  }
}

.hero-desc {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.7;
  max-width: 600px;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 10px;
}

.btn-primary-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #0b0c10;
  font-weight: 900;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 25px rgba(223, 178, 70, 0.4);
  transition: all 0.3s;
}
.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(223, 178, 70, 0.6);
  filter: brightness(1.05);
}

.btn-secondary-dark {
  background: #181924;
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary-dark:hover {
  border-color: var(--gold-primary);
  background: #212332;
}

.hero-micro-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-micro-perks span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e5e7eb;
}
.hero-micro-perks span::before {
  content: "✔";
  color: var(--gold-primary);
  font-weight: bold;
}

.hero-poster-preview {
  display: flex;
  justify-content: center;
}
.hero-poster-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--gold-border);
  box-shadow: 0 15px 45px rgba(223, 178, 70, 0.25);
  cursor: pointer;
  background: var(--bg-card);
  transition: all 0.4s ease;
}
.hero-poster-card:hover {
  transform: scale(1.03);
  border-color: var(--gold-primary);
}
.hero-poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

/* ==========================================================================
   Company Stats Banner
   ========================================================================== */
.stats-banner {
  background: linear-gradient(135deg, #12131b, #171926, #12131b);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 30px;
  margin: 60px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 960px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.stats-text h2 {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.stats-text p {
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.7;
}

.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat-item {
  background: #181924;
  border: 1px solid rgba(223, 178, 70, 0.15);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: all 0.3s;
}
.stat-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
}
.stat-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold-primary);
  margin: 6px 0;
  font-family: monospace;
}
.stat-sub {
  font-size: 11px;
  color: var(--text-faint);
}

/* ==========================================================================
   Core Products
   ========================================================================== */
.products-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .products-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.core-product-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.3s;
}
.core-product-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(223, 178, 70, 0.15);
}
.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.product-icon-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.product-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(223, 178, 70, 0.15);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.product-title-group h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.product-title-group span {
  font-size: 12px;
  color: var(--gold-primary);
}
.badge-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(223, 178, 70, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
}

.product-features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  font-size: 12px;
  color: #d1d5db;
}
@media (min-width: 480px) {
  .product-features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-features-list span::before {
  content: "⚡";
  margin-right: 6px;
  color: var(--gold-primary);
}

.product-footer {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.product-action-link {
  color: var(--gold-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-action-link:hover {
  color: var(--gold-light);
}

/* ==========================================================================
   Movie Cards & Grids
   ========================================================================== */
.movie-grid-5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
@media (min-width: 540px) {
  .movie-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .movie-grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .movie-grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.movie-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(223, 178, 70, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.movie-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(223, 178, 70, 0.25);
}

.movie-poster-box {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #181924;
}
.movie-poster-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.movie-card:hover .movie-poster-box img {
  transform: scale(1.06);
}

.movie-badge-top-left {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #0b0c10;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
}
.movie-rating-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.play-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.movie-card:hover .play-hover-overlay {
  opacity: 1;
}
.play-btn-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #0b0c10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 20px var(--gold-glow);
}

.movie-info-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}
.movie-card-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.movie-card:hover .movie-card-title {
  color: var(--gold-light);
}

.movie-meta-sub {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}
.movie-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.mini-tag {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ==========================================================================
   VIP & Affiliate
   ========================================================================== */
.vip-section-wrap {
  background: linear-gradient(135deg, #161720, #222017, #14151c);
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 40px 24px;
  margin: 60px 0;
  box-shadow: 0 15px 50px rgba(223, 178, 70, 0.15);
  position: relative;
  overflow: hidden;
}
.vip-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}
.vip-plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .vip-plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.vip-plan-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s;
}
.vip-plan-card.popular {
  border: 2px solid var(--gold-primary);
  background: #1a1c28;
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(223, 178, 70, 0.3);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: #0b0c10;
  font-weight: 900;
  font-size: 11px;
  padding: 3px 12px;
  border-radius: 999px;
}
.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 16px 0;
}
.plan-price-row .price {
  font-size: 38px;
  font-weight: 900;
  color: var(--gold-primary);
  font-family: monospace;
}
.plan-price-row .original {
  font-size: 13px;
  color: var(--text-faint);
  text-decoration: line-through;
}
.rebate-callout-box {
  background: rgba(223, 178, 70, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 10px;
  margin-bottom: 16px;
}
.rebate-callout-box strong {
  color: var(--gold-light);
  font-size: 12px;
  display: block;
}
.rebate-callout-box p {
  font-size: 11px;
  color: var(--text-muted);
}
.perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: #e5e7eb;
  margin-bottom: 20px;
}
.perks-list li::before {
  content: "✔ ";
  color: var(--gold-primary);
  font-weight: bold;
}

.share-invite-box {
  background: #101118;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .share-invite-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ==========================================================================
   News & Dynamics
   ========================================================================== */
.news-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
@media (min-width: 640px) {
  .news-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .news-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news-card-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s;
}
.news-card-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}
.news-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 10px;
}
.news-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}
.news-card-item:hover .news-card-title {
  color: var(--gold-light);
}
.news-summary {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dynamic-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.btn-filter-chip {
  background: #181924;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
}
.btn-filter-chip:hover, .btn-filter-chip.active {
  background: var(--gold-primary);
  color: #0b0c10;
  border-color: var(--gold-primary);
}

.dynamics-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .dynamics-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.dynamic-item-card {
  background: #12131a;
  border: 1px solid rgba(223, 178, 70, 0.15);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  gap: 14px;
  transition: all 0.3s;
}
.dynamic-item-card:hover {
  border-color: var(--gold-primary);
  background: #171824;
}
.dynamic-num {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(223, 178, 70, 0.12);
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: monospace;
  flex-shrink: 0;
}
.dynamic-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ==========================================================================
   Products Library (Filter Panel & Pagination)
   ========================================================================== */
.filter-panel-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.filter-label {
  font-weight: 800;
  color: var(--gold-light);
  width: 70px;
  flex-shrink: 0;
}
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.filter-opt-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  color: #d1d5db;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
}
.filter-opt-btn:hover, .filter-opt-btn.active {
  background: var(--gold-primary);
  color: #0b0c10;
  font-weight: 700;
}

.sort-status-bar {
  background: #0e0f14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .sort-status-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.sort-btn-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sort-btn {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.05);
}
.sort-btn:hover, .sort-btn.active {
  background: var(--gold-primary);
  color: #0b0c10;
  font-weight: 700;
}

.pagination-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 30px 0;
}
.page-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: #14151e;
  border: 1px solid var(--gold-border);
  color: #d1d5db;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-btn:hover, .page-btn.active {
  background: var(--gold-primary);
  color: #0b0c10;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

/* ==========================================================================
   About & Milestones
   ========================================================================== */
.about-hero-banner {
  background: linear-gradient(135deg, #161722, #262218, #12131b);
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-bottom: 60px;
}
.timeline-container {
  position: relative;
  border-left: 2px solid var(--gold-border);
  margin: 40px 0 60px 20px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 640px) {
  .timeline-container {
    margin-left: 120px;
    padding-left: 36px;
  }
}
.timeline-item {
  position: relative;
}
.timeline-dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0b0c10;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}
@media (min-width: 640px) {
  .timeline-dot {
    left: -45px;
  }
}
.timeline-year-label {
  display: none;
  position: absolute;
  left: -120px;
  top: 0;
  width: 70px;
  text-align: right;
  font-size: 18px;
  font-weight: 900;
  color: var(--gold-primary);
  font-family: monospace;
}
@media (min-width: 640px) {
  .timeline-year-label {
    display: block;
  }
}
.timeline-content-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.team-avatar-box {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #181924;
}
.team-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.team-card:hover .team-avatar-box img {
  transform: scale(1.05);
}
.team-card-body {
  padding: 16px;
}

/* ==========================================================================
   Contact & Interactive Map
   ========================================================================== */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 60px;
}
@media (min-width: 960px) {
  .contact-layout-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.form-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 30px;
}
.form-type-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .form-type-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
.btn-form-type {
  padding: 10px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: #d1d5db;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.btn-form-type:hover, .btn-form-type.active {
  background: var(--gold-primary);
  color: #0b0c10;
  font-weight: 800;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 12px;
  color: #d1d5db;
  font-weight: 600;
}
.form-input, .form-textarea {
  background: #181924;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold-primary);
}

.map-card-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 20px;
}
.vector-map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0c0d12;
  border: 1px solid var(--gold-border);
}

/* ==========================================================================
   Modals & Overlays
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.modal-content-box {
  position: relative;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  background: #12131b;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: 0 0 50px rgba(223, 178, 70, 0.25);
}

.btn-close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-close-modal:hover {
  background: var(--gold-primary);
  color: #0b0c10;
}

/* Simulated Video Player */
.sim-player-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sim-player-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}
.sim-player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 12px;
}

.episode-picker-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.btn-ep {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: #d1d5db;
  font-size: 12px;
}
.btn-ep:hover, .btn-ep.active {
  background: var(--gold-primary);
  color: #0b0c10;
  font-weight: 700;
}

/* Live Chat Drawer / Modal */
.chat-window {
  display: flex;
  flex-direction: column;
  height: 480px;
}
.chat-messages-area {
  flex-grow: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  display: flex;
  gap: 10px;
  max-width: 80%;
}
.chat-msg.bot {
  align-self: flex-start;
}
.chat-msg.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.chat-msg-bubble {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.5;
}
.chat-msg.bot .chat-msg-bubble {
  background: #1e202c;
  border: 1px solid var(--gold-border);
  color: #e5e7eb;
}
.chat-msg.user .chat-msg-bubble {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #0b0c10;
  font-weight: 600;
}
.chat-input-bar {
  display: flex;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Floating App Download Button
   ========================================================================== */
.floating-app-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #0b0c10;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(223, 178, 70, 0.45);
  animation: pulseGold 2.5s infinite;
  text-decoration: none;
}
@keyframes pulseGold {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(223, 178, 70, 0.45); }
  50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(223, 178, 70, 0.7); }
}

/* Toast */
.site-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gold-primary);
  color: #0b0c10;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  z-index: 3000;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(223, 178, 70, 0.5);
}
.site-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #07080c;
  border-top: 1px solid var(--gold-border);
  padding: 50px 0 30px;
  color: var(--text-muted);
  font-size: 12px;
}
.seo-tags-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.seo-tag-link {
  background: #111218;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #9ca3af;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
}
.seo-tag-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-border);
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .footer-columns-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
