﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/* ====================== 黑金自定义滚动条 ====================== */
/* 整体滚动条宽度 */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* 滚动条轨道（背景）*/
::-webkit-scrollbar-track {
  background-color: #1a1a1a;
  /* 深黑底色 */
  border-radius: 4px;
}

/* 滚动条滑块（可拖动部分）*/
::-webkit-scrollbar-thumb {
  background: #c9b896;
  /* 黑渐变 */
  border-radius: 4px;
  border: 1px solid #444;
  transition: all 0.3s ease;
}

/* 鼠标悬停滑块时（金色高亮）*/
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #d4c4a8 0%, #b9a888 100%);
  /* 你的页面金色 */
  box-shadow: 0 0 5px rgba(212, 196, 168, 0.3);
}

/* 滚动条两端按钮（隐藏更简洁）*/
::-webkit-scrollbar-button {
  display: none;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

body {
  background: radial-gradient(71.38% 400px at 47.01% 100%, rgba(130, 110, 64, 1) 0%, rgba(34, 34, 34, 1) 100%);
  color: #d4c4a8;
  margin: 0;
  padding: 0;
  font-family: PingFang SC, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
}

/* 顶部导航栏 - 固定悬浮 */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: radial-gradient(50% 50.01% at 46.74% 0%, rgba(66, 68, 69, 1) 0%, rgba(27, 29, 31, 1) 100%);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-blend-mode: multiply;
  border: 1px solid rgba(242, 210, 155, 0.1);
}

/* 内部容器，限制1440px，和你原来一致 */
.navbar-inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.logo {
  /* width:120px;
	*/
  max-height: 80px;
}

.logo img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 40px;
}

.nav-link {
  position: relative;
  color: rgb(255 242 220 / var(--tw-text-opacity, 1));
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  padding: 5px 10px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #c9b896;
}

.nav-link.active {
  color: rgb(255 242 220 / var(--tw-text-opacity, 1));
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 50%;
  width: 0;
  height: 40px;
  /* 高度根据你的图片高度调整 */
  background: url("../assets/img/04.png") no-repeat center center;
  background-size: 100% 100%;
  /* 拉伸铺满 */
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

/* hover 时显示 */
.nav-link:hover::after {
  width: 100%;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
  color: rgb(255 242 220 / var(--tw-text-opacity, 1));
}

.register-btn {
  background: linear-gradient(90deg, #ebc077, #f9e4bf 64.671%, #f2d29b 84.431%);
  color: #1a1400;
  padding: 6px 16px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  /* 放大过渡变慢 */
  transition: background-color 0.3s ease, transform 0.4s ease;
}

/* 白光流光层 默认一直动 */
.register-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: shine 1.2s infinite linear;
}

/* hover：停止流光 + 背景加深 + 轻微放大 */
.register-btn:hover::after {
  animation: none;
}

.register-btn:hover {
  background-color: #c91515;
  transform: scale(1.05);
  /* 只放大5% 很轻微 */
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Banner 视频通栏 */
.banner {
  /* 删掉 width:100vw 和 left/right/margin 那一堆 */
  width: 100%;
  /* 用 100% 而不是 100vw */
  height: auto;
  margin-top: 80px;
  /* min-height: 500px; */
  position: relative;
  overflow: hidden;
  max-height: 500px;
}

.banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(to top, rgb(34, 34, 34), transparent);
  pointer-events: none;
  z-index: 0;
}


.banner video {
  width: 100%;
  height: auto;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background:linear-gradient(to bottom,rgba(0,0,0,0.2),rgba(0,0,0,0.6));
	*/
}

/* 游戏卡片区域 */
.games-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 0;
  /* 移除整体背景图 */
}

/* 功能卡片容器 */
.feature-cards {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
  margin: 30px auto;
  max-width: 1440px;
  padding: 0 10px;
  box-sizing: border-box;
  margin-top: 0px;
}

/* 单个卡片 */
.feature-card {
  flex: 1;
  min-width: 160px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 25px 15px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

/* 卡片hover微提升 */
.feature-card:hover {
  transform: translateY(-3px);
  border-color: #c9b896;
  box-shadow: 0 5px 15px rgba(201, 184, 150, 0.15);
}

/* 右上角标签 */
.card-tag {
  /* position:absolute;
	*/
  position: absolute;
  top: -1px;
  right: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 30px;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  color: rgb(255 242 220 / var(--tw-text-opacity, 1));
  letter-spacing: -.3125px;
  white-space: nowrap;
  background: linear-gradient(103.422deg, rgba(240, 205, 144, 0.106) 0%, rgba(247, 223, 182, 0.28) 97.743%);
  border-bottom-left-radius: 20px;
  /* top:-10px;
	*/
  /* left:50%;
	*/
  /* transform:translateX(-50%);
	*/
  /* background:radial-gradient(71.38% 71.38% at 47.01% -25.17%,rgba(130,110,64,0.6) 0%,rgba(28,28,31,0.6) 100%);
	*/
  /* color:#1a1a1a;
	*/
  /* font-size:12px;
	*/
  /* padding:3px 10px;
	*/
  /* border-radius:3px;
	*/
  /* font-weight:bold;
	*/
  /* padding-left:2rem;
	*/
  /* padding-right:2rem;
	*/
  /* border-radius:9999px;
	*/
  /* --tw-text-opacity:1;
	*/
  /* background:linear-gradient(90deg,#ebc077,#f9e4bf 64.671%,#f2d29b 84.431%);
	*/
  /* color:#1a1a1a;
	*/
  /* color:rgb(249 228 190 / var(--tw-text-opacity,1));
	*/
}

/* 卡片标题 */
.card-title {
  color: #c9b896;
  font-size: 24px;
  font-weight: bold;
  margin: 15px 0 10px;
}

/* 卡片描述 */
.card-desc {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* 卡片按钮 - 主色调边框风格 */
.card-btn {
  display: inline-block;
  padding: 8px 22px;
  border: 1px solid #c9b896;
  color: #c9b896;
  text-decoration: none;
  font-size: 14px;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.card-btn:hover {
  background: #c9b896;
  color: #1a1a1a;
}

/* 游戏区域标题栏 - 完全版 */
.section-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
}

/* 线条：加长到150px，内侧金色外侧透明 */
.section-title .line {
  width: 150px;
  height: 2px;
}

.section-title .line.left {
  /* 菱形紧贴线条，margin只留极小间距 */
  margin-right: 0px;
  background: linear-gradient(90deg, transparent, #c9b896);
}

.section-title .line.right {
  margin-left: 0px;
  background: linear-gradient(90deg, #c9b896, transparent);
}

/* 菱形：缩小并紧贴线条 */
.section-title .diamond {
  color: #c9b896;
  font-size: 14px;
  /* 缩小菱形 */
  line-height: 1;
}

/* 文字样式：去掉流光 */
.section-title .title-text {
  color: #c9b896;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0 15px;
}

/* 整体筛选栏：标签居左，搜索框居右 */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px auto 0px;
  padding: 0 10px;
  max-width: 1440px;
  box-sizing: border-box;
}

/* 左侧标签组 */
.filter-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* 胶囊标签样式 - 素净版 */
.filter-tabs .tab-item {
  display: inline-block;
  padding: 6px 20px;
  background: #2a2a2a;
  /* 深色背景，和页面底色融合 */
  color: #c9b896;
  /* 主色调文字 */
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color 0.3s ease, transform 0.4s ease;
}

/* 选中状态 - 主色调高亮 */
.filter-tabs .tab-item.active {
  background: #c9b896;
  color: #1a1a1a;
  /* 深色文字，保证可读性 */
}

/* hover 效果 - 轻微提亮 */
.filter-tabs .tab-item:hover {
  background: #c9b896;
  color: #1a1a1a;
  transform: scale(1.02);
}

/* 右侧搜索框容器 - 深色背景，素净风格 */
.search-box {
  display: flex;
  align-items: center;
  background: #2a2a2a;
  border-radius: 999px;
  overflow: hidden;
  height: 32px;
  border: 1px solid #444;
}

/* 搜索输入框 */
.search-input {
  border: none;
  outline: none;
  background: transparent;
  padding: 0 15px;
  height: 100%;
  font-size: 14px;
  color: #c9b896;
}

.search-input::placeholder {
  color: #ccc;
}

/* 搜索按钮 - 主色调 */
.search-btn {
  background: #c9b896;
  color: #1a1a1a;
  border: none;
  padding: 0 18px;
  height: 100%;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background: #b5a482;
  /* 主色调加深 */
}

.games-grid {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 10px;
  box-sizing: border-box;
}

/* ========== 游戏卡片 严格按比例分配 ========== */
.game-card {
  width: 100%;
  min-height: 380px;
  /* aspect-ratio: 1 / 1; */
  /* background-image: url(//esa.zhongguanjituan.com/assets/darkstyle/game_bg.png); */
  /* background-image: url(~assets/img/game_bg.png); */
  /* background-color:#111;
	*/
  background: #fff;
  /* background-repeat: no-repeat; */
  /* background-size: 100% 100%; */
  /* border:1px solid #333;
	*/
  /* border-radius:4px;
	*/
  overflow: hidden;
  position: relative;
  /* padding: 68px 28px 18px; */
  padding: 2px;
  transition: transform 0.3s;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

.game-card:hover {
  transform: translateY(-5px);
  /* box-shadow:0 10px 20px rgba(0,0,0,0.5);
	*/
}

/* ========== 卡片内容区 严格 300*260 居中 ========== */
.card-content {
  /* width: 300px; */
  width: 100%;
  height: 340px;
  /* width: 570px;
    height: 550px; */
  position: relative;
}

/* card-top 基础定位 */
.card-top {
  position: relative;
  overflow: hidden;
  /* max-height: 400px;
    height: 380px; */
  /* max-height: 168px;
  height: 158px; */
  max-height: 240px;
  height: 240px;
}

/* 图片层级压低，在最底层 */
.card-top .card-cover {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 240px;
  /* height: 100%;
  object-fit: cover; */
}

/* 黑色变暗蒙层 */
.card-top::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.7); */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.card-top:hover::before {
  opacity: 1;
}

/* 进入官网按钮 层级高于蒙层 */
.enter-btn {
  position: absolute;
  left: 0;
  top: 0;
  /* transform: translate(-50%, -50%); */
  z-index: 3;
  color: #d4c4a8;
  font-size: 14px;
  text-decoration: none;
  padding: 8px 26px;
  border: 1px solid #d4c4a8;
  border-radius: 100px;
  background: transparent;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  width: 100%;
  height: 100%;
}

.card-top:hover .enter-btn {
  opacity: 1;
}

.enter-btn:hover {
  background: rgba(212, 196, 168, 0.15);
}

/* 重点：热门角标最高层级，盖过蒙层 */
.hot-tag {
  position: absolute;
  top: 0;
  right: 0px;
  width: 70px;
  height: 70px;
  z-index: 99 !important;
}

.card-top img {
  border-radius: 4px 4px 0 0 / 4px 4px 0px 0px;
  /* max-height: 158px; */
  max-height: 240px;
}

.card-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-info {
  padding: 8px 18px;
}

/* 标题 + 类型 同行左右排布 */
.game-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0px;
}

.game-name {
  font-size: 24px;
  font-weight: bold;
  color: #373737;
  margin-bottom: 0;
}

.game-type {
  font-size: 16px;
  color: #373737;
  opacity: 0.8;
  white-space: nowrap;
}

/* 简介样式 */
.game-desc {
  font-size: 14px;
  color: #d90404;
  line-height: 1.6;
  margin: 10px 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: block;
  border-bottom: 1px dashed #d9d5d6;
  border-top: 1px dashed #d9d5d6;
  padding: 8px 0;
}

/* 四个按钮容器均分 */
.game-btn-group {
  display: flex;
  gap: 6px;
  justify-content: space-between;
}

/* 渐变金色按钮 主色调 #c9b896 */
.game-link-btn {
  flex: 1;
  /* opacity:0.8;
	*/
  text-align: center;
  padding: 5px 0;
  /* font-size:12px;
	*/
  text-decoration: none;
  border-radius: 4px;
  /* background:linear-gradient(135deg,#c9b896,#b5a482);
	*/
  /* background:linear-gradient(103.422deg,rgba(240,205,144,0.106) 0%,rgba(247,223,182,0.28) 97.743%);
	*/
  /* color:rgb(255 242 220 / var(--tw-text-opacity,1));
	*/
  /* font-weight:400;
	*/
  /* transition:all 0.3s
ease;
	*/
  /* border:1px solid transparent;
	*/
  border: 1px solid rgba(242, 210, 155, 0.28);
  /* direction:ltr;
	*/
  /* background: radial-gradient(71.38% 71.38% at 47.01% -25.17%, rgba(130, 110, 64, 1) 0%, rgba(28, 28, 31, 0.2) 100%); */
  /* color: #c9b896; */
  /* padding:10px 26px !important;
	*/
  /* border-radius:6px !important;
	*/
  background: #555;
  color: #fff;
  cursor: pointer !important;
  /* font-weight:500 !important;
	*/
  transition: all 0.2s !important;
}

.game-link-btn:hover {
  opacity: 0.7;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(201, 184, 150, 0.25);
}
.game-link-btn img{
  display: inline;
}
.game-meta {
  font-size: 11px;
  color: #ccc;
  line-height: 1.6;
}

.stars {
  color: #f2d29b;
  margin: 6px 0;
}

/* 页脚 */
footer {
  /* 通栏铺满全屏 */
  width: 100%;
  /*background:radial-gradient(71.38% 71.38% at 47.01% -25.17%,rgba(130,110,64,0.6) 0%,rgba(28,28,31,0.6) 100%);
	*/
  background: #1A1A1A;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .footer-inner a,
footer .footer-inner a:link,
footer .footer-inner a:visited,
footer .footer-inner a:hover,
footer .footer-inner a:active {
  color: #cccfff4d !important;
  text-decoration: none !important;
  line-height: 30px;
}

/* footer 内 img：最高优先级 */
footer .footer-inner p img {
  max-height: 35px !important;
  width: auto !important;
  margin: 15px 10px !important;
  /* 左右间距 20px，单图左右 10px */
  opacity: 0.6 !important;
  transition: opacity 0.3s ease !important;
}

footer .footer-inner p img:hover {
  opacity: 1 !important;
}

/* 新增footer内部容器，限制1440px */
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  color: #cccfff4d;
  font-size: 12px;
  line-height: 1.8;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ========== 冠名弹窗遮罩 + 弹窗主体 完整版 ========== */
.popup-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.popup-mask.show {
  opacity: 1;
  visibility: visible;
}

.guanming-popup {
  width: 480px;
  background: #1a1a1a;
  border: 1px solid #c9b896;
  border-radius: 12px;
  padding: 30px;
  transform: scale(0.9);
  transition: transform 0.4s ease;
  position: relative;
  box-sizing: border-box;
  border: 1px solid rgba(242, 210, 155, 0.28);
  /* direction:ltr;
	*/
  /*background: radial-gradient(71.38% 71.38% at 47.01% -25.17%, rgba(130, 110, 64, 0.9) 0%, rgba(28, 28, 31, 0.9) 100%);*/
}

.popup-mask.show .guanming-popup {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 26px;
  color: #c9b896;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
}

.popup-close:hover {
  color: #ccc;
  transform: scale(1.1);
}

.popup-title {
  text-align: center;
  font-size: 22px;
  color: #c9b896;
  font-weight: bold;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.form-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.form-label {
  color: #c9b896;
  font-size: 14px;
  width: 120px;
  flex-shrink: 0;
}

.form-input,
.form-select {
  flex: 1;
  margin-left: 15px;
  padding: 8px 12px;
  background: #252525;
  border: 1px solid #333;
  color: #d4c4a8;
  border-radius: 4px;
  outline: none;
  transition: border 0.3s;
}

.form-input:focus,
.form-select:focus {
  border-color: #c9b896;
}

.form-text {
  flex: 1;
  margin-left: 15px;
  color: #00ff00;
  font-size: 14px;
}

.submit-btn {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background: linear-gradient(90deg, #ebc077, #f9e4bf 64.671%, #f2d29b 84.431%);
  color: #1a1a1a;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 184, 150, 0.3);
}

/* ========== 自定义Radio 完美居中版 ========== */
.radio-group {
  display: flex;
  gap: 25px;
  margin-left: 15px;
}

/* 隐藏原生单选 */
.radio-group input[type="radio"] {
  display: none;
}

.radio-group label {
  display: flex;
  align-items: center;
  color: #c9b896;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

/* 外圆 */
.radio-group label::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #c9b896;
  background-color: #1a1a1a;
  margin-right: 6px;
  box-sizing: border-box;
}

/* 选中内圆点 绝对正中间 */
.radio-group input[type="radio"]:checked+label::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #c9b896;
  border-radius: 50%;
}

/* 日期时间选择器 图标改为主色调 #c9b896 */
.form-input[type="date"]::-webkit-calendar-picker-indicator,
.form-input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(72%) sepia(20%) saturate(250%) hue-rotate(35deg) brightness(92%);
  cursor: pointer;
  transition: all 0.25s ease;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator:hover,
.form-input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover {
  filter: invert(85%) sepia(25%) saturate(300%) hue-rotate(35deg) brightness(100%);
}

/* 微信登录遮罩层 wechatModal */
#wechatModal {
  background: rgba(0, 0, 0, 0.8);
}

/* 登录弹窗主体，使用你指定的背景图 */
.login-popup {
  width: 400px;
  background: url('//esa.zhongguanjituan.com/assets/darkstyle/loginbg.png') center center / cover no-repeat;
  border-radius: 12px;
  padding: 40px 30px 30px;
  position: relative;
  box-sizing: border-box;
  text-align: center;
}

/* 右上角关闭按钮 */
.login-popup .popup-close {
  position: absolute;
  top: 35px;
  right: 35px;
  font-size: 28px;
  color: #c9b896;
  cursor: pointer;
  font-weight: bold;
  line-height: 1;
  transition: all 0.3s ease;
}

.login-popup .popup-close:hover {
  color: #ccc;
  transform: scale(1.1);
}

/* 二维码容器 */
.qr-code-box {
  margin-bottom: 25px;
}

/* 二维码图片 */
.qr-code {
  width: 180px;
  height: 180px;
  /* background:#ccc;
	*/
  border-radius: 6px;
  /* padding:10px;
	*/
  margin: 0 auto 15px;
  box-sizing: border-box;
}

.qr-code img {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(202, 184, 150, .5);
  padding: 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, .2);
  margin-bottom: 0;
  transition: all .3s ease;
  margin-top: 10px;
}

/* 刷新按钮 */
.refresh-btn {
  background: transparent;
  border: 1px solid #c9b896;
  color: #c9b896;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.refresh-btn:hover {
  background: #c9b896;
  color: #1a1a1a;
}

/* 登录提示文字 */
.login-tip {
  color: #c9b896;
  font-size: 18px;
  margin-top: 50px;
}

/* 福利列表 */
.benefit-list {
  text-align: left;
}

.benefit-item {
  /* display:flex;
	*/
  align-items: center;
  color: #c9b896;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}

.gift-icon {
  margin-right: 10px;
  font-size: 20px;
}

/* ========== 成长福利 / 会员等级页面 适配黑金风 + #c9b896 主色调 ========== */
.vip-benefit-section {
  max-width: 1440px;
  margin: 0px auto;
  padding: 0 20px;
  box-sizing: border-box;
  margin-bottom: 40px;
}

.vip-header {
  text-align: center;
  margin-bottom: 30px;
}

.vip-icon {
  font-size: 28px;
  color: #c9b896;
  margin-right: 10px;
}

.vip-title {
  display: inline-block;
  font-size: 24px;
  color: #c9b896;
  font-weight: bold;
  letter-spacing: 2px;
}

/* 表格容器 */
.vip-table-wrap {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
}

.vip-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.vip-table thead {
  background: #252525;
}

.vip-table th {
  padding: 15px 10px;
  color: #c9b896;
  font-size: 14px;
  font-weight: normal;
}

.vip-table td {
  padding: 15px 10px;
  color: #ccc;
  font-size: 14px;
  border-top: 1px solid #2a2a2a;
}

/* 表格行 hover 交互效果 */
.vip-table tbody tr:hover {
  background-color: rgba(201, 184, 150, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.vip-table tbody tr:hover td {
  color: #c9b896;
}

/* VIP等级高亮 */
.vip-level {
  color: #c9b896;
  font-weight: bold;
}

.vip-badge {
  color: #c9b896;
}

.check-icon {
  color: #c9b896;
  font-weight: bold;
}

/* 底部三个卡片 —— 自适应宽度，撑满整行 */
.vip-features {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  border: 1px solid rgba(242, 210, 155, 0.28);
  /* direction:ltr;	*/
  background: radial-gradient(71.38% 71.38% at 47.01% -25.17%, rgba(130, 110, 64, 0.5) 0%, rgba(28, 28, 31, 0.2) 100%);
  flex: 1;
  min-width: 160px;
  /* background:#1a1a1a;	*/
  /* border:1px solid #333;	*/
  border-radius: 6px;
  padding: 25px 15px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.vip-features .feature-card:hover {
  border-color: #c9b896;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(201, 184, 150, 0.15);
}

.feature-icon {
  font-size: 32px;
  color: #c9b896;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #c9b896;
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-card p {
  color: #ccc;
  font-size: 13px;
  line-height: 1.5;
}

/* ========== 推广福利页面 黑金风 + #c9b896 主色调 ========== */
.promotion-section {
  max-width: 1440px;
  margin: 0px auto;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  /* box-shadow:0 4px 20px rgba(0,0,0,0.3);
	*/
  border: 1px solid rgba(242, 210, 155, 0.28);
  /* direction:ltr;
	*/
  background: radial-gradient(50% 50.01% at 46.74% 0%, rgba(66, 68, 69, 0.9) 0%, rgba(27, 29, 31, 0.6) 100%);
}

/* 顶部标题栏 */
.promo-header {
  background: linear-gradient(90deg, #b5a482, #c9b896);
  text-align: center;
  padding: 25px;
}

.promo-header h2 {
  color: #111;
  font-size: 26px;
  font-weight: bold;
  margin: 0;
}

/* 主体布局 */
.promo-container {
  display: flex;
}

/* 左侧主内容区 */
.promo-main {
  flex: 3;
  padding: 30px;
  border-right: 1px solid #2a2a2a;
}

/* 右侧侧边栏 */
.promo-sidebar {
  flex: 1;
  padding: 30px;
  background: #1f1f1f;
}

/* 通用标题样式 */
.block-title,
.sidebar-title {
  color: #c9b896;
  font-size: 20px;
  margin-top: 0;
}

.block-desc {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

/* 获取链接模块 */
.promo-link-block {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #2a2a2a;
}

.promo-btn {
  background: linear-gradient(135deg, #c9b896, #b5a482);
  color: #111;
  border: none;
  padding: 12px 35px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(201, 184, 150, 0.25);
}

.link-icon {
  margin-right: 8px;
}

/* 参与说明模块 */
.promo-info-block {
  text-align: center;
  padding: 30px 0;
  border-bottom: 1px solid #2a2a2a;
}

/* 四步流程 */
.promo-steps {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.step-item {
  flex: 1;
  background: #1f1f1f;
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-item:hover {
  border: 1px solid #c9b896;
  transform: translateY(-3px);
}

.step-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #c9b896, #b5a482);
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  font-size: 18px;
}

.step-item h4 {
  color: #c9b896;
  font-size: 16px;
  margin: 0 0 10px;
}

.step-item p {
  color: #ccc;
  font-size: 13px;
  line-height: 1.5;
}

/* 右侧活动说明 */
.info-list {
  margin-top: 20px;
}

.info-item {
  /*display: flex;*/
  align-items: flex-start;
  background: #1a1a1a;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 12px;
}

.info-icon {
  color: #c9b896;
  font-size: 20px;
  margin-right: 12px;
  flex-shrink: 0;
}

.info-content h4 {
  color: #c9b896;
  font-size: 15px;
  margin: 0 0 5px;
}

.info-content p {
  color: #ccc;
  font-size: 13px;
  margin: 0;
}

/* ====================================== */
/* ========== 客服中心 KEFU- 前缀 ========== */
/* ====================================== */
.KEFU-service-section {
  max-width: 1440px;
  margin: 0px auto 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.KEFU-service-header {
  text-align: center;
  margin-bottom: 50px;
}

.KEFU-service-icon {
  font-size: 36px;
  color: #c9b896;
  margin-bottom: 10px;
}

.KEFU-service-header h2 {
  font-size: 32px;
  color: #c9b896;
  margin: 0 0 10px;
}

.KEFU-service-header p {
  color: #ccc;
  font-size: 16px;
}

.KEFU-service-header::after {
  content: '';
  display: block;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9b896, transparent);
  margin: 25px auto 0;
}

.KEFU-service-cards {
  display: flex;
  gap: 30px;
}

.KEFU-service-card {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.KEFU-service-card:hover {
  border-color: #c9b896;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201, 184, 150, 0.15);
  background: radial-gradient(71.38% 71.38% at 47.01% -25.17%, rgba(130, 110, 64, 1) 0%, rgba(28, 28, 31, 0.2) 100%);
}

.KEFU-card-top {
  display: flex;
  align-items: center;
  padding: 25px;
  border-bottom: 1px solid #2a2a2a;
  background: radial-gradient(50% 50.01% at 46.74% 0%, rgba(66, 68, 69, 0.9) 0%, rgba(27, 29, 31, 0.6) 100%);
}

.KEFU-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 184, 150, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9b896;
  font-size: 18px;
  margin-right: 15px;
}

.KEFU-card-info h3 {
  color: #c9b896;
  font-size: 20px;
  margin: 0 0 5px;
}

.KEFU-card-info p {
  color: #ccc;
  font-size: 14px;
  margin: 0;
}

.KEFU-card-body {
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: #1f1f1f;
}

.KEFU-qr-placeholder {
  text-align: center;
  color: #ccc;
  font-size: 16px;
}

.KEFU-qr-placeholder span {
  color: #c9b896;
}

.KEFU-qq-card {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 25px 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.KEFU-qq-icon {
  font-size: 32px;
  color: #c9b896;
  margin-bottom: 10px;
}

.KEFU-qq-card h4 {
  color: #c9b896;
  font-size: 16px;
  margin: 0 0 8px;
}

.KEFU-qq-card p {
  color: #ccc;
  font-size: 14px;
  margin: 0;
}

.KEFU-qr-img {
  max-width: 180px;
  max-height: 180px;
  border: 2px solid #c9b896;
  /* 金色系 */
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

/* 父元素设置弹性居中 */
.KEFU-qr-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* ========== 帮助中心 HELP- 前缀 零卡顿 最终版 ========== */
.HELP-help-section {
  max-width: 1440px;
  width: 100%;
  margin: 0px auto 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.HELP-help-container {
  display: flex;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

/* 左侧分类 */
.HELP-sidebar {
  width: 260px;
  background: #1f1f1f;
  border-right: 1px solid #2a2a2a;
  flex-shrink: 0;
}

.HELP-sidebar-item {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ccc;
  font-size: 16px;
}

.HELP-sidebar-item.active {
  background: rgba(201, 184, 150, 0.1);
  color: #c9b896;
  border-left: 3px solid #c9b896;
}

.HELP-sidebar-item:hover {
  background: rgba(201, 184, 150, 0.05);
  color: #c9b896;
}

.HELP-item-icon {
  margin-right: 12px;
  font-size: 18px;
}

/* 右侧内容 */
.HELP-content {
  flex: 1;
  padding: 20px 30px;
  border: 1px solid rgba(242, 210, 155, 0.28);
  /* direction:ltr;
	*/
  background: radial-gradient(71.38% 71.38% at 47.01% -25.17%, rgba(130, 110, 64, 1) 0%, rgba(28, 28, 31, 0.2) 100%);
}

.HELP-faq-list {
  border-top: 0px solid #2a2a2a;
}

.HELP-faq-item {
  border-bottom: 1px solid #2a2a2a;
}

.HELP-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  color: #c9b896;
  font-size: 16px;
  transition: all 0.3s ease;
}

.HELP-faq-question:hover {
  color: #ccc;
}

.HELP-arrow-icon {
  transition: transform 0.3s ease;
  color: #c9b896;
}

.HELP-faq-item.open .HELP-arrow-icon {
  transform: rotate(180deg);
}

/* ========== 零卡顿核心 ========== */
.HELP-faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease, padding 0.35s ease;
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.HELP-faq-answer p {
  margin: 0 0 8px;
}

.HELP-faq-item.open .HELP-faq-answer {
  height: auto;
  padding-bottom: 20px;
}

/* 分类切换内容显示隐藏 */
.HELP-tab-content {
  display: none;
}

.HELP-tab-content.active {
  display: block;
}

/* ========== 充值兑换页面 DETAIL- 前缀 宽度1440px版 ========== */
.DETAIL-exchange-section {
  width: 1440px;
  margin: 90px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.DETAIL-container {
  display: flex;
  gap: 30px;
}

/* 下面原有所有样式保持不变，不用改 */
.DETAIL-form-card {
  flex: 2;
  /* background:#1a1a1a;
	*/
  border-radius: 12px;
  padding: 30px;
  /* border:1px solid #2a2a2a;
	*/
  border: 1px solid rgba(242, 210, 155, 0.28);
  /* direction:ltr;
	*/
  background: radial-gradient(71.38% 71.38% at 47.01% -25.17%, rgba(130, 110, 64, 1) 0%, rgba(28, 28, 31, 0.2) 100%);
  min-height: 500px;
}

.DETAIL-form-header {
  /*display:flex;
	*/
  align-items: center;
  color: #c9b896;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.DETAIL-icon {
  margin-right: 8px;
}

.DETAIL-rate-tip {
  background: #1f1f1f;
  color: #ccc;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 30px;
}

.DETAIL-form-group {
  margin-bottom: 25px;
}

.DETAIL-label {
  display: block;
  color: #c9b896;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: bold;
}

.DETAIL-input {
  width: 100%;
  padding: 12px 15px;
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: #00FF00;
  font-size: 14px;
  box-sizing: border-box;
}

.DETAIL-input:focus {
  border-color: #c9b896;
  outline: none;
}

/* 选择货币模块 */
.DETAIL-select-box {
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 15px;
}

.DETAIL-option.selected {
  border: 1px solid #c9b896;
  background: rgba(201, 184, 150, 0.05);
  border-radius: 6px;
  padding: 15px;
}

.DETAIL-option-title {
  display: flex;
  align-items: center;
  color: #c9b896;
  font-weight: bold;
  margin-bottom: 8px;
}

.DETAIL-option-icon {
  margin-right: 8px;
}

.DETAIL-option-desc,
.DETAIL-option-balance {
  color: #ccc;
  font-size: 13px;
  margin-bottom: 5px;
}

/* 金额按钮组 */
.DETAIL-amount-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.DETAIL-amount-btn {
  flex: 1;
  padding: 12px;
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: #ccc;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.DETAIL-amount-btn.active {
  background: linear-gradient(135deg, #c9b896, #b5a482);
  color: #111;
  border: none;
}

.DETAIL-amount-btn:hover {
  border-color: #c9b896;
  color: #c9b896;
}

/* 预览金额 */
.DETAIL-preview-box {
  text-align: center;
  background: #1f1f1f;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
}

.DETAIL-preview-title {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
}

.DETAIL-preview-amount {
  color: #c9b896;
  font-size: 28px;
  font-weight: bold;
}

/* 提交按钮 */
.DETAIL-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(90deg, #ebc077, #f9e4bf 64.671%, #f2d29b 84.431%);
  color: #111;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.DETAIL-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(201, 184, 150, 0.25);
}

.DETAIL-btn-icon {
  margin-right: 8px;
}

/* 右侧会员信息卡片 */
.DETAIL-info-card {
  width: 320px;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  flex-shrink: 0;
}

.DETAIL-info-header {
  background: linear-gradient(135deg, #c9b896, #b5a482);
  color: #111;
  font-weight: bold;
  padding: 15px;
  text-align: center;
}

.DETAIL-info-body {
  padding: 25px;
}

.DETAIL-user-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2a2a2a;
}

.DETAIL-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #2a2a2a;
}

.DETAIL-user-info {
  margin-left: 15px;
}

.DETAIL-uid {
  color: #c9b896;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.DETAIL-vip-tag {
  background: linear-gradient(135deg, #c9b896, #b5a482);
  color: #111;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 12px;
  display: inline-block;
}

.DETAIL-balance-row {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.DETAIL-balance-item {
  flex: 1;
  text-align: center;
  background: #1f1f1f;
  padding: 15px;
  border-radius: 8px;
}

.DETAIL-balance-label {
  color: #ccc;
  font-size: 13px;
  margin-bottom: 5px;
}

.DETAIL-balance-value {
  color: #c9b896;
  font-size: 20px;
  font-weight: bold;
}

.DETAIL-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.DETAIL-action-btn {
  padding: 12px;
  background: linear-gradient(135deg, #c9b896, #b5a482);
  color: #111;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(242, 210, 155, 0.28);
  /* direction:ltr;
	*/
  background: radial-gradient(71.38% 71.38% at 47.01% -25.17%, rgba(130, 110, 64, 1) 0%, rgba(28, 28, 31, 0.2) 100%);
  color: #c9b896;
  padding: 10px 26px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  font-weight: 500 !important;
  transition: all 0.2s !important;
  text-align: center;
}

.DETAIL-action-btn:hover {
  transform: translateY(-2px);
}

/* 图片懒加载转圈容器 主色调 #c9b896 */
.lazy-img-wrap {
  position: relative;
  display: inline-block;
}

.lazy-img-wrap img {
  opacity: 0;
  transition: opacity 0.4s ease;
  display: block;
  /* max-width:100%;
	*/
}

.lazy-img-wrap.img-loaded img {
  opacity: 1;
}

/* 加载转圈 */
.lazy-img-wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  border: 2px solid rgba(201, 184, 150, 0.15);
  border-top-color: #c9b896;
  border-radius: 50%;
  animation: spin-loading 0.8s linear infinite;
  z-index: 2;
}

.lazy-img-wrap.img-loaded::after {
  display: none;
}

@keyframes spin-loading {
  100% {
    transform: rotate(360deg);
  }
}

/* ========== 会员中心页面 VIP- 前缀 黑金风 + #c9b896 主色调 ========== */
.VIP-member-section {
  width: 1440px;
  margin: 100px auto 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.VIP-member-container {
  display: flex;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

/* 左侧导航栏 */
.VIP-sidebar {
  width: 240px;
  background: #1f1f1f;
  border-right: 1px solid #2a2a2a;
  flex-shrink: 0;
}

.VIP-user-header {
  text-align: center;
  padding: 25px 15px;
  border-bottom: 0px solid #2a2a2a;
  background: radial-gradient(71.38% 71.38% at 47.01% -25.17%, rgba(130, 110, 64, 1) 0%, rgba(28, 28, 31, 0.2) 100%);
}

.VIP-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #2a2a2a;
  margin-bottom: 10px;
}

.VIP-username {
  color: #c9b896;
  font-size: 16px;
  font-weight: bold;
  padding: 20px 0 0 0;
}

.VIP-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.VIP-nav-item {
  display: flex;
  align-items: center;
  padding: 5px 15px;
  cursor: pointer;
  color: #ccc;
  font-size: 14px;
  transition: all 0.3s ease;
}

.VIP-nav-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 38px;
  /* 固定一直是同色同粗细边框，永远不变 */
  border-bottom: 0px solid #2a2a2a;
  border-radius: 0px;
  text-decoration: none;
  color: rgb(255 242 220 / 0.7);
  transition: all 0.25s ease;
  /* 加这个防止盒模型挤尺寸 */
  box-sizing: border-box;
}

/* 激活菜单样式 */
.VIP-nav-item.active a {
  border-radius: 30px;
  color: #1A1A1A;
  /* 边框保持原样，不改动 */
  border-bottom: 0px solid #2a2a2a;
  background: linear-gradient(90deg, #ebc077, #f9e4bf 64.671%, #f2d29b 84.431%);
  box-shadow: 0 4px 15px #cc001533;
  transform: translateX(0);
}

/* hover 只改背景+位移，**不再改边框** */
.VIP-nav-item a:hover {
  /* 删掉这里的 border 改动！不再变边框 */
  background: #2a2a2a;
  transform: translateX(5px);
  border-radius: 30px;
}

/* 激活项禁止hover */
.VIP-nav-item.active a:hover {
  transform: translateX(0) !important;
  background: linear-gradient(90deg, #ebc077, #f9e4bf 64.671%, #f2d29b 84.431%) !important;
  color: #1A1A1A !important;
}

/* 注册时间样式 */
.VIP-register-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  text-align: center;
}

/* 实名状态容器 */
.VIP-auth-status {
  margin-top: 8px;
  text-align: center;
}

/* 基础标签样式 */
.auth-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 4px;
  border-radius: 5px;
  font-size: 12px;
  /* font-weight: 500; */
  position: relative;
}

/* 未实名警告样式（和你图里一样的橙色+红色感叹号） */
.auth-warning {
  background: linear-gradient(45deg, #ff9800, #ffc107);
  color: #fff;
  box-shadow: 0 2px 6px #ff980033;
  color: #FFF;
}

.auth-warning .auth-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background: #ff3b30;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  /* margin-left: 6px; */
  margin-right: -8px;
  margin-top: -20px;
}

/* 已实名正常样式（绿色） */
.auth-success {
  background: #34c759;
  color: #fff;
}

/* 实名状态链接样式 */
.VIP-auth-status a {
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/*.VIP-nav-item:hover {
	*/
/* background:rgba(201,184,150,0.05);
	*/
/* color:#c9b896;
	*/
/*
}
*/

.VIP-nav-icon {
  margin-right: 12px;
  font-size: 14px;
}

/* 移除会员中心左侧菜单 a 标签的所有 after 伪元素 */
.VIP-nav-item a::after,
.VIP-nav-item>a::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

/* 右侧主内容区 */
.VIP-main-content {
  flex: 1;
  padding: 30px;
  background: radial-gradient(50% 50.01% at 46.74% 0%, rgba(66, 68, 69, 0.9) 0%, rgba(27, 29, 31, 0.6) 100%);
}

/* 顶部信息卡片行 */
.VIP-info-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.VIP-info-card {
  flex: 1;
  background: #000;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  border: 0px solid #2a2a2a;
}

.VIP-info-card-bg1 {
  background: repeating-linear-gradient(45deg, #7e57c2, #7e57c2 10px, rgba(126, 87, 194, .95) 10px, rgba(126, 87, 194, .95) 20px), linear-gradient(to right, rgba(255, 255, 255, .8), rgba(255, 255, 255, 0));
  background-blend-mode: multiply;
}

.VIP-info-card-bg2 {
  background: repeating-linear-gradient(45deg, #ffb800, #ffb800 10px, rgba(255, 184, 0, .95) 10px, rgba(255, 184, 0, .95) 20px), linear-gradient(to right, rgba(255, 255, 255, .8), rgba(255, 255, 255, 0));
  background-blend-mode: multiply;
}

.VIP-uid {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}

.VIP-realname-tip {
  color: #ff4d4f;
  font-size: 13px;
  margin-bottom: 15px;
  display: inline-block;
  border: 1px solid #ff4d4f;
  padding: 2px 8px;
  border-radius: 10px;
}

.VIP-topup-btn {
  background: linear-gradient(45deg, #f2d29b, #ff9d4a);
  color: #1a1a1a;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all .3s ease;
  box-shadow: 0 4px 10px #ff6b004d;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
}

.VIP-vip-icon,
.VIP-calendar-icon {
  font-size: 30px;
  color: #c9b896;
  margin-bottom: 10px;
}

.VIP-vip-name,
.VIP-sign-title {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}

/*.VIP-upgrade-btn,*/
/*.VIP-sign-btn {
	*/
/* background:linear-gradient(45deg,#ff6b00,#ff9d4a);
	*/
/* color:#ccc;
	*/
/* border:none;
	*/
/* padding:8px 16px;
	*/
/* border-radius:6px;
	*/
/* cursor:pointer;
	*/
/* font-size:14px;
	*/
/* font-weight:bold;
	*/
/* transition:all .3s ease;
	*/
/* box-shadow:0 4px 10px #ff6b004d;
	*/
/* text-shadow:0 1px 1px rgba(0,0,0,.2);
	*/
/*
}
*/

/* 外层容器：弹性布局，卡片自动对齐 */
.VIP-info-row {
  display: flex;
  gap: 20px;
  /* 卡片之间的间距 */
  flex-wrap: wrap;
  /* 小屏幕自动换行 */
}

/* 通用卡片样式：和参考图一样的圆角、阴影 */
.VIP-info-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 16px;
  flex: 1;
  /* 卡片自动均分宽度 */
  min-width: 300px;
  /* 最小宽度，防止挤太窄 */
  color: #ccc;
}

/* 左侧紫色卡片（成长值） */

.card-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 370px;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #ffc107;
  /* 进度条黄色，和参考图一致 */
  border-radius: 6px;
  transition: width 0.3s ease;
}

.progress-tip {
  font-size: 12px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.current-growth {
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
}

.VIP-view-btn {
  background: #ffc107;
  color: #000;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease;
  /* 平滑动画 */
  display: inline-block;
}

/* 鼠标悬浮：轻微上移 */
.VIP-view-btn:hover {
  transform: translateY(-2px);
  /* 上移 2px，轻微效果 */
  text-decoration: none;
  color: #000;
}

/* 右侧黄色卡片（VIP会员） */
.vip-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 签到卡片 */
.VIP-info-card-bg3 {
  /* 柔和斜纹 + 同色系渐变，不突兀、自然融合 */
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15) 10px, rgba(255, 255, 255, 0.07) 10px, rgba(255, 255, 255, 0.07) 20px), linear-gradient(to right, #3ac47a, #34c759);
  background-blend-mode: overlay;
}

.sign-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.VIP-sign-title {
  font-size: 20px;
  font-weight: bold;
}

.VIP-sign-btn {
  background: #fff;
  color: #34c759;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  /* 🔥 加上这个就动了！ */
  transition: all 0.25s ease;
  /* 🔥 必须加过渡才顺滑 */
}

.VIP-sign-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: #000;
}

/* 数据统计栏 */
.VIP-stats-bar {
  display: flex;
  background: radial-gradient(71.38% 71.38% at 47.01% -25.17%, rgba(68, 73, 93, 0.9) 0%, rgba(68, 73, 93, 0.2) 100%);
  border-radius: 8px;
  padding: 20px 0;
  margin-bottom: 30px;
  border: 1px solid #2a2a2a;
}

.VIP-stat-item {
  flex: 1;
  text-align: center;
  border-right: 1px solid #44495D;
}

.VIP-stat-item:last-child {
  border-right: none;
}

.VIP-stat-label {
  color: #c9b896;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.VIP-stat-value {
  color: #c9b896;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.VIP-stat-desc {
  color: #ccc;
  font-size: 13px;
}

/* 有奖推广模块 */
.VIP-section-title {
  color: #c9b896;
  font-size: 20px;
  margin-bottom: 20px;
}

.VIP-promotion-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.VIP-promotion-card {
  flex: 1;
  background: #1f1f1f;
  border-radius: 8px;
  padding: 25px;
  border: 1px solid #2a2a2a;
}

.VIP-card-title {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 15px;
}

.VIP-card-reward {
  color: #c9b896;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.VIP-card-desc {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 15px;
}

.VIP-card-rules {
  color: #ccc;
  font-size: 13px;
  line-height: 1.6;
  padding-left: 15px;
  margin: 0;
}

.VIP-commission-box {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.VIP-commission-item {
  flex: 1;
  background: #1a1a1a;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
}

.VIP-commission-label {
  color: #ccc;
  font-size: 13px;
  margin-bottom: 8px;
}

.VIP-commission-value {
  color: #c9b896;
  font-size: 16px;
  font-weight: bold;
}

.VIP-card-note {
  color: #ccc;
  font-size: 13px;
  display: flex;
  align-items: flex-start;
}

.VIP-info-icon {
  color: #c9b896;
  margin-right: 8px;
  flex-shrink: 0;
}

/* 推广链接模块 */
.VIP-link-box {
  background: #1f1f1f;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #2a2a2a;
}

.VIP-link-title {
  display: flex;
  align-items: center;
  color: #ccc;
  font-size: 16px;
  margin-bottom: 15px;
}

.VIP-link-icon {
  color: #c9b896;
  margin-right: 8px;
}

.VIP-link-input-group {
  display: flex;
  gap: 10px;
}

.VIP-link-input {
  flex: 1;
  padding: 10px 15px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  color: #ccc;
  font-size: 14px;
}

.VIP-copy-btn {
  background: #c9b896;
  color: #111;
  border: none;
  padding: 0 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

/* ========== 充值中心页面 RECHARGE- 前缀 黑金风 + #c9b896 主色调 ========== */
.RECHARGE-recharge-section {
  width: 1440px;
  margin: 100px auto 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.RECHARGE-recharge-container {
  display: flex;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

/* 右侧充值主内容区 */
.RECHARGE-main-content {
  flex: 1;
  padding: 30px;
}

.RECHARGE-section {
  margin-bottom: 30px;
}

.RECHARGE-section-title {
  color: #c9b896;
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.RECHARGE-section-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 18px;
  background: #c9b896;
  margin-right: 10px;
}

/* 储值金额网格 */
.RECHARGE-amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.RECHARGE-amount-item {
  background: #1f1f1f;
  border: 1px solid rgba(242, 210, 155, 0.28);
  border-radius: 8px;
  padding: 20px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.RECHARGE-amount-item:hover {
  border-color: #c9b896;
}

.RECHARGE-amount-item.selected {
  border-color: #c9b896;
  background: rgba(201, 184, 150, 0.05);
}

.RECHARGE-amount-desc {
  color: #ff9500;
  font-size: 14px;
  margin-bottom: 8px;
}

.RECHARGE-amount-tip {
  color: #ccc;
  font-size: 12px;
  margin-bottom: 12px;
}

.RECHARGE-amount-price {
  color: #c9b896;
  font-size: 18px;
  font-weight: bold;
}

.RECHARGE-custom-input {
  width: 80%;
  padding: 8px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  color: #00FF00;
  text-align: center;
  font-size: 14px;
}

/* 支付方式 */
.RECHARGE-pay-methods {
  display: flex;
  gap: 15px;
}

.RECHARGE-pay-item {
  flex: 1;
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  color: #c9b896;
  font-size: 16px;
  transition: all 0.3s ease;
}

.RECHARGE-pay-item:hover {
  border-color: #c9b896;
}

.RECHARGE-pay-item.selected {
  border-color: #c9b896;
  background: rgba(201, 184, 150, 0.05);
}

.RECHARGE-pay-icon {
  margin-right: 8px;
}

/* 到账说明 */
.RECHARGE-note-box {
  background: rgba(201, 184, 150, 0.1);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}

.RECHARGE-note-text {
  color: #c9b896;
  margin: 5px 0;
  font-size: 14px;
}

/* 提交按钮 */
.RECHARGE-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #c9b896, #b5a482);
  color: #111;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.RECHARGE-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(201, 184, 150, 0.25);
}

/* 储值说明 */
.RECHARGE-info-box {
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 20px;
}

.RECHARGE-info-title {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 15px;
}

.RECHARGE-info-list {
  color: #ccc;
  font-size: 13px;
  line-height: 1.6;
  padding-left: 15px;
  margin: 0;
}

/* ========== 特权签到页面 SIGN- 前缀 黑金风 + #c9b896 主色调 ========== */
.SIGN-sign-section {
  width: 1440px;
  margin: 100px auto 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.SIGN-sign-container {
  display: flex;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

/* 右侧主内容区 */
.SIGN-main-content {
  flex: 1;
  padding: 30px;
}

/* VIP信息卡片 */
.SIGN-info-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: radial-gradient(50% 50.01% at 46.74% 0%, rgba(66, 68, 69, 0.9) 0%, rgba(27, 29, 31, 0.6) 100%);
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 30px;
  border: 1px solid #2a2a2a;
}

.SIGN-left-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.SIGN-vip-title {
  display: flex;
  align-items: center;
  color: #ccc;
  font-size: 24px;
  font-weight: bold;
}

.SIGN-crown-icon {
  color: #c9b896;
  margin-right: 10px;
  font-size: 28px;
}

.SIGN-bonus-tags {
  display: flex;
  gap: 15px;
}

.SIGN-tag {
  padding: 8px 16px;
  border-radius: 6px;
  color: #FFF;
  font-size: 14px;
}

.SIGN-tag.tag-point {
  background: #27ae60;
}

.SIGN-tag.tag-diamond {
  background: #6c5ce7;
}

.SIGN-right-action {
  text-align: center;
}

.SIGN-checkin-btn {
  background: #e67e22;
  color: #fff;
  border: none;
  padding: 15px 60px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.SIGN-checkin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(230, 126, 34, 0.25);
}

.SIGN-btn-icon {
  margin-right: 8px;
}

.SIGN-btn-desc {
  color: #ccc;
  font-size: 13px;
  margin-top: 10px;
}

/* 领取记录表格 */
.SIGN-record-section {
  background: #1f1f1f;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  overflow: hidden;
}

.SIGN-section-title {
  color: #c9b896;
  font-size: 20px;
  margin: 0;
  padding: 20px;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
}

.SIGN-section-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 18px;
  background: #c9b896;
  margin-right: 10px;
}

.SIGN-table-wrap {
  overflow-x: auto;
}

.SIGN-record-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.SIGN-record-table th {
  background: #252525;
  color: #c9b896;
  padding: 15px;
  font-size: 14px;
  font-weight: normal;
}

.SIGN-record-table td {
  padding: 15px;
  color: #ccc;
  font-size: 14px;
  border-top: 1px solid #2a2a2a;
}

.SIGN-status-tag {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 13px;
}

/* ==================================== */
/* ========== VIP 升级页面 UPGRADE- ========== */
/* ==================================== */
.UPGRADE-vip-section {
  width: 1440px;
  margin: 100px auto 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.UPGRADE-container {
  display: flex;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

.UPGRADE-content {
  flex: 1;
  padding: 30px;
}

.UPGRADE-card {
  background: radial-gradient(50% 50.01% at 46.74% 0%, rgba(66, 68, 69, 0.9) 0%, rgba(27, 29, 31, 0.6) 100%);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #2a2a2a;
}

.UPGRADE-top {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.UPGRADE-current {
  flex-shrink: 0;
}

.UPGRADE-current-label {
  color: #ccc;
  font-size: 14px;
}

.UPGRADE-current-vip {
  color: #c9b896;
  font-size: 32px;
  font-weight: bold;
}

.UPGRADE-progress-box {
  flex: 1;
}

.UPGRADE-progress-info {
  display: flex;
  justify-content: space-between;
  color: #ccc;
  margin-bottom: 10px;
  font-size: 14px;
}

.UPGRADE-progress-bar {
  height: 10px;
  background: #2a2a2a;
  border-radius: 99px;
  overflow: hidden;
}

.UPGRADE-progress {
  height: 100%;
  background: #00ff00;
  border-radius: 99px;
  transition: width 0.5s ease;
}

.UPGRADE-benefit-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.UPGRADE-benefit-item {
  background: #222;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.UPGRADE-icon {
  font-size: 24px;
}

.UPGRADE-text {
  flex: 1;
  color: #ccc;
  font-size: 14px;
}

.UPGRADE-value {
  color: #c9b896;
  font-weight: bold;
}

.UPGRADE-btn-group {
  display: flex;
  gap: 15px;
}

.UPGRADE-btn {
  flex: 1;
  padding: 16px;
  background: #c9b896;
  color: #111;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s;
}

.UPGRADE-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* 等级列表 */
.UPGRADE-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.UPGRADE-level-item {
  background: radial-gradient(50% 50.01% at 46.74% 0%, rgba(66, 68, 69, 0.9) 0%, rgba(27, 29, 31, 0.6) 100%);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 20px;
}

.UPGRADE-level-item.current {
  border-color: #c9b896;
  background: rgba(201, 184, 150, 0.05);
}

.UPGRADE-level-item .level {
  color: #c9b896;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
}

.UPGRADE-level-item .name {
  color: #c9b896;
  font-size: 16px;
  margin-bottom: 6px;
}

.UPGRADE-level-item .desc {
  color: #888;
  font-size: 13px;
}

/* ==================================== */
/* ========== VIP 推广页面 SHARE- ========== */
/* ==================================== */
.SHARE-vip-section {
  width: 1440px;
  margin: 100px auto 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.SHARE-container {
  display: flex;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

.SHARE-content {
  flex: 1;
  padding: 30px;
}

.SHARE-card {
  background: radial-gradient(50% 50.01% at 46.74% 0%, rgba(66, 68, 69, 0.9) 0%, rgba(27, 29, 31, 0.6) 100%);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid #2a2a2a;
}

.SHARE-header h2 {
  color: #c9b896;
  margin: 0 0 6px 0;
  font-size: 24px;
}

.SHARE-header p {
  color: #ccc;
  margin: 0;
  font-size: 14px;
}

/* 数据统计 */
.SHARE-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 25px 0;
}

.SHARE-stat-item {
  background: radial-gradient(71.38% 71.38% at 47.01% -25.17%, rgba(130, 110, 64, 1) 0%, rgba(28, 28, 31, 0.2) 100%);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(242, 210, 155, 0.28);
}

.SHARE-stat-item .num {
  font-size: 26px;
  color: #c9b896;
  font-weight: bold;
}

.SHARE-stat-item .label {
  color: #ccc;
  font-size: 13px;
  margin-top: 6px;
}

/* 推广链接 */
.SHARE-link-box {
  background: #222;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
}

.SHARE-link-title {
  color: #c9b896;
  margin-bottom: 12px;
  font-size: 15px;
}

.SHARE-link-row {
  display: flex;
  gap: 10px;
}

.SHARE-link-input {
  flex: 1;
  padding: 12px 15px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  color: #ccc;
}

.SHARE-copy-btn {
  padding: 0 20px;
  background: linear-gradient(135deg, #c9b896, #8a7858);
  color: #1A1A1A;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

/* 推广规则 */
.SHARE-rules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.SHARE-rule-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #222;
  padding: 18px;
  border-radius: 8px;
}

.SHARE-rule-item .icon {
  font-size: 22px;
  padding-top: 4px;
}

.SHARE-rule-item .text strong {
  color: #c9b896;
  font-size: 15px;
}

.SHARE-rule-item .text p {
  color: #ccc;
  margin: 4px 0 0 0;
  font-size: 13px;
}

/* 推广记录 */
.SHARE-record h3 {
  color: #c9b896;
  margin: 0 0 15px 0;
  font-size: 18px;
}

.SHARE-table {
  width: 100%;
  background: #222;
  border-radius: 8px;
  overflow: hidden;
}

.SHARE-table .tr {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr 1.5fr 0.8fr;
  padding: 14px 18px;
  border-bottom: 1px solid #333;
}

.SHARE-table .th {
  color: #c9b896;
  font-weight: bold;
  font-size: 14px;
}

.SHARE-table .td {
  color: #ccc;
  font-size: 14px;
}

.SHARE-table .green {
  color: #27ae60;
}

/* ========== 积分兑换页面 EXCHANGE- 前缀 ========== */
.EXCHANGE-point-section {
  width: 1440px;
  margin: 100px auto 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.EXCHANGE-container {
  display: flex;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

.EXCHANGE-content {
  flex: 1;
  padding: 30px;
}

/* 兑换表单模块 */
.EXCHANGE-form-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: radial-gradient(50% 50.01% at 46.74% 0%, rgba(66, 68, 69, 0.9) 0%, rgba(27, 29, 31, 0.6) 100%);
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 30px;
  border: 1px solid #2a2a2a;
}

.EXCHANGE-left-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.EXCHANGE-rate {
  color: #ccc;
  font-size: 16px;
}

.EXCHANGE-balance {
  color: #c9b896;
  font-size: 14px;
  /*background:rgba(201,184,150,0.1);*/
  display: inline-block;
  padding: 3px 8px;
  border-radius: 12px;
}

.EXCHANGE-tip {
  color: #ccc;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.EXCHANGE-info-icon {
  color: #c9b896;
  margin-right: 8px;
}

.EXCHANGE-right-input .EXCHANGE-input-group {
  display: flex;
  gap: 0;
}

.EXCHANGE-input {
  padding: 12px 15px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-right: none;
  border-radius: 6px 0 0 6px;
  color: #ccc;
  font-size: 14px;
  width: 200px;
}

.EXCHANGE-submit-btn {
  background: linear-gradient(135deg, #c9b896, #8a7858);
  color: #1A1A1A;
  border: none;
  padding: 0 20px;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.EXCHANGE-submit-btn:hover {
  opacity: 0.9;
}

.EXCHANGE-input-tip {
  color: #ccc;
  font-size: 13px;
  text-align: center;
  margin-top: 10px;
}

/* 兑换记录 */
.EXCHANGE-record-section {
  background: #1f1f1f;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  overflow: hidden;
}

.EXCHANGE-section-title {
  color: #c9b896;
  font-size: 20px;
  margin: 0;
  padding: 0px 0 20px 0;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
}

.EXCHANGE-section-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 18px;
  background: #c9b896;
  margin-right: 10px;
}

.EXCHANGE-table-wrap {
  overflow-x: auto;
}

.EXCHANGE-record-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.EXCHANGE-record-table th {
  background: #252525;
  color: #c9b896;
  padding: 15px;
  font-size: 14px;
  font-weight: normal;
}

.EXCHANGE-record-table td {
  padding: 15px;
  color: #ccc;
  font-size: 14px;
  border-top: 1px solid #2a2a2a;
}

.EXCHANGE-record-table .red {
  color: #e63946;
}

.EXCHANGE-record-table .green {
  color: #27ae60;
}

.EXCHANGE-status-tag {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 13px;
}

.EXCHANGE-more-btn-wrap {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #2a2a2a;
}

.EXCHANGE-more-btn {
  background: #e63946;
  color: #ccc;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.EXCHANGE-more-btn:hover {
  opacity: 0.9;
}

/* ==================================== */
/* ========== 积分抽奖页面 LOTTERY- ========== */
/* ==================================== */
.LOTTERY-section {
  width: 1440px;
  margin: 100px auto 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.LOTTERY-container {
  display: flex;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

.LOTTERY-content {
  flex: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
}

.LOTTERY-box {
  width: 700px;
  background: #1f1f1f;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #2a2a2a;
}

.LOTTERY-top {
  text-align: center;
  margin-bottom: 30px;
}

.LOTTERY-info .title {
  font-size: 26px;
  color: #c9b896;
  font-weight: bold;
}

.LOTTERY-info .desc {
  color: #ccc;
  margin: 6px 0;
  font-size: 14px;
}

.LOTTERY-info .point {
  color: #ccc;
  font-size: 15px;
}

/* ====================== */
/* ===== 抽奖转盘 ===== */
/* ====================== */
.LOTTERY-wheel-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}

.wheel-container {
  position: relative;
  width: 320px;
  height: 320px;
  margin-bottom: 20px;
}

.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(#c9b896 0deg 45deg, #1f1f1f 45deg 90deg, #c9b896 90deg 135deg, #1f1f1f 135deg 180deg, #c9b896 180deg 225deg, #1f1f1f 225deg 270deg, #c9b896 270deg 315deg, #1f1f1f 315deg 360deg);
  transition: transform 3s cubic-bezier(0.1, 0.7, 0.1, 1);
}

.wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid #ccc;
  z-index: 10;
}

.wheel .item {
  position: absolute;
  width: 50%;
  height: 50%;
  transform-origin: right bottom;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-weight: bold;
  font-size: 13px;
  text-shadow: 0 1px 2px #000;
}

.wheel .item1 {
  transform: rotate(22.5deg);
}

.wheel .item2 {
  transform: rotate(67.5deg);
}

.wheel .item3 {
  transform: rotate(112.5deg);
}

.wheel .item4 {
  transform: rotate(157.5deg);
}

.wheel .item5 {
  transform: rotate(202.5deg);
}

.wheel .item6 {
  transform: rotate(247.5deg);
}

.wheel .item7 {
  transform: rotate(292.5deg);
}

.wheel .item8 {
  transform: rotate(337.5deg);
}

.lottery-btn {
  width: 160px;
  height: 60px;
  border-radius: 12px;
  background: #e63946;
  color: #ccc;
  font-size: 18px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lottery-btn small {
  font-size: 12px;
  font-weight: normal;
}

.lottery-btn:disabled {
  background: #666;
  cursor: not-allowed;
}

/* 中奖记录 */
.LOTTERY-record {
  background: #222;
  border-radius: 8px;
  padding: 20px;
}

.record-title {
  color: #c9b896;
  font-weight: bold;
  margin-bottom: 12px;
}

.record-list {
  max-height: 160px;
  overflow-y: auto;
}

.record-item {
  color: #ccc;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed #333;
}

/*抽奖转盘*/
.CHOUJIANG-lottery-wrap {
  max-width: 1440PX;
  margin: 100px auto;
  display: flex;
  gap: 10px;
  /* padding: 0 20px; */
}

/* 黑金模态弹窗 */
.CHOUJIANG-modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  z-index: 9999;
}

.CHOUJIANG-modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  background: #1a1a1a;
  border: 2px solid #f2d29b;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
}

.CHOUJIANG-modal-box .tit {
  font-size: 18px;
  color: #f2d29b;
  margin-bottom: 20px;
  font-weight: bold;
}

.CHOUJIANG-modal-box .msg {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.6;
}

.CHOUJIANG-modal-box .btn {
  background: #f2d29b;
  color: #000;
  border: none;
  padding: 8px 26px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.CHOUJIANG-modal-box .btn:hover {
  opacity: 0.9;
}


/* 主内容区 */
.CHOUJIANG-main {
  flex: 1;
  display: flex;
  gap: 30px;
}

/* 左侧信息 + 转盘区 */
.CHOUJIANG-left-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 8px;
  padding: 30px;
  background: radial-gradient(50% 50.01% at 46.74% 0%, rgba(66, 68, 69, 0.9) 0%, rgba(27, 29, 31, 0.6) 100%);
  border: 1px solid #444;
}

.CHOUJIANG-title-bar {
  margin-bottom: 10px;
}

.CHOUJIANG-title-bar h1 {
  color: #f2d29b;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 6px;
}

.CHOUJIANG-title-bar p {
  color: #aaa;
  font-size: 14px;
}

/* 抽奖规则 */
.lottery-rule-box {
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 16px;
}

.lottery-rule-box h4 {
  color: #f2d29b;
  font-size: 16px;
  margin-bottom: 10px;
}

.lottery-rule-box p {
  color: #ccc;
  font-size: 13px;
  line-height: 1.6;
  margin: 3px 0;
}

/* 三个信息卡片 */
.CHOUJIANG-info-row {
  display: flex;
  gap: 20px;
}

.CHOUJIANG-info-card {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
}

.CHOUJIANG-info-card .label {
  color: #ccc;
  font-size: 13px;
}

.CHOUJIANG-info-card .value {
  color: #f2d29b;
  font-size: 22px;
  font-weight: bold;
  margin-top: 5px;
}

/* 转盘容器 */
.CHOUJIANG-wheel-box {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 20px auto;
}

.CHOUJIANG-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #111;
  border: 6px solid #f2d29b;
  position: relative;
  overflow: hidden;
  transition: transform 5s cubic-bezier(0.33, 0.01, 0.2, 1);
}

.CHOUJIANG-wheel-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0;
  right: 0;
  transform-origin: bottom left;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.CHOUJIANG-wheel-segment.odd {
  background: #232323;
}

.CHOUJIANG-wheel-segment.even {
  background: #161616;
}

.CHOUJIANG-prize-text {
  position: absolute;
  width: 70px;
  text-align: center;
  color: #f2d29b;
  font-size: 13px;
  font-weight: bold;
  transform-origin: center;
  top: 25%;
  left: 50%;
  transform: translate(-85%, -30%) rotate(0deg);
}

/* 指针 */
.CHOUJIANG-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 36px solid #f2d29b;
  z-index: 10;
}

/* 中心按钮 */
.CHOUJIANG-start-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f2d29b;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.CHOUJIANG-start-btn:disabled {
  background: #666;
  cursor: not-allowed;
  box-shadow: none;
}

/* 结果提示 */
.CHOUJIANG-result-tip {
  display: none;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}

.CHOUJIANG-tip-success {
  background: rgba(255, 215, 0, 0.1);
  color: #f2d29b;
  border: 1px solid #f2d29b;
}

.CHOUJIANG-tip-error {
  background: rgba(255, 0, 0, 0.1);
  color: #ff4444;
  border: 1px solid #ff4444;
}

/* 右侧记录区 */
.CHOUJIANG-right-col {
  width: 300px;
  flex-shrink: 0;
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 20px;
}

.CHOUJIANG-record-title {
  color: #f2d29b;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.CHOUJIANG-record-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.CHOUJIANG-record-table th {
  color: #aaa;
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #333;
}

.CHOUJIANG-record-table td {
  padding: 8px 0;
  border-bottom: 1px solid #2b2b2b;
  color: #c9b896;
}

.CHOUJIANG-record-table td .point {
  color: #ff6666;
}

.CHOUJIANG-record-table td .diamond {
  color: #f2d29b;
}

.CHOUJIANG-empty-record {
  color: #777;
  text-align: center;
  padding: 30px 0;
}

/* ========== 我的游戏页面 MYGAME- 前缀 ========== */
.MYGAME-section {
  width: 1440px;
  margin: 100px auto 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.MYGAME-container {
  display: flex;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

.MYGAME-content {
  flex: 1;
  padding: 20px;
}

.MYGAME-card {
  background: #1f1f1f;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  overflow: hidden;
}

.MYGAME-title {
  color: #c9b896;
  font-size: 20px;
  margin: 0;
  padding: 20px;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
}

.MYGAME-title-icon {
  margin-right: 10px;
}

.MYGAME-table-wrap {
  overflow-x: auto;
}

.MYGAME-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.MYGAME-table th {
  background: #252525;
  color: #c9b896;
  padding: 15px;
  font-size: 14px;
  font-weight: normal;
}

.MYGAME-table td {
  padding: 15px;
  color: #ccc;
  font-size: 14px;
  border-top: 1px solid #2a2a2a;
}

.MYGAME-btn-wrap {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #2a2a2a;
}

.MYGAME-load-btn {
  background: #e63946;
  color: #ccc;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.MYGAME-load-btn:hover {
  opacity: 0.9;
}

/* ========== 充值记录页面 RECORDS- 前缀 ========== */
.RECORDS-recharge-section {
  width: 1440px;
  margin: 100px auto 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.RECORDS-container {
  display: flex;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

.RECORDS-content {
  flex: 1;
  padding: 30px;
}

.RECORDS-card {
  background: #1f1f1f;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  overflow: hidden;
}

.RECORDS-title {
  color: #c9b896;
  font-size: 20px;
  margin: 0;
  padding: 20px;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
}

.RECORDS-table-wrap {
  overflow-x: auto;
}

.RECORDS-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.RECORDS-table th {
  background: #252525;
  color: #c9b896;
  padding: 15px;
  font-size: 14px;
  font-weight: normal;
}

.RECORDS-table td {
  padding: 15px;
  color: #ccc;
  font-size: 14px;
  border-top: 1px solid #2a2a2a;
}

.RECORDS-table .gray {
  background: #252525;
}

.RECORDS-table .red {
  color: #e63946;
}

.RECORDS-table .green {
  color: #27ae60;
}

/* 状态标签 */
.status-tag {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 13px;
}

.status-tag.timeout {
  background: rgba(230, 57, 70, 0.1);
  color: #e63946;
}

.status-tag.pending {
  background: rgba(241, 196, 15, 0.1);
  color: #f1c40f;
}

.status-tag.success {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}

.RECORDS-btn-wrap {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #2a2a2a;
}

.RECORDS-load-btn {
  background: #e63946;
  color: #ccc;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.RECORDS-load-btn:hover {
  opacity: 0.9;
}

/* ========== 兑换记录页面 EXCHANGE-RECORD- 前缀 ========== */
.EXCHANGE-RECORD-section {
  width: 1440px;
  margin: 100px auto 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.EXCHANGE-RECORD-container {
  display: flex;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

.EXCHANGE-RECORD-content {
  flex: 1;
  padding: 30px;
}

.EXCHANGE-RECORD-card {
  background: #1f1f1f;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  overflow: hidden;
}

.EXCHANGE-RECORD-title {
  color: #c9b896;
  font-size: 20px;
  margin: 0;
  padding: 20px;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
}

.EXCHANGE-RECORD-table-wrap {
  overflow-x: auto;
}

.EXCHANGE-RECORD-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.EXCHANGE-RECORD-table th {
  background: #252525;
  color: #c9b896;
  padding: 15px;
  font-size: 14px;
  font-weight: normal;
}

.EXCHANGE-RECORD-table td {
  padding: 15px;
  color: #ccc;
  font-size: 14px;
  border-top: 1px solid #2a2a2a;
}

.EXCHANGE-RECORD-table .red {
  color: #e63946;
}

/* 状态标签 */
.status-tag {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 13px;
}

.status-tag.sent {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}

.EXCHANGE-RECORD-btn-wrap {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #2a2a2a;
}

.EXCHANGE-RECORD-load-btn {
  background: #e63946;
  color: #ccc;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.EXCHANGE-RECORD-load-btn:hover {
  opacity: 0.9;
}

/* ========== 代理中心页面 AGENT- 前缀 ========== */
.AGENT-section {
  width: 1440px;
  margin: 100px auto 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.AGENT-container {
  display: flex;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

.AGENT-content {
  flex: 1;
  padding: 30px;
}

/* 可提现金额卡片 */
.AGENT-balance-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: radial-gradient(50% 50.01% at 46.74% 0%, rgba(66, 68, 69, 0.9) 0%, rgba(27, 29, 31, 0.6) 100%);
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 30px;
  border: 1px solid #2a2a2a;
}

.balance-info .label {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 6px;
}

.balance-info .value {
  color: #00ff00;
  font-size: 26px;
  font-weight: bold;
}

.AGENT-withdraw-btn {
  background: linear-gradient(135deg, #c9b896, #8a7858);
  color: #1A1A1A;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

/* 代理信息 */
.AGENT-section-title {
  color: #c9b896;
  font-size: 20px;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
}

.AGENT-section-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 18px;
  background: #c9b896;
  margin-right: 10px;
}

.AGENT-info-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.AGENT-info-card {
  flex: 1;
  background: #1f1f1f;
  border-radius: 8px;
  padding: 25px;
  border: 1px solid #2a2a2a;
}

.info-rules {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  color: #ccc;
  font-size: 14px;
  line-height: 1.8;
}

.AGENT-apply-btn {
  background: linear-gradient(135deg, #c9b896, #8a7858);
  color: #1A1A1A;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.info-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-bottom: 20px;
}

.info-item .info-label {
  color: #ccc;
  font-size: 13px;
  margin-bottom: 8px;
}

.info-item .info-value {
  color: #c9b896;
  font-size: 16px;
  font-weight: bold;
}

.info-tip {
  color: #ccc;
  font-size: 13px;
  display: flex;
  align-items: center;
  margin: 0;
}

.info-icon {
  color: #c9b896;
  margin-right: 8px;
}

/* 提现记录 */
.AGENT-record-card {
  background: #1f1f1f;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  overflow: hidden;
}

.AGENT-table-wrap {
  overflow-x: auto;
}

.AGENT-record-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.AGENT-record-table th {
  background: #252525;
  color: #c9b896;
  padding: 15px;
  font-size: 14px;
  font-weight: normal;
}

.AGENT-record-table td {
  padding: 15px;
  color: #ccc;
  font-size: 14px;
  border-top: 1px solid #2a2a2a;
}

.empty-tip {
  color: #666;
}

/* ========== 弹窗遮罩层样式 ========== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-box {
  background: #1f1f1f;
  border-radius: 8px;
  width: 400px;
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #2a2a2a;
}

.modal-header h4 {
  color: #ccc;
  margin: 0;
  font-size: 16px;
}

.modal-close {
  color: #ccc;
  font-size: 20px;
  cursor: pointer;
}

.modal-body {
  padding: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  color: #ccc;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  background: #2a2a2a;
  border: 1px solid #333;
  border-radius: 4px;
  color: #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

.agent-note {
  color: #ccc;
  font-size: 15px;
  margin: 0 0 15px 0;
}

.agent-rules {
  color: #ccc;
  font-size: 14px;
  line-height: 1.8;
  padding-left: 15px;
}

.agent-contact {
  color: #ccc;
  font-size: 13px;
  margin: 15px 0 0 0;
}

.modal-footer {
  padding: 15px 20px;
  border-top: 1px solid #2a2a2a;
  text-align: center;
}

.modal-btn {
  background: #e63946;
  color: #ccc;
  border: none;
  padding: 10px 30px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

/* ========== 防沉迷实名页面 REALNAME- ========== */
.REALNAME-section {
  width: 1440px;
  margin: 100px auto 50px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.REALNAME-container {
  display: flex;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

.REALNAME-content {
  flex: 1;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.REALNAME-card {
  width: 600px;
  background: #1f1f1f;
  border-radius: 10px;
  padding: 40px;
  border: 1px solid #2a2a2a;
}

.REALNAME-header {
  text-align: center;
  margin-bottom: 30px;
}

.REALNAME-header h2 {
  color: #c9b896;
  font-size: 24px;
  margin: 0 0 8px 0;
}

.REALNAME-header p {
  color: #ff9500;
  font-size: 14px;
  margin: 0;
}

/* 表单 */
.REALNAME-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-item label {
  color: #ccc;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-item input {
  width: 100%;
  padding: 14px 16px;
  background: #222;
  border: 1px solid #333;
  border-radius: 6px;
  color: #ccc;
  font-size: 15px;
  box-sizing: border-box;
}

.form-item input:focus {
  outline: none;
  border-color: #c9b896;
}

/* 提示 */
.REALNAME-tips {
  color: #ccc;
  font-size: 13px;
  line-height: 1.6;
  background: rgba(201, 184, 150, 0.05);
  padding: 15px;
  border-radius: 6px;
  border-left: 3px solid #c9b896;
}

.REALNAME-tips p {
  margin: 0;
}

/* 提交按钮 */
.REALNAME-submit-btn {
  padding: 16px;
  background: #c9b896;
  color: #111;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.REALNAME-submit-btn:hover {
  opacity: 0.9;
}

.ONLINEKEFU-sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
  width: 180px;
  background: url("//esa.zhongguanjituan.com/assets/darkstyle/online.jpg") no-repeat center top;
  background-size: 100% 100%;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.ONLINEKEFU-wrap {
  padding: 20px 15px;
  text-align: center;
}

.ONLINEKEFU-title {
  font-size: 22px;
  color: #c9b896;
  font-weight: bold;
}

.ONLINEKEFU-subtitle {
  font-size: 14px;
  color: #ccc;
  margin-top: 4px;
}

.ONLINEKEFU-qrcode {
  width: 140px;
  height: 140px;
  margin: 20px auto;
  background: rgb(34, 34, 34);
  border-radius: 4px;
  padding: 6px;
}

.ONLINEKEFU-qrimage {
  width: 100%;
  height: 100%;
  display: block;
}

/* 按钮：背景图 + 无文字 */
.ONLINEKEFU-btn {
  display: inline-block;
  width: 100%;
  height: 40px;
  /* 根据你图片高度调整 */
  background: url("//esa.zhongguanjituan.com/assets/darkstyle/onlinekefu.png") no-repeat center center;
  background-size: contain;
  border: none;
  cursor: pointer;
  text-indent: -9999px;
  /* 隐藏文字 */
  overflow: hidden;
}

.ONLINEKEFU-btn:hover {
  opacity: 0.9;
}

.ONLINEKEFU-btn:hover {
  opacity: 0.9;
}

/* 遮罩初始状态 */
.ONLINEKEFU-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* 显示状态 */
.ONLINEKEFU-mask.show {
  opacity: 1;
  visibility: visible;
}

/* 弹窗盒子 */
.ONLINEKEFU-pop {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 700px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ONLINEKEFU-mask.show .ONLINEKEFU-pop {
  transform: translate(-50%, -50%) scale(1);
}

.ONLINEKEFU-close {
  position: absolute;
  right: 5px;
  top: 1px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1;
  color: #c9b896;
  font-weight: bold;
}

/* 左侧悬浮侧边栏 */
.LEFTSIDEBAR-sidebar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  background: rgba(20, 20, 20, 0.9);
  border-radius: 24px;
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.LEFTSIDEBAR-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.LEFTSIDEBAR-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.LEFTSIDEBAR-item:hover {
  color: #ccc;
  background: rgba(255, 255, 255, 0.05);
}

.LEFTSIDEBAR-item.active {
  color: #ccc;
}

.LEFTSIDEBAR-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.LEFTSIDEBAR-icon svg {
  width: 100%;
  height: 100%;
}

.LEFTSIDEBAR-text {
  font-size: 12px;
  text-align: center;
}

.LEFTSIDEBAR-icon-highlight,
.LEFTSIDEBAR-text-highlight {
  color: #f1c40f;
}

.LEFTSIDEBAR-divider {
  width: 80%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px auto;
}

.line {
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  background: radial-gradient(ellipse 50% 5375% at 50% 100%, #ff6b35 1%, rgba(255, 107, 53, 0));
}

/* 无游戏提示 */
.no-game-tip {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ccc;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.hpbtn {
  background: linear-gradient(135deg, #c9b896, #8a7858);
  color: #1A1A1A;
}

/* Slogen 核心样式 - 置顶视频上层 */
.slogen {
  /* 核心：置于最顶层（z-index 超大值确保覆盖视频） */
  /*z-index: 9999;*/
  /* 绝对定位，不影响其他元素布局 */
  position: absolute;
  /* 宽度固定 1440px */
  width: 1440px;
  /* 距离顶部 200px */
  top: 200px;
  /* 水平居中显示（适配不同屏幕） */
  left: 50%;
  transform: translateX(-50%);

  /* 图片自适应容器宽度 */
  img {
    width: 100%;
    height: auto;
    display: block;
    /* 可选：防止图片被选中/拖拽 */
    user-select: none;
    pointer-events: none;
  }
}


.BAOQU-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.BAOQU-point-info {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.BAOQU-exbtn {
  background: #ff4d4f;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 13px;
  cursor: pointer;
}

.BAOQU-box {
  margin-bottom: 30px;
  border-radius: 8px;
  background: #16161a;
  padding: 20px;
}

.BAOQU-title {
  font-size: 18px;
  font-weight: 600;
  color: #c9b896;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.BAOQU-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.BAOQU-package {
  background: radial-gradient(50% 50.01% at 46.74% 0%, rgba(66, 68, 69, 0.9) 0%, rgba(27, 29, 31, 0.6) 100%);
  border: 1px solid #2c2c32;
  border-radius: 8px;
  padding: 18px;
  position: relative;
}

.BAOQU-package-name {
  font-size: 16px;
  font-weight: 600;
  color: #ff9500;
  margin-bottom: 8px;
}

.BAOQU-package-desc {
  color: #999;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.BAOQU-package-info {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.BAOQU-tag {
  background: #25252d;
  color: #ccc;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.BAOQU-points {
  color: #ff4d4f;
  font-weight: 600;
}

.BAOQU-apply-btn {
  width: 100%;
  /* 渐变背景（保留最终样式） */
  background: linear-gradient(90deg, #ebc077, #f9e4bf 64.671%, #f2d29b 84.431%);
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 5px;
  /* 核心：添加过渡动画，让位移/背景色平滑变化 */
  transition: all 0.3s ease;
  /* 固定定位方式，避免位移抖动 */
  position: relative;
}

/* hover 样式：上移2px + 背景色变化 */
.BAOQU-apply-btn:hover {
  /* 向上平移2px（负值为上移） */
  transform: translateY(-2px);
}

.BAOQU-section-title {
  color: #c9b896;
  font-size: 20px;
  margin: 0;
  padding: 0px 0 0px 0;
  border-bottom: 0px solid #2a2a2a;
  display: flex;
  align-items: center;
}

.BAOQU-note {
  background: #1c1c22;
  border-radius: 8px;
  padding: 18px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
}

.BAOQU-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.BAOQU-modal.show {
  opacity: 1;
  visibility: visible;
}

.BAOQU-modal-inner {
  background: #16161a;
  border: 2px solid rgba(242, 210, 155, 0.28);
  width: 100%;
  max-width: 620px;
  border-radius: 10px;
  padding: 30px 50px;
  line-height: 30px;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
  max-height: 85vh;
  overflow-y: auto;
}

.BAOQU-modal.show .BAOQU-modal-inner {
  transform: translateY(0);
}

.BAOQU-modal-close {
  position: absolute;
  right: 18px;
  top: 15px;
  font-size: 22px;
  cursor: pointer;
}

.BAOQU-modal-title {
  text-align: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 22px;
  font-weight: 600;
  color: #c9b896;
}

.BAOQU-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 15px;
}

.BAOQU-form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.BAOQU-form-item {
  margin-bottom: 15px;
  background: #1c1c22;
  padding: 15px;
  border-radius: 6px;
}

.BAOQU-form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.BAOQU-form-input,
.BAOQU-form-select {
  width: 100%;
  background: #1c1c22;
  border: 1px solid #2c2c32;
  border-radius: 6px;
  padding: 10px 12px;
  color: #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

.BAOQU-form-input:read-only {
  background: #121214;
  color: #777;
  cursor: not-allowed;
}

.BAOQU-form-input:focus,
.BAOQU-form-select:focus {
  outline: none;
  border-color: #ff4d4f;
}

.BAOQU-radio-group {
  display: flex;
  gap: 15px;
  align-items: center;
}

.BAOQU-radio-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ddd;
}


.BAOQU-submit-btn {
  width: 100%;
  /* 渐变背景（保留最终样式） */
  background: linear-gradient(90deg, #ebc077, #f9e4bf 64.671%, #f2d29b 84.431%);
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 5px;
  /* 核心：添加过渡动画，让位移/背景色平滑变化 */
  transition: all 0.3s ease;
  /* 固定定位方式，避免位移抖动 */
  position: relative;
}

/* hover 样式：上移2px + 背景色变化 */
.BAOQU-submit-btn:hover {
  /* 向上平移2px（负值为上移） */
  transform: translateY(-2px);
}

.BAOQU-text-success {
  color: #00df7a;
  font-weight: 600;
}

.BAOQU-text-wait {
  color: #fadb14;
  font-weight: 600;
}

.BAOQU-text-danger {
  color: #ff4d4f;
  font-weight: 600;
}

.BAOQU-account-group {
  margin-bottom: 8px;
  display: grid;
}

.BAOQU-add-account {
  background: #25252d;
  color: #ccc;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  margin-top: 5px;
}

.BAOQU-remove-account {
  background: #333;
  color: #ff4d4f;
  border: none;
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 12px;
  cursor: pointer;
  margin-top: 5px;
}

.BAOQU-alert-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.BAOQU-alert-modal.show {
  opacity: 1;
  visibility: visible;
}

.BAOQU-alert-inner {
  background: #111111;
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  padding: 30px 25px;
  border: 2px solid #e6c07b;
  text-align: center;
}

.BAOQU-alert-title {
  font-size: 28px;
  color: #e6c07b;
  margin-bottom: 20px;
  font-weight: bold;
}

.BAOQU-alert-text {
  font-size: 14px;
  color: #00FF00;
  margin-bottom: 30px;
  line-height: 1.5;
}

.BAOQU-alert-btn {
  background: #e6c07b;
  color: #111;
  border: none;
  border-radius: 8px;
  padding: 12px 40px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.BAOQU-table-btn {
  padding: 6px 12px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  margin: 2px;
}

.BAOQU-btn-yellow {
  background: #fadb14;
  color: #000;
}

.BAOQU-btn-blue {
  background: #1890ff;
  color: #ccc;
}

.search-bar {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-input {
  background: #1c1c22;
  border: 1px solid #2c2c32;
  border-radius: 6px;
  padding: 8px 12px;
  color: #ccc;
  width: 180px;
}

.search-btn {
  background: #1890ff;
  color: #ccc;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
}

/* 统一修改 datetime-local 选择器图标为白色 */
.BAOQU-form-input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  /* 核心：把图标变成白色 */
  filter: invert(1) brightness(2);

  /* 可选：调整大小/间距 */
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 1;
}

/* 兼容 Firefox */
.BAOQU-form-input[type="datetime-local"]::-moz-calendar-picker-indicator {
  filter: invert(1) brightness(2);
}

/* 黑金风格 单选框美化 */
input[type="radio"] {
  /* 隐藏原生默认单选框 */
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #b89748;
  /* 金色边框 */
  border-radius: 50%;
  background: #1a1a1a;
  /* 黑色底色 */
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  margin-right: 8px;
}

/* 选中后 内部金色圆点 */
input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4b866, #b89748);
  /* 金色渐变 */
}

/* hover 悬浮效果 */
input[type="radio"]:hover {
  border-color: #d4b866;
  box-shadow: 0 0 6px rgba(212, 184, 102, 0.4);
}


@media (max-width: 992px) {
  #header {
    overflow: hidden;
  }

  .navbar-inner {
    min-height: 40px;
    gap: 10px;
    padding: 6px 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .logo {
    flex-shrink: 0;
    gap: 6px;
  }

  .logo img {
    width: 100px;
    height: auto;
  }

  .logop {
    font-size: 10px;
    display: none;
  }

  .nav-menu {
    gap: 12px;
    flex-shrink: 0;
  }

  .nav-menu a {
    font-size: 16px;
    white-space: nowrap;
  }
  .feature-cards{
    display: block;
  }
  .feature-card{
    margin-bottom: 10px;
  }
  .games-grid{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .navbar-inner {
    min-height: 36px;
    gap: 8px;
    padding: 4px 6px;
  }

  .logo img {
    width: 100px;
    height: auto;
  }

  .nav-menu {
    gap: 10px;
  }

  .nav-menu a {
    font-size: 16px;
  }
  .feature-cards{
    display: block;
  }
  .feature-card{
    margin-bottom: 10px;
  }
  .games-grid{
    grid-template-columns: 1fr !important;
  }
}

