/* ============================================================
   报纸网格矩阵 - Neon Grid Matrix 主样式表
   新闻报纸风（Newspaper Style）博彩资讯门户
   ============================================================ */

/* === 字体定义 === */
@font-face {
  font-family: 'Playfair Display SC';
  src: url('../fonts/PlayfairDisplaySC-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display SC';
  src: url('../fonts/PlayfairDisplaySC-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display SC';
  src: url('../fonts/PlayfairDisplaySC-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === CSS变量（5色体系） === */
:root {
  --news-midnight: #1A1A1A;
  --news-magenta: #FFFDE7;
  --news-cyan: #C62828;
  --news-deepblue: #9E9E9E;
  --news-silver: #F9A825;
  --news-midnight-rgb: 26, 26, 26;
  --news-magenta-rgb: 255, 253, 231;
  --news-cyan-rgb: 198, 40, 40;
  --news-deepblue-rgb: 158, 158, 158;
  --news-silver-rgb: 249, 168, 37;
  --news-font-title: 'Playfair Display SC', 'PingFang SC', sans-serif;
  --news-font-body: 'Lora', 'Microsoft YaHei', sans-serif;
}

/* === 全局重置 === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--news-font-body);
  background-color: var(--news-midnight);
  color: var(--news-silver);
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* === 电路板背景暗纹 === */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(var(--news-cyan-rgb), 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--news-cyan-rgb), 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* === 数据流瀑布背景动画 === */
#press-data-waterfall {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}

/* === 通用链接 === */
a {
  color: var(--news-cyan);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
a:hover {
  color: var(--news-magenta);
  text-shadow: 0 0 8px rgba(var(--news-magenta-rgb), 0.5);
}

/* === 标题字体 === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--news-font-title);
  color: var(--news-cyan);
  line-height: 1.3;
  margin-bottom: 1rem;
}
h1 { font-size: 2.5rem; font-weight: 900; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

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

/* === 导航栏 === */
.news-nav-bar {
  position: relative;
  width: 100%;
  background: rgba(var(--news-midnight-rgb), 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--news-magenta);
  box-shadow: 0 2px 20px rgba(var(--news-magenta-rgb), 0.15);
  z-index: 1000;
  padding: 0 1rem;
}

.news-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.news-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.news-nav-logo span {
  font-family: var(--news-font-title);
  font-size: 1.1rem;
  color: var(--news-magenta);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(var(--news-magenta-rgb), 0.4);
}

.news-nav-list {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.news-nav-list li {
  position: relative;
}

.news-nav-list li a {
  display: block;
  padding: 0 16px;
  height: 64px;
  line-height: 64px;
  font-family: var(--news-font-title);
  font-size: 0.9rem;
  color: var(--news-silver);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.news-nav-list li a:hover,
.news-nav-list li.news-nav-active a {
  color: var(--news-cyan);
  text-shadow: 0 0 10px rgba(var(--news-cyan-rgb), 0.6);
  background: rgba(var(--news-cyan-rgb), 0.08);
}

.news-nav-list li.news-nav-active a::before {
  content: '◆';
  margin-right: 4px;
  font-size: 0.6rem;
  animation: news-neon-flicker 3s infinite;
}

/* 移动端菜单按钮 */
.news-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.news-menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--news-magenta);
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px rgba(var(--news-magenta-rgb), 0.5);
}

/* === 面包屑导航 === */
.news-breadcrumb {
  max-width: 1400px;
  margin: 1rem auto;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--news-deepblue);
}
.news-breadcrumb a {
  color: var(--news-deepblue);
}
.news-breadcrumb a:hover {
  color: var(--news-magenta);
}
.news-breadcrumb span {
  margin: 0 0.5rem;
  color: var(--news-deepblue);
}

/* === 主内容容器 === */
.news-main-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* === Hero全屏模块 === */
.news-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.news-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.news-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.7);
  z-index: 1;
}

.news-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.news-hero-content h1 {
  font-size: 3.25rem;
  color: var(--news-cyan);
  text-shadow: 0 0 30px rgba(var(--news-cyan-rgb), 0.6), 0 0 60px rgba(var(--news-cyan-rgb), 0.3);
  margin-bottom: 1rem;
  animation: news-neon-flicker 4s infinite;
}

.news-hero-subtitle {
  font-size: 1.375rem;
  color: var(--news-silver);
  margin-bottom: 1.5rem;
  font-family: var(--news-font-body);
}

.news-hero-desc {
  font-size: 1rem;
  color: var(--news-deepblue);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.news-hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === 按钮样式 === */
.news-btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--news-magenta);
  color: var(--news-midnight);
  font-family: var(--news-font-title);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  min-width: 44px;
  min-height: 44px;
  text-align: center;
}

.news-btn-primary:hover {
  color: var(--news-midnight);
  box-shadow: 0 0 20px rgba(var(--news-magenta-rgb), 0.6), 0 0 40px rgba(var(--news-magenta-rgb), 0.3);
  transform: translateY(-2px);
}

.news-btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--news-cyan);
  font-family: var(--news-font-title);
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--news-cyan);
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 44px;
  min-height: 44px;
  text-align: center;
}

.news-btn-secondary:hover {
  color: var(--news-cyan);
  border-color: var(--news-cyan);
  box-shadow: 0 0 20px rgba(var(--news-cyan-rgb), 0.5), 0 0 40px rgba(var(--news-cyan-rgb), 0.2);
  transform: translateY(-2px);
}

/* === 模块区域通用 === */
.news-section {
  position: relative;
  padding: 4rem 0;
  z-index: 1;
}

.news-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.news-section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.news-section-title h2 {
  font-size: 2.25rem;
  color: var(--news-cyan);
  text-shadow: 0 0 15px rgba(var(--news-cyan-rgb), 0.4);
  position: relative;
  display: inline-block;
}

.news-section-title h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--news-magenta), transparent);
  margin: 0.75rem auto 0;
}

.news-section-title p {
  color: var(--news-deepblue);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* === 六大游戏卡片网格 === */
.news-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.news-game-card {
  background: rgba(var(--news-deepblue-rgb), 0.1);
  border: 1px solid rgba(var(--news-cyan-rgb), 0.3);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.news-game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--news-cyan-rgb), 0.05), transparent);
  pointer-events: none;
}

.news-game-card:hover {
  border-color: var(--news-magenta);
  box-shadow: 0 0 25px rgba(var(--news-magenta-rgb), 0.2), inset 0 0 25px rgba(var(--news-magenta-rgb), 0.05);
  transform: translateY(-4px);
}

.news-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid rgba(var(--news-cyan-rgb), 0.2);
}

.news-game-card h3 {
  font-size: 1.2rem;
  color: var(--news-magenta);
  margin-bottom: 0.5rem;
}

.news-game-card-status {
  font-size: 0.875rem;
  color: var(--news-deepblue);
  margin-bottom: 0.25rem;
}

.news-game-card-players {
  font-size: 0.875rem;
  color: var(--news-silver);
  margin-bottom: 0.75rem;
}

.news-game-card .news-btn-secondary {
  padding: 10px 24px;
  font-size: 0.875rem;
  width: 100%;
  display: block;
}

/* === 试玩区模块 === */
.news-trial-zone {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  background: rgba(var(--news-deepblue-rgb), 0.08);
  border: 1px solid rgba(var(--news-cyan-rgb), 0.2);
  padding: 2rem;
}

.news-trial-list {
  list-style: none;
}

.news-trial-list li {
  padding: 12px 16px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.news-trial-list li:hover,
.news-trial-list li.news-trial-active {
  border-left-color: var(--news-magenta);
  background: rgba(var(--news-magenta-rgb), 0.05);
  color: var(--news-magenta);
}

.news-trial-screen {
  border: 2px solid rgba(var(--news-cyan-rgb), 0.3);
  padding: 1.5rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.news-trial-screen img {
  max-height: 200px;
  margin-bottom: 1rem;
}

/* === 影院频道 === */
.news-cinema-section {
  background: rgba(var(--news-deepblue-rgb), 0.06);
  border: 1px solid rgba(var(--news-cyan-rgb), 0.15);
  overflow: hidden;
}

.news-cinema-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 2px solid rgba(var(--news-cyan-rgb), 0.3);
}

.news-cinema-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2);
}

.news-cinema-screen::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
}

.news-cinema-info {
  padding: 2rem;
}

.news-cinema-playlist {
  list-style: none;
  margin: 1rem 0;
}

.news-cinema-playlist li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(var(--news-deepblue-rgb), 0.2);
  color: var(--news-silver);
  font-size: 0.95rem;
}

.news-cinema-playlist li::before {
  content: '▶';
  color: var(--news-cyan);
  margin-right: 8px;
  font-size: 0.75rem;
}

/* === 注册表单模块 === */
.news-register-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.news-register-form {
  background: rgba(var(--news-deepblue-rgb), 0.1);
  border: 1px solid rgba(var(--news-cyan-rgb), 0.2);
  padding: 2rem;
}

.news-form-group {
  margin-bottom: 1.25rem;
}

.news-form-group label {
  display: block;
  font-size: 0.875rem;
  color: var(--news-deepblue);
  margin-bottom: 0.5rem;
  font-family: var(--news-font-title);
}

.news-form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(var(--news-deepblue-rgb), 0.15);
  border: none;
  border-bottom: 2px solid var(--news-cyan);
  color: var(--news-silver);
  font-family: var(--news-font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  min-height: 44px;
}

.news-form-input:focus {
  outline: none;
  border-bottom-color: var(--news-magenta);
  box-shadow: 0 2px 10px rgba(var(--news-magenta-rgb), 0.2);
  animation: news-neon-flicker 2s infinite;
}

/* === 首充狂欢模块 === */
.news-deposit-billboard {
  position: relative;
  background: linear-gradient(135deg, rgba(var(--news-magenta-rgb), 0.08), rgba(var(--news-cyan-rgb), 0.08));
  border: 2px solid var(--news-magenta);
  box-shadow: 0 0 30px rgba(var(--news-magenta-rgb), 0.15);
  padding: 3rem;
  text-align: center;
  overflow: hidden;
}

.news-deposit-billboard::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(var(--news-magenta-rgb), 0.03), transparent);
  animation: news-rotate 20s linear infinite;
  pointer-events: none;
}

.news-deposit-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.news-deposit-card {
  background: rgba(var(--news-midnight-rgb), 0.6);
  border: 1px solid rgba(var(--news-magenta-rgb), 0.3);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.news-deposit-card:hover {
  border-color: var(--news-magenta);
  box-shadow: 0 0 20px rgba(var(--news-magenta-rgb), 0.2);
  transform: translateY(-3px);
}

.news-deposit-card h4 {
  color: var(--news-magenta);
  margin-bottom: 0.75rem;
}

/* === 活动广场 === */
.news-events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.news-event-card {
  background: rgba(var(--news-deepblue-rgb), 0.08);
  border: 1px solid rgba(var(--news-cyan-rgb), 0.2);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.news-event-card:hover {
  border-color: var(--news-magenta);
  box-shadow: 0 0 15px rgba(var(--news-magenta-rgb), 0.15);
}

.news-event-icon {
  font-size: 2rem;
  min-width: 50px;
  text-align: center;
}

.news-event-card h4 {
  color: var(--news-magenta);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* === VIP摩天楼 === */
.news-vip-tower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.news-vip-image {
  border: 1px solid rgba(var(--news-cyan-rgb), 0.3);
  overflow: hidden;
}

.news-vip-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.news-vip-image:hover img {
  transform: scale(1.03);
}

.news-vip-levels {
  list-style: none;
}

.news-vip-levels li {
  padding: 1rem;
  border-left: 3px solid var(--news-cyan);
  margin-bottom: 1rem;
  background: rgba(var(--news-deepblue-rgb), 0.08);
  transition: all 0.3s ease;
}

.news-vip-levels li:hover {
  border-left-color: var(--news-magenta);
  background: rgba(var(--news-magenta-rgb), 0.05);
}

.news-vip-levels li strong {
  color: var(--news-magenta);
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--news-font-title);
}

/* === 安全认证灯塔 === */
.news-security-zone {
  background: rgba(var(--news-deepblue-rgb), 0.06);
  border: 1px solid rgba(var(--news-cyan-rgb), 0.15);
  padding: 3rem;
  text-align: center;
}

.news-security-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.news-security-badge {
  text-align: center;
  max-width: 200px;
}

.news-security-badge img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 10px rgba(var(--news-cyan-rgb), 0.3));
}

.news-security-badge p {
  font-size: 0.875rem;
  color: var(--news-deepblue);
}

/* === 负责任博弈声明 === */
.news-responsible-zone {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  border-top: 1px solid rgba(var(--news-deepblue-rgb), 0.2);
}

.news-responsible-icon {
  min-width: 80px;
}

.news-responsible-icon img {
  width: 80px;
  filter: drop-shadow(0 0 8px rgba(var(--news-magenta-rgb), 0.3));
}

.news-responsible-text {
  flex: 1;
}

.news-responsible-text h3 {
  color: var(--news-magenta);
  margin-bottom: 1rem;
}

.news-responsible-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* === 页脚 === */
.news-footer {
  position: relative;
  z-index: 1;
  background: rgba(var(--news-midnight-rgb), 0.95);
  border-top: 2px solid var(--news-cyan);
  padding: 3rem 1rem 1.5rem;
  margin-top: 4rem;
}

.news-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.news-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.news-footer-col h4 {
  color: var(--news-magenta);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: var(--news-font-title);
}

.news-footer-links {
  list-style: none;
}

.news-footer-links li {
  margin-bottom: 0.5rem;
}

.news-footer-links li a {
  color: var(--news-deepblue);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.news-footer-links li a:hover {
  color: var(--news-magenta);
}

.news-footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.news-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--news-cyan);
  color: var(--news-cyan);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.news-footer-social a:hover {
  background: var(--news-cyan);
  color: var(--news-midnight);
  box-shadow: 0 0 10px rgba(var(--news-cyan-rgb), 0.4);
}

.news-footer-payment {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.news-footer-payment span {
  padding: 4px 12px;
  border: 1px solid rgba(var(--news-deepblue-rgb), 0.3);
  color: var(--news-deepblue);
  font-size: 0.8rem;
}

.news-footer-bottom {
  border-top: 1px solid rgba(var(--news-deepblue-rgb), 0.2);
  padding-top: 1.5rem;
  text-align: center;
}

.news-footer-license {
  font-size: 0.85rem;
  color: var(--news-deepblue);
  margin-bottom: 0.75rem;
}

.news-footer-legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.news-footer-legal a {
  color: var(--news-deepblue);
  font-size: 0.85rem;
}

.news-footer-18plus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(var(--news-cyan-rgb), 0.05);
  border: 1px solid rgba(var(--news-cyan-rgb), 0.2);
}

.news-footer-18plus .news-age-badge {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--news-magenta);
  border: 2px solid var(--news-magenta);
  padding: 4px 10px;
  font-family: var(--news-font-title);
  text-shadow: 0 0 8px rgba(var(--news-magenta-rgb), 0.4);
}

.news-footer-18plus p {
  font-size: 0.8rem;
  color: var(--news-deepblue);
  margin: 0;
  text-align: left;
}

/* === 内页Hero === */
.news-inner-hero {
  position: relative;
  width: 100%;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.news-inner-hero .news-hero-bg {
  filter: brightness(0.6);
}

.news-inner-hero .news-hero-content {
  padding: 3rem 2rem;
}

.news-inner-hero h1 {
  font-size: 2.5rem;
}

/* === 内页内容区 === */
.news-article-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1rem;
  position: relative;
  z-index: 1;
}

.news-article-content h2 {
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(var(--news-cyan-rgb), 0.2);
}

.news-article-content h3 {
  margin-top: 2rem;
}

.news-article-img {
  margin: 2rem 0;
  border: 1px solid rgba(var(--news-cyan-rgb), 0.2);
  overflow: hidden;
}

.news-article-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.news-article-img:hover img {
  transform: scale(1.02);
}

.news-article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.news-article-table th {
  background: rgba(var(--news-cyan-rgb), 0.15);
  color: var(--news-magenta);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--news-font-title);
  border: 1px solid rgba(var(--news-cyan-rgb), 0.2);
}

.news-article-table td {
  padding: 10px 16px;
  border: 1px solid rgba(var(--news-deepblue-rgb), 0.15);
  color: var(--news-silver);
}

.news-article-table tr:hover td {
  background: rgba(var(--news-cyan-rgb), 0.05);
}

/* === FAQ模块 === */
.news-faq-list {
  margin: 2rem 0;
}

.news-faq-item {
  border: 1px solid rgba(var(--news-cyan-rgb), 0.2);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.news-faq-question {
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-family: var(--news-font-title);
  color: var(--news-magenta);
  background: rgba(var(--news-deepblue-rgb), 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  transition: background 0.3s ease;
}

.news-faq-question:hover {
  background: rgba(var(--news-magenta-rgb), 0.05);
}

.news-faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--news-cyan);
  transition: transform 0.3s ease;
}

.news-faq-item.news-faq-open .news-faq-question::after {
  transform: rotate(45deg);
}

.news-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}

.news-faq-item.news-faq-open .news-faq-answer {
  max-height: 500px;
  padding: 1rem 1.5rem;
}

/* === 推荐模块 === */
.news-recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.news-recommend-card {
  background: rgba(var(--news-deepblue-rgb), 0.08);
  border: 1px solid rgba(var(--news-cyan-rgb), 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-recommend-card:hover {
  border-color: var(--news-magenta);
  box-shadow: 0 0 15px rgba(var(--news-magenta-rgb), 0.15);
  transform: translateY(-3px);
}

.news-recommend-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.news-recommend-card-info {
  padding: 1rem;
}

.news-recommend-card-info h4 {
  font-size: 1rem;
  color: var(--news-magenta);
  margin-bottom: 0.5rem;
}

.news-recommend-card-info p {
  font-size: 0.85rem;
  color: var(--news-deepblue);
}

/* === APP下载页 === */
.news-app-download-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}

.news-app-phone-display {
  text-align: center;
}

.news-app-phone-display img {
  max-width: 100%;
  filter: drop-shadow(0 0 30px rgba(var(--news-cyan-rgb), 0.3));
}

.news-app-info h2 {
  margin-bottom: 1.5rem;
}

.news-app-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.news-app-platform-card {
  background: rgba(var(--news-deepblue-rgb), 0.1);
  border: 1px solid rgba(var(--news-cyan-rgb), 0.2);
  padding: 1.5rem;
  text-align: center;
}

.news-app-platform-card h4 {
  color: var(--news-magenta);
  margin-bottom: 1rem;
}

.news-app-platform-card img {
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
}

/* ============================================================
   动画效果
   ============================================================ */

/* 动画1：报纸闪烁 */
@keyframes news-neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(var(--news-cyan-rgb), 0.5), 0 0 30px rgba(var(--news-cyan-rgb), 0.3);
  }
  20%, 24%, 55% {
    opacity: 0.85;
    text-shadow: none;
  }
}

/* 动画2：全息投影显现 */
@keyframes news-hologram-reveal {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    filter: blur(4px) hue-rotate(20deg);
    clip-path: inset(0 0 100% 0);
  }
  40% {
    opacity: 0.6;
    filter: blur(2px) hue-rotate(10deg);
    clip-path: inset(0 0 40% 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) hue-rotate(0deg);
    clip-path: inset(0 0 0 0);
  }
}

.news-hologram-animate {
  animation: news-hologram-reveal 0.8s ease-out forwards;
}

/* 动画3：脉冲波纹 */
@keyframes news-pulse-ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--news-magenta-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(var(--news-magenta-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--news-magenta-rgb), 0);
  }
}

.news-btn-primary:hover,
.news-game-card:hover {
  animation: news-pulse-ripple 0.6s ease-out;
}

/* 动画4：旋转（用于首充模块） */
@keyframes news-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 滚动显现动画 */
.news-scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.news-scroll-reveal.news-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   响应式设计
   ============================================================ */

@media (max-width: 1024px) {
  .news-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-deposit-plans {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-vip-tower {
    grid-template-columns: 1fr;
  }
  .news-register-zone {
    grid-template-columns: 1fr;
  }
  .news-recommend-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }

  .news-hero-content h1 {
    font-size: 2.25rem;
  }

  .news-hero-subtitle {
    font-size: 1.1rem;
  }

  .news-nav-list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(var(--news-midnight-rgb), 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 999;
  }

  .news-nav-list.news-nav-open {
    display: flex;
  }

  .news-nav-list li a {
    height: auto;
    line-height: 1;
    padding: 16px 24px;
    font-size: 1.1rem;
  }

  .news-menu-toggle {
    display: flex;
  }

  .news-game-grid {
    grid-template-columns: 1fr;
  }

  .news-trial-zone {
    grid-template-columns: 1fr;
  }

  .news-deposit-plans {
    grid-template-columns: 1fr;
  }

  .news-events-grid {
    grid-template-columns: 1fr;
  }

  .news-event-card {
    flex-direction: column;
  }

  .news-footer-grid {
    grid-template-columns: 1fr;
  }

  .news-responsible-zone {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .news-app-download-zone {
    grid-template-columns: 1fr;
  }

  .news-app-platforms {
    grid-template-columns: 1fr;
  }

  .news-recommend-grid {
    grid-template-columns: 1fr;
  }

  .news-inner-hero h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 414px) {
  html { font-size: 14px; }

  .news-hero-content h1 {
    font-size: 1.8rem;
  }

  .news-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .news-btn-primary,
  .news-btn-secondary {
    width: 100%;
    max-width: 280px;
  }

  .news-security-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* 确保触控目标≥44x44px */
a, button, input, select, textarea,
.news-trial-list li,
.news-faq-question {
  min-height: 44px;
}
