@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&family=Spoqa+Han+Sans:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Noto Sans KR', 'Spoqa Han Sans', 'Arial', sans-serif;
  background: linear-gradient(135deg, #1a1026 0%, #2d0a1a 100%);
  color: #fff;
  text-align: center;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Banner */
/* Banner美化 */
.banner {
  background: linear-gradient(120deg, #2d0a1a 60%, #1a1026 100%);
  border-top: 4px solid #ffd700;
  box-shadow: 0 8px 32px #0008;
  position: relative;
  padding-bottom: 12px;
}
.banner-logo img {
  filter: drop-shadow(0 2px 8px #ffd70088);
}
.banner-title {
  font-size: 2em;
  font-weight: bold;
  color: #ffd6e0;
  text-shadow: 0 2px 12px #000a, 0 0 8px #ffb6c1;
  margin-bottom: 8px;
}
.banner-subtitle {
  font-size: 1.1em;
  color: #ffe;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.banner-tags {
  margin-bottom: 14px;
}
.banner-tag {
  display: inline-block;
  background: linear-gradient(90deg, #ffd700 60%, #ffb6c1 100%);
  color: #2d0a1a;
  font-size: 0.92em;
  border-radius: 12px;
  padding: 3px 12px;
  margin: 0 4px;
  font-weight: bold;
  box-shadow: 0 1px 6px #ffd70044;
}
.banner-event {
  margin-top: 10px;
  color: #ffd700;
  font-size: 1em;
  font-weight: bold;
  animation: blink 1.2s infinite alternate;
}
@keyframes blink {
  0% { opacity: 1; }
  100% { opacity: 0.7; }
}

/* 美女展示区 */
.girls-showcase {
  background: linear-gradient(120deg, #2d0a1a 60%, #1a1026 100%);
  padding: 40px 0 24px 0;
  border-top: 2px solid #ffd70044;
  border-bottom: 2px solid #ffd70044;
  box-shadow: 0 4px 24px #0006;
}
.girls-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.girls-row {
  display: flex;
  flex-direction: row;
  gap: 22px;
  justify-content: center;
}
.girl-card {
  background: linear-gradient(135deg, #23122a 70%, #3a1c2d 100%);
  border-radius: 18px;
  padding: 18px 12px 14px 12px;
  width: 130px;
  box-shadow: 0 2px 16px #0005, 0 0 0 2px #ffd70033;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  position: relative;
  border: 1.5px solid #ffd6e0;
}
.girl-card:hover {
  transform: translateY(-8px) scale(1.06);
  background: linear-gradient(135deg, #3a1c2d 60%, #23122a 100%);
  box-shadow: 0 8px 32px #ffd70055, 0 0 0 2px #ffb6c1;
}

/* 美女头像样式调整，确保背景图片正常显示 */
.girl-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2.5px solid #ffd700;
  box-shadow: 0 2px 8px #ffd70055;
  background: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.girl-name {
  font-weight: bold;
  font-size: 1.15em;
  margin-bottom: 4px;
  color: #ffd6e0;
  letter-spacing: 1px;
}
.girl-desc {
  font-size: 0.98em;
  color: #ffb6c1;
  margin-bottom: 2px;
}

/* 让美女卡片文字在视频背景下更清晰 */
.girl-name, .girl-desc {
  text-shadow: 0 2px 8px #000a;
}
.girl-desc {
  font-size: 0.98em;
  color: #ffb6c1;
  margin-bottom: 2px;
}

/* 鼠标悬停显示大图 */
.girl-avatar-large {
  display: none;
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translate(-50%, -100%);
  width: 180px;
  height: 180px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 4px 24px #000a, 0 0 0 3px #ffd700;
  z-index: 10;
  background: #222;
  border: 3px solid #ffb6c1;
}
.girl-card:hover .girl-avatar-large {
  display: block;
}

/* 服务描述区 */
.service-section {
  background: linear-gradient(120deg, #1a1026 60%, #2d0a1a 100%);
  padding: 32px 0 18px 0;
  border-bottom: 2px solid #ffd70044;
}
.service-icons {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.1em;
  color: #ffd700;
  width: 90px;
  text-shadow: 0 2px 8px #000a;
}
.service-icon span {
  font-size: 2em;
  margin-bottom: 6px;
}

/* 评论区滚动样式 */
.comments-section {
  background: linear-gradient(120deg, #2d0a1a 60%, #1a1026 100%);
  padding: 28px 0 12px 0;
  overflow: hidden;
  height: 220px; /* 原来可能是60px或80px，这里加大 */
  position: relative;
}
.comment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  animation: commentScroll 20s linear infinite;
}
.comment-item {
  background: linear-gradient(90deg, #3a1c2d 60%, #23122a 100%);
  border-radius: 12px;
  padding: 12px 20px;
  color: #ffe;
  font-size: 1em;
  max-width: 340px;
  box-shadow: 0 1px 8px #ffd70022;
  border: 1px solid #ffd6e0;
  min-height: 24px;
  margin: 0 auto;
  width: fit-content;
}

@keyframes commentScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
/* CTA底部区 */
.cta-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 36px 0 22px 0;
}
.cta-bottom .cta-btn {
  flex: 1 1 140px;
  max-width: 220px;
  min-width: 120px;
  margin: 0;
  text-align: center;
}
@media (max-width: 600px) {
  .cta-bottom {
    gap: 8px;
    margin: 24px 0 16px 0;
  }
  .cta-bottom .cta-btn {
    flex: 1 1 80vw;
    max-width: 95vw;
    min-width: 0;
    font-size: 1em;
    padding: 12px 0;
  }
  }

/* 页脚 */
.footer {
  font-size: 1em;
  color: #ffd700;
  background: #181926;
  padding: 20px 0 28px 0;
  border-top: 2px solid #ffd70044;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #000a;
}

/* 响应式 */
@media (max-width: 900px) {
  .girls-row {
    gap: 8px;
  }
  .girl-card {
    width: 22vw;
    min-width: 90px;
    padding: 10px 4px;
  }
}
@media (max-width: 600px) {
  .banner-title { font-size: 1.3em; }
  .girl-card { width: 44vw; min-width: 80px; padding: 8px 2px; }
  .girls-row { flex-wrap: wrap; gap: 6px; }
  .girl-avatar-large { width: 120px; height: 120px; }
  .service-icon { width: 70px; font-size: 0.95em; }
  .cta-btn { font-size: 1em; padding: 10px 14px; }
}
/* 背景动图样式 */
.bg-gif {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-gif-img {
  position: absolute;
  opacity: 0.18;
  filter: blur(2px) brightness(0.9);
  border-radius: 24px;
  object-fit: cover;
  width: 60vw;
  min-width: 260px;
  max-width: 420px;
  height: auto;
  transition: opacity 0.3s;
}
.bg-gif-img1 {
  left: 5vw; top: 10vh;
}
.bg-gif-img2 {
  right: 5vw; bottom: 8vh;
  width: 40vw;
  min-width: 160px;
  max-width: 260px;
}

/* 主内容区始终在上层 */
.banner, .girls-showcase, .service-section, .comments-section, .cta-bottom, .footer {
  position: relative;
  z-index: 1;
}

/* 其它内容保持你的高端风格和响应式设置即可 */
/* CTA按钮美化 */
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ffd700 0%, #ffb6c1 100%);
  color: #2d0a1a;
  border: none;
  border-radius: 28px;
  font-size: 1.15em;
  font-weight: bold;
  padding: 14px 32px;
  margin: 6px 8px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px #ffd70044, 0 2px 8px #0003;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #fff6 0%, #ffd70044 100%);
  opacity: 0.18;
  border-radius: 28px;
  pointer-events: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #ffb6c1 0%, #ffd700 100%);
  color: #1a1026;
  transform: scale(1.05);
  box-shadow: 0 8px 32px #ffd70077, 0 2px 8px #ffb6c1;
}

/* 手机端按钮宽度自适应 */
@media (max-width: 600px) {
  .cta-btn {
    display: block;
    width: 90vw;
    max-width: 340px;
    margin: 10px auto;
    font-size: 1.05em;
    padding: 14px 0;
  }
}
/* 每排美女展示区视频背景 */
.girls-row-bg {
  position: relative;
  margin-bottom: 18px;
  overflow: hidden;
}
.girls-bg-video {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.32; /* 半透明，可调整 */
  pointer-events: none;
}
.girls-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
}
.girl-card {
  background: linear-gradient(135deg, rgba(35,18,42,0.68) 70%, rgba(58,28,45,0.68) 100%);
  border-radius: 18px;
  padding: 18px 12px 14px 12px;
  width: 130px;
  box-shadow: 0 2px 16px #0005, 0 0 0 2px #ffd70033;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  position: relative;
  border: 1.5px solid #ffd6e0;
  z-index: 2;
}
/* 悬浮视频广告窗样式 */
.floating-video {
  position: fixed;
  top: 50%;
  width: 110px;
  height: 196px;
  transform: translateY(-50%);
  z-index: 9999;
  box-shadow: 0 4px 24px #0008;
  border-radius: 18px;
  overflow: hidden;
  background: #111c;
  border: 2px solid #ffd700cc;
  transition: opacity 0.2s;
}
.floating-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.floating-video-left {
  left: 12px;
}
.floating-video-right {
  right: 12px;
}
.line-float-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: linear-gradient(90deg, #ff3576 60%, #ffb86c 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 8px 14px 12px;
  box-shadow: 0 -2px 16px #0003;
  font-size: 1.15em;
}
.line-float-text {
  margin-right: 18px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #0005;
}
.line-float-btn {
  display: flex;
  align-items: center;
  background: #fff;
  color: #06C755;
  border-radius: 24px;
  padding: 10px 22px 10px 14px;
  font-weight: bold;
  font-size: 1.12em;
  text-decoration: none;
  box-shadow: 0 2px 8px #ff357655;
  transition: background 0.2s, color 0.2s;
  margin-left: 8px;
}
.line-float-btn:hover {
  background: #06C755;
  color: #fff;
}
.line-icon {
  font-size: 1.5em;
  margin-right: 10px;
  color: #06C755 !important;
}
.line-arrow {
  font-size: 1.3em;
  margin-left: 10px;
  animation: arrow-move 1s infinite alternate;
}
@keyframes arrow-move {
  0% { transform: translateX(0);}
  100% { transform: translateX(8px);}
}
@media (max-width: 600px) {
  .line-float-bar {
    font-size: 1em;
    flex-direction: column;
    padding: 10px 4px 10px 4px;
  }
  .line-float-text {
    margin-bottom: 6px;
    margin-right: 0;
    text-align: center;
  }
  .line-float-btn {
    width: 90vw;
    justify-content: center;
    font-size: 1em;
  }
}
.beauty-marquee-wrap {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #fff0f6 0%, #ffe6e6 100%);
  padding: 0;
  margin: 0 0 12px 0;
  box-sizing: border-box;
  height: 120px;
}
.beauty-marquee {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  /* 滚动速度变慢，建议30s或更慢 */
  animation: beauty-scroll 30s linear infinite;
  will-change: transform;
  height: 120px;
}
@keyframes beauty-scroll {
  0% { transform: translateX(0);}
  100% { transform: translateX(-50%);}
}
.beauty-img {
  width: 90px;
  height: 120px;
  border-radius: 0;
  object-fit: cover;
  border: none;
  box-shadow: none;
  background: none;
  margin: 0;
  padding: 0;
  display: block;
}