:root {
  --coffee: #4a2f22;
  --coffee-deep: #24160f;
  --foam: #f3e6d4;
  --ink: #120c08;
  --neon: #5dffd2;
  --amber: #ffd36a;
  --foot: #f7f8f8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--foam);
  background: var(--coffee-deep);
  font-size: 13px;
  line-height: 1.75;
  min-width: 1180px;
}
img { max-width: 100%; border: 0; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
.comic {
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink), 0 0 12px rgba(93,255,210,.35);
}
.neon-line {
  border: 3px solid var(--neon);
  box-shadow: 0 0 10px var(--neon), 4px 4px 0 var(--ink);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  font-weight: 800;
  letter-spacing: .08em;
  background: var(--amber);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink), 0 0 10px rgba(255,211,106,.45);
  cursor: pointer;
}
.btn-ghost {
  background: transparent;
  color: var(--neon);
  border-color: var(--neon);
  box-shadow: 0 0 10px rgba(93,255,210,.4), 4px 4px 0 var(--ink);
}
.wrap { width: 1100px; margin: 0 auto; }
.wide { width: 1180px; margin: 0 auto; }
.fine { font-size: 11px; letter-spacing: .18em; color: var(--amber); }
h2.sec-title {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.15;
  color: #fff;
  text-shadow: 3px 3px 0 var(--ink), 0 0 12px rgba(93,255,210,.35);
  margin-bottom: 8px;
}
.sec-sub { font-size: 13px; color: #d7c4b0; margin-bottom: 22px; }

.hero-wrap { position: relative; min-height: 760px; }
#index_top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 40;
  height: 64px;
}
#index_top .bar {
  width: 1100px;
  margin: 12px auto 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 8px;
  background: #3a241a;
}
.logo { display: flex; align-items: center; gap: 8px; font-weight: 900; }
.logo img { height: 28px; }
.mid-nav { display: flex; align-items: center; gap: 2px; }
.mid-nav > a, .mid-nav > .drop > span {
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.drop { position: relative; }
.mega {
  display: none;
  position: absolute;
  top: 36px; left: 50%;
  transform: translateX(-50%);
  width: 560px;
  padding: 16px;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  background: #3a241a;
  z-index: 5;
}
.drop:hover .mega { display: grid; }
.mega b { display: block; margin-bottom: 6px; color: var(--amber); }
.mega a { display: block; padding: 4px 0; color: #d7c4b0; font-size: 13px; }
.top-acts { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; }
.ham {
  width: 42px; height: 42px;
  font-size: 20px;
  font-weight: 900;
  background: var(--neon);
  color: var(--ink);
}
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(18,12,8,.96);
  color: var(--foam);
  padding: 80px 10vw;
}
.overlay.show { display: block; }
.overlay a { display: block; font-size: 28px; font-weight: 900; padding: 8px 0; }
.overlay .x { position: absolute; top: 24px; right: 28px; font-size: 36px; color: var(--neon); }

#index_head { position: relative; min-height: 760px; overflow: hidden; background: #2e1b13; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 760px; }
.color { position: relative; display: flex; align-items: center; }
.earth {
  position: absolute;
  width: 620px; height: 620px;
  right: -12%;
  top: 12%;
  border-radius: 50%;
  border: 3px solid var(--neon);
  background: repeating-conic-gradient(from 12deg, rgba(93,255,210,.16) 0 12deg, rgba(18,12,8,.4) 12deg 24deg);
  box-shadow: 0 0 40px rgba(93,255,210,.25);
  animation: spin 90s linear infinite;
  opacity: .5;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-copy { position: relative; z-index: 2; width: 1100px; margin-left: auto; padding: 130px 36px 50px 0; }
.hero-note {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--ink);
  background: var(--neon);
  border: 3px solid var(--ink);
}
#index_head .hero-title {
  font-size: 48px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: .08em;
  color: #fff;
  text-shadow: 4px 4px 0 var(--ink), 0 0 14px rgba(93,255,210,.45);
}
.hero-sub { color: #d7c4b0; letter-spacing: .14em; margin: 10px 0 20px; font-size: 13px; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.seo-h1 { margin-top: 16px; font-size: 16px; font-weight: 900; color: var(--amber); }
.art img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.05);
  border-left: 3px solid var(--ink);
}

#sell { padding: 70px 0 24px; overflow: hidden; }
.sell-row { width: 1100px; margin: 0 auto; overflow: hidden; }
.sell-item { float: left; width: 18%; margin-right: 7%; text-align: center; background: #3a241a; padding: 10px; }
.sell-item:last-child { margin-right: 0; }
.sell-item img { width: 200px; height: 176px; object-fit: cover; display: block; margin: 0 auto 12px; }
.sell-item h3 { font-size: 18px; font-weight: 900; }
.sell-item p { font-size: 12px; color: #d7c4b0; }
.clear { clear: both; }

.linelist { width: 1100px; margin: 10px auto 40px; }
.line-item {
  display: grid;
  grid-template-columns: 88px 1fr 280px;
  gap: 18px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 3px solid rgba(93,255,210,.35);
}
.line-item .num { font-size: 40px; font-weight: 900; color: var(--neon); text-shadow: 0 0 10px var(--neon); }
.line-item h2 { font-size: 28px; font-weight: 900; }
.line-item p { font-size: 13px; color: #d7c4b0; }
.line-item img { width: 100%; height: 120px; object-fit: cover; }

#oa { padding: 70px 0; }
.oa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.oa-card { padding: 16px; text-align: center; background: #3a241a; }
.oa-card img { width: 72px; height: 64px; object-fit: cover; margin-bottom: 8px; }
.oa-card h3 { font-size: 16px; font-weight: 900; }
.oa-more { display: none; margin-top: 14px; }
.oa-more.show { display: grid; }
.more-btn { margin: 22px auto 0; display: block; }

.stats {
  width: 1180px;
  margin: 10px auto 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #3a241a;
}
.stats div {
  padding: 28px 12px;
  text-align: center;
  border-right: 3px solid var(--ink);
}
.stats div:last-child { border-right: 0; }
.stats b { display: block; font-size: 40px; font-weight: 900; color: var(--neon); text-shadow: 0 0 12px var(--neon); }
.stats span { font-size: 12px; color: #d7c4b0; }

#trio { padding: 20px 0 50px; }
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trio article { padding: 16px; background: #3a241a; }
.trio article.private { border-radius: 16px; outline: 1px solid rgba(243,230,212,.35); }
.trio img { width: 100%; height: 148px; object-fit: cover; margin-bottom: 10px; }
.trio h3 { font-size: 20px; font-weight: 900; }

.cases { width: 1100px; margin: 0 auto 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cases article { padding: 18px; background: #3a241a; }
.cases img { width: 100%; height: 160px; object-fit: cover; margin-bottom: 10px; }
.cases h3 { font-size: 22px; font-weight: 900; }

#quotes { padding: 8px 0 36px; overflow: hidden; }
.marquee { display: flex; gap: 12px; width: max-content; animation: slide 90s linear infinite; }
.marquee.reverse { animation-direction: reverse; margin-top: 12px; }
@keyframes slide { to { transform: translateX(-50%); } }
.quote-card { width: 280px; padding: 16px; flex: 0 0 auto; background: #3a241a; }
.quote-card p { font-size: 13px; min-height: 70px; }
.quote-card .who { margin-top: 8px; font-size: 12px; color: var(--amber); }

#dlzone { padding: 60px 0; text-align: center; }
.big-dl {
  display: inline-flex;
  min-width: 360px;
  min-height: 72px;
  font-size: 22px;
  margin: 8px 10px 24px;
}
.ends { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 8px; text-align: center; }
.ends a { display: block; padding: 10px 6px; font-size: 13px; font-weight: 800; background: #3a241a; }
.ends img { width: 100%; height: 66px; object-fit: cover; margin-bottom: 6px; }

#faq { padding: 50px 0 70px; }
.faq-list { border-top: 3px solid var(--neon); }
.faq-list details { padding: 14px 0; border-bottom: 3px solid rgba(93,255,210,.35); }
.faq-list summary { cursor: pointer; font-size: 18px; font-weight: 900; }
.faq-list p { font-size: 13px; color: #d7c4b0; margin-top: 8px; }

.article { padding: 8px 0 40px; }
.article p { margin-bottom: 14px; color: #d7c4b0; text-align: justify; font-size: 13px; }
.shots { padding: 0 0 50px; }
.shot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.shot-grid img { width: 100%; height: 132px; object-fit: cover; border: 3px solid var(--ink); }

#footer { background: var(--foot); min-width: 1180px; padding: 36px 0 20px; color: #2a2d31; text-align: center; }
.social { display: flex; justify-content: center; gap: 12px; margin-bottom: 16px; }
.social a {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: #fff;
  color: #120c08;
  border: 3px solid #120c08;
}
.foot-cols {
  width: 1180px;
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  text-align: left;
}
.foot-cols h4 { font-size: 13px; font-weight: 900; margin-bottom: 8px; }
.foot-cols a { display: block; font-size: 12px; color: #7a726b; padding: 3px 0; }
.mini { font-size: 12px; color: #9a928b; letter-spacing: .12em; }
.page-hero, .page-hero .split, .page-hero .art img { min-height: 640px; }
.page-hero .art img { height: 640px; }
.page-hero .hero-copy { padding-top: 120px; }
.page-hero h1.seo-h1 { font-size: 20px; }

#index_head h1{font-size:48px;line-height:1.2;font-weight:600}
.seo-line{margin-top:16px;font-size:16px;font-weight:600}
.card#private{border-radius:16px;box-shadow:0 0 0 1px rgba(0,0,0,.16)}
article.private,#private{border-radius:16px;box-shadow:0 0 0 1px rgba(0,0,0,.16)}
