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

/* 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);
}
/* oylebunt */
/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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);
}

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

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

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

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

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

.qf9tvj7y {
  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;
}

._b5eo1us {
  display: flex;
  gap: 28px;
  align-items: center;
}

._b5eo1us a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
/* lobnb4tzx */
._b5eo1us a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

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

._b5eo1us a:hover::after {
  width: 100%;
}

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

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

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

.tw-ogpefu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

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

.tw-4xpy1z {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
}

.tw-4xpy1z 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); }
}

.l7weuir {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.el-7isqs6 {
  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;
}

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

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

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

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

._2atlghrc {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}
/* ks5sfx */
._2atlghrc::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

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

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

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

.tw-hirxyh::-webkit-scrollbar {
  display: none;
}

.el-mxxojb {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  z-index: 0;
}
/* x1wwop1tq */
._p6yk02yv {
  flex: 0 0 220px;
  position: relative;
  text-align: center;
  cursor: pointer;
  padding: 20px 10px;
  transition: var(--transition);
}

._p6yk02yv:hover {
  transform: translateY(-5px);
}

.srcmmw0 {
  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);
}

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

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

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

.lwo16n88 {
  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);
}

.lwo16n88.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); }
}

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

.z2tzoikvcf {
  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);
}
/* m0j58d6jo */
.z2tzoikvcf:hover {
  background: var(--primary);
  border-color: var(--primary);
}
/* rgp0 */
/* ============ CARDS ============ */
.r0dwlo4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.el-2dho87 {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

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

.sc-d9d28u {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
/* qy4o8uxj5 */
.sc-d9d28u img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.el-2dho87:hover .sc-d9d28u img {
  transform: scale(1.08);
}
/* hirw00 */
.hnrfvit9 {
  padding: 20px;
}
/* gf4fquu */
.st-a4lauz {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
/* yfoj */
._7zm3qi6 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.6;
}

.tw-bjp39c {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

._e9clhd {
  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);
}

._0m80bxmq {
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent);
  border-color: rgba(0, 212, 255, 0.3);
}

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

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

._eh1ebdu3:hover {
  color: var(--accent-warm);
}
/* igucqi */
/* ============ TABLE ============ */
.eyfbfur {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

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

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

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

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

.eyfbfur tbody tr:hover {
  background: var(--bg-card-hover);
}
/* epfam */
.eyfbfur tbody tr:last-child td {
  border-bottom: none;
}

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

._iwv6k44 { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; }
._sr3vtzl { background: linear-gradient(135deg, #C0C0C0, #A0A0A0); color: #000; }
/* 6fx2u2fs */._ec0hgknn { background: linear-gradient(135deg, #CD7F32, #A0522D); color: #FFF; }
.st-7cnfxo { background: var(--bg-card-hover); color: var(--text-secondary); }

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

._f0a1adx:hover {
  border-color: var(--primary-light);
}

.t98ofex {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
}

.t98ofex::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}
/* k1ao51b */
._f0a1adx.active .t98ofex::after {
  transform: rotate(45deg);
}

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

._f0a1adx.active ._0m3hut1 {
  max-height: 500px;
}

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

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

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

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

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

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

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

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

.el-t8so90 p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}
/* i18d1r6ybj */
/* ============ MARKET WATCH ============ */
._eomaiq9a {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
}

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

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

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

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

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

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

.sjqkugiyow {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}
/* t2v4q */
.uu5szev a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 4px 0;
}

.uu5szev a:hover {
  color: var(--accent);
}

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

.tw-sggpz8 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);
}

.tw-sggpz8 a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFF;
}

._4re2iysk {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.el-hr0vw7 {
  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;
}

/* ============ BREADCRUMB ============ */
.eddb33q6 {
  padding: 16px 0;
  font-size: 0.85rem;
}

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

.eddb33q6 span {
  color: var(--text-secondary);
  margin: 0 8px;
}
/* 83ttd3a0 */
.eddb33q6 .sc-qbfv1a {
  color: var(--accent);
}

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

.sc-62mpuy::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%);
}

.sc-62mpuy h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}

.sc-62mpuy .css-uzhkdv {
  color: var(--text-secondary);
  font-size: 1.1rem;
  position: relative;
}

/* ============ GAME REVIEW PAGE ============ */
.tw-orx8ef {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

._cnphtp {
  flex: 0 0 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
}
/* jg1kp43lcy */
.qzp68ms h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.css-1vxlnp {
  width: 100%;
  border-collapse: collapse;
}

.css-1vxlnp td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
/* yxprc */
.css-1vxlnp td:first-child {
  color: var(--text-muted);
  font-weight: 600;
  width: 140px;
}

.uejirgh {
  max-width: 800px;
}

.uejirgh h2,
.uejirgh h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}

.uejirgh h2 { font-size: 1.5rem; }
/* rhr00gzu */.uejirgh h3 { font-size: 1.2rem; }

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

.uejirgh ul, .uejirgh ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
/* uffv09 */
.uejirgh li {
  margin-bottom: 8px;
  color: var(--text-secondary);
  list-style: disc;
}

.css-3tm55m {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.css-3tm55m img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* ============ GAME DEMO ============ */
.el-murayq {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
  text-align: center;
}
/* w3hrczi */
._dmfqp77o {
  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;
}

.sc-9bo34u {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.css-phkrt1 {
  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);
}
/* xwcs2 */
.css-phkrt1.el-k21wo7 {
  animation: spin 0.1s linear infinite;
}

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

.coouxen {
  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);
}

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

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

/* ============ GAME LIST / FILTER ============ */
.lmz9j00 {
  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);
}

.n18r8v5 {
  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);
}

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

._wf5xup {
  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 ============ */
.j3zgm7bn {
  margin-bottom: 40px;
}

._1pzu8d {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

._i1dg0v {
  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;
}
/* e7k5 */
._snta5g .u5oom3xo {
  font-weight: 700;
  font-size: 0.95rem;
}

._snta5g ._76lxo2 {
  font-size: 0.85rem;
  color: var(--text-muted);
}
/* 1lpktvu */
._7cldwbfy {
  max-width: 800px;
}
/* jvton5f */
._7cldwbfy h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 32px 0 16px;
  color: var(--text-primary);
}

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

._7cldwbfy p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
}
/* vb7dhgf */
/* ============ CHART (CSS) ============ */
.d7hd5jh4 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}
/* cx1x */
._pofrww {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 200px;
  padding: 20px 0;
}
/* t3hbuk */
.jo6zu5d {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}
/* k6a7 */
._lzcdwu {
  width: 100%;
  max-width: 60px;
  border-radius: 6px 6px 0 0;
  background: var(--gradient-accent);
  transition: height 1s ease;
  position: relative;
}

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

.css-zqjgwn {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

/* ============ APP DOWNLOAD ============ */
._fdt1oy {
  display: flex;
  gap: 60px;
  align-items: center;
}

.st-znr50o {
  flex: 0 0 300px;
}

.bm33diu h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.avqe44eyu2 {
  margin: 24px 0;
}

.awye8qfbo {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.el-kjm3mx {
  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;
}

.plaqu99e {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.ff7y0x12 {
  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);
}
/* p1fyzlt */
.ff7y0x12:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFF;
}
/* xtryn1oe */
/* ============ SIDEBAR ============ */
.lsmqug88x {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 40px 0;
}

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

.tw-qcnoup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.tw-qcnoup h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.u14exkk0s {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
/* nz36bt19 */
.u14exkk0s:last-child {
  border-bottom: none;
}
/* pmn4 */
._aexbgs {
  width: 60px;
  height: 45px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

._aexbgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

._c3k02576 .u5oom3xo {
  font-size: 0.9rem;
  font-weight: 600;
}

._c3k02576 .el-4r7nam {
  font-size: 0.8rem;
  color: var(--accent);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .lsmqug88x {
    grid-template-columns: 1fr;
  }
  .el-mca42t {
    grid-template-columns: 1fr 1fr;
  }
  .tw-orx8ef {
    flex-direction: column;
  }
/* ha9rm2cwrk */  ._cnphtp {
    flex: none;
  }
  ._eomaiq9a {
    flex-direction: column;
  }
  .css-tlhqzx {
    flex: none;
    width: 100%;
  }
  ._fdt1oy {
    flex-direction: column;
  }
  .st-znr50o {
    flex: none;
    max-width: 250px;
    margin: 0 auto;
  }
}
/* ag4ia */
@media (max-width: 768px) {
  html { font-size: 15px; }

  .tw-4xpy1z h1 {
    font-size: 2.2rem;
  }

  ._1j21qc {
    padding: 50px 0;
  }

  ._2atlghrc {
    font-size: 1.8rem;
  }

  ._b5eo1us {
    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);
  }

  ._b5eo1us.active {
    display: flex;
  }

  .st-cglmk8 {
    display: block;
  }
/* wmts */
  .el-mca42t {
    grid-template-columns: 1fr;
  }

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

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

  .eyfbfur {
    font-size: 0.85rem;
  }

  .eyfbfur th, .eyfbfur td {
    padding: 10px 12px;
  }

  .wwndjsny6 {
    flex-direction: column;
    gap: 16px;
  }

  .el-8gjn2v {
    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;
  }

  .sc-62mpuy h1 {
    font-size: 1.8rem;
  }

  .css-3tm55m {
    grid-template-columns: 1fr;
  }

  .lmz9j00 {
    flex-direction: column;
  }

  .plaqu99e {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hbpqvib5ac {
    min-height: 70vh;
  }
/* cqx1tsfb */
  .tw-4xpy1z h1 {
    font-size: 1.8rem;
  }

  .el-7isqs6 {
    padding: 14px 28px;
    font-size: 1rem;
  }

  ._p6yk02yv {
    flex: 0 0 160px;
  }
}

/* ============ ANIMATIONS ============ */
.u2yafp125 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.u2yafp125.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.tw-m4viuc {
  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;
}

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

.st-0o2lz6 {
  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;
}
/* dqwvxx */
.st-0o2lz6:hover {
  background: var(--primary);
  color: #FFF;
}

._lxit7xv {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.st-re79n4 {
  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;
}

.st-re79n4 p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Related articles */
.ty3la2c5 {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.st-bt27qg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

/* ye2bkggc9o7t7ggx */
