/* ============================================================
   水墨山水风 (Ink Landscape Style) - 主样式表
   配色: 午夜黑#1A1A1A 水墨洋红#FF4500 水墨青#2E8B57 深空蓝#696969 银灰#FAF0E6
   ============================================================ */

/* === 字体定义 === */
@font-face {
  font-family: 'ZCOOL KuaiLe';
  src: url('../fonts/ZCOOLKuaiLe-Regular.woff2') format('woff2'),
       url('../fonts/ZCOOLKuaiLe-Regular.ttf') format('truetype');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Noto Serif SC';
  src: url('../fonts/NotoSerifSC-Regular.woff2') format('woff2'),
       url('../fonts/NotoSerifSC-Regular.ttf') format('truetype');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

/* === CSS变量 === */
:root {
  --ink-midnight: #1A1A1A;
  --ink-magenta: #FF4500;
  --ink-cyan: #2E8B57;
  --ink-deep-blue: #696969;
  --ink-silver: #FAF0E6;
  --ink-font-title: 'ZCOOL KuaiLe', cursive, sans-serif;
  --ink-font-body: 'Noto Serif SC', 'Noto Serif CJK SC', serif;
  --ink-glow-magenta: 0 0 20px rgba(255,69,0,0.6), 0 0 40px rgba(255,69,0,0.3);
  --ink-glow-cyan: 0 0 20px rgba(46,139,87,0.6), 0 0 40px rgba(46,139,87,0.3);
}

/* === 全局重置 === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ink-font-body);
  background-color: var(--ink-midnight);
  color: var(--ink-silver);
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

/* 电路板暗纹背景 */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(46,139,87,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,139,87,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* === 动画定义 === */
/* 1. 水墨闪烁 */
@keyframes ink-neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; text-shadow: var(--ink-glow-cyan); }
  20%, 24%, 55% { opacity: 0.6; text-shadow: none; }
}
/* 2. 全息投影显现 */
@keyframes ink-hologram-appear {
  0% { opacity: 0; transform: translateY(30px) scale(0.95); filter: blur(10px); }
  50% { opacity: 0.7; filter: blur(3px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
/* 3. 脉冲波纹 */
@keyframes ink-pulse-ripple {
  0% { box-shadow: 0 0 0 0 rgba(255,69,0,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(255,69,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,69,0,0); }
}
/* 4. 数据流瀑布 */
@keyframes ink-data-waterfall {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 100%; }
}
/* 辅助动画 */
@keyframes ink-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes ink-glow-pulse { 0%,100% { box-shadow: var(--ink-glow-cyan); } 50% { box-shadow: var(--ink-glow-magenta); } }
@keyframes ink-slide-up { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* === 导航栏 === */
.ink-nav-bar {
  position: relative; /* 非sticky */
  width: 100%;
  background: rgba(26,26,46,0.95);
  border-bottom: 2px solid var(--ink-cyan);
  z-index: 1000;
  padding: 0 2rem;
}
.ink-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  height: 70px;
}
.ink-nav-logo {
  font-family: var(--ink-font-title);
  font-size: 28px;
  color: var(--ink-magenta);
  text-decoration: none;
  text-shadow: var(--ink-glow-magenta);
  animation: ink-neon-flicker 3s infinite;
}
.ink-nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
.ink-nav-links li a {
  color: var(--ink-silver);
  text-decoration: none;
  font-size: 15px;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}
.ink-nav-links li a:hover,
.ink-nav-links li a.ink-active {
  color: var(--ink-cyan);
  text-shadow: var(--ink-glow-cyan);
}
.ink-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--ink-cyan);
  transition: width 0.3s;
}
.ink-nav-links li a:hover::after { width: 100%; }

/* 移动端菜单 */
.ink-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.ink-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--ink-cyan);
  border-radius: 2px;
  box-shadow: var(--ink-glow-cyan);
  transition: 0.3s;
}

/* === Hero模块 === */
.ink-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ink-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ink-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(26,26,46,0.7);
  z-index: 1;
}
.ink-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  animation: ink-hologram-appear 1.5s ease-out;
}
.ink-hero-title {
  font-family: var(--ink-font-title);
  font-size: 52px;
  color: var(--ink-cyan);
  text-shadow: var(--ink-glow-cyan);
  margin-bottom: 1rem;
  animation: ink-neon-flicker 4s infinite;
}
.ink-hero-subtitle {
  font-family: var(--ink-font-body);
  font-size: 22px;
  color: var(--ink-deep-blue);
  margin-bottom: 1.5rem;
}
.ink-hero-desc {
  font-size: 16px;
  line-height: 2;
  color: var(--ink-silver);
  margin-bottom: 2rem;
  text-align: left;
}
.ink-cta-group { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.ink-cta-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--ink-magenta);
  color: var(--ink-midnight);
  font-family: var(--ink-font-title);
  font-size: 18px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.ink-cta-primary:hover { animation: ink-pulse-ripple 1s infinite; transform: scale(1.05); }
.ink-cta-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--ink-cyan);
  font-family: var(--ink-font-title);
  font-size: 18px;
  text-decoration: none;
  border: 2px solid var(--ink-cyan);
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.ink-cta-secondary:hover {
  box-shadow: var(--ink-glow-cyan);
  border-color: var(--ink-magenta);
  color: var(--ink-magenta);
}

/* === 通用模块容器 === */
.ink-section {
  position: relative;
  padding: 5rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
  z-index: 1;
}
.ink-section-title {
  font-family: var(--ink-font-title);
  font-size: 36px;
  color: var(--ink-cyan);
  text-shadow: var(--ink-glow-cyan);
  text-align: center;
  margin-bottom: 1rem;
}
.ink-section-subtitle {
  text-align: center;
  color: var(--ink-deep-blue);
  font-size: 18px;
  margin-bottom: 3rem;
}
.ink-section-text {
  font-size: 16px;
  line-height: 2;
  color: var(--ink-silver);
  max-width: 1000px;
  margin: 0 auto 2rem;
}

/* === 六大游戏殿堂卡片 === */
.ink-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.ink-casino-card {
  background: rgba(26,26,46,0.9);
  border: 1px solid var(--ink-cyan);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.ink-casino-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--ink-cyan), transparent);
}
.ink-casino-card:hover {
  border-color: var(--ink-magenta);
  box-shadow: var(--ink-glow-magenta);
  transform: translateY(-5px);
}
.ink-casino-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 1px solid var(--ink-deep-blue);
  margin-bottom: 1rem;
}
.ink-card-title {
  font-family: var(--ink-font-title);
  font-size: 22px;
  color: var(--ink-magenta);
  text-shadow: 0 0 10px rgba(255,69,0,0.4);
  margin-bottom: 0.5rem;
}
.ink-card-meta {
  font-size: 14px;
  color: var(--ink-deep-blue);
  margin-bottom: 0.5rem;
}
.ink-card-meta span {
  color: var(--ink-cyan);
}
.ink-card-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 8px 24px;
  background: transparent;
  border: 1px solid var(--ink-magenta);
  color: var(--ink-magenta);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.ink-card-btn:hover {
  background: var(--ink-magenta);
  color: var(--ink-midnight);
  box-shadow: var(--ink-glow-magenta);
}

/* === 体验区模块 === */
.ink-arcade-zone {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  background: rgba(26,26,46,0.8);
  border: 1px solid var(--ink-cyan);
  padding: 2rem;
  margin-top: 2rem;
}
.ink-arcade-list {
  list-style: none;
}
.ink-arcade-list li {
  padding: 1rem;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.3s;
  font-size: 15px;
}
.ink-arcade-list li:hover,
.ink-arcade-list li.ink-active {
  border-left-color: var(--ink-magenta);
  background: rgba(255,69,0,0.1);
  color: var(--ink-magenta);
}
.ink-arcade-screen {
  border: 2px solid var(--ink-cyan);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ink-arcade-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === 影院模块 === */
.ink-cinema-section {
  background: rgba(26,26,46,0.9);
  border: 1px solid var(--ink-deep-blue);
  padding: 3rem;
  margin-top: 2rem;
  position: relative;
}
.ink-cinema-player {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--ink-midnight);
  border: 2px solid var(--ink-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.ink-cinema-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}
.ink-play-btn {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,69,0,0.8);
  border: 3px solid var(--ink-silver);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}
.ink-play-btn::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 15px 0 15px 28px;
  border-color: transparent transparent transparent var(--ink-silver);
  margin-left: 5px;
}
.ink-play-btn:hover { transform: scale(1.1); animation: ink-pulse-ripple 1s infinite; }
.ink-video-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ink-video-item {
  padding: 1rem;
  background: rgba(46,139,87,0.1);
  border: 1px solid var(--ink-deep-blue);
  cursor: pointer;
  transition: all 0.3s;
}
.ink-video-item:hover {
  border-color: var(--ink-cyan);
  box-shadow: var(--ink-glow-cyan);
}

/* === 表单模块 === */
.ink-form-card {
  background: rgba(26,26,46,0.9);
  border: 1px solid var(--ink-cyan);
  box-shadow: var(--ink-glow-cyan);
  padding: 3rem;
  max-width: 600px;
  margin: 2rem auto;
}
.ink-form-group {
  margin-bottom: 1.5rem;
}
.ink-form-group label {
  display: block;
  font-size: 14px;
  color: var(--ink-cyan);
  margin-bottom: 0.5rem;
}
.ink-form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(26,26,46,0.8);
  border: none;
  border-bottom: 2px solid var(--ink-cyan);
  color: var(--ink-silver);
  font-size: 16px;
  font-family: var(--ink-font-body);
  outline: none;
  transition: all 0.3s;
}
.ink-form-input:focus {
  border-bottom-color: var(--ink-magenta);
  box-shadow: 0 2px 10px rgba(255,69,0,0.3);
  animation: ink-neon-flicker 2s;
}
.ink-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--ink-magenta);
  color: var(--ink-midnight);
  font-family: var(--ink-font-title);
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.ink-form-submit:hover { animation: ink-pulse-ripple 1s infinite; }

/* === 广告牌/首充模块 === */
.ink-billboard {
  background: linear-gradient(135deg, rgba(255,69,0,0.15), rgba(26,26,46,0.95));
  border: 2px solid var(--ink-magenta);
  padding: 3rem;
  text-align: center;
  position: relative;
  margin-top: 2rem;
}
.ink-billboard::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, var(--ink-magenta), var(--ink-cyan), var(--ink-magenta));
  z-index: -1;
  animation: ink-glow-pulse 3s infinite;
  filter: blur(4px);
}
.ink-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.ink-tier-card {
  background: rgba(26,26,46,0.9);
  border: 1px solid var(--ink-magenta);
  padding: 2rem;
  transition: all 0.3s;
}
.ink-tier-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ink-glow-magenta);
}
.ink-tier-title {
  font-family: var(--ink-font-title);
  font-size: 20px;
  color: var(--ink-magenta);
  margin-bottom: 1rem;
}
.ink-tier-amount {
  font-size: 32px;
  font-family: var(--ink-font-title);
  color: var(--ink-cyan);
  text-shadow: var(--ink-glow-cyan);
}

/* === 活动广场 === */
.ink-event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.ink-event-card {
  background: rgba(26,26,46,0.85);
  border: 1px solid var(--ink-deep-blue);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.ink-event-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: var(--ink-magenta);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.3;
}
.ink-event-card:hover {
  border-color: var(--ink-cyan);
  box-shadow: var(--ink-glow-cyan);
}
.ink-event-title {
  font-family: var(--ink-font-title);
  font-size: 20px;
  color: var(--ink-cyan);
  margin-bottom: 0.5rem;
}
.ink-event-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 8px 20px;
  border: 1px solid var(--ink-cyan);
  color: var(--ink-cyan);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  cursor: pointer;
}
.ink-event-btn:hover {
  background: var(--ink-cyan);
  color: var(--ink-midnight);
}

/* === VIP摩天楼 === */
.ink-vip-tower {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2rem;
  border: 1px solid var(--ink-cyan);
}
.ink-vip-floor {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid rgba(46,139,87,0.3);
  transition: all 0.3s;
  cursor: pointer;
}
.ink-vip-floor:hover {
  background: rgba(46,139,87,0.1);
  box-shadow: inset 0 0 30px rgba(46,139,87,0.1);
}
.ink-vip-level {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ink-font-title);
  font-size: 24px;
  color: var(--ink-magenta);
  background: rgba(255,69,0,0.1);
  padding: 1.5rem;
  text-shadow: 0 0 10px rgba(255,69,0,0.4);
}
.ink-vip-info {
  padding: 1.5rem 2rem;
}
.ink-vip-name {
  font-family: var(--ink-font-title);
  font-size: 20px;
  color: var(--ink-cyan);
  margin-bottom: 0.5rem;
}
.ink-vip-perks {
  font-size: 15px;
  color: var(--ink-deep-blue);
  line-height: 1.8;
}

/* === 安全认证模块 === */
.ink-security-section {
  text-align: center;
  background: rgba(26,26,46,0.95);
  padding: 4rem 2rem;
}
.ink-badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.ink-badge-item {
  width: 140px;
  height: 140px;
  border: 2px solid var(--ink-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ink-font-title);
  font-size: 14px;
  color: var(--ink-cyan);
  text-shadow: var(--ink-glow-cyan);
  text-align: center;
  padding: 1rem;
  transition: all 0.3s;
}
.ink-badge-item:hover {
  box-shadow: var(--ink-glow-cyan);
  transform: scale(1.05);
}

/* === 负责任博弈模块 === */
.ink-responsible-section {
  background: rgba(26,26,46,0.98);
  padding: 3rem 2rem;
  border-top: 2px solid var(--ink-deep-blue);
}
.ink-responsible-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  align-items: start;
}
.ink-age-badge {
  width: 80px;
  height: 80px;
  border: 3px solid var(--ink-magenta);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ink-font-title);
  font-size: 28px;
  color: var(--ink-magenta);
  text-shadow: var(--ink-glow-magenta);
  animation: ink-neon-flicker 3s infinite;
}
.ink-responsible-text {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-deep-blue);
}
.ink-responsible-text strong {
  color: var(--ink-magenta);
}
.ink-help-btns {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* === 页脚 === */
.ink-footer {
  background: rgba(10,10,20,0.98);
  border-top: 2px solid var(--ink-cyan);
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 1;
}
.ink-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto 3rem;
}
.ink-footer-col h4 {
  font-family: var(--ink-font-title);
  font-size: 18px;
  color: var(--ink-cyan);
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(46,139,87,0.3);
}
.ink-footer-col ul {
  list-style: none;
}
.ink-footer-col ul li {
  margin-bottom: 0.5rem;
}
.ink-footer-col ul li a {
  color: var(--ink-deep-blue);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.ink-footer-col ul li a:hover {
  color: var(--ink-cyan);
}
.ink-footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.ink-social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-cyan);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}
.ink-social-icon:hover {
  box-shadow: var(--ink-glow-cyan);
  background: rgba(46,139,87,0.2);
}
.ink-footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(105,105,105,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.ink-footer-license {
  font-size: 13px;
  color: var(--ink-deep-blue);
}
.ink-footer-payments {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.ink-payment-icon {
  padding: 4px 12px;
  border: 1px solid var(--ink-deep-blue);
  color: var(--ink-deep-blue);
  font-size: 12px;
  border-radius: 4px;
}
.ink-footer-18 {
  text-align: center;
  padding-top: 1.5rem;
  max-width: 1440px;
  margin: 0 auto;
}
.ink-footer-18-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-magenta);
  font-family: var(--ink-font-title);
  font-size: 20px;
  text-shadow: 0 0 10px rgba(255,69,0,0.3);
}
.ink-footer-18-text {
  font-size: 13px;
  color: var(--ink-deep-blue);
  margin-top: 0.5rem;
}

/* === 面包屑导航 === */
.ink-breadcrumb {
  padding: 1rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--ink-deep-blue);
  z-index: 1;
  position: relative;
}
.ink-breadcrumb a {
  color: var(--ink-cyan);
  text-decoration: none;
}
.ink-breadcrumb a:hover { text-decoration: underline; }
.ink-breadcrumb span { color: var(--ink-deep-blue); margin: 0 0.5rem; }

/* === 内页通用 === */
.ink-page-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ink-page-hero img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ink-page-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(26,26,46,0.75);
  z-index: 1;
}
.ink-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.ink-page-hero-title {
  font-family: var(--ink-font-title);
  font-size: 42px;
  color: var(--ink-cyan);
  text-shadow: var(--ink-glow-cyan);
}
.ink-content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
}
.ink-content-area h2 {
  font-family: var(--ink-font-title);
  font-size: 28px;
  color: var(--ink-cyan);
  text-shadow: 0 0 10px rgba(46,139,87,0.3);
  margin: 2.5rem 0 1rem;
}
.ink-content-area h3 {
  font-family: var(--ink-font-title);
  font-size: 22px;
  color: var(--ink-magenta);
  margin: 2rem 0 0.8rem;
}
.ink-content-area p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 1.5rem;
  color: var(--ink-silver);
}
.ink-content-img {
  width: 100%;
  margin: 2rem 0;
  border: 1px solid var(--ink-cyan);
  transition: all 0.3s;
}
.ink-content-img:hover {
  box-shadow: var(--ink-glow-cyan);
}
.ink-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.ink-img-grid img {
  width: 100%;
  border: 1px solid var(--ink-deep-blue);
  transition: all 0.3s;
}
.ink-img-grid img:hover {
  border-color: var(--ink-cyan);
  box-shadow: var(--ink-glow-cyan);
}

/* === 数据表格 === */
.ink-data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.ink-data-table th {
  background: rgba(46,139,87,0.2);
  color: var(--ink-cyan);
  font-family: var(--ink-font-title);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--ink-cyan);
}
.ink-data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(105,105,105,0.2);
  color: var(--ink-silver);
  font-size: 15px;
}
.ink-data-table tr:hover td {
  background: rgba(46,139,87,0.05);
}

/* === APP下载页 === */
.ink-app-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}
.ink-app-phone {
  text-align: center;
}
.ink-app-phone img {
  max-width: 300px;
  border: 2px solid var(--ink-cyan);
  box-shadow: var(--ink-glow-cyan);
  animation: ink-float 4s ease-in-out infinite;
}
.ink-download-btns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ink-download-card {
  background: rgba(26,26,46,0.9);
  border: 1px solid var(--ink-cyan);
  padding: 2rem;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  align-items: center;
  transition: all 0.3s;
}
.ink-download-card:hover {
  box-shadow: var(--ink-glow-cyan);
}
.ink-qr-code {
  width: 100px;
  height: 100px;
  background: var(--ink-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ink-midnight);
}

/* === 滚动显现动画 === */
.ink-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.ink-reveal.ink-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === 响应式设计 === */
@media (max-width: 1024px) {
  .ink-game-grid { grid-template-columns: repeat(2, 1fr); }
  .ink-tier-grid { grid-template-columns: repeat(2, 1fr); }
  .ink-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .ink-video-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ink-nav-links { display: none; }
  .ink-menu-toggle { display: flex; }
  .ink-nav-links.ink-nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0;
    width: 100%;
    background: rgba(26,26,46,0.98);
    padding: 2rem;
    border-bottom: 2px solid var(--ink-cyan);
    animation: ink-hologram-appear 0.5s;
  }
  .ink-hero-title { font-size: 32px; }
  .ink-hero-subtitle { font-size: 18px; }
  .ink-game-grid { grid-template-columns: 1fr; }
  .ink-arcade-zone { grid-template-columns: 1fr; }
  .ink-tier-grid { grid-template-columns: 1fr; }
  .ink-event-grid { grid-template-columns: 1fr; }
  .ink-footer-grid { grid-template-columns: 1fr; }
  .ink-video-list { grid-template-columns: 1fr; }
  .ink-app-showcase { grid-template-columns: 1fr; }
  .ink-responsible-inner { grid-template-columns: 1fr; }
  .ink-img-grid { grid-template-columns: 1fr; }
  .ink-section { padding: 3rem 1.5rem; }
  .ink-section-title { font-size: 28px; }
  .ink-page-hero-title { font-size: 28px; }
  .ink-vip-floor { grid-template-columns: 80px 1fr; }
  .ink-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 414px) {
  html { font-size: 14px; }
  .ink-hero-title { font-size: 26px; }
  .ink-cta-primary, .ink-cta-secondary { padding: 12px 24px; font-size: 16px; }
  .ink-nav-inner { height: 60px; }
  .ink-nav-logo { font-size: 22px; }
}

/* 确保触控目标>=44x44px */
a, button, .ink-card-btn, .ink-event-btn, .ink-cta-primary, .ink-cta-secondary {
  min-height: 44px;
  min-width: 44px;
}
