/* 0iegj9fqkkrk | v7.18 */
/* ============================================
   电子游戏资讯站 - 全站样式表
   配色方案: 深紫+霓虹蓝+金色点缀
   ============================================ */

/* CSS Variables */
:root {
  --primary: #6C3CE0;
  --primary-light: #8B5CF6;
  --primary-dark: #4C1D95;
  --accent: #00D4FF;
  --accent-warm: #FFD700;
  --accent-pink: #FF2D55;
  --bg-dark: #0A0A1A;
  --bg-card: #12122A;
  --bg-card-hover: #1A1A3E;
  --text-primary: #E8E8F0;
  --text-secondary: #9898B8;
  --text-muted: #6868A0;
  --border: #2A2A4E;
  --gradient-hero: linear-gradient(135deg, #0A0A1A 0%, #1A0A3A 50%, #0A1A3A 100%);
  --gradient-card: linear-gradient(145deg, #12122A 0%, #1A1A3E 100%);
  --gradient-accent: linear-gradient(90deg, #6C3CE0, #00D4FF);
  --shadow-card: 0 4px 24px rgba(108, 60, 224, 0.15);
  --shadow-hover: 0 8px 40px rgba(108, 60, 224, 0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font-heading: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --max-width: 1280px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
/* ogbm4np */
body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}
/* irapq7mdm1 */
a:hover {
  color: var(--accent-warm);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* 8v5v */
ul, ol {
  list-style: none;
}

/* Container */
.sc-8mafw7 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAVIGATION ============ */
.css-fg7esg {
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  z-index: 1000;
}

.qkxo2fr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.le64mx9hl5 {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.tw-fh389l {
  display: flex;
  gap: 28px;
  align-items: center;
}
/* pk7hx */
.tw-fh389l a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.tw-fh389l a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

.tw-fh389l a:hover {
  color: var(--text-primary);
}

.tw-fh389l a:hover::after {
  width: 100%;
}

.st-z23hoc {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============ HERO SECTION ============ */
.tw-9tivjb {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

._o3lur4bm {
  position: absolute;
  inset: 0;
  z-index: 0;
}

._o3lur4bm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
/* tgw1yqg3 */
.tw-jzmzpr {
  position: absolute;
  inset: 0;
  z-index: 1;
}

._33wjxfy3 {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
}
/* zu1nu91i2 */
._33wjxfy3 h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, #00D4FF 50%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.css-a0qmox {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* u9pjsi */
._ujg49n {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gradient-accent);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

._ujg49n:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(108, 60, 224, 0.4);
  color: #FFFFFF;
}

/* ============ JAMMER BLOCK ============ */
.dxvzewn5 {
  opacity: 0.05;
  position: absolute;
  z-index: -1;
  user-select: none;
  pointer-events: none;
  font-size: 10px;
  line-height: 1;
}

/* ============ SECTION STYLES ============ */
.el-xp8gqn {
  padding: 80px 0;
  position: relative;
}

.t5mhen3 {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0E0E24 50%, var(--bg-dark) 100%);
}

.k7yvr4u {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.k7yvr4u::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

.awp0ax1 {
  text-align: center;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* ============ TIMELINE ============ */
.tw-b0wtjt {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.sc-8zjjdx {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 40px 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sc-8zjjdx::-webkit-scrollbar {
  display: none;
}

.sc-16q3a5 {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  z-index: 0;
}

.a70721if {
  flex: 0 0 220px;
  position: relative;
  text-align: center;
  cursor: pointer;
  padding: 20px 10px;
  transition: var(--transition);
}
/* 1xqwz */
.a70721if:hover {
  transform: translateY(-5px);
}

.st-8dpejk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--accent);
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.a70721if:hover .st-8dpejk {
  background: var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  transform: scale(1.3);
}

.el-5e8voa {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.st-zs7p7j {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

._k7nksbe5 {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  width: 280px;
  z-index: 10;
  box-shadow: var(--shadow-hover);
}

._k7nksbe5.active {
  display: block;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

._8qui5we {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.el-frfd63 {
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}
/* yoyha */
.el-frfd63:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ============ CARDS ============ */
.el-y0xjoi {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
/* 9rccicwfsr */
.el-2ffkst {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.el-2ffkst:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.css-2zld6l {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.css-2zld6l img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.el-2ffkst:hover .css-2zld6l img {
  transform: scale(1.08);
}

._i1eqnx {
  padding: 20px;
}

.twb894vxt9 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.iyy0s9a6 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.6;
}

.el-ykg20j {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

._8l9dpzs {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  background: rgba(108, 60, 224, 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(108, 60, 224, 0.3);
}
/* 3iydh9ccr1 */
._z795ay {
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent);
  border-color: rgba(0, 212, 255, 0.3);
}

.r1ikej4598 {
  background: rgba(255, 45, 85, 0.15);
  color: var(--accent-pink);
  border-color: rgba(255, 45, 85, 0.3);
}

._w8dvnz75 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

._w8dvnz75:hover {
  color: var(--accent-warm);
}

/* ============ TABLE ============ */
._0nsj1wci {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

._0nsj1wci thead {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
}

._0nsj1wci th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.9rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

._0nsj1wci td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

._0nsj1wci tbody tr {
  transition: var(--transition);
}

._0nsj1wci tbody tr:hover {
  background: var(--bg-card-hover);
}

._0nsj1wci tbody tr:last-child td {
  border-bottom: none;
}

.nh8hq0d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
}

.st-9pzs6y { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; }
._zi8z1kr { background: linear-gradient(135deg, #C0C0C0, #A0A0A0); color: #000; }
.css-91co2w { background: linear-gradient(135deg, #CD7F32, #A0522D); color: #FFF; }
.a66ysikf { background: var(--bg-card-hover); color: var(--text-secondary); }

/* ============ FAQ ============ */
.hhg785m3 {
  max-width: 800px;
  margin: 0 auto;
}
/* bzidt7 */
._o6o9uns4 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

._o6o9uns4:hover {
  border-color: var(--primary-light);
}
/* a9kr */
._iike2sh {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
}

._iike2sh::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

._o6o9uns4.active ._iike2sh::after {
  transform: rotate(45deg);
}

._x8k7c7 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

._o6o9uns4.active ._x8k7c7 {
  max-height: 500px;
}

.tw-s10tnt {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============ ARTICLE LIST ============ */
.el-qk41co {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

._c7v6ik {
  display: flex;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

._c7v6ik:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-card);
}

._afidaae {
  flex: 0 0 auto;
  text-align: center;
  padding-right: 24px;
  border-right: 2px solid var(--border);
}

.vho8h27 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.p8ik7hi {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.lwu25no h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lwu25no p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============ MARKET WATCH ============ */
._0vp2a7o {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
}

._x6zz60 {
  flex: 0 0 300px;
  border-radius: var(--radius);
  overflow: hidden;
}

.tw-wi0abs h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.tw-wi0abs p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ============ FOOTER ============ */
.aw2b8gvfvv {
  background: #060612;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

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

.st-b76j26 p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.7;
}

.csrpi14 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

._o22ku6 a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 4px 0;
}
/* 3y0f50q */
._o22ku6 a:hover {
  color: var(--accent);
}

._duh6wcub {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

._duh6wcub a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: var(--transition);
}

._duh6wcub a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFF;
}
/* l28mngdo4 */
.qpkhgvc4 {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.qpkhgvc4 p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.j1er0vd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 45, 85, 0.15);
  border: 1px solid rgba(255, 45, 85, 0.3);
  border-radius: 50px;
  color: var(--accent-pink);
  font-weight: 700;
  font-size: 0.85rem;
}
/* xddcn */
/* ============ BREADCRUMB ============ */
.v2vedenv {
  padding: 16px 0;
  font-size: 0.85rem;
}

.v2vedenv a {
  color: var(--text-muted);
}

.v2vedenv span {
  color: var(--text-secondary);
  margin: 0 8px;
}

.v2vedenv .sc-3yv61d {
  color: var(--accent);
}

/* ============ INNER PAGE HERO ============ */
.exo905318 {
  background: var(--gradient-hero);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.exo905318::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(108, 60, 224, 0.1) 0%, transparent 50%);
}
/* b9kb6e8kjj */
.exo905318 h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}
/* qvvft */
.exo905318 .sc-0asq8n {
  color: var(--text-secondary);
  font-size: 1.1rem;
  position: relative;
}
/* 43pibtn */
/* ============ GAME REVIEW PAGE ============ */
._o2reoub7 {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.tw-te9mlw {
  flex: 0 0 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
}

._pplcj2 h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

._8bhwbi {
  width: 100%;
  border-collapse: collapse;
}
/* 08376ihs */
._8bhwbi td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

._8bhwbi td:first-child {
  color: var(--text-muted);
  font-weight: 600;
  width: 140px;
}
/* be0ifsak7 */
.tw-6m556w {
  max-width: 800px;
}
/* xhrqry37n9 */
.tw-6m556w h2,
.tw-6m556w h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}
/* 5qp9 */
.tw-6m556w h2 { font-size: 1.5rem; }
.tw-6m556w h3 { font-size: 1.2rem; }
/* kzzxcisgh */
.tw-6m556w p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
}

.tw-6m556w ul, .tw-6m556w ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.tw-6m556w li {
  margin-bottom: 8px;
  color: var(--text-secondary);
  list-style: disc;
}

._763kts2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
/* cvh3ufr */
._763kts2 img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
/* y1isgj */
/* ============ GAME DEMO ============ */
.w5irlmw3g {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
  text-align: center;
}

.ekqpzxv {
  background: #000;
  border-radius: var(--radius-sm);
  padding: 40px;
  margin: 16px 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ah7hx2o {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.u8pfw77 {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}

.u8pfw77.st-q5a9je {
  animation: spin 0.1s linear infinite;
}

@keyframes spin {
  0% { transform: translateY(-5px); }
/* pc3vhael2i */  50% { transform: translateY(5px); }
  100% { transform: translateY(-5px); }
}

.ram9i78ozr {
  padding: 12px 36px;
  background: var(--gradient-accent);
  color: #FFF;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.ram9i78ozr:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(108, 60, 224, 0.4);
}

._phc3wfds {
  margin-top: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-warm);
  min-height: 30px;
}

/* ============ GAME LIST / FILTER ============ */
._4fg0c2 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.el-hsbzji {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.el-hsbzji:hover, .el-hsbzji.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFF;
}

._5anw21 {
  padding: 8px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
}

/* ============ ARTICLE PAGE ============ */
.mcgby6ee {
  margin-bottom: 40px;
}

.css-1msuo3 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
/* 6j8t8u */
._xicfz85 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #FFF;
}

._5od1wygp .p1frnuid0g {
  font-weight: 700;
  font-size: 0.95rem;
}

._5od1wygp .el-kysupn {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.fb4n4mck6 {
  max-width: 800px;
}

.fb4n4mck6 h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 32px 0 16px;
  color: var(--text-primary);
}

.fb4n4mck6 h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 24px 0 12px;
}

.fb4n4mck6 p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* ============ CHART (CSS) ============ */
.f7xru6hx3 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}

.css-k4txlh {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 200px;
  padding: 20px 0;
}

.el-a2p37j {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.q8rpn6u32z {
  width: 100%;
  max-width: 60px;
  border-radius: 6px 6px 0 0;
  background: var(--gradient-accent);
  transition: height 1s ease;
  position: relative;
}

.sc-n0du2w {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
}

.sc-utzqg3 {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
/* pebvd8359e */
/* ============ APP DOWNLOAD ============ */
.st-beasra {
  display: flex;
  gap: 60px;
  align-items: center;
}

._89cawc2 {
  flex: 0 0 300px;
}
/* 91trf */
.vx47mhjx4r h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.kqjysijlu3 {
  margin: 24px 0;
}
/* f74w */
.sc-u0af5n {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.jl1zcmun {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(108, 60, 224, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

._vclszw {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
/* k99pg20y */
.css-frsikq {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-weight: 600;
  transition: var(--transition);
}

.css-frsikq:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFF;
}

/* ============ SIDEBAR ============ */
._5pqlfoa {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 40px 0;
}

.bpfcf3x {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ln4y3s7eu {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
/* 87jxh4x */
.ln4y3s7eu h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
/* wtztvgoyd6 */
.el-n1cdzn {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.el-n1cdzn:last-child {
  border-bottom: none;
}

.vivjp8v9 {
  width: 60px;
  height: 45px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
/* cun0ln6 */
.vivjp8v9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

._frr3sxqt .p1frnuid0g {
  font-size: 0.9rem;
  font-weight: 600;
}

._frr3sxqt ._r5q7jt {
  font-size: 0.8rem;
  color: var(--accent);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  ._5pqlfoa {
    grid-template-columns: 1fr;
  }
/* oufn9sh9j8 */  .ikp0eue7 {
    grid-template-columns: 1fr 1fr;
  }
/* ot2g0r */  ._o2reoub7 {
    flex-direction: column;
  }
  .tw-te9mlw {
    flex: none;
  }
  ._0vp2a7o {
    flex-direction: column;
  }
  ._x6zz60 {
    flex: none;
    width: 100%;
  }
  .st-beasra {
    flex-direction: column;
  }
/* 7vmp78 */  ._89cawc2 {
    flex: none;
    max-width: 250px;
    margin: 0 auto;
  }
/* d1d351k */}

@media (max-width: 768px) {
  html { font-size: 15px; }

  ._33wjxfy3 h1 {
    font-size: 2.2rem;
  }

  .el-xp8gqn {
    padding: 50px 0;
  }

  .k7yvr4u {
    font-size: 1.8rem;
  }

  .tw-fh389l {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .tw-fh389l.active {
    display: flex;
  }

  .st-z23hoc {
    display: block;
  }

  .ikp0eue7 {
    grid-template-columns: 1fr;
  }

  .qpkhgvc4 {
    flex-direction: column;
    text-align: center;
  }

  .el-y0xjoi {
    grid-template-columns: 1fr;
  }

  ._0nsj1wci {
    font-size: 0.85rem;
  }

  ._0nsj1wci th, ._0nsj1wci td {
    padding: 10px 12px;
  }
/* zxqzknugh2 */
  ._c7v6ik {
    flex-direction: column;
    gap: 16px;
  }

  ._afidaae {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 12px;
    text-align: left;
    display: flex;
    gap: 8px;
    align-items: baseline;
  }

  .exo905318 h1 {
    font-size: 1.8rem;
  }

  ._763kts2 {
    grid-template-columns: 1fr;
  }

  ._4fg0c2 {
    flex-direction: column;
  }

  ._vclszw {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .tw-9tivjb {
    min-height: 70vh;
  }

  ._33wjxfy3 h1 {
    font-size: 1.8rem;
  }
/* 3xti2yn */
  ._ujg49n {
    padding: 14px 28px;
    font-size: 1rem;
  }
/* nxy0 */
  .a70721if {
    flex: 0 0 160px;
  }
}
/* ull2 */
/* ============ ANIMATIONS ============ */
.st-yef58d {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.st-yef58d.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ MISC ============ */
.sc-eodn28 {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.m7xldhgs7a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gradient-accent);
  color: #FFF;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.m7xldhgs7a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(108, 60, 224, 0.3);
  color: #FFF;
}

.n30je71m5 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary-light);
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.n30je71m5:hover {
  background: var(--primary);
  color: #FFF;
}
/* rxc0 */
._h6mvoqt {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.x1972nx4 {
  background: rgba(108, 60, 224, 0.1);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
}

.x1972nx4 p {
  color: var(--text-secondary);
  line-height: 1.8;
}
/* 9gwj */
/* Related articles */
.css-skadp9 {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

._8cnuui {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
/* 68vs */
/* a3j5d92p97biuh61 */
