:root {
  --lingxi-primary: #ff8c00;
  /* 桔色主色 */
  --lingxi-secondary: #ffa500;
  /* 浅桔色 */
  --lingxi-accent: #ff7f00;
  /* 强调桔色 */
  --lingxi-light: #fff5f0;
  /* 浅桔色背景 */
  --lingxi-white: #ffffff;
  /* 纯白色 */
  --lingxi-dark: #333333;
  /* 深灰色文字 */
  --lingxi-gray: #666666;
  /* 中灰色文字 */
  --lingxi-light-gray: #f8f8f8;
  /* 浅灰色背景 */
  --lingxi-border: #e0e0e0;
  /* 边框色 */
}

/* 基础样式重置 */

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

body {
  background-color: var(--lingxi-light);
  color: var(--lingxi-dark);
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
}

/* 容器样式 */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 扁平化容器样式 */

.card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  overflow: visible;
  transition: none;
}

.card:hover {
  box-shadow: none;
  transform: none;
}

/* 按钮样式 */

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background: var(--lingxi-primary);
  color: var(--lingxi-white);
}

.btn-primary:hover {
  background: var(--lingxi-accent);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--lingxi-light-gray);
  color: var(--lingxi-dark);
  border: 1px solid var(--lingxi-border);
}

.btn-secondary:hover {
  background: var(--lingxi-border);
}

/* 文本截断 */

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 加载动画 */

.loading-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--lingxi-border);
  border-top: 2px solid var(--lingxi-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* 淡入动画 */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

/* Header 样式 - 扁平化 */

.lingxi-header {
  background: var(--lingxi-white);
  border-bottom: 2px solid var(--lingxi-primary);
  box-shadow: none;
}

.header-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 64px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.tagline {
  font-size: 12px;
  color: var(--lingxi-gray);
  font-weight: 400;
  line-height: 1.2;
}

.logo-section h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--lingxi-dark);
}

/* 公司介绍区块 - 扁平化 */

.company-intro {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 32px 0;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--lingxi-border);
}

.company-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}

.company-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--lingxi-primary), var(--lingxi-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--lingxi-white);
}

.game-covers {
  display: flex;
  gap: 6px;
}

.game-tag {
  padding: 4px 8px;
  background: var(--lingxi-light);
  border-radius: 12px;
  font-size: 10px;
  font-weight: 500;
  color: var(--lingxi-primary);
}

.company-text h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--lingxi-dark);
  margin-bottom: 12px;
}

.company-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lingxi-gray);
  margin-bottom: 16px;
}

.company-text strong {
  color: var(--lingxi-primary);
  font-weight: 600;
}

.company-actions {
  display: flex;
  gap: 12px;
}

/* 双栏布局 */

.dual-column-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.left-column, .right-column {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

/* 高管团队预览 - 精简版 */

.executive-preview {
  height: 100%;
}

.section-header {
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--lingxi-dark);
}

.executive-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.executive-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.executive-item:hover {
  background: rgba(255, 140, 0, 0.05);
}

.executive-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--lingxi-primary), var(--lingxi-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--lingxi-white);
  flex-shrink: 0;
}

.executive-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--lingxi-dark);
  margin-bottom: 2px;
  transition: color 0.3s ease;
}

.executive-item:hover .executive-info h3 {
  color: var(--lingxi-primary);
}

.executive-info p {
  font-size: 12px;
  color: var(--lingxi-gray);
}

/* 热点新闻样式 */

.hot-news {
  height: 100%;
}

.hot-news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hot-news-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  padding: 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.hot-news-item:hover {
  background: rgba(255, 140, 0, 0.05);
}

.hot-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--lingxi-primary);
  color: var(--lingxi-white);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  z-index: 1;
}

.hot-thumbnail {
  flex-shrink: 0;
  width: 60px;
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lingxi-light), var(--lingxi-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lingxi-primary);
  position: relative;
}

.hot-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  display: block !important;
  transition: transform 0.3s ease;
}

.hot-news-item:hover .hot-thumbnail img {
  transform: scale(1.05);
}

.hot-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hot-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--lingxi-dark);
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.hot-title:hover {
  color: var(--lingxi-primary);
}

.hot-date {
  font-size: 12px;
  color: var(--lingxi-gray);
}

/* 游戏导航链接样式 */

.game-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lingxi-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 140, 0, 0.1);
  font-size: 14px;
  font-weight: 500;
}

.game-nav-link:hover {
  background: rgba(255, 140, 0, 0.2);
  transform: translateX(-4px);
}

/* 游戏风格返回按钮 */

.game-return-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--lingxi-primary), var(--lingxi-secondary));
  color: var(--lingxi-white);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  animation: pulse-glow 3s ease-in-out infinite;
}

.game-return-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4);
  background: linear-gradient(135deg, var(--lingxi-accent), var(--lingxi-primary));
}

.game-return-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
}

/* 闪光效果 */

.shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* 游戏风格脉冲动画 */

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
  }

  50% {
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.5);
  }
}

/* 新闻流样式 */

.news-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--lingxi-dark);
  margin-bottom: 24px;
}

.news-container {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.news-stream {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--lingxi-border);
  transition: background-color 0.3s ease;
  align-items: flex-start;
}

.news-item:hover {
  background: rgba(255, 140, 0, 0.03);
  margin: 0 -20px;
  padding: 20px;
  border-radius: 8px;
}

.news-item:last-child {
  border-bottom: none;
}

.news-thumbnail {
  flex-shrink: 0;
  width: 120px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lingxi-light), var(--lingxi-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lingxi-primary);
  position: relative;
}

.news-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  display: block !important;
  transition: transform 0.3s ease;
}

.news-item:hover .news-thumbnail img {
  transform: scale(1.05);
}

.news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.news-date {
  font-size: 12px;
  color: var(--lingxi-primary);
  font-weight: 500;
  order: -1;
}

.news-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--lingxi-dark);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
  margin-bottom: 4px;
}

.news-title:hover {
  color: var(--lingxi-primary);
}

.news-summary {
  font-size: 13px;
  color: var(--lingxi-gray);
  line-height: 1.5;
  margin-top: 4px;
}

/* 加载状态 */

.loading-more {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  gap: 12px;
  color: var(--lingxi-gray);
}

.error-state {
  text-align: center;
  padding: 32px;
}

.error-state p {
  color: #dc2626;
  margin-bottom: 16px;
}

.no-more-data {
  text-align: center;
  padding: 32px;
  border-top: 1px solid var(--lingxi-border);
  margin-top: 32px;
  color: var(--lingxi-gray);
}

/* Footer 样式 - 扁平化 */

.footer {
  margin-top: 64px;
  padding: 32px 0;
  background: transparent;
  border-top: 2px solid var(--lingxi-border);
  text-align: center;
}

.footer p {
  color: var(--lingxi-gray);
  margin-bottom: 8px;
}

/* 响应式设计 */

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header-content {
    height: auto;
    padding: 16px 0;
  }

  .tagline {
    font-size: 11px;
  }

  .company-intro {
    padding: 16px;
  }

  .company-content {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .dual-column-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .left-column, .right-column {
    padding: 16px;
  }

  .news-item {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .news-thumbnail {
    width: 100%;
    height: 180px;
  }

  .news-title {
    font-size: 16px;
  }

  .news-content {
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .company-text h1 {
    font-size: 18px;
  }

  .logo-icon {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }

  .game-tag {
    font-size: 9px;
    padding: 3px 6px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

input, textarea {
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* 游戏风格详情页内容样式 */

.prose {
  max-width: none;
  color: var(--lingxi-dark);
  line-height: 1.8;
  font-size: 16px;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
}

.prose h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--lingxi-dark);
  margin: 2rem 0 1.5rem 0;
  line-height: 1.2;
  position: relative;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--lingxi-primary), var(--lingxi-secondary));
  color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.prose h1::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 60%;
  background: white;
  border-radius: 3px;
}

.prose h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--lingxi-dark);
  margin: 1.75rem 0 1rem 0;
  line-height: 1.3;
  position: relative;
  padding-left: 2rem;
  border-bottom: 2px solid var(--lingxi-primary);
  padding-bottom: 0.5rem;
}

.prose h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 4px;
  height: 1.5rem;
  background: linear-gradient(135deg, var(--lingxi-primary), var(--lingxi-secondary));
  border-radius: 2px;
}

.prose h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lingxi-dark);
  margin: 1.5rem 0 0.75rem 0;
  line-height: 1.4;
  position: relative;
  padding-left: 1.5rem;
}

.prose h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 3px;
  height: 1rem;
  background: var(--lingxi-primary);
  border-radius: 2px;
}

.prose h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--lingxi-primary);
  margin: 1.25rem 0 0.5rem 0;
  position: relative;
  padding-left: 1.25rem;
}

.prose h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 2px;
  height: 0.8rem;
  background: var(--lingxi-secondary);
  border-radius: 1px;
}

.prose h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lingxi-gray);
  margin: 1rem 0 0.5rem 0;
}

.prose h6 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lingxi-gray);
  margin: 1rem 0 0.5rem 0;
}

.prose p {
  margin: 1.25rem 0;
  line-height: 1.8;
  color: var(--lingxi-dark);
  text-align: justify;
}

.prose strong, .prose b {
  font-weight: 600;
  color: var(--lingxi-primary);
  background: linear-gradient(135deg, var(--lingxi-primary), var(--lingxi-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prose em, .prose i {
  font-style: italic;
  color: var(--lingxi-secondary);
}

.prose u {
  text-decoration: underline;
  text-decoration-color: var(--lingxi-primary);
  text-decoration-thickness: 2px;
}

.prose s, .prose del {
  text-decoration: line-through;
  color: var(--lingxi-gray);
}

.prose a {
  color: var(--lingxi-primary);
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
}

.prose a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lingxi-primary), var(--lingxi-secondary));
  transition: width 0.3s ease;
}

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

.prose a:hover {
  color: var(--lingxi-secondary);
  transform: translateY(-1px);
}

.prose ul {
  list-style: none;
  margin: 1.5rem 0;
  padding-left: 0;
}

.prose ul li {
  position: relative;
  padding-left: 2.5rem;
  margin: 1rem 0;
  line-height: 1.7;
  background: rgba(255, 140, 0, 0.05);
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--lingxi-primary);
  transition: all 0.3s ease;
}

.prose ul li:hover {
  background: rgba(255, 140, 0, 0.1);
  transform: translateX(4px);
}

.prose ul li::before {
  content: '▶';
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  font-size: 0.8rem;
  color: var(--lingxi-primary);
}

.prose ol {
  counter-reset: game-counter;
  margin: 1.5rem 0;
  padding-left: 0;
}

.prose ol li {
  counter-increment: game-counter;
  position: relative;
  padding-left: 3rem;
  margin: 1rem 0;
  line-height: 1.7;
  background: rgba(255, 140, 0, 0.05);
  padding: 0.75rem 0.75rem 0.75rem 3rem;
  border-radius: 8px;
  border-left: 4px solid var(--lingxi-secondary);
}

.prose ol li::before {
  content: counter(game-counter);
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background: linear-gradient(135deg, var(--lingxi-primary), var(--lingxi-secondary));
  color: white;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(255, 140, 0, 0.3);
}

.prose blockquote {
  border: none;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 165, 0, 0.1));
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.15);
  border-left: 6px solid var(--lingxi-primary);
}

.prose blockquote::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 2.5rem;
  color: var(--lingxi-primary);
  font-weight: bold;
  line-height: 1;
}

.prose blockquote p {
  color: var(--lingxi-dark);
  font-style: italic;
  margin: 0;
  font-weight: 500;
}

.prose pre {
  background: linear-gradient(135deg, #1f2937, #374151);
  color: #f9fafb;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
  overflow-x: auto;
  position: relative;
  border: 2px solid var(--lingxi-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.prose pre::before {
  content: 'CODE';
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: var(--lingxi-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(255, 140, 0, 0.3);
}

.prose code {
  background: rgba(255, 140, 0, 0.1);
  color: var(--lingxi-primary);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.prose pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  border: none;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--lingxi-primary);
}

.prose th {
  background: linear-gradient(135deg, var(--lingxi-primary), var(--lingxi-secondary));
  color: white;
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  border: none;
  position: relative;
}

.prose th::before {
  content: '';
}

.prose td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 140, 0, 0.1);
  color: var(--lingxi-dark);
  transition: background-color 0.3s ease;
}

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

.prose tr:nth-child(even) {
  background: rgba(255, 140, 0, 0.03);
}

.prose tr:hover {
  background: rgba(255, 140, 0, 0.08);
}

.prose hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lingxi-primary), var(--lingxi-secondary), var(--lingxi-primary), transparent);
  margin: 2.5rem 0;
  border-radius: 2px;
  position: relative;
}

.prose hr::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--lingxi-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px white, 0 2px 8px rgba(255, 140, 0, 0.3);
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--lingxi-primary);
  transition: transform 0.3s ease;
}

.prose img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 140, 0, 0.2);
}

.prose br {
  display: block;
  margin-bottom: 0.5rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

@media (max-width: 768px) {
  .lingxi-news-item {
    flex-direction: column;
  }

  .lingxi-news-item > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0px * var(--tw-space-x-reverse));
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
  }

  .lingxi-news-item .flex-shrink-0 {
    flex-shrink: 1;
  }

  .lingxi-company-intro {
    padding: 1rem;
  }
}

html {
  scroll-behavior: smooth;
}

.lingxi-scroll-container::-webkit-scrollbar {
  width: 6px;
}

.lingxi-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.lingxi-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(156, 163, 175, 0.5);
  border-radius: 3px;
}

.lingxi-scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgba(156, 163, 175, 0.8);
}

/* 游戏风格动画效果 */

@keyframes gameGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.8);
  }
}

.prose h1:hover {
  animation: gameGlow 2s ease-in-out infinite;
}

/* 响应式优化 */

@media (max-width: 768px) {
  .prose {
    font-size: 14px;
  }

  .prose h1 {
    font-size: 1.75rem;
    padding: 0.75rem 1rem;
  }

  .prose h2 {
    font-size: 1.5rem;
  }

  .prose h3 {
    font-size: 1.25rem;
  }

  .prose ul li, .prose ol li {
    padding: 0.5rem 0.5rem 0.5rem 2rem;
  }

  .prose blockquote {
    padding: 1rem;
  }

  .prose pre {
    padding: 1rem;
  }

  .prose th, .prose td {
    padding: 0.75rem;
  }
}
