/* ============================================================
   STATION CORE CSS - 太空站风 (Neon Metropolis Style)
   5色体系: 午夜黑#0A0A0A 太空洋红#B0BEC5 太空青#FF1744 深空蓝#0091EA 银灰#76FF03
   ============================================================ */

/* --- Font Faces --- */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/ChakraPetch-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/ChakraPetch-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/ChakraPetch-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/IBMPlexSans-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/IBMPlexSans-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/IBMPlexSans-SemiBold.ttf') format('truetype');
}

/* --- CSS Variables --- */
:root {
  --station-midnight: #0A0A0A;
  --station-magenta: #B0BEC5;
  --station-cyan: #FF1744;
  --station-deepblue: #0091EA;
  --station-silver: #76FF03;
  --station-font-heading: 'Chakra Petch', 'PingFang SC', sans-serif;
  --station-font-body: 'IBM Plex Sans', 'Microsoft YaHei', sans-serif;
}

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

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

body {
  background-color: var(--station-midnight);
  color: var(--station-silver);
  font-family: var(--station-font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 49px,
      rgba(0, 145, 234, 0.03) 49px,
      rgba(0, 145, 234, 0.03) 50px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 49px,
      rgba(0, 145, 234, 0.03) 49px,
      rgba(0, 145, 234, 0.03) 50px
    );
}

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

a {
  color: var(--station-cyan);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  color: var(--station-magenta);
  text-shadow: 0 0 10px var(--station-magenta);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--station-font-heading);
  color: var(--station-cyan);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 23, 68, 0.6), 0 0 40px rgba(255, 23, 68, 0.3);
}

h2 {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 600;
  text-shadow: 0 0 15px rgba(255, 23, 68, 0.4);
}

h3 {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
}

h4 { font-size: clamp(16px, 2vw, 22px); }
h5 { font-size: clamp(15px, 1.5vw, 18px); }
h6 { font-size: clamp(14px, 1.2vw, 16px); }

p {
  margin-bottom: 1rem;
  font-size: clamp(14px, 1.6vw, 16px);
}

/* --- Animations --- */

/* 1. 太空闪烁 Neon Flicker */
@keyframes station-neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.6), 0 0 20px rgba(255, 23, 68, 0.4), 0 0 40px rgba(255, 23, 68, 0.2);
    opacity: 1;
  }
  20%, 24%, 55% {
    text-shadow: none;
    opacity: 0.8;
  }
}

.station-neon-flicker {
  animation: station-neon-flicker 3s infinite;
}

/* 2. 全息投影显现 Hologram Reveal */
@keyframes station-hologram-reveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scaleY(0.8);
    filter: blur(4px) hue-rotate(90deg);
    clip-path: inset(0 0 100% 0);
  }
  40% {
    opacity: 0.6;
    filter: blur(2px) hue-rotate(45deg);
    clip-path: inset(0 0 40% 0);
  }
  70% {
    filter: blur(1px) hue-rotate(0deg);
    clip-path: inset(0 0 10% 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    filter: blur(0) hue-rotate(0deg);
    clip-path: inset(0 0 0 0);
  }
}

.station-hologram-reveal {
  opacity: 0;
  transition: none;
}

.station-hologram-reveal.station-visible {
  animation: station-hologram-reveal 0.8s ease-out forwards;
}

/* 3. 脉冲波纹 Pulse Ripple */
@keyframes station-pulse-ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 23, 68, 0.5);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(255, 23, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 23, 68, 0);
  }
}

.station-pulse-ripple:hover {
  animation: station-pulse-ripple 0.6s ease-out;
}

/* 4. 数据流瀑布 Data Waterfall - handled by canvas in JS */

/* --- Navigation --- */
.station-nav-bar {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--station-magenta);
  box-shadow: 0 2px 20px rgba(176, 190, 197, 0.15);
  padding: 0;
  z-index: 100;
  position: relative;
}

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

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

.station-nav-logo img {
  width: 40px;
  height: 40px;
}

.station-nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.station-nav-links li a {
  display: block;
  padding: 20px 16px;
  color: var(--station-silver);
  font-family: var(--station-font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.station-nav-links li a:hover,
.station-nav-links li a.station-active {
  color: var(--station-cyan);
  text-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
  background: rgba(255, 23, 68, 0.05);
}

.station-nav-links li a.station-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--station-cyan);
  box-shadow: 0 0 10px var(--station-cyan);
  animation: station-pulse-ripple 2s infinite;
}

/* Mobile menu */
.station-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--station-cyan);
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.station-menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--station-cyan);
  box-shadow: 0 0 6px var(--station-cyan);
  transition: all 0.3s ease;
}

/* --- Breadcrumb --- */
.station-breadcrumb {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--station-magenta);
}

.station-breadcrumb a {
  color: var(--station-magenta);
}

.station-breadcrumb span {
  margin: 0 8px;
  color: rgba(176, 190, 197, 0.5);
}

/* --- Hero Section --- */
.station-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

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

.station-hero-content h1 {
  margin-bottom: 20px;
}

.station-hero-subtitle {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--station-magenta);
  margin-bottom: 24px;
}

.station-hero-text {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--station-silver);
  margin-bottom: 32px;
  line-height: 1.8;
  text-align: left;
}

/* --- Buttons --- */
.station-btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--station-magenta);
  color: var(--station-midnight);
  font-family: var(--station-font-heading);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 44px;
  text-align: center;
}

.station-btn-primary:hover {
  color: var(--station-midnight);
  box-shadow: 0 0 20px rgba(176, 190, 197, 0.5), 0 0 40px rgba(176, 190, 197, 0.2);
  transform: translateY(-2px);
}

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

.station-btn-secondary:hover {
  color: var(--station-cyan);
  border-color: var(--station-cyan);
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.4), 0 0 40px rgba(255, 23, 68, 0.2);
  transform: translateY(-2px);
}

.station-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Section Containers --- */
.station-section {
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.station-section-full {
  padding: 80px 20px;
  background: rgba(0, 145, 234, 0.05);
  border-top: 1px solid rgba(0, 145, 234, 0.15);
  border-bottom: 1px solid rgba(0, 145, 234, 0.15);
}

.station-section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.station-section-title {
  text-align: center;
  margin-bottom: 48px;
}

/* --- Game Cards Grid --- */
.station-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.station-game-card {
  background: rgba(0, 145, 234, 0.08);
  border: 1px solid rgba(0, 145, 234, 0.2);
  box-shadow: 0 0 15px rgba(0, 145, 234, 0.1);
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.station-game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--station-cyan), transparent);
}

.station-game-card:hover {
  border-color: var(--station-cyan);
  box-shadow: 0 0 25px rgba(255, 23, 68, 0.2), 0 0 50px rgba(255, 23, 68, 0.1);
  transform: translateY(-4px);
}

.station-game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 145, 234, 0.2);
}

.station-game-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.station-game-card p {
  font-size: 14px;
  color: var(--station-magenta);
}

.station-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 145, 234, 0.15);
  font-size: 13px;
  color: var(--station-magenta);
}

.station-card-status {
  color: var(--station-silver);
  font-weight: 600;
}

/* --- Trial Zone --- */
.station-trial-zone {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  background: rgba(0, 145, 234, 0.05);
  border: 1px solid rgba(0, 145, 234, 0.15);
  padding: 24px;
}

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

.station-trial-list li {
  padding: 14px 16px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  font-family: var(--station-font-heading);
  font-size: 14px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.station-trial-list li:hover,
.station-trial-list li.station-active {
  border-left-color: var(--station-magenta);
  background: rgba(176, 190, 197, 0.08);
  color: var(--station-magenta);
}

.station-trial-screen {
  border: 2px solid var(--station-cyan);
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.15);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.station-trial-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Cinema Section --- */
.station-cinema-screen {
  background: var(--station-deepblue);
  border: 2px solid var(--station-cyan);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-height: 500px;
}

.station-cinema-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1);
}

.station-cinema-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.1) 0px,
    rgba(0, 0, 0, 0.1) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
}

.station-video-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.station-video-item {
  background: rgba(0, 145, 234, 0.08);
  border: 1px solid rgba(0, 145, 234, 0.2);
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.station-video-item:hover {
  border-color: var(--station-cyan);
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.15);
}

/* --- Register Form --- */
.station-register-card {
  background: rgba(0, 145, 234, 0.06);
  border: 1px solid rgba(0, 145, 234, 0.2);
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.1);
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.station-form-group {
  margin-bottom: 20px;
}

.station-form-group label {
  display: block;
  font-family: var(--station-font-heading);
  font-size: 14px;
  color: var(--station-magenta);
  margin-bottom: 8px;
}

.station-form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 145, 234, 0.1);
  border: none;
  border-bottom: 2px solid var(--station-cyan);
  color: var(--station-silver);
  font-family: var(--station-font-body);
  font-size: 16px;
  transition: all 0.3s ease;
  min-height: 44px;
}

.station-form-input:focus {
  outline: none;
  border-bottom-color: var(--station-magenta);
  box-shadow: 0 2px 10px rgba(176, 190, 197, 0.2);
  animation: station-neon-flicker 1s ease;
}

/* --- Billboard / Deposit --- */
.station-billboard {
  background: linear-gradient(135deg, rgba(176, 190, 197, 0.1), rgba(255, 23, 68, 0.05));
  border: 2px solid var(--station-magenta);
  box-shadow: 0 0 30px rgba(176, 190, 197, 0.15);
  padding: 48px;
  text-align: center;
  position: relative;
}

.station-billboard::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(45deg, var(--station-magenta), var(--station-cyan), var(--station-magenta));
  z-index: -1;
  opacity: 0.3;
  filter: blur(20px);
}

.station-energy-list {
  list-style: none;
  text-align: left;
  max-width: 600px;
  margin: 24px auto;
}

.station-energy-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 145, 234, 0.15);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.station-energy-list li::before {
  content: '▸';
  color: var(--station-cyan);
  font-size: 18px;
  flex-shrink: 0;
}

/* --- VIP Tower --- */
.station-vip-tower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.station-vip-image {
  border: 1px solid rgba(0, 145, 234, 0.2);
  overflow: hidden;
}

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

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

.station-floor-list {
  list-style: none;
}

.station-floor-item {
  padding: 20px;
  border-left: 3px solid var(--station-deepblue);
  margin-bottom: 16px;
  background: rgba(0, 145, 234, 0.05);
  transition: all 0.3s ease;
}

.station-floor-item:hover {
  border-left-color: var(--station-cyan);
  background: rgba(255, 23, 68, 0.05);
}

.station-floor-item h4 {
  color: var(--station-cyan);
  margin-bottom: 6px;
}

/* --- Security Section --- */
.station-security-zone {
  text-align: center;
  background: rgba(0, 145, 234, 0.04);
  padding: 60px 20px;
  border: 1px solid rgba(0, 145, 234, 0.1);
}

.station-badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.station-badge-item {
  text-align: center;
  max-width: 200px;
}

.station-badge-item img {
  width: 120px;
  height: auto;
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 10px rgba(0, 145, 234, 0.3));
}

/* --- Responsible Gaming --- */
.station-curfew-section {
  background: rgba(10, 10, 10, 0.95);
  padding: 48px 20px;
  border-top: 2px solid rgba(176, 190, 197, 0.2);
}

.station-curfew-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
}

.station-warning-icon {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(176, 190, 197, 0.4));
}

.station-curfew-text {
  color: var(--station-magenta);
  font-size: 14px;
  line-height: 1.8;
}

/* --- Footer --- */
.station-footer {
  background: rgba(5, 5, 5, 0.98);
  border-top: 1px solid rgba(0, 145, 234, 0.15);
  padding: 60px 20px 30px;
}

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

.station-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.station-footer-col h4 {
  color: var(--station-cyan);
  font-family: var(--station-font-heading);
  font-size: 16px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 23, 68, 0.2);
}

.station-footer-col ul {
  list-style: none;
}

.station-footer-col ul li {
  margin-bottom: 8px;
}

.station-footer-col ul li a {
  color: var(--station-magenta);
  font-size: 14px;
  transition: all 0.3s ease;
}

.station-footer-col ul li a:hover {
  color: var(--station-cyan);
  padding-left: 4px;
}

.station-footer-social {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.station-social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--station-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--station-cyan);
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: var(--station-font-heading);
}

.station-social-icon:hover {
  background: rgba(255, 23, 68, 0.1);
  box-shadow: 0 0 10px rgba(255, 23, 68, 0.3);
  color: var(--station-cyan);
}

.station-footer-bottom {
  border-top: 1px solid rgba(0, 145, 234, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.station-footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.station-footer-legal a {
  color: var(--station-magenta);
  font-size: 13px;
}

.station-footer-18plus {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--station-magenta);
  font-size: 13px;
}

.station-18-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--station-magenta);
  border-radius: 50%;
  font-family: var(--station-font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--station-magenta);
  box-shadow: 0 0 10px rgba(176, 190, 197, 0.3);
}

.station-payment-row {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.station-payment-icon {
  padding: 6px 12px;
  border: 1px solid rgba(176, 190, 197, 0.3);
  color: var(--station-magenta);
  font-size: 12px;
  font-family: var(--station-font-heading);
}

/* --- Events / Tasks --- */
.station-task-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.station-task-card {
  background: rgba(0, 145, 234, 0.06);
  border: 1px solid rgba(0, 145, 234, 0.2);
  padding: 24px;
  transition: all 0.3s ease;
}

.station-task-card:hover {
  border-color: var(--station-cyan);
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.15);
}

.station-task-card h4 {
  color: var(--station-magenta);
  margin-bottom: 8px;
}

/* --- Inner Page Content --- */
.station-content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.station-content-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-bottom: 40px;
}

.station-content-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.station-content-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.9));
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.station-article-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--station-silver);
}

.station-article-text p {
  margin-bottom: 1.2rem;
}

.station-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.station-image-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 1px solid rgba(0, 145, 234, 0.2);
  transition: all 0.3s ease;
}

.station-image-grid img:hover {
  border-color: var(--station-cyan);
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.2);
}

.station-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.station-info-table th {
  background: rgba(0, 145, 234, 0.15);
  color: var(--station-cyan);
  font-family: var(--station-font-heading);
  padding: 12px 16px;
  text-align: left;
  border: 1px solid rgba(0, 145, 234, 0.2);
}

.station-info-table td {
  padding: 12px 16px;
  border: 1px solid rgba(0, 145, 234, 0.1);
  color: var(--station-magenta);
}

.station-info-table tr:hover td {
  background: rgba(0, 145, 234, 0.05);
}

/* --- FAQ Section --- */
.station-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.station-faq-item {
  border: 1px solid rgba(0, 145, 234, 0.15);
  margin-bottom: 12px;
}

.station-faq-question {
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--station-font-heading);
  font-size: 15px;
  color: var(--station-cyan);
  background: rgba(0, 145, 234, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
}

.station-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--station-magenta);
  font-size: 14px;
  line-height: 1.8;
}

.station-faq-item.station-open .station-faq-answer {
  padding: 16px 20px;
  max-height: 500px;
}

/* --- APP Download --- */
.station-download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.station-download-card {
  background: rgba(0, 145, 234, 0.06);
  border: 1px solid rgba(0, 145, 234, 0.2);
  padding: 32px;
  text-align: center;
}

.station-download-card img {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border: 2px solid var(--station-cyan);
  padding: 8px;
}

/* --- Data Waterfall Canvas --- */
#dock-data-waterfall {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.06;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .station-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .station-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .station-vip-tower {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .station-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    border-top: 1px solid var(--station-cyan);
    z-index: 999;
  }

  .station-nav-links.station-nav-open {
    display: flex;
  }

  .station-nav-links li a {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 145, 234, 0.1);
  }

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

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

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

  .station-video-list {
    grid-template-columns: 1fr;
  }

  .station-task-grid {
    grid-template-columns: 1fr;
  }

  .station-curfew-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .station-warning-icon {
    margin: 0 auto;
  }

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

  .station-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .station-download-grid {
    grid-template-columns: 1fr;
  }

  .station-hero-section {
    min-height: 90vh;
  }

  .station-content-hero {
    height: 250px;
  }

  .station-billboard {
    padding: 32px 20px;
  }
}

@media (max-width: 414px) {
  .station-image-grid {
    grid-template-columns: 1fr;
  }

  .station-section {
    padding: 48px 16px;
  }

  .station-section-full {
    padding: 48px 16px;
  }
}

/* --- APP Download Section (Enhanced) --- */
.station-app-download-section {
  max-width: 900px;
  margin: 40px auto;
}

.station-app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.station-app-card {
  background: rgba(0, 145, 234, 0.06);
  border: 1px solid rgba(0, 145, 234, 0.2);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.station-app-card:hover {
  border-color: var(--station-cyan);
  box-shadow: 0 0 25px rgba(255, 23, 68, 0.15);
}

.station-app-card-header {
  margin-bottom: 24px;
}

.station-app-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid var(--station-cyan);
  font-family: var(--station-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--station-cyan);
  margin-bottom: 12px;
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.3);
}

.station-app-card-header h3 {
  font-size: 20px;
  color: var(--station-cyan);
}

.station-app-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.station-qr-image {
  width: 180px;
  height: 180px;
  border: 2px solid var(--station-cyan);
  padding: 8px;
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.15);
}

.station-app-desc {
  font-size: 14px;
  color: var(--station-magenta);
  line-height: 1.6;
}

.station-app-hint {
  text-align: center;
  margin-top: 24px;
  font-size: 15px;
  color: var(--station-magenta);
}

@media (max-width: 768px) {
  .station-app-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Jackpot Counter --- */
.station-jackpot-panel {
  text-align: center;
  padding: 40px 20px;
}

.station-jackpot-display {
  font-family: var(--station-font-heading);
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 700;
  color: var(--station-silver);
  text-shadow: 0 0 20px rgba(118, 255, 3, 0.5), 0 0 40px rgba(118, 255, 3, 0.3);
  letter-spacing: 4px;
  margin: 24px 0;
  animation: station-neon-flicker 4s infinite;
}

/* --- Timestamp Feed --- */
.station-timestamp-feed {
  max-height: 200px;
  overflow: hidden;
  position: relative;
}

.station-timestamp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(0, 145, 234, 0.08);
  font-size: 14px;
  color: var(--station-magenta);
}

.station-timestamp-time {
  color: var(--station-silver);
  font-family: var(--station-font-heading);
  font-size: 13px;
  white-space: nowrap;
}
