:root {
  --ink: #101114;
  --ink-2: #171a20;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f6f2e9;
  --muted: #b8b7bd;
  --gold: #d6b56d;
  --blue: #4da3ff;
  --coral: #f45b69;
  --green: #41d6a4;
  --dark-text: #20232b;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
  --page-fade: #101114;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

body {
  min-height: 100vh;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(circle at 18% 10%, rgba(77, 163, 255, 0.22), transparent 24rem),
    radial-gradient(circle at 82% 4%, rgba(244, 91, 105, 0.18), transparent 21rem),
    linear-gradient(180deg, #101114 0%, #16171c 44%, #0f1116 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-app {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 17, 20, 0.76);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 292px;
  height: auto;
  max-height: 52px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(214, 181, 109, 0.58);
  border-radius: 8px;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(214, 181, 109, 0.16), rgba(77, 163, 255, 0.12));
  font-weight: 800;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.site-nav a,
.link-button {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 12px;
  color: #e5e1d7;
  background: transparent;
  white-space: nowrap;
}

.site-nav a:hover,
.link-button:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.theme-toggle {
  min-height: 38px;
  border: 1px solid rgba(214, 181, 109, 0.34);
  border-radius: 8px;
  padding: 8px 11px;
  color: var(--gold);
  background: rgba(214, 181, 109, 0.08);
  white-space: nowrap;
}

.theme-toggle:hover {
  border-color: rgba(214, 181, 109, 0.58);
  background: rgba(214, 181, 109, 0.14);
}

.user-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 210px;
  border: 1px solid rgba(77, 163, 255, 0.28);
  border-radius: 8px;
  padding: 8px 10px;
  color: #eef6ff;
  background: rgba(77, 163, 255, 0.1);
}

.user-chip span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 10px 15px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.13);
}

.btn.primary {
  border-color: rgba(214, 181, 109, 0.5);
  color: #18140a;
  background: linear-gradient(135deg, #f2d88a, var(--gold));
  font-weight: 700;
}

.btn.blue {
  border-color: rgba(77, 163, 255, 0.58);
  background: linear-gradient(135deg, #4da3ff, #6b7cff);
  color: #fff;
  font-weight: 700;
}

.btn.coral {
  border-color: rgba(244, 91, 105, 0.55);
  background: linear-gradient(135deg, #f45b69, #f0895f);
  color: #fff;
  font-weight: 700;
}

.btn.ghost {
  color: #f6f2e9;
  background: rgba(255, 255, 255, 0.06);
}

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 42px;
  align-items: center;
  min-height: 620px;
  padding: 56px 0 46px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  border: 1px solid rgba(214, 181, 109, 0.38);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--gold);
  background: rgba(214, 181, 109, 0.08);
  font-size: 13px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: #d1ced3;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
  max-width: 650px;
}

.stat-tile {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.06);
}

.stat-tile strong {
  display: block;
  color: #fff;
  font-size: 24px;
}

.stat-tile span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.hero-stage {
  min-width: 0;
}

.stage-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  min-height: 470px;
  padding: 22px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 30% 20%, rgba(214, 181, 109, 0.24), transparent 14rem),
    radial-gradient(circle at 74% 65%, rgba(77, 163, 255, 0.24), transparent 16rem),
    #15171e;
  box-shadow: var(--shadow);
}

.stage-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.07), transparent 36%);
  opacity: 0.7;
}

.live-card-feature {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  min-height: 425px;
}

.live-meter {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(244, 91, 105, 0.92);
  font-size: 13px;
  font-weight: 700;
}

.live-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.tone-note {
  border-radius: 8px;
  padding: 8px 11px;
  color: #08131f;
  background: rgba(246, 242, 233, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.stage-title {
  align-self: end;
  max-width: 450px;
}

.stage-title h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.18;
}

.stage-title p {
  margin: 12px 0 0;
  color: #d9d9de;
  line-height: 1.7;
}

.stage-frame {
  padding: 0;
  background: #10141c;
}

.stage-frame::before {
  z-index: 2;
  pointer-events: none;
  opacity: 0.45;
}

.hero-live-feature {
  min-height: 470px;
  overflow: hidden;
  border-radius: 8px;
  padding: 22px;
  background: #10141c;
}

.hero-room-video,
.hero-room-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #0a0d12;
  filter: saturate(1.05) contrast(1.04);
}

.hero-room-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-live-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 12, 18, 0.88), rgba(10, 12, 18, 0.34) 52%, rgba(10, 12, 18, 0.78)),
    linear-gradient(0deg, rgba(10, 12, 18, 0.88), transparent 54%);
}

.hero-live-feature .live-meter,
.hero-live-feature .stage-title {
  position: relative;
  z-index: 3;
}

.hero-enter-hint {
  border: 1px solid rgba(214, 181, 109, 0.42);
  border-radius: 8px;
  padding: 8px 11px;
  color: #11131a;
  background: rgba(246, 216, 138, 0.92);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-enter-hint:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(214, 181, 109, 0.24);
}

.hero-live-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
  max-width: 420px;
}

.hero-live-metrics span {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 9px 10px;
  color: rgba(246, 242, 233, 0.72);
  background: rgba(16, 17, 20, 0.58);
  font-size: 12px;
}

.hero-live-metrics strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.1;
}

.section {
  padding: 54px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.category-rail,
.skill-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.category-card,
.skill-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  text-align: left;
}

.category-card strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
}

.category-card span,
.skill-card span {
  color: var(--muted);
  font-size: 13px;
}

.category-card strong,
.skill-card strong {
  color: var(--text);
}

.category-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #0f1116;
  background: linear-gradient(135deg, var(--gold), #e9dfbf);
  font-weight: 900;
}

.room-grid,
.anchor-grid {
  display: grid;
  gap: 18px;
}

.room-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.room-carousel-shell {
  position: relative;
  isolation: isolate;
  margin-inline: -10px;
  padding: 4px 48px 18px;
}

.room-carousel-shell::before,
.room-carousel-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 14px;
  z-index: 2;
  width: 52px;
  pointer-events: none;
}

.room-carousel-shell::before {
  left: 0;
  background: linear-gradient(90deg, var(--page-fade), transparent);
}

.room-carousel-shell::after {
  right: 0;
  background: linear-gradient(270deg, var(--page-fade), transparent);
}

.room-carousel {
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 2px;
  scrollbar-width: none;
  padding: 2px 2px 8px;
}

.room-carousel::-webkit-scrollbar {
  display: none;
}

.room-carousel .premium-room-card {
  flex: 0 0 clamp(252px, 23vw, 308px);
  min-height: 416px;
  scroll-snap-align: start;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.room-carousel .premium-room-card .room-card-body {
  padding: 76px 16px 17px;
}

.room-carousel .room-title-row h3 {
  font-size: 21px;
}

.room-carousel .room-card-desc {
  min-height: 54px;
  font-size: 12px;
  line-height: 1.55;
}

.room-carousel .room-host-line {
  margin-top: 10px;
}

.room-carousel .premium-metrics {
  gap: 7px;
  margin-top: 12px;
}

.room-carousel .premium-metrics span {
  padding: 8px 9px;
}

.room-carousel .premium-metrics strong {
  font-size: 15px;
}

.room-carousel .premium-room-card .card-actions {
  margin-top: 12px;
}

.room-carousel .premium-room-card .card-actions .btn {
  min-height: 38px;
  padding: 8px 13px;
}

.room-carousel .card-live-overlay,
.room-carousel .card-preview-cta {
  top: 15px;
}

.room-carousel .card-live-overlay {
  left: 15px;
}

.room-carousel .card-preview-cta {
  right: 15px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(10, 13, 20, 0.68);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
}

.carousel-arrow:hover {
  border-color: rgba(214, 181, 109, 0.58);
  color: #11131a;
  background: rgba(246, 216, 138, 0.92);
}

.carousel-arrow.prev {
  left: 2px;
}

.carousel-arrow.next {
  right: 2px;
}

.anchor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-card,
.anchor-card,
.profile-panel,
.policy-panel,
.filter-panel,
.detail-panel,
.service-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.room-card {
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 18% 0%, rgba(214, 181, 109, 0.14), transparent 18rem);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.room-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(214, 181, 109, 0.18), transparent 32%, rgba(77, 163, 255, 0.12));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.room-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 181, 109, 0.48);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(214, 181, 109, 0.08);
}

.room-card:hover::before {
  opacity: 1;
}

.room-card-body,
.anchor-card,
.profile-panel,
.policy-panel,
.detail-panel {
  padding: 18px;
}

.media-cover {
  position: relative;
  height: 236px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #191c24;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.media-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(16, 17, 20, 0.52));
}

.media-cover img,
.detail-media img,
.detail-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-cover img {
  transform: scale(1.02);
  transition: transform 0.32s ease, filter 0.32s ease;
}

.room-card:hover .media-cover img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

.card-preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.preview-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  border-radius: 8px;
  padding: 6px 9px;
  color: #fff;
  background: rgba(16, 17, 20, 0.64);
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.room-card:hover .card-preview-video,
.room-card:hover .preview-chip {
  opacity: 1;
}

.cover-art {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: 18px;
  background: linear-gradient(135deg, #262a34, #11131a);
}

.cover-art::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.cover-art strong {
  position: relative;
  z-index: 1;
  max-width: 90%;
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
}

.cover-art span {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.tone-0 { background: linear-gradient(135deg, #211f2f, #7f5560); }
.tone-1 { background: linear-gradient(135deg, #18253d, #536f9c); }
.tone-2 { background: linear-gradient(135deg, #2e2418, #b89152); }
.tone-3 { background: linear-gradient(135deg, #142927, #5fa792); }
.tone-4 { background: linear-gradient(135deg, #2b1828, #9f6175); }
.tone-5 { background: linear-gradient(135deg, #1b2330, #4da3ff); }
.tone-6 { background: linear-gradient(135deg, #2d2217, #d6b56d); }
.tone-7 { background: linear-gradient(135deg, #15171e, #f45b69); }
.tone-8 { background: linear-gradient(135deg, #172323, #41d6a4); }
.tone-9 { background: linear-gradient(135deg, #201a2c, #8067d8); }

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.status,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 8px;
  padding: 4px 8px;
  color: #fff;
  background: rgba(77, 163, 255, 0.2);
  font-size: 12px;
  white-space: nowrap;
}

.status.live {
  background: rgba(244, 91, 105, 0.88);
}

.status.preview {
  color: #141414;
  background: var(--gold);
}

.status.closed {
  background: rgba(184, 183, 189, 0.3);
}

.room-card h3,
.anchor-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
}

.meta-list {
  display: grid;
  gap: 7px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.metric-pill {
  border-radius: 8px;
  padding: 6px 8px;
  color: #dce8f8;
  background: rgba(77, 163, 255, 0.12);
  font-size: 12px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.premium-room-card {
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(11, 13, 18, 0.18), rgba(11, 13, 18, 0.92)),
    #11131a;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.premium-room-card::before {
  z-index: 2;
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(7, 9, 14, 0.1) 0%, rgba(7, 9, 14, 0.18) 36%, rgba(7, 9, 14, 0.9) 100%),
    radial-gradient(circle at 16% 82%, rgba(214, 181, 109, 0.22), transparent 15rem),
    radial-gradient(circle at 88% 18%, rgba(77, 163, 255, 0.16), transparent 12rem);
}

.premium-room-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.premium-room-card:hover::after {
  opacity: 1;
}

.premium-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
}

.premium-media::after {
  inset: 0;
  z-index: 1;
  height: auto;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.06) 0%, rgba(5, 7, 11, 0.14) 42%, rgba(5, 7, 11, 0.86) 100%),
    linear-gradient(90deg, rgba(5, 7, 11, 0.46), transparent 48%, rgba(5, 7, 11, 0.18));
}

.premium-room-card .media-cover img,
.premium-room-card .card-preview-video {
  height: 100%;
  object-fit: cover;
}

.premium-room-card .preview-chip {
  display: none;
}

.card-live-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  right: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  pointer-events: none;
}

.card-live-overlay > span:not(.status) {
  border-radius: 8px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(18, 28, 40, 0.72);
  font-size: 12px;
}

.premium-room-card .card-live-overlay > span:not(.status) {
  display: none;
}

.card-preview-cta {
  position: absolute;
  top: 18px;
  right: 18px;
  left: auto;
  bottom: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid rgba(246, 216, 138, 0.68);
  border-radius: 8px;
  color: #11131a;
  background: rgba(246, 216, 138, 0.92);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  opacity: 1;
  padding: 8px 10px;
  transform: translateY(0);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.room-card:hover .card-preview-cta {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(214, 181, 109, 0.28);
}

.premium-room-card .room-card-body {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 96px 18px 20px;
  color: #fff;
}

.room-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.room-title-row h3 {
  margin: 0;
  min-width: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.18;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.room-skill-chip {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.room-card-desc {
  min-height: 66px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.62;
}

.room-host-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.premium-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.premium-metrics span {
  display: grid;
  gap: 3px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 9px 10px;
  background: rgba(10, 12, 18, 0.5);
  backdrop-filter: blur(14px);
}

.premium-metrics em {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-style: normal;
}

.premium-metrics strong {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.premium-room-card .card-actions {
  gap: 8px;
}

.premium-room-card .card-actions .btn {
  min-height: 42px;
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.premium-room-card .card-actions .btn.primary {
  border-color: rgba(246, 216, 138, 0.72);
  color: #131621;
  background: rgba(246, 216, 138, 0.92);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 22px;
}

.service-card h3 {
  margin: 0 0 10px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.compliance-section {
  padding: 0 0 58px;
}

.compliance-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) repeat(2, minmax(240px, 1fr));
  gap: 14px;
  border: 1px solid rgba(214, 181, 109, 0.2);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(214, 181, 109, 0.12), rgba(77, 163, 255, 0.06)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.compliance-hotline,
.compliance-link {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 18px;
  background: rgba(16, 17, 20, 0.72);
}

.compliance-hotline {
  display: grid;
  align-content: center;
  gap: 6px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.compliance-hotline span,
.compliance-link span {
  color: var(--muted);
  font-size: 13px;
}

.compliance-hotline strong {
  color: var(--gold);
  font-size: 26px;
  line-height: 1.2;
}

.compliance-link {
  display: grid;
  gap: 8px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.compliance-link strong {
  color: #fff;
  font-size: 18px;
}

.compliance-link:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 181, 109, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.compliance-hotline:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 181, 109, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.filter-panel {
  padding: 16px;
  margin-bottom: 18px;
}

.filters {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) repeat(4, minmax(120px, 150px)) auto;
  gap: 12px;
  align-items: end;
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field label {
  color: #d8d5cf;
  font-size: 13px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.field select option {
  color: #101114;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(77, 163, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.12);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.live-room-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.75fr);
  gap: 20px;
  align-items: start;
}

.detail-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  min-height: 0;
  background: rgba(255, 255, 255, 0.06);
}

.live-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 560px;
  background: #07080b;
}

.live-player-media,
.live-player-media video,
.live-player-media .cover-art {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.live-player-media video {
  display: block;
  object-fit: contain;
  background: #06070a;
  pointer-events: none;
}

.live-player-top,
.live-player-bottom {
  position: absolute;
  left: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  pointer-events: none;
}

.live-player-top {
  top: 16px;
}

.live-player-bottom {
  bottom: 16px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.live-volume {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.live-volume button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(16, 17, 20, 0.58);
}

.live-volume input {
  width: 96px;
  accent-color: var(--gold);
}

.danmaku-layer {
  position: absolute;
  inset: 62px 0 90px;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.danmaku-line {
  position: absolute;
  right: -45%;
  border-radius: 8px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(16, 17, 20, 0.42);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  animation: danmakuMove 26s linear infinite;
}

.danmaku-line.d1 { top: 8%; animation-delay: 0s; }
.danmaku-line.d2 { top: 25%; animation-delay: 8s; }
.danmaku-line.d3 { top: 44%; animation-delay: 16s; }
.danmaku-line.d4 { top: 62%; animation-delay: 5s; }
.danmaku-line.d5 { top: 78%; animation-delay: 13s; }
.danmaku-line.d6 { top: 36%; animation-delay: 22s; }

@keyframes danmakuMove {
  0% { transform: translateX(0); opacity: 0; }
  8% { opacity: 1; }
  76% { opacity: 1; }
  100% { transform: translateX(-185vw); opacity: 0; }
}

.live-side-card {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.live-chat-panel {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035)),
    rgba(16, 17, 20, 0.9);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.side-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.side-card-head strong {
  color: #fff;
}

.side-card-head span {
  color: var(--muted);
  font-size: 12px;
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.gift-button {
  min-width: 0;
  border: 1px solid rgba(214, 181, 109, 0.22);
  border-radius: 8px;
  padding: 10px 8px;
  color: #fff;
  background: rgba(214, 181, 109, 0.08);
  cursor: pointer;
}

.gift-button span,
.gift-button strong,
.gift-button em {
  display: block;
}

.gift-button span {
  font-size: 20px;
}

.gift-button strong {
  margin-top: 4px;
  font-size: 13px;
}

.gift-button em {
  margin-top: 3px;
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
}

.gift-button:hover {
  border-color: rgba(214, 181, 109, 0.58);
  background: rgba(214, 181, 109, 0.14);
}

.chat-card {
  display: grid;
  gap: 12px;
}

.chat-list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: 260px;
  overflow-y: auto;
  padding-right: 4px;
}

.chat-row {
  display: grid;
  border-radius: 8px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.chat-row.system {
  border: 1px solid rgba(214, 181, 109, 0.32);
  background: rgba(214, 181, 109, 0.1);
}

.chat-row p {
  margin: 0;
  color: #e8e7eb;
  font-size: 13px;
  line-height: 1.55;
}

.chat-row strong {
  display: block;
  color: var(--gold);
  font-size: 12px;
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.chat-form input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.chat-form .inline-error {
  grid-column: 1 / -1;
}

.chat-login {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.chat-login p {
  flex-basis: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.live-chat-panel .chat-login p {
  flex-basis: auto;
  margin-right: auto;
}

.clip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.clip-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.clip-cover {
  display: grid;
  align-content: end;
  width: 100%;
  min-height: 150px;
  border: 0;
  padding: 14px;
  color: #fff;
  background-size: cover;
  background-position: center;
  text-align: left;
  cursor: pointer;
}

.clip-cover span {
  justify-self: start;
  border-radius: 8px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.38);
  font-size: 12px;
}

.clip-cover strong {
  margin-top: 8px;
  font-size: 18px;
}

.clip-card p {
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
}

.home-media-section {
  padding-top: 34px;
}

.home-media-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-media-columns > div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.home-media-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.home-media-title strong {
  color: #fff;
  font-size: 18px;
}

.home-media-title span {
  border-radius: 8px;
  padding: 5px 8px;
  color: #101114;
  background: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.home-clip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-clip-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(16, 17, 20, 0.56);
}

.home-clip-cover {
  display: grid;
  align-content: end;
  width: 100%;
  min-height: 132px;
  border: 0;
  padding: 12px;
  color: #fff;
  background-size: cover;
  background-position: center;
  text-align: left;
  cursor: pointer;
}

.home-clip-cover span {
  justify-self: start;
  border-radius: 8px;
  padding: 4px 7px;
  background: rgba(0, 0, 0, 0.38);
  font-size: 11px;
}

.home-clip-cover strong {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.25;
}

.home-clip-card p {
  margin: 0;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.clip-modal-player {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 18px;
  align-items: center;
}

.clip-modal-player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #06070a;
}

.detail-panel h1 {
  margin: 8px 0 14px;
  font-size: 34px;
  line-height: 1.16;
}

.detail-panel p {
  color: #d1ced3;
  line-height: 1.75;
}

.anchor-hero {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.avatar {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, rgba(214, 181, 109, 0.58), rgba(77, 163, 255, 0.5));
  font-size: 30px;
  font-weight: 900;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.profile-wallet {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}

.wallet-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.wallet-card.primary {
  border-color: rgba(214, 181, 109, 0.42);
  background: linear-gradient(135deg, rgba(214, 181, 109, 0.22), rgba(77, 163, 255, 0.08));
}

.wallet-card span,
.panel-title-row span,
.profile-note {
  color: #c9d2df;
}

.wallet-card strong {
  display: block;
  margin: 8px 0 6px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.wallet-card p {
  margin: 0;
  color: #b8c0cc;
  line-height: 1.55;
}

.panel-title-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.panel-title-row h3 {
  margin: 0;
}

.profile-form-rich {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-form-rich .field.full,
.profile-form-rich .inline-error,
.profile-form-rich .btn {
  grid-column: 1 / -1;
}

.profile-form-rich textarea {
  min-height: 92px;
  resize: vertical;
}

.recharge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.recharge-card {
  display: grid;
  gap: 8px;
  min-height: 112px;
  border: 1px solid rgba(214, 181, 109, 0.24);
  border-radius: 8px;
  padding: 16px;
  color: #fff;
  text-align: left;
  background:
    radial-gradient(circle at 82% 14%, rgba(244, 91, 105, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(214, 181, 109, 0.16), rgba(77, 163, 255, 0.08));
  cursor: pointer;
}

.recharge-card:hover {
  border-color: rgba(214, 181, 109, 0.7);
  transform: translateY(-1px);
}

.recharge-card span {
  color: var(--gold);
  font-weight: 800;
}

.recharge-card strong {
  font-size: 24px;
}

.recharge-card em {
  color: #c7cfda;
  font-style: normal;
}

.profile-note {
  margin-top: 12px;
  line-height: 1.65;
}

.profile-grid-records {
  margin-top: 18px;
}

.record-list {
  display: grid;
  gap: 10px;
}

.record-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.policy-panel {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.9;
}

.policy-tabs {
  max-width: 980px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 8px;
}

.policy-tab {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  color: #f5efe2;
  background: rgba(255, 255, 255, 0.055);
  font-size: 15px;
  white-space: nowrap;
}

.policy-tab:hover,
.policy-tab.active {
  color: var(--gold);
  border-color: rgba(214, 181, 109, 0.42);
  background: rgba(214, 181, 109, 0.1);
}

.policy-document {
  max-width: 980px;
}

.policy-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
}

.policy-summary {
  margin: 0 0 22px;
  color: #d9d6d0;
  font-size: 16px;
}

.policy-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.policy-section p {
  white-space: pre-line;
}

.policy-contact {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  border: 1px solid rgba(214, 181, 109, 0.24);
  border-radius: 8px;
  padding: 16px;
  color: #ddd8cc;
  background: rgba(214, 181, 109, 0.07);
}

.guardian-page {
  width: min(1100px, calc(100% - 32px));
}

.guardian-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
  border: 1px solid rgba(214, 181, 109, 0.24);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(214, 181, 109, 0.12), rgba(77, 163, 255, 0.08)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.guardian-hero h1 {
  margin: 0 0 12px;
  font-size: 36px;
  line-height: 1.18;
}

.guardian-hero p {
  margin: 0;
  color: #d8d4cc;
  line-height: 1.8;
}

.guardian-hero aside {
  display: grid;
  align-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 18px;
  background: rgba(16, 17, 20, 0.72);
}

.guardian-hero aside span,
.guardian-hero aside small {
  color: var(--muted);
}

.guardian-hero aside strong {
  color: var(--gold);
  font-size: 30px;
}

.guardian-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 18px;
  margin-bottom: 18px;
}

.guardian-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.guardian-card h2 {
  margin: 0 0 14px;
  color: var(--gold);
}

.guardian-card p {
  color: #d8d4cc;
  line-height: 1.85;
}

.guardian-number-list {
  display: grid;
  gap: 10px;
}

.guardian-number-list div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.guardian-number-list span,
.guardian-flow strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: #17140a;
  background: var(--gold);
  font-weight: 800;
}

.guardian-number-list p {
  margin: 2px 0 0;
}

.guardian-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.guardian-flow div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.guardian-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.guardian-download {
  border: 1px solid rgba(77, 163, 255, 0.35);
  border-radius: 8px;
  padding: 9px 11px;
  color: #eaf4ff;
  background: rgba(77, 163, 255, 0.14);
  font-size: 13px;
}

.guardian-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.guardian-faq {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.045);
}

.guardian-faq summary {
  cursor: pointer;
  color: #fff;
  font-weight: 700;
}

.guardian-faq p {
  margin-bottom: 0;
}

.guardian-footer-note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.policy-panel h1 {
  margin: 0 0 18px;
}

.policy-panel h2 {
  margin-top: 28px;
  color: var(--gold);
}

.site-footer {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.22)),
    rgba(0, 0, 0, 0.2);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(180px, 0.55fr) minmax(420px, 1.45fr);
  gap: 28px;
  padding: 38px 0 28px;
  color: var(--muted);
}

.footer-inner strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 20px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-company p,
.footer-links a,
.footer-policy-grid a {
  color: #bfc3cb;
  line-height: 1.6;
}

.footer-content {
  justify-items: start;
}

.footer-policy-block {
  border: 1px solid rgba(214, 181, 109, 0.22);
  border-radius: 8px;
  padding: 18px;
  background: rgba(214, 181, 109, 0.055);
}

.footer-policy-block strong {
  color: var(--gold);
}

.footer-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.footer-policy-grid a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.045);
}

.footer-policy-grid a:hover,
.footer-links a:hover {
  color: var(--gold);
  border-color: rgba(214, 181, 109, 0.35);
}

.footer-icp {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0 18px;
  color: #8f929b;
  text-align: center;
  font-size: 13px;
}

.footer-icp a {
  color: #8f929b;
}

.support-link {
  color: #8f929b;
  font-size: 12px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 4, 8, 0.72);
  backdrop-filter: blur(10px);
}

.modal {
  width: min(480px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #15171e;
  box-shadow: var(--shadow);
}

.modal.wide {
  width: min(680px, 100%);
}

.modal-head,
.modal-body {
  padding: 20px;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-head h2 {
  margin: 0;
}

.modal-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.inline-error {
  display: none;
  border-left: 3px solid var(--coral);
  border-radius: 6px;
  padding: 9px 11px;
  color: #ffdfe2;
  background: rgba(244, 91, 105, 0.12);
  font-size: 13px;
}

.inline-error.show {
  display: block;
}

.checkline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d8d5cf;
  font-size: 13px;
}

.checkline a {
  color: var(--gold);
}

.auth-policy-links {
  margin: 0;
  color: #d8d5cf;
  font-size: 13px;
}

.auth-policy-links a {
  color: var(--gold);
}

.checkline input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.qr-box {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.qr-box img {
  width: 190px;
  height: 190px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.empty {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
}

body.theme-day {
  --ink: #f5f7fb;
  --ink-2: #ffffff;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-strong: #ffffff;
  --line: rgba(30, 42, 66, 0.13);
  --text: #172033;
  --muted: #637086;
  --shadow: 0 18px 46px rgba(38, 54, 84, 0.14);
  --page-fade: #eef3f9;
  color: #172033;
  background:
    radial-gradient(circle at 14% 6%, rgba(77, 163, 255, 0.13), transparent 23rem),
    radial-gradient(circle at 86% 0%, rgba(214, 181, 109, 0.18), transparent 22rem),
    linear-gradient(180deg, #f8fafc 0%, #eef3f9 48%, #f6f8fb 100%);
}

body.theme-day .site-header {
  border-bottom-color: rgba(30, 42, 66, 0.1);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(34, 50, 78, 0.08);
}

body.theme-day .brand {
  border-radius: 8px;
  padding: 4px 8px 4px 4px;
  background: linear-gradient(135deg, #121722, #1b2433);
  box-shadow: 0 10px 24px rgba(22, 31, 49, 0.16);
}

body.theme-day .site-nav a,
body.theme-day .link-button,
body.theme-day .btn.ghost,
body.theme-day .user-chip {
  color: #253149;
}

body.theme-day .site-nav a:hover,
body.theme-day .link-button:hover,
body.theme-day .btn.ghost:hover {
  border-color: rgba(30, 42, 66, 0.12);
  background: rgba(34, 50, 78, 0.06);
}

body.theme-day .btn,
body.theme-day .theme-toggle {
  border-color: rgba(30, 42, 66, 0.14);
  color: #172033;
  background: rgba(255, 255, 255, 0.72);
}

body.theme-day .btn.primary {
  border-color: rgba(184, 135, 32, 0.42);
  color: #161207;
  background: linear-gradient(135deg, #f3d781, #d6b56d);
  box-shadow: 0 10px 24px rgba(184, 135, 32, 0.18);
}

body.theme-day .btn.blue {
  border-color: rgba(53, 118, 204, 0.28);
  color: #fff;
  background: linear-gradient(135deg, #2f7edb, #5b75ff);
}

body.theme-day .theme-toggle {
  color: #835f16;
  background: rgba(214, 181, 109, 0.16);
}

body.theme-day .eyebrow,
body.theme-day .stat-tile,
body.theme-day .service-card,
body.theme-day .filter-panel,
body.theme-day .profile-panel,
body.theme-day .policy-panel,
body.theme-day .detail-panel,
body.theme-day .anchor-card,
body.theme-day .compliance-panel,
body.theme-day .live-side-card,
body.theme-day .live-chat-panel,
body.theme-day .modal,
body.theme-day .empty {
  border-color: rgba(30, 42, 66, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

body.theme-day .field label,
body.theme-day .card-topline,
body.theme-day .meta-list,
body.theme-day .anchor-card p,
body.theme-day .profile-panel p,
body.theme-day .profile-panel label,
body.theme-day .record-item small,
body.theme-day .modal-body p,
body.theme-day .qr-box p {
  color: #526176;
}

body.theme-day .stat-tile strong,
body.theme-day .room-card h3,
body.theme-day .anchor-card h3,
body.theme-day .profile-panel h3,
body.theme-day .service-card h3,
body.theme-day .modal-body h3,
body.theme-day .record-item strong {
  color: #172033;
}

body.theme-day .hero p,
body.theme-day .section-head p,
body.theme-day .service-card p,
body.theme-day .meta-list,
body.theme-day .room-card-desc,
body.theme-day .room-host-line,
body.theme-day .footer-inner,
body.theme-day .footer-company p,
body.theme-day .footer-links a,
body.theme-day .footer-policy-grid a,
body.theme-day .footer-icp,
body.theme-day .footer-icp a,
body.theme-day .support-link,
body.theme-day .checkline,
body.theme-day .auth-policy-links {
  color: #637086;
}

body.theme-day .policy-tabs {
  border-bottom-color: rgba(30, 42, 66, 0.16);
  border-radius: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(38, 54, 84, 0.08);
}

body.theme-day .policy-tab {
  border-color: rgba(30, 42, 66, 0.14);
  color: #28344d;
  background: #fff;
}

body.theme-day .policy-tab:hover,
body.theme-day .policy-tab.active {
  border-color: rgba(184, 135, 32, 0.42);
  color: #7a560f;
  background: rgba(214, 181, 109, 0.18);
}

body.theme-day .policy-kicker,
body.theme-day .policy-panel h2 {
  color: #9a6b11;
}

body.theme-day .policy-summary,
body.theme-day .policy-section p,
body.theme-day .policy-contact,
body.theme-day .guardian-hero p,
body.theme-day .guardian-footer-note,
body.theme-day .guardian-faq p,
body.theme-day .record-item,
body.theme-day .home-clip-card p,
body.theme-day .detail-panel p {
  color: #334158;
}

body.theme-day .policy-section,
body.theme-day .record-item,
body.theme-day .guardian-footer-note {
  border-color: rgba(30, 42, 66, 0.14);
}

body.theme-day .policy-contact,
body.theme-day .guardian-hero,
body.theme-day .record-item {
  border-color: rgba(184, 135, 32, 0.22);
  background: rgba(255, 255, 255, 0.78);
}

body.theme-day .home-media-title strong,
body.theme-day .section-head h2,
body.theme-day .detail-panel h1,
body.theme-day .policy-panel h1 {
  color: #172033;
}

body.theme-day .home-clip-card {
  border-color: rgba(30, 42, 66, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(38, 54, 84, 0.1);
}

body.theme-day .home-clip-cover span {
  color: #fff;
  background: rgba(16, 23, 36, 0.62);
}

body.theme-day .premium-room-card {
  border-color: rgba(30, 42, 66, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    linear-gradient(135deg, rgba(214, 181, 109, 0.16), rgba(77, 163, 255, 0.1) 58%, rgba(244, 91, 105, 0.08));
  box-shadow: 0 18px 44px rgba(38, 54, 84, 0.14);
}

body.theme-day .premium-room-card:hover {
  border-color: rgba(214, 181, 109, 0.55);
  box-shadow: 0 26px 58px rgba(38, 54, 84, 0.18);
}

body.theme-day .premium-media {
  background: #dfe7f1;
}

body.theme-day .room-title-row h3,
body.theme-day .anchor-card h3,
body.theme-day .side-card-head strong,
body.theme-day .footer-inner strong,
body.theme-day .guardian-faq summary,
body.theme-day .modal-head h2,
body.theme-day .stage-title h2 {
  color: #172033;
}

body.theme-day .room-skill-chip,
body.theme-day .metric-pill,
body.theme-day .premium-metrics span,
body.theme-day .chat-row,
body.theme-day .gift-button,
body.theme-day .footer-policy-grid a,
body.theme-day .compliance-hotline,
body.theme-day .compliance-link {
  border-color: rgba(30, 42, 66, 0.1);
  color: #253149;
  background: rgba(239, 244, 250, 0.88);
}

body.theme-day .premium-metrics strong,
body.theme-day .metric-pill strong {
  color: #172033;
}

body.theme-day .premium-metrics em,
body.theme-day .side-card-head span,
body.theme-day .gift-button em,
body.theme-day .compliance-hotline span,
body.theme-day .compliance-link span {
  color: #526176;
}

body.theme-day .gift-button strong,
body.theme-day .chat-row strong,
body.theme-day .service-card h3,
body.theme-day .compliance-link strong,
body.theme-day .policy-panel h1 {
  color: #172033;
}

body.theme-day .compliance-hotline strong {
  color: #7a560f;
}

body.theme-day .site-footer {
  border-top-color: rgba(30, 42, 66, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 244, 250, 0.9)),
    #f5f7fb;
}

body.theme-day .footer-policy-block {
  border-color: rgba(214, 181, 109, 0.28);
  background: rgba(214, 181, 109, 0.1);
}

body.theme-day .footer-icp,
body.theme-day .modal-head {
  border-top-color: rgba(30, 42, 66, 0.1);
  border-bottom-color: rgba(30, 42, 66, 0.1);
}

body.theme-day .modal-backdrop {
  background: rgba(226, 233, 242, 0.74);
}

body.theme-day .modal-close {
  border-color: rgba(30, 42, 66, 0.14);
  color: #172033;
  background: rgba(30, 42, 66, 0.05);
}

body.theme-day input,
body.theme-day select,
body.theme-day textarea {
  color: #172033;
  border-color: rgba(30, 42, 66, 0.16);
  background: rgba(255, 255, 255, 0.9);
}

body.theme-day .live-player,
body.theme-day .live-player-media video {
  background: #06070a;
}

body.theme-day .live-player-top,
body.theme-day .live-player-bottom,
body.theme-day .danmaku-line,
body.theme-day .live-badge,
body.theme-day .card-live-overlay > span:not(.status) {
  color: #fff;
}

body.theme-day .hero-live-feature .stage-title h2,
body.theme-day .hero-live-feature .stage-title p {
  color: #fff;
}

body.theme-day .premium-room-card {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(11, 13, 18, 0.12), rgba(11, 13, 18, 0.88)),
    #11131a;
  box-shadow: 0 22px 54px rgba(38, 54, 84, 0.18);
}

body.theme-day .premium-room-card::before {
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(7, 9, 14, 0.06) 0%, rgba(7, 9, 14, 0.18) 40%, rgba(7, 9, 14, 0.9) 100%),
    radial-gradient(circle at 14% 84%, rgba(214, 181, 109, 0.2), transparent 15rem),
    radial-gradient(circle at 88% 16%, rgba(77, 163, 255, 0.14), transparent 12rem);
}

body.theme-day .premium-room-card:hover {
  border-color: rgba(214, 181, 109, 0.72);
  box-shadow: 0 30px 68px rgba(38, 54, 84, 0.22);
}

body.theme-day .premium-room-card .room-title-row h3,
body.theme-day .premium-room-card .room-card-desc,
body.theme-day .premium-room-card .room-host-line,
body.theme-day .premium-room-card .premium-metrics strong {
  color: #fff;
}

body.theme-day .premium-room-card .room-card-desc {
  color: rgba(255, 255, 255, 0.84);
}

body.theme-day .premium-room-card .room-host-line,
body.theme-day .premium-room-card .premium-metrics em {
  color: rgba(255, 255, 255, 0.68);
}

body.theme-day .premium-room-card .room-skill-chip,
body.theme-day .premium-room-card .premium-metrics span {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(10, 12, 18, 0.48);
}

body.theme-day .premium-room-card .card-actions .btn {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

body.theme-day .premium-room-card .card-actions .btn.primary {
  border-color: rgba(246, 216, 138, 0.72);
  color: #131621;
  background: rgba(246, 216, 138, 0.92);
}

body.theme-day .carousel-arrow {
  border-color: rgba(30, 42, 66, 0.12);
  color: #172033;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 34px rgba(38, 54, 84, 0.12);
}

body.theme-day .carousel-arrow:hover {
  border-color: rgba(184, 135, 32, 0.42);
  color: #161207;
  background: rgba(246, 216, 138, 0.94);
}

body.theme-day .wallet-card,
body.theme-day .recharge-card {
  border-color: rgba(30, 42, 66, 0.13);
  color: #172033;
  background:
    radial-gradient(circle at 82% 14%, rgba(244, 91, 105, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 244, 250, 0.86));
  box-shadow: 0 16px 36px rgba(38, 54, 84, 0.1);
}

body.theme-day .wallet-card.primary {
  border-color: rgba(184, 135, 32, 0.34);
  background: linear-gradient(135deg, rgba(214, 181, 109, 0.2), rgba(255, 255, 255, 0.92));
}

body.theme-day .wallet-card strong,
body.theme-day .recharge-card strong,
body.theme-day .panel-title-row h3 {
  color: #172033;
}

body.theme-day .wallet-card span,
body.theme-day .wallet-card p,
body.theme-day .panel-title-row span,
body.theme-day .profile-note,
body.theme-day .recharge-card em {
  color: #637086;
}

body.theme-day .recharge-card span {
  color: #835f16;
}

body.theme-day .guardian-page {
  color: #172033;
}

body.theme-day .guardian-page .policy-tabs {
  border: 1px solid rgba(30, 42, 66, 0.1);
  border-bottom-color: rgba(30, 42, 66, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 245, 252, 0.9)),
    #fff;
}

body.theme-day .guardian-page .policy-tab {
  border-color: rgba(30, 42, 66, 0.12);
  color: #26344e;
  background: rgba(255, 255, 255, 0.92);
}

body.theme-day .guardian-page .policy-tab:hover,
body.theme-day .guardian-page .policy-tab.active {
  border-color: rgba(184, 135, 32, 0.34);
  color: #6f4d0c;
  background: linear-gradient(135deg, rgba(246, 216, 138, 0.28), rgba(255, 255, 255, 0.92));
}

body.theme-day .guardian-hero {
  border-color: rgba(184, 135, 32, 0.22);
  color: #172033;
  background:
    radial-gradient(circle at 92% 12%, rgba(77, 163, 255, 0.13), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 226, 0.86));
  box-shadow: 0 20px 50px rgba(38, 54, 84, 0.13);
}

body.theme-day .guardian-hero h1 {
  color: #111827;
}

body.theme-day .guardian-hero .policy-kicker {
  color: #8a610f;
  font-weight: 800;
}

body.theme-day .guardian-hero p {
  color: #34435a;
}

body.theme-day .guardian-hero aside {
  border: 1px solid rgba(184, 135, 32, 0.2);
  background:
    linear-gradient(160deg, rgba(23, 32, 51, 0.96), rgba(41, 53, 75, 0.92)),
    #172033;
  box-shadow: 0 14px 28px rgba(23, 32, 51, 0.18);
}

body.theme-day .guardian-hero aside span,
body.theme-day .guardian-hero aside small {
  color: rgba(255, 255, 255, 0.72);
}

body.theme-day .guardian-hero aside strong {
  color: #f3d781;
}

body.theme-day .guardian-card {
  border-color: rgba(30, 42, 66, 0.1);
  color: #172033;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92)),
    #fff;
  box-shadow: 0 16px 42px rgba(38, 54, 84, 0.1);
}

body.theme-day .guardian-card h2 {
  color: #7a560f;
}

body.theme-day .guardian-card p,
body.theme-day .guardian-number-list p,
body.theme-day .guardian-flow p,
body.theme-day .guardian-faq p {
  color: #2f3c52;
}

body.theme-day .guardian-number-list div,
body.theme-day .guardian-flow div,
body.theme-day .guardian-faq {
  border-color: rgba(30, 42, 66, 0.1);
  background: rgba(241, 246, 252, 0.84);
}

body.theme-day .guardian-number-list span,
body.theme-day .guardian-flow strong {
  color: #17140a;
  background: linear-gradient(135deg, #f3d781, #d6b56d);
  box-shadow: 0 8px 18px rgba(184, 135, 32, 0.16);
}

body.theme-day .guardian-download {
  border-color: rgba(47, 126, 219, 0.24);
  color: #174b89;
  background: rgba(77, 163, 255, 0.1);
}

body.theme-day .guardian-download:hover {
  border-color: rgba(47, 126, 219, 0.38);
  color: #0f3f78;
  background: rgba(77, 163, 255, 0.16);
}

body.theme-day .guardian-faq summary {
  color: #172033;
}

body.theme-day .guardian-footer-note {
  border-top-color: rgba(30, 42, 66, 0.12);
  color: #526176;
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .detail-layout,
  .live-room-layout,
  .guardian-hero,
  .guardian-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .room-grid,
  .anchor-grid,
  .service-grid,
  .compliance-panel,
  .guardian-flow,
  .guardian-faq-grid,
  .category-rail,
  .skill-rail,
  .clip-grid,
  .clip-modal-player,
  .home-media-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-clip-grid {
    grid-template-columns: 1fr;
  }

  .chat-list {
    grid-template-columns: 1fr;
  }

  .filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-wallet {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page,
  .header-inner,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .brand span {
    display: none;
  }

  .brand-logo {
    width: min(268px, 100%);
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-stats,
  .room-grid,
  .anchor-grid,
  .service-grid,
  .compliance-panel,
  .guardian-flow,
  .guardian-faq-grid,
  .category-rail,
  .skill-rail,
  .live-room-layout,
  .clip-grid,
  .clip-modal-player,
  .home-media-columns,
  .home-clip-grid,
  .filters,
  .profile-grid,
  .profile-wallet,
  .profile-form-rich,
  .recharge-grid,
  .form-row,
  .qr-box,
  .anchor-hero {
    grid-template-columns: 1fr;
  }

  .stage-frame {
    min-height: 360px;
  }

  .hero-live-feature {
    min-height: 360px;
  }

  .hero-live-metrics,
  .premium-metrics {
    grid-template-columns: 1fr;
  }

  .gift-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
