body {
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
  margin: 0;
  padding: 0;
  background-color: #0a0a0a;
  z-index: 1;
}

@keyframes shimmer {
  0%   { opacity: 0.1; filter: drop-shadow(0 0 0px #00ffff) blur(2.3px); }
  25%  { opacity: 0.1; filter: drop-shadow(0 0 0px #00ffff) blur(2.3px); }
  50%  { opacity: 0.1; filter: drop-shadow(0 0 0px gold) blur(2.3px); }
  75%  { opacity: 0.1; filter: drop-shadow(0 0 0px gold) blur(2.3px); }
  100% { opacity: 0.1; filter: drop-shadow(0 0 2px #00ffff) blur(2.3px); }
}

body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-repeat: repeat;
  background-size: 400px auto; /* 可调小一点让数量多些 */
  background-position: top left;
  transform: rotate(-35deg); /* 更斜一点 */
  opacity: 0.0000001;
  animation: shimmer 10s infinite ease-in-out;
  z-index: -1;
  pointer-events: none;
}

body.no-watermark::before {
  display: none;
}



header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 10px 20px;
}
.logo img {
  height: 40px;
  vertical-align: middle;
}
.logo h1 {
  display: inline-block;
  margin-left: 10px;
  font-size: 20px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav a {
  color: #ffffff;
  text-decoration: none;
}
.banner {
  background: linear-gradient(to right, #111111, #4d3b1f, #d4af37);
  padding: 40px 20px;
  text-align: center;
    color: #000000;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  animation: glow 2s infinite alternate;
}
  
.game-list {
  padding: 20px;
}
.game-list h2 {
  text-align: center;
}
.game-card {
  display: inline-block;
  width: 200px;
  margin: 10px;
  text-align: center;
  background: #1e1e1e;
  border-radius: 40px;
  overflow: hidden;
}
.game-card img {
  width: 100%;
  height: auto;
}
.contact {
  padding: 20px;
  background-color: #111;
}
.contact img.qr {
  width: 150px;
  height: 150px;
  margin: 10px 0;
}
footer {
  text-align: center;
  padding: 10px;
  background-color: #000;
}
@keyframes glow {
  0% {
    text-shadow: 0 0 5px #ffd700, 0 0 10px #ffcc00;
  }
  50% {
    text-shadow: 0 0 15px #fff200, 0 0 30px #ffd700;
  }
  100% {
    text-shadow: 0 0 5px #ffd700, 0 0 10px #ffcc00;
  }
}

.game-title {
  color: #d4af37;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  position: relative; /* 为角标定位做准备 */
  /* 其他样式保持不变 */
}

.price-card {
  position: relative;
  width: 130px;
  border-radius: 16px;
  box-shadow: 0 0px 0px rgb(250, 249, 249);
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  transform: scale(1);
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: scale(1.05);
}

.card-top {
  background: linear-gradient(135deg, #1e1e1e, #2c2c2c);
  color: #ffd900;
  font-size: 14px;
  font-weight: bold;
  padding: 20px 10px;
  text-align: center;
   font-style: italic; 
   text-transform: uppercase;
}

.card-bottom {
  background: linear-gradient(to right, #000000);
  color: rgb(255, 255, 255);
  font-size: 15px;
  padding: 14px 10px;
  text-align: center;
  font-weight: bold;
   font-style: italic; 
   text-transform: uppercase;
}

.badge {
      position: absolute;
      top: 8px;
      right: 0;
      background: linear-gradient(135deg, #00f0ff, #0070ff);
      color: white;
      font-size: 10px;
      padding: 4px 10px;
      border-radius: 12px;
      font-weight: bold;
      box-shadow: 0 0 10px #00f0ff, 0 0 20px #0070ff;
      animation: pulseGlow 2s infinite;
}
.banner-container {
  width: 100%;
  height: 300%; /* 增加高度可能会更清晰 */
  overflow: hidden;
  position: relative;
}
.banner-container img {
  width: 100%;
  height: auto;
  display: block;
}
.section-title {
  font-size: 40px;        /* 控制字体大小，建议 32px~48px 之间 */
  font-weight: bold;      /* 加粗 */
  color: gold;            /* 你喜欢的颜色，也可以用 white 或渐变 */
  margin: 30px 0;         /* 上下间距 */
  font-family: 'Orbitron', sans-serif; /* 如果你引入科技感字体，可以加上 */
}
.search-bar {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
}

.search-bar input {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.back-button {
  display: inline-block;
  padding: 10px 20px;
  margin: 20px;
  background: linear-gradient(90deg, #0a2788, rgb(29, 117, 168));
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(26, 8, 105, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.back-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(38, 0, 255, 0.6);
}

.hidden {
  display: none;
}
.fade-in {
  animation: fadeInEffect 1s ease-in-out;
}

@keyframes fadeInEffect {
  0% {
    opacity: 0;
    transform: scale(1.05); /* 可选：微微放大再恢复，有动态感 */
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.info-section {
  padding: 40px 20px;
  background-color: #111;
  color: #fff;
  border-top: 1px solid #333;
}

.info-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffd700; /* 金色标题 */
}

.info-block {
  margin-bottom: 20px;
}

.info-block h3 {
  font-size: 20px;
  color: #ffa500;
  margin-bottom: 10px;
}

.info-block p {
  font-size: 16px;
  line-height: 1.6;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  padding: 20px;
  margin: 0 auto;
  max-width: 1000px;
}

.price-card {
  background-color: #2b2b2b;
  border-radius: 12px;
  padding: 0px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.price-grid {
  display: grid;
  gap: 12px;
  padding: 10px;
}

/* 可选：限制最大宽度（美观） */
@media (min-width: 1024px) {
  .price-grid {
    max-width: 800px;
    margin: auto;
  }
}

.currency-group {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.currency-label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
}
.page-title {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  font-family: 'Segoe UI', sans-serif;
  color: white;
}
.page-title span {
  color: #00ffff;
  font-size: 18px;
  letter-spacing: 1px;
}
.page-title strong {
  font-size: 28px;
  background: linear-gradient(90deg, #00ffff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}
a {
  text-decoration: none;
}
.notice-text {
  text-align: center;
  font-size: 15px;
  color: #ffcc00;
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.6;
  width: 100%;
  display: block;
}
br {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
