/* ============================================
   电子游艺综合平台 - 主样式表
   主题: 霓虹游戏厅复古风
   CSS前缀: dzyy-
   干扰前缀: neon-
   ============================================ */

/* --- Google Fonts Local Fallback --- */
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Orbitron Regular'), local('Orbitron-Regular');
}
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Orbitron Bold'), local('Orbitron-Bold');
}

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

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

body {
  font-family: 'Roboto', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background-color: #0F0F2D;
  color: #E0E0FF;
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: #FF6EC7;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #39FF14;
  text-shadow: 0 0 10px #39FF14, 0 0 20px #39FF14;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Segoe UI', sans-serif;
  color: #FF6EC7;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
}

/* --- 干扰标签隐藏 --- */
.neon-jammer-block {
  display: none;
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  left: -9999px;
}

/* --- Container --- */
.dzyy-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .dzyy-container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .dzyy-container {
    padding: 0 3rem;
  }
}

/* ============================================
   导航栏
   ============================================ */
.dzyy-header {
  width: 100%;
  background: rgba(15, 15, 45, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 110, 199, 0.2);
}

.dzyy-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dzyy-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF6EC7;
  text-shadow: 0 0 10px #FF6EC7, 0 0 20px #FF6EC7, 0 0 40px #FF6EC7;
  letter-spacing: 2px;
}

.dzyy-logo span {
  color: #39FF14;
  text-shadow: 0 0 10px #39FF14, 0 0 20px #39FF14;
}

.dzyy-nav-links {
  display: none;
  list-style: none;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .dzyy-nav-links {
    display: flex;
  }
}

.dzyy-nav-links li a {
  color: #FF6EC7;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.dzyy-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #39FF14;
  box-shadow: 0 0 8px #39FF14;
  transition: width 0.3s ease;
}

.dzyy-nav-links li a:hover::after,
.dzyy-nav-links li a.dzyy-active::after {
  width: 100%;
}

.dzyy-nav-links li a:hover {
  color: #fff;
  text-shadow: 0 0 10px #FF6EC7, 0 0 20px #FF6EC7;
}

/* 汉堡菜单 */
.dzyy-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1100;
}

@media (min-width: 1024px) {
  .dzyy-hamburger {
    display: none;
  }
}

.dzyy-hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #FF6EC7;
  border-radius: 3px;
  box-shadow: 0 0 8px #FF6EC7;
  transition: all 0.3s ease;
}

.dzyy-hamburger.dzyy-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.dzyy-hamburger.dzyy-open span:nth-child(2) {
  opacity: 0;
}

.dzyy-hamburger.dzyy-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* 移动端侧边菜单 */
.dzyy-mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(15, 15, 45, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1050;
  transition: left 0.4s ease;
  padding: 5rem 2rem 2rem;
  border-right: 1px solid rgba(255, 110, 199, 0.3);
}

.dzyy-mobile-menu.dzyy-open {
  left: 0;
}

.dzyy-mobile-menu ul {
  list-style: none;
}

.dzyy-mobile-menu ul li {
  margin-bottom: 1.5rem;
}

.dzyy-mobile-menu ul li a {
  color: #FF6EC7;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 110, 199, 0.15);
  transition: all 0.3s ease;
}

.dzyy-mobile-menu ul li a:hover {
  color: #39FF14;
  padding-left: 10px;
}

.dzyy-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dzyy-overlay.dzyy-open {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   英雄横幅 Hero Banner
   ============================================ */
.dzyy-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dzyy-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5);
}

.dzyy-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15,15,45,0.3) 0%, rgba(15,15,45,0.8) 100%);
  z-index: 1;
}

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

.dzyy-hero-title {
  font-size: 2rem;
  color: #FF6EC7;
  text-shadow: 0 0 20px #FF6EC7, 0 0 40px #FF6EC7, 0 0 80px #FF6EC7;
  margin-bottom: 1rem;
  animation: dzyy-neon-pulse 2s ease-in-out infinite alternate;
}

@media (min-width: 768px) {
  .dzyy-hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .dzyy-hero-title {
    font-size: 4rem;
  }
}

.dzyy-hero-subtitle {
  font-size: 1rem;
  color: #E0E0FF;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(224, 224, 255, 0.5);
}

@media (min-width: 768px) {
  .dzyy-hero-subtitle {
    font-size: 1.2rem;
  }
}

/* --- 按钮样式 --- */
.dzyy-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #FF6EC7;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 110, 199, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 110, 199, 0.3), inset 0 0 15px rgba(255, 110, 199, 0.1);
}

.dzyy-btn:hover {
  background: rgba(255, 110, 199, 0.35);
  box-shadow: 0 0 30px rgba(255, 110, 199, 0.6), inset 0 0 30px rgba(255, 110, 199, 0.2);
  text-shadow: 0 0 10px #fff;
  color: #fff;
  transform: translateY(-2px);
}

.dzyy-btn-green {
  border-color: #39FF14;
  background: rgba(57, 255, 20, 0.15);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.3), inset 0 0 15px rgba(57, 255, 20, 0.1);
}

.dzyy-btn-green:hover {
  background: rgba(57, 255, 20, 0.35);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.6), inset 0 0 30px rgba(57, 255, 20, 0.2);
}

/* ============================================
   Section 通用
   ============================================ */
.dzyy-section {
  padding: 4rem 0;
}

.dzyy-section-title {
  text-align: center;
  font-size: 1.8rem;
  color: #FF6EC7;
  text-shadow: 0 0 15px rgba(255, 110, 199, 0.5);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .dzyy-section-title {
    font-size: 2.2rem;
  }
}

.dzyy-section-subtitle {
  text-align: center;
  color: #E0E0FF;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
}

/* ============================================
   热门游戏推荐
   ============================================ */
.dzyy-featured-games {
  background: linear-gradient(180deg, #0F0F2D 0%, #1a1a3e 50%, #0F0F2D 100%);
}

.dzyy-game-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .dzyy-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dzyy-game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dzyy-game-card {
  background: rgba(30, 30, 70, 0.6);
  border: 1px solid rgba(255, 110, 199, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.dzyy-game-card:hover {
  transform: translateY(-8px);
  border-color: #FF6EC7;
  box-shadow: 0 10px 40px rgba(255, 110, 199, 0.3), 0 0 20px rgba(255, 110, 199, 0.1);
}

.dzyy-game-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dzyy-game-card-body {
  padding: 1.2rem;
}

.dzyy-game-card-title {
  font-size: 1.1rem;
  color: #FF6EC7;
  margin-bottom: 0.5rem;
}

.dzyy-game-card-desc {
  font-size: 0.85rem;
  color: #E0E0FF;
  opacity: 0.8;
  margin-bottom: 0.8rem;
}

.dzyy-game-rtp {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(57, 255, 20, 0.15);
  border: 1px solid #39FF14;
  border-radius: 20px;
  color: #39FF14;
  font-size: 0.8rem;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

/* ============================================
   品牌故事
   ============================================ */
.dzyy-brand-story {
  background: linear-gradient(135deg, #0F0F2D 0%, #1a0a2e 100%);
  position: relative;
  overflow: hidden;
}

.dzyy-brand-story::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 110, 199, 0.05) 0%, transparent 50%);
  animation: dzyy-rotate 20s linear infinite;
}

.dzyy-brand-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .dzyy-brand-content {
    flex-direction: row;
    gap: 4rem;
  }
}

.dzyy-brand-text {
  flex: 1;
}

.dzyy-brand-text p {
  font-size: 1rem;
  line-height: 2;
  color: #E0E0FF;
}

.dzyy-brand-image {
  flex: 1;
  max-width: 500px;
}

.dzyy-brand-image img {
  border-radius: 12px;
  border: 1px solid rgba(255, 110, 199, 0.3);
  box-shadow: 0 0 30px rgba(255, 110, 199, 0.2);
}

/* ============================================
   游戏分类导航
   ============================================ */
.dzyy-categories {
  background: #0F0F2D;
}

.dzyy-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .dzyy-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .dzyy-category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dzyy-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  background: rgba(30, 30, 70, 0.4);
  border: 1px solid rgba(255, 110, 199, 0.15);
  border-radius: 12px;
  transition: all 0.4s ease;
  text-align: center;
  cursor: pointer;
}

.dzyy-category-item:hover {
  border-color: #39FF14;
  box-shadow: 0 0 25px rgba(57, 255, 20, 0.3);
  transform: translateY(-5px);
}

.dzyy-category-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px currentColor;
}

.dzyy-category-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: #FF6EC7;
  font-weight: 700;
}

/* ============================================
   RTP排行榜
   ============================================ */
.dzyy-rtp-leaderboard {
  background: linear-gradient(180deg, #0F0F2D 0%, #0d0d28 100%);
}

.dzyy-rtp-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 110, 199, 0.2);
}

.dzyy-rtp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.dzyy-rtp-table thead {
  background: rgba(255, 110, 199, 0.15);
}

.dzyy-rtp-table th {
  padding: 1rem;
  text-align: left;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  color: #FF6EC7;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid rgba(255, 110, 199, 0.3);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.dzyy-rtp-table th:hover {
  color: #39FF14;
}

.dzyy-rtp-table td {
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 110, 199, 0.08);
}

.dzyy-rtp-table tbody tr {
  transition: all 0.3s ease;
}

.dzyy-rtp-table tbody tr:nth-child(even) {
  background: rgba(30, 30, 70, 0.3);
}

.dzyy-rtp-table tbody tr:hover {
  background: rgba(255, 110, 199, 0.1);
}

.dzyy-rtp-value {
  color: #39FF14;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

.dzyy-btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
}

/* ============================================
   最新活动
   ============================================ */
.dzyy-promotions {
  background: #0F0F2D;
}

.dzyy-promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .dzyy-promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dzyy-promo-card {
  background: rgba(30, 30, 70, 0.5);
  border: 1px solid rgba(255, 110, 199, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.dzyy-promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 110, 199, 0.2);
}

.dzyy-promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dzyy-promo-card-body {
  padding: 1.5rem;
}

.dzyy-promo-card-title {
  font-size: 1.1rem;
  color: #FF6EC7;
  margin-bottom: 0.5rem;
}

/* ============================================
   玩家见证
   ============================================ */
.dzyy-testimonials {
  background: linear-gradient(180deg, #0F0F2D 0%, #1a1a3e 100%);
}

.dzyy-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .dzyy-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dzyy-testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dzyy-testimonial-card {
  background: rgba(30, 30, 70, 0.5);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
}

.dzyy-testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: rgba(255, 110, 199, 0.2);
  position: absolute;
  top: 0;
  left: 1rem;
  font-family: serif;
  line-height: 1;
}

.dzyy-testimonial-text {
  font-size: 0.9rem;
  color: #E0E0FF;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
}

.dzyy-testimonial-author {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  color: #39FF14;
}

/* ============================================
   移动端体验
   ============================================ */
.dzyy-mobile-exp {
  background: #0F0F2D;
}

.dzyy-mobile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .dzyy-mobile-content {
    flex-direction: row;
    gap: 4rem;
  }
}

.dzyy-mobile-text {
  flex: 1;
}

.dzyy-mobile-mockup {
  flex: 1;
  max-width: 300px;
}

.dzyy-phone-frame {
  background: rgba(30, 30, 70, 0.6);
  border: 2px solid #FF6EC7;
  border-radius: 30px;
  padding: 1rem;
  box-shadow: 0 0 30px rgba(255, 110, 199, 0.3);
}

.dzyy-phone-frame img {
  border-radius: 20px;
}

/* ============================================
   合作伙伴
   ============================================ */
.dzyy-partners {
  background: linear-gradient(180deg, #0F0F2D 0%, #0d0d28 100%);
}

.dzyy-partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.dzyy-partner-item {
  padding: 1rem 2rem;
  background: rgba(30, 30, 70, 0.4);
  border: 1px solid rgba(255, 110, 199, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: #E0E0FF;
  font-weight: 700;
}

.dzyy-partner-item:hover {
  border-color: #39FF14;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
  color: #39FF14;
}

/* ============================================
   页脚前导 CTA
   ============================================ */
.dzyy-cta-section {
  background: linear-gradient(135deg, rgba(255, 110, 199, 0.15) 0%, rgba(57, 255, 20, 0.1) 100%);
  border-top: 1px solid rgba(255, 110, 199, 0.2);
  border-bottom: 1px solid rgba(255, 110, 199, 0.2);
  text-align: center;
  padding: 4rem 1rem;
}

.dzyy-cta-title {
  font-size: 2rem;
  color: #FF6EC7;
  text-shadow: 0 0 20px rgba(255, 110, 199, 0.5);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .dzyy-cta-title {
    font-size: 2.5rem;
  }
}

.dzyy-cta-text {
  color: #E0E0FF;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.dzyy-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   页脚
   ============================================ */
.dzyy-footer {
  background: #080820;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 110, 199, 0.15);
}

.dzyy-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .dzyy-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dzyy-footer-col h3 {
  font-size: 1rem;
  color: #FF6EC7;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 110, 199, 0.3);
}

.dzyy-footer-col p {
  font-size: 0.85rem;
  color: #E0E0FF;
  opacity: 0.7;
  line-height: 1.8;
}

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

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

.dzyy-footer-links li a {
  color: #E0E0FF;
  opacity: 0.7;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.dzyy-footer-links li a:hover {
  opacity: 1;
  color: #39FF14;
}

.dzyy-footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dzyy-footer-partner-tag {
  padding: 0.3rem 0.6rem;
  background: rgba(30, 30, 70, 0.5);
  border: 1px solid rgba(255, 110, 199, 0.15);
  border-radius: 4px;
  font-size: 0.75rem;
  color: #E0E0FF;
  opacity: 0.7;
}

.dzyy-footer-bottom {
  border-top: 1px solid rgba(255, 110, 199, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.dzyy-footer-bottom p {
  font-size: 0.75rem;
  color: #E0E0FF;
  opacity: 0.5;
  margin-bottom: 0.3rem;
}

.dzyy-footer-bottom a {
  color: #E0E0FF;
  opacity: 0.5;
  font-size: 0.75rem;
}

.dzyy-footer-bottom a:hover {
  opacity: 1;
  color: #FF6EC7;
}

.dzyy-footer-cert {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.3rem 0.8rem;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 4px;
  font-size: 0.7rem;
  color: #39FF14;
}

/* ============================================
   内页通用
   ============================================ */
.dzyy-page-banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .dzyy-page-banner {
    height: 400px;
  }
}

.dzyy-page-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.dzyy-page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem;
}

.dzyy-page-banner h1 {
  font-size: 2rem;
  text-shadow: 0 0 20px #FF6EC7, 0 0 40px #FF6EC7;
}

@media (min-width: 768px) {
  .dzyy-page-banner h1 {
    font-size: 3rem;
  }
}

.dzyy-page-content {
  padding: 3rem 0;
}

.dzyy-page-content p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1.5rem;
}

.dzyy-page-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.dzyy-content-img {
  border-radius: 12px;
  margin: 2rem 0;
  border: 1px solid rgba(255, 110, 199, 0.2);
  box-shadow: 0 0 20px rgba(255, 110, 199, 0.1);
}

/* ============================================
   游艺天地 - RTP表格页
   ============================================ */
.dzyy-paradise-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .dzyy-paradise-controls {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.dzyy-search-input {
  padding: 0.8rem 1.2rem;
  background: rgba(30, 30, 70, 0.6);
  border: 1px solid rgba(255, 110, 199, 0.3);
  border-radius: 8px;
  color: #E0E0FF;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 350px;
}

.dzyy-search-input:focus {
  border-color: #39FF14;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.dzyy-search-input::placeholder {
  color: rgba(224, 224, 255, 0.4);
}

.dzyy-filter-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dzyy-filter-btn {
  padding: 0.5rem 1rem;
  background: rgba(30, 30, 70, 0.5);
  border: 1px solid rgba(255, 110, 199, 0.2);
  border-radius: 6px;
  color: #E0E0FF;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dzyy-filter-btn:hover,
.dzyy-filter-btn.dzyy-active {
  border-color: #FF6EC7;
  background: rgba(255, 110, 199, 0.15);
  color: #FF6EC7;
}

/* ============================================
   APP下载页
   ============================================ */
.dzyy-app-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dzyy-app-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  z-index: 0;
}

.dzyy-app-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 700px;
}

.dzyy-app-title {
  font-size: 2.5rem;
  color: #FF6EC7;
  text-shadow: 0 0 20px #FF6EC7, 0 0 40px #FF6EC7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .dzyy-app-title {
    font-size: 3.5rem;
  }
}

.dzyy-app-subtitle {
  font-size: 1rem;
  color: #E0E0FF;
  margin-bottom: 2rem;
  line-height: 2;
}

.dzyy-qr-code {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #39FF14;
  border-radius: 12px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
  position: relative;
  overflow: hidden;
}

.dzyy-qr-code::after {
  content: 'QR CODE';
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  color: #39FF14;
  text-shadow: 0 0 10px #39FF14;
}

.dzyy-download-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   动画
   ============================================ */
@keyframes dzyy-neon-pulse {
  0% {
    text-shadow: 0 0 10px #FF6EC7, 0 0 20px #FF6EC7, 0 0 40px #FF6EC7;
  }
  100% {
    text-shadow: 0 0 20px #FF6EC7, 0 0 40px #FF6EC7, 0 0 80px #FF6EC7, 0 0 120px #FF6EC7;
  }
}

@keyframes dzyy-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes dzyy-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes dzyy-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(57, 255, 20, 0.3); }
  50% { box-shadow: 0 0 25px rgba(57, 255, 20, 0.6); }
}

/* --- Particles Background --- */
.dzyy-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.dzyy-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #FF6EC7;
  border-radius: 50%;
  opacity: 0.3;
  animation: dzyy-particle-float linear infinite;
}

@keyframes dzyy-particle-float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-10vh) rotate(720deg);
    opacity: 0;
  }
}

/* ============================================
   响应式补充
   ============================================ */
@media (max-width: 360px) {
  html {
    font-size: 14px;
  }
  .dzyy-hero-title {
    font-size: 1.5rem;
  }
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0F0F2D;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 110, 199, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 110, 199, 0.5);
}

/* --- Selection --- */
::selection {
  background: rgba(255, 110, 199, 0.3);
  color: #fff;
}

/* ============================================
   APP下载页 - 功能卡片 & 下载按钮
   ============================================ */
.dzyy-app-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .dzyy-app-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dzyy-app-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dzyy-app-feature-card {
  background: rgba(30, 30, 70, 0.5);
  border: 1px solid rgba(255, 110, 199, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.dzyy-app-feature-card:hover {
  border-color: #39FF14;
  box-shadow: 0 0 25px rgba(57, 255, 20, 0.2);
  transform: translateY(-5px);
}

.dzyy-app-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.dzyy-app-feature-card h3 {
  font-size: 1rem;
  color: #FF6EC7;
  margin-bottom: 0.5rem;
}

.dzyy-app-feature-card p {
  font-size: 0.85rem;
  color: #E0E0FF;
  opacity: 0.8;
  line-height: 1.6;
}

.dzyy-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: rgba(30, 30, 70, 0.6);
  border: 2px solid #FF6EC7;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
}

.dzyy-download-btn:hover {
  background: rgba(255, 110, 199, 0.2);
  box-shadow: 0 0 25px rgba(255, 110, 199, 0.4);
  transform: translateY(-3px);
  color: #fff;
}

.dzyy-download-icon {
  font-size: 1.8rem;
}

.dzyy-download-text {
  text-align: left;
}

.dzyy-download-text small {
  display: block;
  font-size: 0.7rem;
  color: #E0E0FF;
  opacity: 0.7;
}

.dzyy-download-text strong {
  display: block;
  font-size: 1rem;
  color: #FF6EC7;
  font-family: 'Orbitron', sans-serif;
}
