* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #050508;
  color: #f2f2f2;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 顶部导航栏 */
.header-top {
  background: linear-gradient(90deg, #1a0f26, #28143b);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(255, 50, 110, 0.2);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-name {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff587f, #ffb066);
  -webkit-background-clip: text;
  color: transparent;
}
.header-buttons {
  display: flex;
  gap: 16px;
}
.btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(90deg, #ff3c68, #ff6b52);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 60, 104, 0.4);
}
.btn-outline {
  background: transparent;
  border: 1px solid #ff587f;
  color: #ff587f;
}
.btn-outline:hover {
  background: rgba(255, 88, 127, 0.15);
}

/* 轮播图区域 */
.banner-box {
  margin: 30px 0;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
#banner-wrap {
  width: 100%;
  height: 100%;
}
.banner-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.banner-item.active {
  opacity: 1;
}
.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 客服模块 */
.service-card {
  background: linear-gradient(135deg, #18102a, #221538);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  border: 1px solid rgba(255, 88, 127, 0.2);
}
.qrcode-wrap {
  width: 140px;
  height: 140px;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}
#qrcode-box {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-text h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ffd0d9;
}
.service-text p {
  font-size: 16px;
  margin: 6px 0;
  color: #ccc;
}
.service-acc-text {
  font-size: 18px;
  color: #ff587f;
  font-weight: bold;
}
.copy-btn {
  margin-top: 12px;
  padding: 8px 18px;
  background: #ff3c68;
  border-radius: 6px;
  border: none;
  color: white;
  cursor: pointer;
}

/* 通用板块标题 */
.section-title {
  font-size: 24px;
  border-left: 5px solid #ff587f;
  padding-left: 12px;
  margin: 60px 0 25px;
}

/* 主播卡片网格 */
.anchor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
  margin-bottom: 20px;
}
.anchor-card {
  background: #140e24;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.anchor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(255, 60, 104, 0.2);
  border-color: rgba(255, 88, 127, 0.4);
}
.anchor-cover {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.anchor-video {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.anchor-info {
  padding: 14px;
}
.anchor-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.anchor-name {
  font-size: 16px;
  font-weight: 500;
}
.tag-live {
  background: #ff3c68;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
}
.tag-video {
  background: #555;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
}
.anchor-view {
  font-size: 13px;
  color: #aaa;
}

/* 底部区域 */
.footer {
  margin-top: 100px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #777;
  font-size: 14px;
}

/* 响应式适配手机 */
@media(max-width:768px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }
  .service-card {
    flex-direction: column;
    text-align: center;
  }
  .banner-box {
    height: 260px;
  }
  .anchor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}