/* ============================================================
   NEON POKER STYLE - 霓虹扑克风主样式表
   Color System:
   #D500F9 - 午夜黑 (Midnight Purple)
   #FF1744 - 霓虹扑克洋红 (Neon Magenta)
   #FFD600 - 霓虹扑克青 (Neon Gold)
   #00C853 - 深空蓝 (Deep Space Green)
   #0A0A0A - 银灰 (Dark Base)
   ============================================================ */

/* === Font Faces === */
@font-face {
  font-family: 'Press Start 2P';
  src: url('../fonts/PressStart2P-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* === CSS Variables === */
:root {
  --neonpk-midnight: #D500F9;
  --neonpk-magenta: #FF1744;
  --neonpk-gold: #FFD600;
  --neonpk-deep: #00C853;
  --neonpk-dark: #0A0A0A;
  --neonpk-silver: #B0B0B0;
  --neonpk-bg: #0A0A0A;
  --neonpk-card-bg: rgba(0, 200, 83, 0.08);
  --neonpk-border-glow: 0 0 8px rgba(255, 23, 68, 0.6), 0 0 16px rgba(255, 23, 68, 0.3);
  --neonpk-border-glow-gold: 0 0 8px rgba(255, 214, 0, 0.6), 0 0 16px rgba(255, 214, 0, 0.3);
  --neonpk-text-glow: 0 0 10px rgba(255, 214, 0, 0.8), 0 0 20px rgba(255, 214, 0, 0.4);
  --neonpk-font-title: 'Press Start 2P', 'PingFang SC', sans-serif;
  --neonpk-font-body: 'Inter', 'Microsoft YaHei', sans-serif;
}

/* === Reset & Base === */
*, *::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(--neonpk-font-body);
  background-color: var(--neonpk-bg);
  color: var(--neonpk-silver);
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Circuit board background texture */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 200, 83, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 83, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--neonpk-font-title);
  color: var(--neonpk-gold);
  text-shadow: var(--neonpk-text-glow);
  line-height: 1.4;
  margin-bottom: 1rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.1rem; }
h4 { font-size: 0.95rem; }
h5 { font-size: 0.85rem; }
h6 { font-size: 0.75rem; }

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--neonpk-silver);
}

a {
  color: var(--neonpk-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--neonpk-magenta);
  text-shadow: 0 0 8px rgba(255, 23, 68, 0.6);
}

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

/* === Navigation === */
.neonpk-nav-bar {
  position: relative;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--neonpk-magenta);
  box-shadow: 0 2px 20px rgba(255, 23, 68, 0.3);
  z-index: 100;
  padding: 0;
}

.neonpk-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
}

.neonpk-logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.neonpk-logo-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--neonpk-magenta);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(213, 0, 249, 0.2), rgba(255, 23, 68, 0.2));
  box-shadow: var(--neonpk-border-glow);
}

.neonpk-logo-icon span {
  font-family: var(--neonpk-font-title);
  font-size: 0.7rem;
  color: var(--neonpk-gold);
  text-shadow: var(--neonpk-text-glow);
}

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

.neonpk-nav-item {
  position: relative;
}

.neonpk-nav-link {
  display: block;
  padding: 0.8rem 1.2rem;
  font-family: var(--neonpk-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neonpk-silver);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.neonpk-nav-link:hover {
  color: var(--neonpk-gold);
  text-shadow: var(--neonpk-text-glow);
}

.neonpk-nav-item.neonpk-active .neonpk-nav-link {
  color: var(--neonpk-gold);
  text-shadow: var(--neonpk-text-glow);
  background: rgba(255, 214, 0, 0.05);
  animation: neonpk-pulse-subtle 2s infinite;
}

.neonpk-nav-item.neonpk-active::after {
  content: '◆';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  color: var(--neonpk-magenta);
  animation: neonpk-flicker 1.5s infinite;
}

/* Mobile menu toggle */
.neonpk-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}

.neonpk-menu-bar {
  width: 24px;
  height: 3px;
  background: var(--neonpk-magenta);
  box-shadow: 0 0 6px rgba(255, 23, 68, 0.8);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* === Breadcrumb === */
.neonpk-breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--neonpk-silver);
  position: relative;
  z-index: 1;
}

.neonpk-breadcrumb a {
  color: var(--neonpk-gold);
  opacity: 0.8;
}

.neonpk-breadcrumb a:hover {
  opacity: 1;
}

.neonpk-breadcrumb-sep {
  margin: 0 0.5rem;
  color: var(--neonpk-magenta);
}

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

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

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

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

.neonpk-hero-title {
  font-size: 2.2rem;
  color: var(--neonpk-gold);
  text-shadow: 0 0 20px rgba(255, 214, 0, 0.8), 0 0 40px rgba(255, 214, 0, 0.4);
  margin-bottom: 1.2rem;
  animation: neonpk-flicker 3s infinite;
}

.neonpk-hero-subtitle {
  font-size: 1.2rem;
  color: var(--neonpk-silver);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.neonpk-hero-desc {
  font-size: 1rem;
  color: rgba(176, 176, 176, 0.9);
  margin-bottom: 2rem;
  line-height: 2;
}

.neonpk-btn-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Buttons === */
.neonpk-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--neonpk-magenta);
  color: var(--neonpk-dark);
  font-family: var(--neonpk-font-body);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  position: relative;
  overflow: hidden;
}

.neonpk-btn-primary:hover {
  background: #ff3d6e;
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.6);
  color: #fff;
  animation: neonpk-pulse-ripple 0.6s ease-out;
}

.neonpk-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--neonpk-gold);
  font-family: var(--neonpk-font-body);
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--neonpk-gold);
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
  transition: all 0.3s ease;
}

.neonpk-btn-secondary:hover {
  border-color: var(--neonpk-gold);
  box-shadow: var(--neonpk-border-glow-gold);
  color: var(--neonpk-gold);
}

/* === Section Container === */
.neonpk-section {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

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

.neonpk-section-title h2 {
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.neonpk-section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neonpk-magenta), transparent);
  box-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
}

/* === Card Grid === */
.neonpk-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.neonpk-game-card {
  background: var(--neonpk-card-bg);
  border: 1px solid rgba(255, 23, 68, 0.3);
  box-shadow: var(--neonpk-border-glow);
  padding: 1.5rem;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  position: relative;
  overflow: hidden;
}

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

.neonpk-game-card:hover {
  border-color: var(--neonpk-gold);
  box-shadow: var(--neonpk-border-glow-gold);
  transform: translateY(-4px);
}

.neonpk-game-card h3 {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.neonpk-card-status {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: var(--neonpk-silver);
}

.neonpk-card-status .neonpk-status-val {
  color: var(--neonpk-deep);
}

.neonpk-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 23, 68, 0.2);
}

.neonpk-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 23, 68, 0.15);
  border: 1px solid var(--neonpk-magenta);
  color: var(--neonpk-magenta);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 44px;
}

.neonpk-card-btn:hover {
  background: var(--neonpk-magenta);
  color: #fff;
  box-shadow: var(--neonpk-border-glow);
}

/* === Arcade / Trial Zone === */
.neonpk-arcade-section {
  background: rgba(0, 200, 83, 0.04);
  border: 1px solid rgba(0, 200, 83, 0.15);
  padding: 2rem;
  margin-bottom: 2rem;
}

.neonpk-arcade-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

.neonpk-arcade-list {
  list-style: none;
}

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

.neonpk-arcade-list li:hover,
.neonpk-arcade-list li.neonpk-arcade-active {
  border-left-color: var(--neonpk-magenta);
  background: rgba(255, 23, 68, 0.08);
  color: var(--neonpk-gold);
}

.neonpk-arcade-screen {
  border: 2px solid var(--neonpk-magenta);
  box-shadow: var(--neonpk-border-glow);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.8);
  overflow: hidden;
}

.neonpk-arcade-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Cinema Section === */
.neonpk-cinema-section {
  background: rgba(0, 200, 83, 0.04);
  border: 1px solid rgba(0, 200, 83, 0.1);
  padding: 2rem;
}

.neonpk-cinema-player {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--neonpk-dark);
  border: 2px solid var(--neonpk-gold);
  box-shadow: var(--neonpk-border-glow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

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

.neonpk-play-btn {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 23, 68, 0.8);
  border: 3px solid var(--neonpk-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.neonpk-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 24px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}

.neonpk-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 23, 68, 0.6);
}

.neonpk-video-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.neonpk-video-item {
  padding: 1rem;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 214, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.neonpk-video-item:hover {
  border-color: var(--neonpk-gold);
  box-shadow: var(--neonpk-border-glow-gold);
}

/* === Registration Form === */
.neonpk-register-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.neonpk-form-group {
  margin-bottom: 1.5rem;
}

.neonpk-form-label {
  display: block;
  font-size: 0.9rem;
  color: var(--neonpk-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.neonpk-form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(0, 200, 83, 0.06);
  border: none;
  border-bottom: 2px solid var(--neonpk-gold);
  color: var(--neonpk-silver);
  font-family: var(--neonpk-font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  min-height: 44px;
}

.neonpk-form-input:focus {
  outline: none;
  border-bottom-color: var(--neonpk-magenta);
  box-shadow: 0 2px 10px rgba(255, 23, 68, 0.3);
  animation: neonpk-flicker 1s ease;
}

/* === Promotion / Deposit Section === */
.neonpk-promo-billboard {
  background: linear-gradient(135deg, rgba(255, 23, 68, 0.1), rgba(213, 0, 249, 0.1));
  border: 2px solid var(--neonpk-magenta);
  box-shadow: var(--neonpk-border-glow);
  padding: 3rem;
  text-align: center;
  position: relative;
}

.neonpk-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.neonpk-promo-card {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 214, 0, 0.3);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.neonpk-promo-card:hover {
  border-color: var(--neonpk-gold);
  box-shadow: var(--neonpk-border-glow-gold);
}

.neonpk-promo-amount {
  font-family: var(--neonpk-font-title);
  font-size: 1.2rem;
  color: var(--neonpk-gold);
  text-shadow: var(--neonpk-text-glow);
  margin-bottom: 0.5rem;
}

/* === Events / Tasks === */
.neonpk-events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.neonpk-event-card {
  background: var(--neonpk-card-bg);
  border: 1px solid rgba(213, 0, 249, 0.3);
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.neonpk-event-card:hover {
  border-color: var(--neonpk-midnight);
  box-shadow: 0 0 15px rgba(213, 0, 249, 0.4);
}

.neonpk-event-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(213, 0, 249, 0.2);
  border: 1px solid var(--neonpk-midnight);
  font-size: 0.75rem;
  color: var(--neonpk-midnight);
  margin-bottom: 0.8rem;
}

/* === VIP Tower === */
.neonpk-vip-tower {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.neonpk-vip-floor {
  background: var(--neonpk-card-bg);
  border: 1px solid rgba(255, 214, 0, 0.2);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.neonpk-vip-floor:hover {
  border-color: var(--neonpk-gold);
  box-shadow: var(--neonpk-border-glow-gold);
  transform: translateY(-6px);
}

.neonpk-vip-level {
  font-family: var(--neonpk-font-title);
  font-size: 0.8rem;
  color: var(--neonpk-gold);
  margin-bottom: 0.8rem;
}

/* === Security Section === */
.neonpk-security-section {
  text-align: center;
  background: rgba(0, 200, 83, 0.04);
  border: 1px solid rgba(0, 200, 83, 0.15);
  padding: 3rem 2rem;
}

.neonpk-badge-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.neonpk-badge-item {
  width: 120px;
  height: 120px;
  border: 2px solid var(--neonpk-magenta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--neonpk-border-glow);
  transition: all 0.3s ease;
}

.neonpk-badge-item:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 23, 68, 0.5);
}

.neonpk-badge-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* === Responsible Gaming === */
.neonpk-responsible-section {
  background: rgba(10, 10, 10, 0.95);
  border-top: 2px solid rgba(255, 23, 68, 0.3);
  padding: 3rem 2rem;
}

.neonpk-responsible-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  align-items: start;
}

.neonpk-age-badge {
  width: 80px;
  height: 80px;
  border: 3px solid var(--neonpk-magenta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--neonpk-font-title);
  font-size: 1.2rem;
  color: var(--neonpk-magenta);
  box-shadow: var(--neonpk-border-glow);
  animation: neonpk-flicker 3s infinite;
}

/* === Footer === */
.neonpk-footer {
  background: rgba(10, 10, 10, 0.98);
  border-top: 2px solid var(--neonpk-magenta);
  box-shadow: 0 -4px 20px rgba(255, 23, 68, 0.2);
  padding: 3rem 1.5rem 1.5rem;
  position: relative;
  z-index: 1;
}

.neonpk-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

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

.neonpk-footer-col h4 {
  font-size: 0.8rem;
  color: var(--neonpk-gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 214, 0, 0.2);
}

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

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

.neonpk-footer-links a {
  color: var(--neonpk-silver);
  font-size: 0.85rem;
  opacity: 0.8;
}

.neonpk-footer-links a:hover {
  color: var(--neonpk-gold);
  opacity: 1;
}

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

.neonpk-social-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--neonpk-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--neonpk-magenta);
  transition: all 0.3s ease;
  font-family: var(--neonpk-font-title);
}

.neonpk-social-icon:hover {
  background: var(--neonpk-magenta);
  color: #fff;
  box-shadow: var(--neonpk-border-glow);
}

.neonpk-footer-license {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 23, 68, 0.15);
  font-size: 0.8rem;
  color: rgba(176, 176, 176, 0.6);
}

.neonpk-footer-payment {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.neonpk-payment-icon {
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(176, 176, 176, 0.2);
  font-size: 0.75rem;
  color: var(--neonpk-silver);
  opacity: 0.6;
}

.neonpk-footer-18plus {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 23, 68, 0.1);
}

.neonpk-18plus-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--neonpk-magenta);
  border-radius: 50%;
  font-family: var(--neonpk-font-title);
  font-size: 0.7rem;
  color: var(--neonpk-magenta);
  margin-bottom: 0.5rem;
  box-shadow: var(--neonpk-border-glow);
}

/* === Inner Page Styles === */
.neonpk-page-hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.neonpk-page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.75);
  z-index: 1;
}

.neonpk-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.neonpk-content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  position: relative;
  z-index: 1;
}

.neonpk-content-block {
  margin-bottom: 3rem;
}

.neonpk-content-img {
  width: 100%;
  max-width: 800px;
  margin: 1.5rem auto;
  display: block;
  border: 1px solid rgba(255, 23, 68, 0.2);
  box-shadow: var(--neonpk-border-glow);
}

.neonpk-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.neonpk-info-table th,
.neonpk-info-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border: 1px solid rgba(255, 23, 68, 0.15);
  font-size: 0.9rem;
}

.neonpk-info-table th {
  background: rgba(255, 23, 68, 0.1);
  color: var(--neonpk-gold);
  font-family: var(--neonpk-font-body);
  font-weight: 700;
}

.neonpk-info-table td {
  background: rgba(0, 200, 83, 0.03);
}

/* === APP Download Page === */
.neonpk-app-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.neonpk-qr-box {
  text-align: center;
  padding: 2rem;
  background: var(--neonpk-card-bg);
  border: 1px solid rgba(255, 214, 0, 0.2);
}

.neonpk-qr-box img {
  width: 200px;
  height: 200px;
  margin: 0 auto 1rem;
  border: 2px solid var(--neonpk-gold);
}

/* === Animations === */

/* 1. Neon Flicker */
@keyframes neonpk-flicker {
  0%, 100% { opacity: 1; }
  5% { opacity: 0.85; }
  10% { opacity: 1; }
  15% { opacity: 0.9; }
  20% { opacity: 1; }
  50% { opacity: 1; }
  55% { opacity: 0.8; }
  57% { opacity: 1; }
  80% { opacity: 1; }
  85% { opacity: 0.88; }
  87% { opacity: 1; }
}

/* 2. Hologram Reveal */
@keyframes neonpk-hologram-reveal {
  0% {
    opacity: 0;
    transform: translateY(20px) scaleY(0.95);
    filter: blur(4px) hue-rotate(20deg);
  }
  40% {
    opacity: 0.6;
    filter: blur(2px) hue-rotate(10deg);
  }
  70% {
    opacity: 0.9;
    filter: blur(0) hue-rotate(0);
    transform: translateY(5px) scaleY(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    filter: none;
  }
}

.neonpk-hologram-in {
  animation: neonpk-hologram-reveal 0.8s ease-out forwards;
}

/* 3. Pulse Ripple */
@keyframes neonpk-pulse-ripple {
  0% { box-shadow: 0 0 0 0 rgba(255, 23, 68, 0.6); }
  50% { box-shadow: 0 0 0 15px rgba(255, 23, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 23, 68, 0); }
}

@keyframes neonpk-pulse-subtle {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: inset 0 0 10px rgba(255, 214, 0, 0.1); }
}

/* 4. Data Waterfall - handled via canvas in JS */

/* === Responsive === */
@media (max-width: 1024px) {
  .neonpk-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .neonpk-vip-tower {
    grid-template-columns: repeat(2, 1fr);
  }
  .neonpk-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .neonpk-promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  h1 { font-size: 1.6rem; }
  .neonpk-hero-title { font-size: 1.8rem; }
}

@media (max-width: 768px) {
  .neonpk-menu-toggle {
    display: flex;
  }
  .neonpk-nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    border-bottom: 2px solid var(--neonpk-magenta);
    padding: 1rem 0;
  }
  .neonpk-nav-list.neonpk-nav-open {
    display: flex;
  }
  .neonpk-nav-link {
    padding: 1rem 1.5rem;
    justify-content: flex-start;
  }
  .neonpk-card-grid {
    grid-template-columns: 1fr;
  }
  .neonpk-arcade-grid {
    grid-template-columns: 1fr;
  }
  .neonpk-register-section {
    grid-template-columns: 1fr;
  }
  .neonpk-events-grid {
    grid-template-columns: 1fr;
  }
  .neonpk-vip-tower {
    grid-template-columns: 1fr;
  }
  .neonpk-promo-grid {
    grid-template-columns: 1fr;
  }
  .neonpk-video-list {
    grid-template-columns: 1fr;
  }
  .neonpk-footer-grid {
    grid-template-columns: 1fr;
  }
  .neonpk-responsible-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .neonpk-app-section {
    grid-template-columns: 1fr;
  }
  .neonpk-hero-title {
    font-size: 1.3rem;
  }
  .neonpk-hero-subtitle {
    font-size: 1rem;
  }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }
  body { font-size: 14px; }
}

@media (max-width: 414px) {
  .neonpk-hero-title {
    font-size: 1.1rem;
  }
  .neonpk-btn-group {
    flex-direction: column;
    align-items: center;
  }
  .neonpk-badge-row {
    gap: 1.5rem;
  }
}

/* === FAQ Section === */
.neonpk-faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.neonpk-faq-item {
  border: 1px solid rgba(255, 23, 68, 0.15);
  margin-bottom: 1rem;
  background: var(--neonpk-card-bg);
}

.neonpk-faq-question {
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--neonpk-gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  transition: all 0.3s ease;
}

.neonpk-faq-question:hover {
  background: rgba(255, 23, 68, 0.05);
}

.neonpk-faq-answer {
  padding: 0 1.5rem 1rem;
  display: none;
  line-height: 1.8;
}

.neonpk-faq-item.neonpk-faq-open .neonpk-faq-answer {
  display: block;
}

/* === Utility === */
.neonpk-text-magenta { color: var(--neonpk-magenta); }
.neonpk-text-gold { color: var(--neonpk-gold); }
.neonpk-text-green { color: var(--neonpk-deep); }
.neonpk-text-center { text-align: center; }
.neonpk-mt-2 { margin-top: 2rem; }
.neonpk-mb-2 { margin-bottom: 2rem; }
.neonpk-hidden { display: none; }
