/* Extracted inline CSS for mgcvip.com during wallet SEO single-site repair. */
/* ═══════════════════════════════════════════════════
   tokenim 官网门户 · 样式表
   theme-color: #1B56F5
   ═══════════════════════════════════════════════════ */

/* ── 1. CSS 变量 ── */
:root {
  --brand:        #1B56F5;
  --brand-dark:   #1240c7;
  --brand-light:  #e8efff;
  --accent:       #0ee8a0;
  --text-base:    #1a1f2e;
  --text-muted:   #5a6275;
  --text-light:   #8a93a8;
  --bg-white:     #ffffff;
  --bg-off:       #f5f7fc;
  --bg-dark:      #0d1120;
  --border:       #e2e8f0;
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(27,86,245,.08);
  --shadow:       0 6px 24px rgba(27,86,245,.12);
  --shadow-lg:    0 16px 48px rgba(27,86,245,.18);
  --header-h:     64px;
  --max-w:        1160px;
  --sec-py:       80px;
  --transition:   .22s cubic-bezier(.4,0,.2,1);
}

/* ── 2. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
               "Microsoft YaHei", "Segoe UI", sans-serif;
  color: var(--text-base);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── 3. 公共工具 ── */
.sc-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sc { padding: var(--sec-py) 0; }
.sc-alt { background: var(--bg-off); }
.sc-flex { display: flex; gap: 56px; align-items: center; }
.sc-lead { color: var(--text-muted); margin-top: 12px; margin-bottom: 40px; font-size: 1.05rem; max-width: 760px; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--text-base); line-height: 1.3; letter-spacing: -.01em; }
h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-base); line-height: 1.4; }
p  { color: var(--text-muted); line-height: 1.8; }

/* ── 4. 按钮 ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--brand); color: #fff;
  font-size: 1rem; font-weight: 600; border-radius: var(--radius);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--brand-dark); box-shadow: var(--shadow); transform: translateY(-2px); }
.btn-primary:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn-large { padding: 18px 48px; font-size: 1.1rem; border-radius: var(--radius-lg); }
.btn-ghost {
  display: inline-flex; align-items: center; padding: 13px 28px;
  color: #fff; font-size: 1rem; font-weight: 500;
  border: 2px solid rgba(255,255,255,.55); border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.85); }
.btn-outline {
  display: inline-flex; align-items: center; padding: 13px 32px;
  color: #fff; font-size: 1rem; font-weight: 600;
  border: 2px solid rgba(255,255,255,.7); border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ── 5. HEADER ── */
.hd {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h);
  background: rgba(13,17,32,.92); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); z-index: 900;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hd-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { width: 36px; height: 36px; border-radius: 8px; }
.brand-name { font-size: 1.15rem; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.nav { display: flex; align-items: center; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 910; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-panel { display: flex; align-items: center; gap: 4px; }
.nav-panel a { display: block; padding: 8px 14px; font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.78); border-radius: var(--radius-sm); transition: color var(--transition), background var(--transition); }
.nav-panel a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-cta { background: var(--brand) !important; color: #fff !important; border-radius: var(--radius-sm) !important; padding: 8px 18px !important; }
.nav-cta:hover { background: var(--brand-dark) !important; }

/* ── 6. HERO ── */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  background-image: url('https://webpimg1.s3.ap-east-1.amazonaws.com/imweb/banner/bn5.webp');
  background-size: cover; background-position: center; background-repeat: no-repeat;
  display: flex; align-items: center; padding-top: var(--header-h); overflow: hidden;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.62); z-index: 1; }
.hero-inner {
  position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto;
  padding: 72px 24px 80px; display: flex; align-items: center; gap: 64px; width: 100%;
}
.hero-text { flex: 1; min-width: 0; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; color: #fff; line-height: 1.25; letter-spacing: -.02em; margin-bottom: 20px; }
h1 span { font-size: clamp(1.15rem, 2.5vw, 1.6rem); font-weight: 500; opacity: .88; letter-spacing: -.01em; }
.hero-sub { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 24px; max-width: 560px; line-height: 1.75; }
.hero-sub strong { color: var(--accent); font-weight: 600; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero-tags span { padding: 5px 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.9); font-size: .82rem; border-radius: 20px; backdrop-filter: blur(4px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.hero-quick-links { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.hero-quick-links a { color: rgba(255,255,255,.72); font-size: .88rem; text-decoration: underline; text-underline-offset: 3px; transition: color var(--transition); }
.hero-quick-links a:hover { color: #fff; }
.hero-notice { color: rgba(255,230,100,.9); font-size: .82rem; padding: 10px 14px; background: rgba(255,200,0,.08); border: 1px solid rgba(255,200,0,.2); border-radius: var(--radius-sm); max-width: 520px; line-height: 1.6; }
.hero-screens { display: flex; gap: 16px; align-items: flex-end; flex-shrink: 0; }
.hero-screens img { width: 200px; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.5); border: 2px solid rgba(255,255,255,.12); }
.hero-screens img:first-child { transform: translateY(20px); }

/* ── 7. ABOUT ── */
.about-text { flex: 1; min-width: 0; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--brand); font-weight: 600; }
.about-img { flex-shrink: 0; width: 340px; }
.about-img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ── 8. SERVICES ── */
#services h2 { margin-bottom: 12px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px 24px; transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition); overflow: hidden; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--brand-light); }
.card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 18px; }
.card-icon { font-size: 2rem; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--brand-light); color: var(--brand); border-radius: var(--radius-sm); margin-bottom: 18px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .92rem; }

/* ── 9. COMPARE ── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: .92rem; background: var(--bg-white); min-width: 640px; }
.compare-table th { background: var(--brand); color: #fff; font-weight: 600; padding: 14px 18px; text-align: left; font-size: .9rem; }
.compare-table th:first-child { border-radius: var(--radius) 0 0 0; }
.compare-table th:last-child  { border-radius: 0 var(--radius) 0 0; }
.compare-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); color: var(--text-muted); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--bg-off); }
.compare-table td.highlight { color: var(--brand); font-weight: 600; }
.compare-note { font-size: .84rem; color: var(--text-light); margin-top: 16px; font-style: italic; }

/* ── 10. GUIDE ── */
.guide-text { flex: 1; min-width: 0; }
.guide-text h2 { margin-bottom: 28px; }
.guide-step { margin-bottom: 28px; }
.guide-step:last-of-type { margin-bottom: 32px; }
.guide-step h3 { color: var(--brand); margin-bottom: 10px; font-size: 1rem; }
.guide-step p { font-size: .94rem; }
.guide-step strong { color: var(--text-base); font-weight: 600; }
.guide-img { flex-shrink: 0; width: 340px; }
.guide-img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ── 11. SCENES ── */
.scenes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.scene-item { padding: 26px 22px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); transition: box-shadow var(--transition), border-color var(--transition); }
.scene-item:hover { box-shadow: var(--shadow-sm); border-color: var(--brand-light); }
.scene-icon { font-size: 1.5rem; color: var(--brand); margin-bottom: 12px; line-height: 1; }
.scene-item h3 { font-size: .97rem; margin-bottom: 10px; }
.scene-item p  { font-size: .88rem; }

/* ── 12. AUDIENCE ── */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 12px; }
.audience-block { padding: 32px 28px; border-radius: var(--radius); border: 1px solid transparent; }
.audience-yes { background: #edfff6; border-color: #b2f0d4; }
.audience-no  { background: #fff8f0; border-color: #ffd5a8; }
.audience-block h3 { margin-bottom: 18px; font-size: 1rem; }
.audience-yes h3 { color: #0d7b45; }
.audience-no  h3 { color: #b95c00; }
.audience-block ul { display: flex; flex-direction: column; gap: 12px; }
.audience-block li { font-size: .9rem; color: var(--text-muted); padding-left: 20px; position: relative; }
.audience-block li::before { content: ''; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; }
.audience-yes li::before { background: #2bc87a; }
.audience-no  li::before { background: #f5a041; }
.audience-block li strong { color: var(--text-base); font-weight: 600; }

/* ── 13. SAFETY ── */
.safety-list { display: flex; flex-direction: column; gap: 24px; }
.safety-item { padding: 26px 28px; background: var(--bg-white); border-left: 4px solid var(--brand); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; box-shadow: var(--shadow-sm); }
.safety-item h3 { color: var(--text-base); margin-bottom: 10px; font-size: .97rem; }
.safety-item strong { color: var(--brand); }
.safety-cta { margin-top: 36px; text-align: center; }

/* ── 14. GLOSSARY ── */
.glossary-list { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.glossary-item { padding: 28px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); }
.glossary-item h3 { color: var(--brand); margin-bottom: 12px; font-size: 1rem; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.glossary-item p { font-size: .92rem; }

/* ── 15. FAQ ── */
.faq-list { margin-top: 8px; }
.faq-list dt { font-size: 1rem; font-weight: 600; color: var(--text-base); padding: 20px 24px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius) var(--radius) 0 0; cursor: default; position: relative; margin-top: 12px; }
.faq-list dt::before { content: 'Q'; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--brand); color: #fff; border-radius: 50%; font-size: .72rem; font-weight: 700; margin-right: 10px; flex-shrink: 0; vertical-align: middle; }
.faq-list dd { font-size: .92rem; color: var(--text-muted); line-height: 1.8; padding: 18px 24px 20px 56px; background: var(--bg-off); border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius) var(--radius); margin-bottom: 0; }
.faq-list dd strong { color: var(--text-base); font-weight: 600; }

/* ── 16. TRUST ── */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.trust-item { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.trust-label { font-size: .78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.trust-value { font-size: .95rem; color: var(--text-base); font-weight: 500; }
.trust-policy { padding: 16px 20px; background: var(--brand-light); border-radius: var(--radius-sm); font-size: .88rem; color: var(--text-muted); }
.trust-policy a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.trust-policy a:hover { color: var(--brand-dark); }

/* ── 17. CTA ── */
.cta { position: relative; background-image: url('https://webpimg1.s3.ap-east-1.amazonaws.com/imweb/banner/bn9.webp'); background-size: cover; background-position: center; text-align: center; overflow: hidden; }
.cta-overlay { position: absolute; inset: 0; background: rgba(10,15,40,.78); z-index: 1; }
.cta-inner { position: relative; z-index: 2; padding: 96px 24px; }
.cta-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.3; }
.cta-sub { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-notice { margin-top: 24px; font-size: .82rem; color: rgba(255,220,90,.88); max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.65; padding: 10px 16px; background: rgba(255,200,0,.07); border: 1px solid rgba(255,200,0,.18); border-radius: var(--radius-sm); }

/* ── 18. FOOTER ── */
.ft { background: var(--bg-dark); padding: 60px 0 0; color: rgba(255,255,255,.7); }
.ft-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px 48px; display: flex; gap: 64px; align-items: flex-start; }
.ft-brand { flex-shrink: 0; max-width: 280px; }
.ft-brand .brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ft-brand .brand-name { color: #fff; font-size: 1.05rem; }
.ft-desc { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.ft-nav { display: flex; gap: 48px; flex: 1; flex-wrap: wrap; }
.ft-col { display: flex; flex-direction: column; gap: 10px; min-width: 120px; }
.ft-col strong { color: rgba(255,255,255,.9); font-size: .85rem; font-weight: 600; margin-bottom: 4px; letter-spacing: .02em; }
.ft-col a { font-size: .84rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.ft-col a:hover { color: rgba(255,255,255,.9); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 24px; max-width: var(--max-w); margin: 0 auto; font-size: .78rem; color: rgba(255,255,255,.3); line-height: 1.6; }

/* ── 19. MOBILE BAR ── */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,.1); padding: 12px 20px; align-items: center; gap: 12px; z-index: 800; backdrop-filter: blur(8px); }
.mobile-bar-text { font-size: .82rem; color: rgba(255,255,255,.65); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mobile-bar-btn { display: inline-block; padding: 10px 20px; background: var(--brand); color: #fff; font-size: .88rem; font-weight: 600; border-radius: var(--radius-sm); white-space: nowrap; transition: background var(--transition); }
.mobile-bar-btn:hover { background: var(--brand-dark); }
.mobile-bar-close { color: rgba(255,255,255,.4); font-size: 1.2rem; padding: 4px 8px; flex-shrink: 0; transition: color var(--transition); }
.mobile-bar-close:hover { color: rgba(255,255,255,.9); }

/* ── 20. BACK TO TOP ── */
.backtop { position: fixed; bottom: 80px; right: 24px; width: 44px; height: 44px; background: var(--brand); color: #fff; font-size: 1.1rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 700; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity var(--transition), transform var(--transition), background var(--transition); }
.backtop.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.backtop:hover { background: var(--brand-dark); }

/* ── 21. RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .scenes-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  :root { --sec-py: 60px; }
  .sc-flex { flex-direction: column; gap: 36px; }
  .about-img, .guide-img { width: 100%; max-width: 480px; margin: 0 auto; }
  .audience-grid { grid-template-columns: 1fr; }
  .ft-inner { flex-direction: column; gap: 36px; }
}
@media (max-width: 768px) {
  :root { --sec-py: 48px; --header-h: 58px; }
  .nav-toggle { display: flex; }
  .nav-panel { position: fixed; top: 0; right: 0; bottom: 0; width: min(300px, 82vw); flex-direction: column; align-items: flex-start; gap: 0; background: var(--bg-dark); padding: 80px 24px 40px; transform: translateX(100%); transition: transform var(--transition); z-index: 905; box-shadow: -8px 0 32px rgba(0,0,0,.4); overflow-y: auto; }
  .nav-panel.open { transform: translateX(0); }
  .nav-panel li { width: 100%; }
  .nav-panel a { padding: 14px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.07); border-radius: 0; width: 100%; }
  .nav-panel a:hover { background: none; color: var(--brand-light); }
  .nav-cta { margin-top: 16px; text-align: center; border-radius: var(--radius) !important; padding: 14px 0 !important; }
  .hero { min-height: auto; }
  .hero-inner { flex-direction: column; padding: 64px 20px 48px; gap: 40px; }
  .hero-screens { justify-content: center; width: 100%; }
  .hero-screens img { width: 140px; }
  h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .cards-grid  { grid-template-columns: 1fr; }
  .scenes-grid { grid-template-columns: 1fr; }
  .trust-grid  { grid-template-columns: 1fr; }
  .ft-nav { gap: 32px; }
  .mobile-bar { display: flex; }
  .backtop { bottom: 72px; right: 16px; }
}
@media (max-width: 480px) {
  :root { --sec-py: 40px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-tags span { font-size: .76rem; }
  .faq-list dt { font-size: .93rem; }
  .faq-list dd { padding-left: 24px; font-size: .88rem; }
  .ft-inner { padding: 0 20px 40px; }
  .ft-nav   { flex-direction: column; }
}

/* ── 22. 导航遮罩层 ── */
.nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 904; }
.nav-backdrop.open { display: block; }

/* ── 23. 可访问性 ── */
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
