:root {
  --ink: #f5f5f5;
  --deep: #0a0a0a;
  --mist: #1a1a1a;
  --velvet: #222222;
  --aurora: #ff2d78;
  --lavender: #ff6b9d;
  --pearl: #f5f5f5;
  --cream: #ffffff;
  --gold: #ff2d78;
  --gold-light: #ff6b9d;
  --rose: #ff6b9d;
  --teal: #5eead4;
  --glow: rgba(255, 45, 120, 0.16);
  --card-bg: rgba(26, 26, 26, 0.92);
  --border: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans SC', sans-serif;
  background: var(--deep);
  color: var(--pearl);
  overflow-x: hidden;
  cursor: auto;
}

/* Custom cursor disabled — was hiding system cursor and breaking UX */
.cursor,
.cursor-ring {
  display: none !important;
}

/* Stars background */
.stars {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.star {
  position: absolute;
  width: 2px; height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle var(--d, 3s) ease-in-out infinite var(--delay, 0s);
}
@keyframes twinkle {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: var(--brightness, 0.8); transform: scale(1.5); }
}

/* Nebula blobs */
.nebula {
  position: fixed; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
  opacity: 0.08;
}
.nebula-1 { width: 600px; height: 400px; background: var(--aurora); top: -100px; right: -100px; animation: drift 20s ease-in-out infinite; }
.nebula-2 { width: 500px; height: 500px; background: var(--rose); bottom: -150px; left: -100px; animation: drift 25s ease-in-out infinite reverse; }
.nebula-3 { width: 300px; height: 300px; background: var(--aurora); top: 40%; left: 30%; animation: drift 18s ease-in-out infinite 5s; opacity: 0.06; }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-20px) scale(1.05); } 66% { transform: translate(-20px,15px) scale(0.95); } }

/* =========== LAYOUT =========== */
.page-wrap { position: relative; z-index: 1; }

/* NAV */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(to bottom, rgba(10,10,10,0.92), transparent);
  backdrop-filter: blur(10px);
}
.logo {
  font-family: 'Noto Serif SC', serif;
  font-size: 24px; font-weight: 600;
  color: var(--pearl);
  letter-spacing: 4px;
  display: flex; align-items: center; gap: 10px;
}
.logo-dot { width: 8px; height: 8px; background: var(--aurora); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,45,120,0.45); } 50% { box-shadow: 0 0 0 8px rgba(255,45,120,0); } }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,107,157,0.7); text-decoration: none;
  font-size: 13px; letter-spacing: 1px;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--aurora);
  transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover { color: var(--lavender); }
.nav-links a.nav-active { color: var(--lavender); }
.nav-links a.nav-active::after { transform: scaleX(1); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--aurora), var(--rose));
  color: white; border: none; padding: 10px 24px;
  border-radius: 20px; font-size: 13px; cursor: pointer;
  font-family: 'Noto Sans SC', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 1px;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,45,120,0.4); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 120px 60px 80px;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border);
  padding: 6px 18px; border-radius: 20px;
  font-size: 11px; letter-spacing: 3px; color: var(--lavender);
  background: rgba(255,45,120,0.08);
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge-dot { width: 5px; height: 5px; background: var(--teal); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
.hero-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-title span { color: var(--aurora); font-style: italic; }
.hero-title .en {
  font-family: 'Playfair Display', serif;
  font-size: 0.45em; display: block;
  color: var(--gold-light); letter-spacing: 8px;
  font-style: italic; margin-top: 8px;
}
.hero-sub {
  font-size: 16px; color: rgba(255,107,157,0.6);
  max-width: 500px; line-height: 1.8; margin: 28px auto;
  font-weight: 300; letter-spacing: 0.5px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; animation: fadeUp 0.8s ease 0.3s both; }
.btn-primary {
  background: linear-gradient(135deg, var(--aurora), #9c6fd0);
  color: white; padding: 14px 36px; border-radius: 30px;
  font-size: 14px; border: none; cursor: pointer;
  font-family: 'Noto Sans SC', sans-serif; letter-spacing: 2px;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(255,45,120,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(255,45,120,0.5); }
.btn-ghost {
  border: 1px solid var(--border); color: var(--lavender);
  padding: 14px 36px; border-radius: 30px;
  font-size: 14px; background: transparent; cursor: pointer;
  font-family: 'Noto Sans SC', sans-serif; letter-spacing: 2px;
  transition: background 0.3s, transform 0.2s;
}
.btn-ghost:hover { background: var(--glow); transform: translateY(-3px); }
.hero-stats {
  display: flex; gap: 60px; margin-top: 72px;
  animation: fadeUp 0.8s ease 0.4s both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; color: var(--lavender);
}
.stat-num span { color: var(--gold); }
.stat-label { font-size: 11px; color: rgba(255,107,157,0.5); letter-spacing: 2px; margin-top: 4px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* SECTION COMMON */
section { padding: 100px 60px; }
.section-label {
  font-size: 11px; letter-spacing: 4px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 16px; display: block;
}
.section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300; color: var(--pearl);
  line-height: 1.2;
}
.section-title em { color: var(--aurora); font-style: italic; }

/* REGIONS */
.regions-section { background: linear-gradient(to bottom, transparent, rgba(20,16,35,0.8), transparent); }
.regions-intro { max-width: 700px; margin-bottom: 64px; }
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 60px;
}
.region-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 20px;
  cursor: pointer; transition: all 0.3s;
  backdrop-filter: blur(10px);
  position: relative; overflow: hidden;
}
.region-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(255,45,120,0.05));
  opacity: 0; transition: opacity 0.3s;
}
.region-card:hover { transform: translateY(-4px); border-color: rgba(255,45,120,0.4); box-shadow: 0 12px 40px rgba(255,45,120,0.15); }
.region-card:hover::before { opacity: 1; }
.region-card.active { border-color: var(--aurora); background: rgba(255,45,120,0.15); }
.region-icon { font-size: 28px; margin-bottom: 10px; }
.region-name { font-family: 'Noto Serif SC', serif; font-size: 18px; color: var(--pearl); margin-bottom: 4px; }
.region-count { font-size: 12px; color: rgba(255,107,157,0.5); }
.region-tag { display: inline-block; margin-top: 8px; font-size: 10px; padding: 2px 8px; border-radius: 8px; background: rgba(255,45,120,0.2); color: var(--lavender); }

/* STREAMERS PANEL */
.streamers-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px; padding: 40px;
  backdrop-filter: blur(20px);
}
.streamers-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.panel-title { font-family: 'Noto Serif SC', serif; font-size: 22px; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 6px 16px; border-radius: 20px; font-size: 12px;
  border: 1px solid var(--border); cursor: pointer;
  color: rgba(255,107,157,0.6); background: transparent;
  transition: all 0.2s; font-family: 'Noto Sans SC', sans-serif;
}
.chip.active, .chip:hover { background: rgba(255,45,120,0.2); border-color: var(--aurora); color: var(--lavender); }
.streamers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.streamer-card {
  background: rgba(10,10,10,0.6);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  cursor: pointer; transition: all 0.3s;
  display: flex; flex-direction: column;
}
.streamer-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); border-color: rgba(255,107,157,0.3); }
.streamer-cover {
  aspect-ratio: 1 / 1; width: 100%;
  flex-shrink: 0;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
}
.streamer-cover-bg { position: absolute; inset: 0; }
.streamer-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2);
  font-size: 10px; padding: 3px 8px; border-radius: 8px; color: white;
  backdrop-filter: blur(4px);
}
.streamer-badge.signed { background: rgba(255,45,120,0.3); border-color: var(--gold); color: var(--gold-light); }
.streamer-info { padding: 16px; }
.streamer-name { font-size: 15px; color: var(--pearl); margin-bottom: 4px; font-weight: 500; }
.streamer-handle { font-size: 11px; color: rgba(255,107,157,0.4); margin-bottom: 8px; }
.streamer-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.streamer-tag { font-size: 10px; padding: 2px 8px; border-radius: 6px; background: rgba(255,45,120,0.15); color: var(--lavender); }
.streamer-stats { display: flex; gap: 12px; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }
.streamer-stat { font-size: 11px; color: rgba(255,107,157,0.5); }
.streamer-stat strong { color: var(--lavender); font-size: 13px; }

/* CONTENT COMMUNITY */
.community-section { }
.content-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto; gap: 20px; margin-top: 48px; }
.content-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  cursor: pointer; transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.content-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); border-color: rgba(255,107,157,0.3); }
.content-card.featured { grid-column: span 2; }
.content-thumb {
  aspect-ratio: 16 / 9; width: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 56px; position: relative; overflow: hidden;
}
.content-card.featured .content-thumb { aspect-ratio: 16 / 9; }
.content-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,10,10,0.8));
  padding: 20px; display: flex; align-items: flex-end; gap: 8px;
}
.content-duration { font-size: 11px; background: rgba(0,0,0,0.5); padding: 3px 8px; border-radius: 6px; }
.content-type { font-size: 11px; padding: 3px 8px; border-radius: 6px; }
.content-type.vlog { background: rgba(212,130,154,0.3); color: var(--rose); }
.content-type.asmr { background: rgba(91,188,176,0.3); color: var(--teal); }
.content-type.live { background: rgba(255,45,120,0.3); color: var(--gold-light); }
.content-body { padding: 20px; }
.content-author { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.author-avatar { width: 28px; height: 28px; border-radius: 50%; font-size: 16px; display: flex; align-items: center; justify-content: center; background: rgba(255,45,120,0.2); border: 1px solid var(--border); }
.author-name { font-size: 12px; color: rgba(255,107,157,0.6); }
.content-title { font-size: 15px; color: var(--pearl); line-height: 1.4; margin-bottom: 8px; }
.content-meta { display: flex; gap: 12px; font-size: 11px; color: rgba(255,107,157,0.4); }

/* SIGN SECTION — Figma 1.0 首页「博主入驻」225:21942 / 225:21967 */
.sign-section {
  background: transparent;
  border: 0;
  padding-top: 72px;
  padding-bottom: 72px;
}
.sign-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
}
.sign-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: #1d1e25;
  border: 0.8px solid rgba(255, 18, 144, 0.3);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.sign-pill::before,
.sign-pill::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff1290;
}
.sign-title {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.25;
  color: #fff;
}
.sign-title em {
  font-style: normal;
  color: #ff1290;
}
.sign-desc {
  margin: 0;
  max-width: 420px;
  font-size: 14px;
  line-height: 1.5;
  color: #b0b1b3;
}
.sign-inner {
  display: grid;
  grid-template-columns: minmax(0, 726fr) minmax(0, 408fr);
  gap: 28px;
  align-items: stretch;
  max-width: 1164px;
  margin: 0 auto;
}
.sign-form-card,
.sign-tg-card {
  background: #141416;
  border: 1px solid #414141;
  border-radius: 12px;
}
.sign-form-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  min-height: 394px;
  box-sizing: border-box;
}
.form-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}
.form-sub {
  font-size: 16px;
  font-weight: 500;
  color: #ff1290;
  margin: 0 0 24px;
  line-height: 22px;
}
.form-label {
  display: block;
  font-size: 16px;
  color: #b0b1b3;
  margin-bottom: 10px;
}
.form-input {
  width: 100%;
  height: 62px;
  box-sizing: border-box;
  background: #27272a;
  border: 1px solid #414141;
  border-radius: 16px;
  padding: 0 20px;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  margin-bottom: 18px;
}
.form-input:focus { border-color: #ff1290; }
.form-input::placeholder { color: #b0b1b3; }
.btn-submit {
  width: 100%;
  height: 64px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(126deg, #ff43a7 0%, #ef2df9 95%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.btn-submit:hover { filter: brightness(1.06); }
.btn-submit:disabled { opacity: 0.72; cursor: not-allowed; filter: none; }
.form-note {
  margin: 18px 0 0;
  text-align: center;
  font-size: 14px;
  color: #b0b1b3;
  line-height: 22px;
}
.sign-tg-card {
  padding: 38px 30px 28px;
  display: flex;
  flex-direction: column;
  min-height: 394px;
  box-sizing: border-box;
  position: relative;
}
.sign-tg-ico {
  width: 86px;
  height: 86px;
  border-radius: 8px;
  background: #231428;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sign-tg-ico img {
  width: 54px;
  height: 54px;
  display: block;
}
.sign-tg-title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.72px;
}
.sign-tg-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #b0b1b3;
  flex: 1;
}
.sign-tg-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}
.sign-tg-link {
  color: #8080ff;
  font-size: 16px;
  text-decoration: none;
}
.sign-tg-link:hover { text-decoration: underline; }
.sign-tg-join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 40px;
  padding: 0 14px;
  border-radius: 34px;
  background: #ff1290;
  border: 1px solid #35363c;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.sign-tg-join:hover { filter: brightness(1.08); }
.sign-benefits { display: none !important; }

/* COMMUNITY FEED */
.feed-section { }
.feed-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; margin-top: 48px; }
.feed-main { display: flex; flex-direction: column; gap: 16px; }
.post-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s;
}
.post-card:hover { border-color: rgba(255,107,157,0.3); }
.post-header { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.post-avatar { width: 40px; height: 40px; border-radius: 50%; font-size: 22px; display: flex; align-items: center; justify-content: center; background: rgba(255,45,120,0.15); border: 1px solid var(--border); flex-shrink: 0; }
.post-meta { flex: 1; }
.post-user { font-size: 14px; color: var(--pearl); margin-bottom: 2px; }
.post-user span { font-size: 11px; color: var(--gold); margin-left: 6px; }
.post-time { font-size: 11px; color: rgba(255,107,157,0.4); }
.post-content { font-size: 14px; color: rgba(255,107,157,0.8); line-height: 1.7; margin-bottom: 14px; }
.post-image { width: 100%; height: 160px; border-radius: 10px; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 48px; margin-bottom: 14px; }
.post-actions { display: flex; gap: 20px; }
.post-action { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,107,157,0.4); cursor: pointer; transition: color 0.2s; }
.post-action:hover { color: var(--lavender); }

.feed-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
  backdrop-filter: blur(10px);
}
.sidebar-title { font-family: 'Noto Serif SC', serif; font-size: 16px; margin-bottom: 16px; color: var(--lavender); }
.trending-item { display: flex; gap: 10px; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,107,157,0.06); cursor: pointer; transition: opacity 0.2s; }
.trending-item:hover { opacity: 0.8; }
.trending-item:last-child { border-bottom: none; }
.trending-num { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--aurora); min-width: 24px; }
.trending-text { font-size: 13px; color: rgba(255,107,157,0.7); flex: 1; }
.trending-count { font-size: 11px; color: rgba(255,107,157,0.3); }
.online-user { display: flex; gap: 8px; align-items: center; padding: 8px 0; }
.online-avatar { width: 32px; height: 32px; border-radius: 50%; font-size: 18px; display: flex; align-items: center; justify-content: center; background: rgba(255,45,120,0.15); border: 1px solid var(--border); position: relative; }
.online-dot { position: absolute; bottom: 0; right: 0; width: 8px; height: 8px; background: var(--teal); border-radius: 50%; border: 2px solid var(--deep); }
.online-info { flex: 1; }
.online-name { font-size: 13px; color: var(--pearl); }
.online-status { font-size: 11px; color: rgba(91,188,176,0.6); }
.follow-btn { font-size: 11px; padding: 4px 12px; border-radius: 10px; background: rgba(255,45,120,0.15); border: 1px solid var(--border); color: var(--lavender); cursor: pointer; white-space: nowrap; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 60px 20px;
}
.footer-main {
  display: flex; gap: 0; align-items: flex-start;
}
.footer-brand {
  flex: 0 0 260px; margin-right: 60px;
}
.footer-logo { font-family: 'Noto Serif SC', serif; font-size: 18px; color: var(--lavender); letter-spacing: 4px; margin-bottom: 10px; }
.footer-desc { font-size: 11px; color: rgba(255,107,157,0.4); line-height: 1.8; max-width: 220px; }
.footer-addrs { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.footer-addrs a { color: rgba(255,107,157,0.55); text-decoration: none; font-size: 11px; transition: color 0.2s; }
.footer-addrs a:hover { color: var(--lavender); }
.footer-addrs a span { color: var(--gold); margin-right: 6px; letter-spacing: 1px; }
#d-footer-cols {
  flex: 1; display: flex; gap: 0; justify-content: space-between;
}
.footer-col { flex: 1; }
.footer-col h4 { font-size: 10px; letter-spacing: 2px; color: var(--gold); margin-bottom: 12px; text-transform: uppercase; }
.footer-col a { display: block; color: rgba(255,107,157,0.4); text-decoration: none; font-size: 11px; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--lavender); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 12px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,107,157,0.3); }
.footer-icp { font-size: 12px; color: rgba(255,107,157,0.2); }

.nav-search-wrap{position:relative;margin:0 8px;min-width:240px;max-width:360px;flex:1}
.nav-search-box{display:flex;align-items:center;gap:8px;height:36px;padding-left:12px;border-radius:12px;border:1px solid rgba(255,107,157,.16);background:rgba(18,20,31,.72);overflow:hidden}
.nav-search-box:focus-within{border-color:rgba(255,45,120,.55);box-shadow:0 0 0 3px rgba(255,45,120,.12)}
.nav-search-ico{display:block;width:14px;height:14px;flex-shrink:0}
.nav-search-box input{flex:1;min-width:0;border:0;outline:0;background:transparent;color:var(--pearl);font-size:12px;font-family:inherit}
.nav-search-box input::placeholder{color:rgba(255,107,157,.3)}
/* 隐藏原生清除钮，只保留自定义 ×，避免出现两个删除 */
.nav-search-box input[type="search"]::-webkit-search-decoration,
.nav-search-box input[type="search"]::-webkit-search-cancel-button,
.nav-search-box input[type="search"]::-webkit-search-results-button,
.nav-search-box input[type="search"]::-webkit-search-results-decoration{
  -webkit-appearance:none!important;appearance:none!important;display:none!important;
}
.nav-search-clear{
  width:20px;height:20px;border-radius:50%;border:0;padding:0;
  background:rgba(255,45,120,.18);color:rgba(255,107,157,.85);
  cursor:pointer;flex-shrink:0;
  display:none;align-items:center;justify-content:center;
  font-size:16px;line-height:1;font-family:inherit;
}
.nav-search-clear img{display:block;width:12px;height:12px;pointer-events:none;opacity:.9}
.nav-search-action{align-self:stretch;width:36px;padding:0;border:0;background:transparent;color:transparent;font-size:0;font-family:inherit;cursor:pointer;display:inline-flex;align-items:center;justify-content:center}
.nav-search-panel{position:absolute;top:calc(100% + 8px);right:0;width:min(360px,86vw);max-height:70vh;overflow:auto;border-radius:14px;border:1px solid rgba(255,107,157,.15);background:linear-gradient(160deg,rgba(24,18,46,.99),rgba(14,10,28,.99));box-shadow:0 18px 48px rgba(0,0,0,.55);padding:12px;z-index:3200}
.nav-search-meta{font-size:11px;color:rgba(255,107,157,.4);margin-bottom:8px}
.nav-search-item{display:flex;gap:10px;align-items:center;padding:10px;border-radius:10px;text-decoration:none;color:inherit;transition:background .15s;cursor:pointer}
.nav-search-item:hover{background:rgba(255,45,120,.12)}
.nav-search-history-icon{width:24px;height:24px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(255,45,120,.15);color:rgba(255,107,157,.55);flex-shrink:0}
.nav-search-item .t{font-size:13px;color:#e8e0ff;margin-bottom:2px}
.nav-search-item .s{font-size:11px;color:rgba(255,107,157,.45)}
.nav-search-empty{padding:28px 12px;text-align:center;color:rgba(255,107,157,.35);font-size:12px}
@media(max-width:900px){.nav-search-wrap{display:none}}

/* Divider */
.divider { height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent); margin: 0 60px; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--velvet); border-radius: 2px; }

/* Gradient backgrounds for cards */
.grad-1 { background: linear-gradient(135deg, #1a1035, #2d1f4e); }
.grad-2 { background: linear-gradient(135deg, #0f2020, #1a3535); }
.grad-3 { background: linear-gradient(135deg, #201020, #3d1a30); }
.grad-4 { background: linear-gradient(135deg, #101525, #1a2535); }
.grad-5 { background: linear-gradient(135deg, #1a2510, #2a3520); }
.grad-6 { background: linear-gradient(135deg, #201510, #352515); }

/* ══ REGION DETAIL OVERLAY ══ */
.region-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,8,20,0.92);
  backdrop-filter: blur(16px);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.region-overlay.open { opacity: 1; pointer-events: all; }
.region-overlay-header {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 48px 20px;
  border-bottom: 1px solid rgba(255,107,157,0.12);
  flex-shrink: 0;
}
.region-overlay-back {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,107,157,0.25);
  background: rgba(255,45,120,0.1);
  color: var(--lavender); font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.region-overlay-back:hover { background: rgba(255,45,120,0.25); transform: scale(1.05); }
.region-overlay-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 26px; font-weight: 300; color: var(--pearl);
}
.region-overlay-title em { color: var(--aurora); font-style: italic; }
.region-overlay-count { font-size: 13px; color: rgba(255,107,157,0.4); margin-left: auto; }

/* 省份 tabs */
.province-tabs {
  display: flex; gap: 8px; padding: 14px 48px 0;
  overflow-x: auto; flex-shrink: 0;
  scrollbar-width: none;
}
.province-tabs::-webkit-scrollbar { display: none; }
.province-tab {
  padding: 7px 20px; border-radius: 20px; font-size: 13px;
  border: 1px solid rgba(255,107,157,0.2);
  color: rgba(255,107,157,0.6); background: transparent;
  cursor: pointer; white-space: nowrap;
  transition: all 0.2s; font-family: 'Noto Sans SC', sans-serif;
  flex-shrink: 0;
}
.province-tab.active {
  background: rgba(255,45,120,0.25);
  border-color: var(--aurora); color: var(--lavender);
}
.province-tab:hover:not(.active) {
  background: rgba(255,45,120,0.1);
  border-color: rgba(255,45,120,0.4); color: var(--lavender);
}
/* 城市 tabs（第二行） */
.city-tabs-wrap {
  padding: 10px 48px 6px;
  border-bottom: 1px solid rgba(255,107,157,0.08);
  flex-shrink: 0; min-height: 0;
}
.city-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.city-tab {
  padding: 5px 14px; border-radius: 16px; font-size: 12px;
  border: 1px solid rgba(255,107,157,0.12);
  color: rgba(255,107,157,0.5); background: transparent;
  cursor: pointer; white-space: nowrap;
  transition: all 0.2s; font-family: 'Noto Sans SC', sans-serif;
}
.city-tab.active {
  background: rgba(255,45,120,0.2);
  border-color: var(--gold); color: var(--gold-light);
}
.city-tab:hover:not(.active) {
  background: rgba(255,45,120,0.08);
  border-color: rgba(255,45,120,0.3); color: var(--gold-light);
}

/* 二级女友卡片网格 */
.region-girls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px; padding: 16px 48px 40px;
  overflow-y: auto; flex: 1;
}
.region-girls-empty {
  grid-column: 1/-1;
  text-align: center; padding: 60px 0;
  color: rgba(255,107,157,0.3); font-size: 14px;
}


/* ── 女友详情弹窗 ── */
.girl-modal-overlay{position:fixed;inset:0;z-index:999;background:rgba(4,2,12,0.92);backdrop-filter:blur(16px);display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity 0.3s;padding:16px;}
.girl-modal-overlay.open{opacity:1;pointer-events:all;}
.girl-modal{background:linear-gradient(160deg,rgba(24,18,46,0.99),rgba(14,10,28,0.99));border:1px solid rgba(255,107,157,0.15);border-radius:20px;width:400px;max-width:96vw;max-height:94vh;overflow-y:auto;animation:modalUp 0.3s ease both;scrollbar-width:thin;scrollbar-color:rgba(255,45,120,0.3) transparent;}
.girl-modal::-webkit-scrollbar{width:3px}.girl-modal::-webkit-scrollbar-thumb{background:rgba(255,45,120,0.3);border-radius:2px}
@keyframes modalUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}

/* 竖版照片轮播区 */
.gm-slider{position:relative;width:100%;aspect-ratio:3/4;border-radius:20px 20px 0 0;overflow:hidden;background:#0a0818;flex-shrink:0;}
.gm-slide{position:absolute;inset:0;opacity:0;transition:opacity 0.4s ease;}
.gm-slide.active{opacity:1;}
.gm-slide img{width:100%;height:100%;object-fit:cover;object-position:top center;display:block;}
.gm-slide-emoji{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:80px;}
/* 渐变遮罩 */
.gm-slider-overlay{position:absolute;bottom:0;left:0;right:0;height:120px;background:linear-gradient(transparent,rgba(10,6,24,0.9));pointer-events:none;z-index:2;}
/* 左右箭头 */
.gm-arr{position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:36px;height:36px;border-radius:50%;background:rgba(0,0,0,0.45);border:1px solid rgba(255,255,255,0.12);color:rgba(255,255,255,0.85);font-size:18px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all 0.2s;line-height:1;}
.gm-arr:hover{background:rgba(255,45,120,0.55);}
.gm-arr-l{left:12px;}.gm-arr-r{right:12px;}
/* 圆点 */
.gm-dots{position:absolute;bottom:14px;left:50%;transform:translateX(-50%);display:flex;gap:6px;z-index:3;}
.gm-dot{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,0.3);cursor:pointer;transition:all 0.25s;}
.gm-dot.active{background:white;width:18px;border-radius:3px;}
/* 张数提示 */
.gm-counter{position:absolute;top:12px;left:50%;transform:translateX(-50%);z-index:3;background:rgba(0,0,0,0.45);border:1px solid rgba(255,255,255,0.1);padding:3px 10px;border-radius:20px;font-size:11px;color:rgba(255,255,255,0.7);}
/* 关闭 & 签约 */
.gm-close{position:absolute;top:12px;left:12px;z-index:4;width:30px;height:30px;border-radius:50%;background:rgba(0,0,0,0.5);border:1px solid rgba(255,255,255,0.12);color:rgba(255,255,255,0.9);font-size:13px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all 0.2s;}
.gm-close:hover{background:rgba(255,45,120,0.6);}
.gm-signed-badge{position:absolute;top:12px;right:12px;z-index:4;background:rgba(255,45,120,0.35);border:1px solid var(--gold);color:var(--gold-light);font-size:10px;padding:3px 10px;border-radius:8px;letter-spacing:1px;}

/* 内容区 */
.gm-body{padding:18px 20px 24px;}
.gm-top{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:12px;}
.gm-name{font-size:20px;color:var(--pearl);font-weight:600;margin-bottom:3px;}
.gm-handle{font-size:11px;color:rgba(255,107,157,0.38);}
.gm-rating-badge{display:flex;align-items:center;gap:5px;background:rgba(255,45,120,0.12);border:1px solid rgba(255,45,120,0.25);padding:5px 12px;border-radius:20px;font-size:13px;color:var(--gold-light);white-space:nowrap;flex-shrink:0;margin-left:12px;}
.gm-tags{display:flex;gap:5px;flex-wrap:wrap;margin-bottom:16px;}
.gm-tag{font-size:10px;padding:3px 9px;border-radius:6px;background:rgba(255,45,120,0.14);color:var(--lavender);}
.gm-info-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:14px;}
.gm-info-item{background:rgba(12,10,24,0.6);border:1px solid rgba(255,107,157,0.08);border-radius:10px;padding:10px 12px;}
.gm-info-label{font-size:9px;letter-spacing:1.5px;color:rgba(255,107,157,0.3);margin-bottom:4px;text-transform:uppercase;}
.gm-info-value{font-size:14px;color:var(--pearl);font-weight:500;}
.gm-section-title{font-size:9px;letter-spacing:2px;color:rgba(255,107,157,0.28);margin-bottom:8px;text-transform:uppercase;}
.gm-services{display:flex;gap:5px;flex-wrap:wrap;margin-bottom:14px;}
.gm-service-tag{font-size:11px;padding:3px 10px;border-radius:7px;background:rgba(91,188,176,0.12);border:1px solid rgba(91,188,176,0.2);color:var(--teal);}
.gm-contact{display:flex;align-items:center;gap:10px;background:rgba(255,45,120,0.08);border:1px solid rgba(255,45,120,0.15);border-radius:10px;padding:11px 14px;margin-bottom:14px;cursor:pointer;transition:all 0.2s;}
.gm-contact:hover{background:rgba(255,45,120,0.16);border-color:var(--aurora);}
.gm-contact-icon{font-size:16px;flex-shrink:0;}
.gm-contact-text{font-size:13px;color:var(--lavender);}
.gm-contact-copy{margin-left:auto;font-size:10px;color:rgba(255,107,157,0.35);background:rgba(255,45,120,0.12);padding:2px 8px;border-radius:6px;}
.gm-divider{height:1px;background:rgba(255,107,157,0.06);margin:14px 0;}
.gm-intro{font-size:12px;color:rgba(255,107,157,0.5);line-height:1.9;margin-bottom:18px;white-space:pre-line;}
.gm-btn{width:100%;padding:12px;border-radius:10px;background:linear-gradient(135deg,var(--aurora),var(--rose));border:none;color:white;font-size:14px;cursor:pointer;font-family:'Noto Sans SC',sans-serif;font-weight:500;transition:opacity 0.2s;}
.gm-btn:hover{opacity:0.85;}



/* =========== 移动端响应式 =========== */

/* was @media max-width:768px → html.dg-h5 */


  /* 隐藏自定义鼠标 */
  html.dg-h5 .cursor,
html.dg-h5 .cursor-ring { display: none; }
  html.dg-h5 body { cursor: auto; }

  /* NAV */
  html.dg-h5 nav {
    padding: 14px 20px;
  }
  /* stripped: .nav-links{display:none} conflicts with H5 */
  html.dg-h5 .logo { font-size: 18px; letter-spacing: 2px; }

  /* HERO */
  html.dg-h5 .hero {
    padding: 100px 24px 60px;
    min-height: 100svh;
  }
  html.dg-h5 .hero-title {
    font-size: clamp(38px, 11vw, 56px);
  }
  html.dg-h5 .hero-sub {
    font-size: 14px;
    margin: 20px auto;
  }
  html.dg-h5 .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  html.dg-h5 .btn-primary,
html.dg-h5 .btn-ghost {
    width: 100%;
    max-width: 280px;
    padding: 13px 24px;
  }
  html.dg-h5 .hero-stats {
    gap: 28px;
    margin-top: 48px;
    flex-wrap: wrap;
    justify-content: center;
  }
  html.dg-h5 .stat-num { font-size: 28px; }

  /* SECTIONS */
  html.dg-h5 section { padding: 64px 20px; }
  html.dg-h5 .divider { margin: 0 20px; }

  /* REGIONS */
  html.dg-h5 .regions-intro { margin-bottom: 36px; }
  html.dg-h5 .regions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
  }
  html.dg-h5 .region-card { padding: 18px 14px; }
  html.dg-h5 .region-name { font-size: 15px; }

  /* STREAMERS PANEL */
  html.dg-h5 .streamers-panel { padding: 24px 16px; }
  html.dg-h5 .streamers-panel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  html.dg-h5 .streamers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* CONTENT GRID */
  html.dg-h5 .content-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  html.dg-h5 .content-card.featured { grid-column: span 1; }
  html.dg-h5 .content-card.featured .content-thumb { aspect-ratio: 16 / 9; }

  /* SIGN SECTION */
  html.dg-h5 .sign-section { padding-top: 48px; padding-bottom: 48px; }
  html.dg-h5 .sign-title { font-size: 22px; }
  html.dg-h5 .sign-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  html.dg-h5 .sign-form-card,
  html.dg-h5 .sign-tg-card {
    min-height: 0;
    padding: 20px 16px;
  }
  html.dg-h5 .form-title,
  html.dg-h5 .sign-tg-title { font-size: 16px; }
  html.dg-h5 .form-sub { font-size: 12px; margin-bottom: 14px; }
  html.dg-h5 .form-input { height: 56px; font-size: 14px; margin-bottom: 14px; }
  html.dg-h5 .btn-submit { height: 58px; font-size: 14px; }
  html.dg-h5 .sign-tg-ico { width: 44px; height: 44px; margin-bottom: 10px; }
  html.dg-h5 .sign-tg-ico img { width: 28px; height: 28px; }
  html.dg-h5 .sign-tg-desc { font-size: 12px; }
  html.dg-h5 .sign-tg-foot { margin-top: 16px; }
  html.dg-h5 .sign-tg-join { height: 30px; font-size: 12px; }

  /* FEED */
  html.dg-h5 .feed-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  html.dg-h5 .feed-sidebar { display: none; }

  /* FOOTER */
  html.dg-h5 footer { padding: 32px 20px 20px; }
  html.dg-h5 .footer-main {
    flex-direction: column;
    gap: 28px;
  }
  html.dg-h5 .footer-brand {
    flex: none;
    margin-right: 0;
  }
  html.dg-h5 #d-footer-cols {
    flex-wrap: wrap;
    gap: 24px;
  }
  html.dg-h5 .footer-col { flex: 0 0 calc(50% - 12px); }
  html.dg-h5 .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  /* 地区弹窗 */
  html.dg-h5 .region-girls-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px 16px 32px;
    gap: 12px;
  }



@media (max-width: 400px) {
  .regions-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .streamers-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 24px; }
}


  #sub-region option, #sub-province option, #sub-city option {
    background: #2a2440;
    color: #e8e0ff;
  }


/* CODEx RESPONSIVE HOME REDESIGN START */

:root{--home-max:1360px;--home-bg:#0d1018;--home-card:rgba(18,20,31,.78);--home-line:rgba(245,245,245,.11)}

body{background:var(--home-bg);color:var(--pearl)}.nebula{display:none}.stars{opacity:.42}.page-wrap{min-height:100vh;background:linear-gradient(130deg,rgba(255,45,120,.16) 0%,rgba(255,45,120,.03) 28%,transparent 52%),linear-gradient(220deg,rgba(91,188,176,.12) 0%,rgba(91,188,176,.03) 34%,transparent 58%),linear-gradient(180deg,rgba(13,16,24,.78) 0%,#10111d 42%,#0d1018 100%)}

nav{left:50%;right:auto;top:14px;width:min(calc(100% - 32px),var(--home-max));transform:translateX(-50%);padding:12px 16px;border:1px solid var(--home-line);border-radius:18px;background:rgba(13,16,24,.84);box-shadow:0 18px 50px rgba(0,0,0,.32)}.logo{letter-spacing:3px;min-width:0}.nav-links{gap:8px;align-items:center}.nav-links a{height:36px;display:inline-flex;align-items:center;justify-content:center;padding:0 14px;border-radius:12px;border:1px solid transparent;color:rgba(245,245,245,.74);letter-spacing:0;white-space:nowrap}.nav-links a:after{display:none}.nav-links a:hover{color:#fff;background:rgba(255,45,120,.15);border-color:rgba(255,107,157,.13)}.nav-links a.nav-active{color:#fff;background:rgba(255,45,120,.22);border-color:rgba(255,107,157,.22)}.nav-cta{height:36px;padding:0 16px;border-radius:12px;letter-spacing:0;white-space:nowrap}

section{width:min(100%,var(--home-max));margin-left:auto;margin-right:auto;padding:78px 48px}.divider{width:min(calc(100% - 96px),var(--home-max));margin:0 auto;opacity:.7}.section-label{letter-spacing:2px;color:#ff6b9d}.section-title{font-size:42px;letter-spacing:0}.section-title em{color:#ff6b9d}

.home-vlog-hero{min-height:92svh;display:grid;grid-template-columns:minmax(0,1fr) 460px;gap:54px;align-items:center;text-align:left;padding:122px 48px 54px}.home-vlog-copy{position:relative;z-index:2;min-width:0}.home-vlog-copy .hero-badge{height:34px;margin:0 0 18px;padding:0 14px;border-radius:999px;background:rgba(91,188,176,.1);border-color:rgba(91,188,176,.22);color:rgba(245,245,245,.86);letter-spacing:1px}.home-vlog-copy .hero-title{max-width:720px;font-size:68px;line-height:1.05;letter-spacing:0}.home-vlog-copy .hero-title span{color:#ff6b9d}.home-vlog-copy .hero-title .en{font-size:23px;letter-spacing:4px;margin-top:14px;color:#ff6b9d}.home-vlog-copy .hero-sub{max-width:620px;margin:20px 0 24px;font-size:16px;line-height:1.85;color:rgba(245,245,245,.66)}.home-vlog-copy .hero-actions{justify-content:flex-start;gap:12px;flex-wrap:wrap}.btn-primary,.btn-ghost{min-height:44px;border-radius:14px;padding:0 24px;letter-spacing:0;font-weight:500}.btn-primary{background:linear-gradient(135deg,#ff2d78,#ff6b9d)}.btn-ghost{background:rgba(245,245,245,.06);border-color:rgba(245,245,245,.13)}.home-quick{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}.home-quick a{color:rgba(245,245,245,.78);text-decoration:none;font-size:12px;padding:8px 12px;border-radius:999px;background:rgba(20,23,35,.68);border:1px solid rgba(245,245,245,.1)}.home-quick a:hover{color:#fff;background:rgba(91,188,176,.14);border-color:rgba(91,188,176,.24)}.home-vlog-copy .hero-stats{width:min(100%,570px);display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;justify-content:initial;margin-top:26px}.home-vlog-copy .stat{text-align:left;padding:14px 15px;border-radius:14px;background:rgba(20,23,35,.68);border:1px solid rgba(245,245,245,.09)}.home-vlog-copy .stat-num{font-size:28px;line-height:1}.home-vlog-copy .stat-label{letter-spacing:1px;margin-top:7px}

.home-vlog-panel{position:relative;overflow:hidden;border-radius:20px;background:linear-gradient(180deg,rgba(28,30,44,.92),rgba(12,14,22,.92));border:1px solid rgba(245,245,245,.13);box-shadow:0 28px 90px rgba(0,0,0,.46);backdrop-filter:blur(18px)}.home-vlog-panel:before{content:'HOT VLOG';position:absolute;top:14px;left:14px;z-index:5;height:26px;padding:0 10px;display:inline-flex;align-items:center;border-radius:999px;background:rgba(0,0,0,.42);border:1px solid rgba(255,255,255,.16);color:rgba(255,255,255,.86);font-size:11px;letter-spacing:1px}.home-vlog-main{position:relative;aspect-ratio:16/11;background:linear-gradient(135deg,rgba(255,45,120,.18),rgba(91,188,176,.1));cursor:pointer;overflow:hidden}.home-vlog-main img,.content-thumb img,.post-image img,.streamer-cover img{width:100%;height:100%;object-fit:cover;display:block}.home-vlog-main:after{content:'';position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,.04),rgba(5,7,12,.22) 42%,rgba(5,7,12,.9))}.home-play{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;z-index:2}.home-play span{width:58px;height:58px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.22);color:#fff;font-size:22px;backdrop-filter:blur(8px)}.home-vlog-info{position:absolute;left:18px;right:18px;bottom:18px;z-index:3}.home-vlog-kicker{display:inline-flex;height:24px;align-items:center;padding:0 10px;border-radius:999px;background:rgba(255,45,120,.16);border:1px solid rgba(255,45,120,.24);color:#f1d27b;font-size:11px;margin-bottom:8px}.home-vlog-title{color:#fff;font-size:20px;line-height:1.35;font-weight:700;text-shadow:0 2px 14px rgba(0,0,0,.45);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.home-vlog-meta{margin-top:8px;color:rgba(245,245,245,.66);font-size:12px}.home-vlog-rail{display:grid;grid-template-columns:1fr;gap:0;padding:0;background:rgba(8,10,16,.68);border-top:1px solid rgba(245,245,245,.08)}.home-vlog-mini{display:grid;grid-template-columns:92px minmax(0,1fr);gap:10px;align-items:center;min-height:82px;padding:10px;border:0;border-bottom:1px solid rgba(245,245,245,.07);border-radius:0;background:transparent;cursor:pointer}.home-vlog-mini:last-child{border-bottom:0}.home-vlog-mini:hover{background:rgba(255,45,120,.1)}.home-vlog-mini-img{aspect-ratio:16/10;border-radius:10px;background:rgba(255,45,120,.16);display:flex;align-items:center;justify-content:center;overflow:hidden;font-size:22px}.home-vlog-mini-img img{width:100%;height:100%;object-fit:cover}.home-vlog-mini-title{height:auto;padding:0;color:rgba(245,245,245,.86);font-size:12px;line-height:1.45;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}

.regions-intro{max-width:none;display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,520px);gap:28px;align-items:end;margin-bottom:34px}.regions-intro p{max-width:520px}.regions-grid{grid-template-columns:repeat(6,minmax(0,1fr));gap:12px;margin-bottom:44px}.region-card{min-height:126px;border-radius:14px;padding:17px;background:rgba(20,23,35,.72);border-color:rgba(245,245,245,.1)}.region-name{font-size:17px}.streamers-panel{padding:0;border:0;border-radius:0;background:transparent;backdrop-filter:none}.streamers-panel-header{align-items:flex-end;gap:18px;margin:32px 0 18px}.panel-title{font-size:24px}.filter-chips{gap:8px}.chip{height:32px;padding:0 13px;border-radius:999px;white-space:nowrap}.streamers-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}.streamer-card{border-radius:15px;min-width:0;background:rgba(18,20,31,.78)}.streamer-cover{aspect-ratio:4/5}.streamer-info{padding:13px}.streamer-name,.content-title,.post-content{word-break:break-word}

.content-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:16px;margin-top:30px}.content-card{grid-column:span 4;min-width:0;border-radius:16px;background:rgba(18,20,31,.78)}.content-card:first-child{grid-column:span 6}.content-card:nth-child(2),.content-card:nth-child(3){grid-column:span 3}.content-card:nth-child(n+4){grid-column:span 4}.content-card:first-child .content-thumb,.content-thumb{aspect-ratio:16/9}.content-body{padding:15px}.feed-layout{grid-template-columns:minmax(0,1fr);gap:22px;margin-top:30px}.post-card,.sidebar-card,.sign-form-card,.sign-tg-card{border-radius:12px;background:#141416;border-color:#414141}.post-card{padding:20px}.feed-sidebar{position:sticky;top:106px;align-self:start}.sign-section{border-radius:0;background:transparent}.sign-inner{gap:28px;align-items:stretch}

@media(max-width:1180px){.home-vlog-hero{grid-template-columns:minmax(0,1fr) 400px;gap:34px}.home-vlog-copy .hero-title{font-size:56px}.regions-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.streamers-grid{grid-template-columns:repeat(4,minmax(0,1fr))}}

@media(max-width:900px){section{padding:58px 22px}.home-vlog-hero{grid-template-columns:1fr;min-height:auto;padding:128px 22px 38px;gap:22px}.home-vlog-panel{order:1;width:min(100%,560px);margin:0 auto}.home-vlog-copy{order:2;width:min(100%,720px);margin:0 auto}.home-vlog-copy .hero-title{font-size:44px}.home-vlog-main{aspect-ratio:16/10}.home-vlog-rail{display:flex;gap:10px;overflow-x:auto;padding:10px;scroll-snap-type:x mandatory}.home-vlog-mini{min-width:160px;display:block;border:1px solid rgba(245,245,245,.1);border-radius:12px;padding:0;overflow:hidden;scroll-snap-align:start;background:rgba(255,45,120,.08)}.home-vlog-mini-img{border-radius:0}.home-vlog-mini-title{padding:8px;min-height:44px}.streamers-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.feed-layout{grid-template-columns:1fr}.feed-sidebar{position:static}.sign-inner{grid-template-columns:1fr}}


/* was @media max-width:768px → html.dg-h5 */
html.dg-h5 body {cursor:auto}html.dg-h5 .cursor,
html.dg-h5 .cursor-ring {display:none}html.dg-h5 nav {top:0;left:0;width:100%;transform:none;/* display:grid stripped */grid-template-columns:minmax(0,1fr) auto;grid-template-areas:'brand auth' 'links links';gap:9px;padding:10px 12px 12px;border-left:0;border-right:0;border-top:0;border-radius:0 0 18px 18px;background:rgba(13,16,24,.94)}html.dg-h5 .logo {grid-area:brand;font-size:20px;letter-spacing:2px;overflow:hidden}html.dg-h5 #nav-auth-area,
html.dg-h5 #nav-user-area {grid-area:auth;align-self:center;gap:6px!important}html.dg-h5 .nav-cta {height:32px;padding:0 10px;border-radius:10px;font-size:12px}html.dg-h5 .nav-links {grid-area:links;width:100%;/* display:grid stripped */grid-template-columns:repeat(4,minmax(0,1fr));gap:6px;list-style:none;overflow:visible}html.dg-h5 .nav-links a {width:100%;height:34px;padding:0 5px;border-radius:10px;background:rgba(245,245,245,.06);border-color:rgba(245,245,245,.08);font-size:12px;letter-spacing:0}html.dg-h5 .home-vlog-hero {padding:132px 14px 34px;gap:18px}html.dg-h5 .home-vlog-copy .hero-badge {height:auto;min-height:32px;margin-bottom:12px;padding:7px 11px;font-size:10px;letter-spacing:0}html.dg-h5 .home-vlog-copy .hero-title {font-size:34px;line-height:1.08}html.dg-h5 .home-vlog-copy .hero-title .en {font-size:15px;letter-spacing:2px;margin-top:8px}html.dg-h5 .home-vlog-copy .hero-sub {margin:12px 0 16px;font-size:14px;line-height:1.75}html.dg-h5 .home-vlog-copy .hero-actions {display:grid;grid-template-columns:1fr 1fr;gap:10px;width:100%}html.dg-h5 .btn-primary,
html.dg-h5 .btn-ghost {width:100%;min-height:42px;padding:0 10px;font-size:13px}html.dg-h5 .home-quick {gap:8px;margin-top:14px;overflow-x:auto;flex-wrap:nowrap;padding-bottom:3px}html.dg-h5 .home-quick a {flex:0 0 auto}html.dg-h5 .home-vlog-copy .hero-stats {grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin-top:16px}html.dg-h5 .home-vlog-copy .stat {padding:10px 9px;border-radius:12px}html.dg-h5 .home-vlog-copy .stat-num {font-size:20px}html.dg-h5 .home-vlog-copy .stat-label {font-size:10px;letter-spacing:0}html.dg-h5 .home-vlog-panel {border-radius:16px}html.dg-h5 .home-vlog-info {left:14px;right:14px;bottom:14px}html.dg-h5 .home-vlog-title {font-size:17px}html.dg-h5 section {padding:44px 14px}html.dg-h5 .divider {width:calc(100% - 28px)}html.dg-h5 .regions-intro {display:block;margin-bottom:20px}html.dg-h5 .section-title {font-size:28px}html.dg-h5 .regions-grid {grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-bottom:30px}html.dg-h5 .region-card {min-height:112px;padding:14px;border-radius:12px}html.dg-h5 .region-icon {font-size:24px}html.dg-h5 .region-name {font-size:16px}html.dg-h5 .streamers-panel-header {display:block;margin:26px 0 14px}html.dg-h5 .filter-chips {flex-wrap:nowrap;overflow-x:auto;margin-top:12px;padding-bottom:4px}html.dg-h5 .streamers-grid {grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}html.dg-h5 .streamer-cover {aspect-ratio:4/4.7}html.dg-h5 .streamer-info {padding:10px}html.dg-h5 .streamer-name {font-size:14px}html.dg-h5 .content-grid {/* display:flex stripped */gap:12px;overflow-x:auto;padding-bottom:8px;margin-top:22px;scroll-snap-type:x mandatory}html.dg-h5 .content-card,
html.dg-h5 .content-card:first-child,
html.dg-h5 .content-card:nth-child(2),
html.dg-h5 .content-card:nth-child(3),
html.dg-h5 .content-card:nth-child(n+4) {min-width:82vw;grid-column:auto;scroll-snap-align:start}html.dg-h5 .content-body {padding:13px}html.dg-h5 .post-card {padding:16px;border-radius:14px}html.dg-h5 .post-header {gap:10px}html.dg-h5 .post-actions {gap:12px;overflow-x:auto;white-space:nowrap;padding-bottom:2px}html.dg-h5 .feed-sidebar {display:flex;margin-top:14px}html.dg-h5 .sidebar-card {padding:16px}html.dg-h5 .sign-section {padding-top:48px;padding-bottom:48px}html.dg-h5 .sign-form-card {padding:20px}html.dg-h5 .footer-main {gap:22px}


@media(max-width:390px){/* keep register visible */.home-vlog-copy .hero-title{font-size:31px}.home-vlog-copy .hero-actions{grid-template-columns:1fr}.home-vlog-copy .hero-stats{grid-template-columns:1fr}.regions-grid,.streamers-grid{grid-template-columns:1fr 1fr}.nav-links a{font-size:11px}}


/* CODEx HOME GRID BALANCE START */
.regions-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-bottom:38px}.region-card{min-height:118px;display:flex;flex-direction:column;justify-content:space-between}.region-count{font-variant-numeric:tabular-nums}.streamers-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}.content-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:16px;align-items:stretch}.content-card{grid-column:span 3;display:flex;flex-direction:column;min-width:0}.content-card:first-child{grid-column:span 6;grid-row:span 2}.content-card:nth-child(n+2){grid-column:span 3}.content-card:nth-child(n+6){display:none}.content-card:first-child .content-thumb{aspect-ratio:16/10}.content-card:not(:first-child) .content-thumb{aspect-ratio:16/9}.content-card:first-child .content-title{font-size:18px}.content-card .content-body{flex:1}
@media(max-width:1180px){.regions-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.streamers-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.content-grid{grid-template-columns:repeat(6,minmax(0,1fr))}.content-card,.content-card:nth-child(n+2){grid-column:span 3}.content-card:first-child{grid-column:span 6;grid-row:auto}}
@media(max-width:900px){.regions-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.streamers-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.content-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));overflow:visible;padding-bottom:0}.content-card,.content-card:first-child,.content-card:nth-child(n+2){grid-column:span 1;min-width:0}.content-card:first-child{grid-column:span 2}.content-card:nth-child(n+6){display:none}}

/* was @media max-width:768px → html.dg-h5 */
html.dg-h5 .streamers-grid,
html.dg-h5 .regions-grid {grid-template-columns:repeat(2,minmax(0,1fr))}html.dg-h5 .content-grid {display:grid;grid-template-columns:1fr;overflow:visible;scroll-snap-type:none}html.dg-h5 .content-card,
html.dg-h5 .content-card:first-child,
html.dg-h5 .content-card:nth-child(n+2) {grid-column:span 1;min-width:0}html.dg-h5 .content-card:nth-child(n+6) {display:none}


/* CODEx PRODUCT HOME START */
.home-section-head{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:22px;align-items:end;margin-bottom:16px}.home-section-row{display:inline-flex;align-items:center;gap:14px;margin-bottom:12px}.home-more{display:inline-flex;align-items:center;gap:6px;padding:8px 18px;border-radius:999px;background:linear-gradient(135deg,rgba(255,45,120,.28),rgba(91,188,176,.18));border:1px solid rgba(255,107,157,.35);color:#fff;font-size:13px;font-weight:650;text-decoration:none;box-shadow:0 8px 20px rgba(0,0,0,.18);letter-spacing:.02em}.home-more:hover{background:linear-gradient(135deg,rgba(255,45,120,.45),rgba(91,188,176,.3));color:#fff;transform:translateY(-1px)}.home-more-strong{font-size:13px;padding:9px 20px}.home-section-desc{color:rgba(255,107,157,.55);font-size:14px;line-height:1.8;margin-top:12px;max-width:620px}.home-video-digest{display:grid;grid-template-columns:repeat(2,minmax(92px,1fr));gap:8px;min-width:260px}.home-video-digest-item{padding:12px;border-radius:14px;background:rgba(18,20,31,.78);border:1px solid rgba(245,245,245,.1)}.home-video-digest-num{font-size:20px;color:#ff6b9d;font-family:'Playfair Display',serif;line-height:1}.home-video-digest-label{font-size:11px;color:rgba(255,107,157,.5);margin-top:5px}.home-video-tabs{display:flex;gap:8px;flex-wrap:wrap;margin:0 0 16px}.home-video-tab{height:34px;padding:0 14px;border-radius:999px;border:1px solid rgba(245,245,245,.12);background:rgba(245,245,245,.05);color:rgba(245,245,245,.72);font-size:12px;cursor:pointer;font-family:inherit}.home-video-tab.active,.home-video-tab:hover{background:rgba(91,188,176,.14);border-color:rgba(91,188,176,.28);color:#fff}.home-continue{margin:0 0 16px;padding:12px 14px;border-radius:16px;background:rgba(91,188,176,.08);border:1px solid rgba(91,188,176,.16);display:flex;align-items:center;justify-content:space-between;gap:12px}.home-continue-title{font-size:13px;color:#fff;font-weight:600}.home-continue-meta{font-size:12px;color:rgba(255,107,157,.55);margin-top:3px}.home-continue button{height:32px;padding:0 12px;border-radius:10px;border:1px solid rgba(91,188,176,.28);background:rgba(91,188,176,.12);color:#bff8ef;cursor:pointer}.home-city-strip{display:flex;gap:8px;flex-wrap:wrap;margin:-24px 0 34px}.home-city-chip{display:inline-flex;align-items:center;gap:6px;padding:8px 12px;border-radius:999px;background:rgba(18,20,31,.72);border:1px solid rgba(245,245,245,.1);color:rgba(245,245,245,.76);font-size:12px;text-decoration:none}.home-city-chip:hover{background:rgba(91,188,176,.12);border-color:rgba(91,188,176,.22);color:#fff}.home-video-badge{position:absolute;left:12px;top:12px;z-index:3;padding:4px 8px;border-radius:999px;background:rgba(0,0,0,.42);border:1px solid rgba(255,255,255,.14);color:#fff;font-size:11px}.home-video-hot{position:absolute;right:12px;top:12px;z-index:3;padding:4px 8px;border-radius:999px;background:rgba(212,130,154,.2);border:1px solid rgba(212,130,154,.28);color:#ffd5df;font-size:11px}.content-card .content-overlay{pointer-events:none}.content-card:first-child .content-body{padding:18px}.content-card:first-child .content-meta{font-size:12px}.content-card .content-meta{flex-wrap:wrap;row-gap:6px}.content-title{font-weight:650}
@media(max-width:900px){.home-section-head{grid-template-columns:1fr}.home-video-digest{min-width:0;width:100%;grid-template-columns:repeat(4,minmax(0,1fr))}.home-city-strip{margin:-14px 0 26px;overflow-x:auto;flex-wrap:nowrap;padding-bottom:4px}.home-city-chip{flex:0 0 auto}.home-video-tabs{overflow-x:auto;flex-wrap:nowrap;padding-bottom:4px}.home-video-tab{flex:0 0 auto}}

/* was @media max-width:768px → html.dg-h5 */
html.dg-h5 .home-section-desc {font-size:13px}html.dg-h5 .home-video-digest {grid-template-columns:repeat(2,minmax(0,1fr))}html.dg-h5 .home-continue {align-items:flex-start;flex-direction:column}html.dg-h5 .home-continue button {width:100%}html.dg-h5 .home-video-tabs {margin-bottom:12px}html.dg-h5 .home-city-strip {margin-top:-8px}html.dg-h5 .content-card:first-child .content-body {padding:14px}

/* CODEx PRODUCT HOME END */
/* CODEx REGION COMPACT START */

.regions-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-bottom:24px}.region-card{min-height:84px;padding:11px 12px;border-radius:12px;justify-content:center;gap:3px}.region-card:hover{transform:translateY(-2px)}.region-icon{font-size:21px;margin-bottom:3px;line-height:1}.region-name{font-size:15px;line-height:1.22;margin-bottom:1px}.region-count{font-size:11px;line-height:1.2;margin-top:0}.region-tag{display:none}.home-city-strip{margin:-8px 0 26px;gap:7px}.home-city-chip{padding:6px 10px;font-size:11px}

@media(max-width:1180px){.regions-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}}

@media(max-width:900px){.regions-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;margin-bottom:20px}.region-card{min-height:74px;padding:9px 10px}.region-icon{font-size:19px;margin-bottom:2px}.region-name{font-size:14px}.region-count{font-size:10px}.home-city-strip{margin:-6px 0 22px;gap:6px}.home-city-chip{padding:5px 9px;font-size:11px}}

@media(max-width:390px){.region-card{min-height:68px;padding:8px 9px}.region-name{font-size:13px}.region-count{font-size:10px}}

/* CODEx REGION COMPACT END */
/* CODEx STAT REGION ROW START */

.home-vlog-copy .hero-stats{width:min(100%,720px);grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;margin-top:22px}.home-vlog-copy .stat{padding:10px 11px;border-radius:12px}.home-vlog-copy .stat-num{font-size:23px;line-height:1;white-space:nowrap}.home-vlog-copy .stat-label{font-size:10px;letter-spacing:0;margin-top:5px;white-space:nowrap}.regions-grid{grid-template-columns:repeat(8,minmax(0,1fr));gap:8px;margin-bottom:18px}.region-card{min-height:58px;padding:7px 8px;border-radius:10px;gap:1px}.region-icon{font-size:17px;margin-bottom:1px}.region-name{font-size:13px;line-height:1.16;margin-bottom:0;white-space:nowrap}.region-count{font-size:10px;line-height:1.1}.home-city-strip{margin:-4px 0 22px}.home-city-chip{padding:5px 9px;font-size:10px}

@media(max-width:1180px){.home-vlog-copy .hero-stats{grid-template-columns:repeat(4,minmax(0,1fr));width:100%}.regions-grid{grid-template-columns:repeat(8,minmax(0,1fr));gap:7px}.region-card{min-height:56px;padding:7px 6px}.region-name{font-size:12px}}


/* was @media max-width:768px → html.dg-h5 */
html.dg-h5 .home-vlog-copy .hero-stats {grid-template-columns:repeat(4,minmax(0,1fr));gap:5px;margin-top:14px}html.dg-h5 .home-vlog-copy .stat {padding:8px 5px;text-align:center;border-radius:10px}html.dg-h5 .home-vlog-copy .stat-num {font-size:15px}html.dg-h5 .home-vlog-copy .stat-label {font-size:9px;margin-top:4px}html.dg-h5 .regions-grid {display:flex;grid-template-columns:none;gap:7px;overflow-x:auto;margin-bottom:16px;padding-bottom:4px;scroll-snap-type:x proximity}html.dg-h5 .region-card {flex:0 0 76px;min-height:54px;padding:7px 5px;scroll-snap-align:start}html.dg-h5 .region-icon {font-size:16px}html.dg-h5 .region-name {font-size:12px}html.dg-h5 .region-count {font-size:9px}html.dg-h5 .home-city-strip {margin:-2px 0 18px}


@media(max-width:390px){.home-vlog-copy .hero-stats{grid-template-columns:repeat(4,minmax(0,1fr));gap:4px}.home-vlog-copy .stat{padding:7px 3px}.home-vlog-copy .stat-num{font-size:13px}.home-vlog-copy .stat-label{font-size:8px}.region-card{flex-basis:72px}}

/* CODEx STAT REGION ROW END */
/* CODEx HERO FEATURE NAV START */

.home-vlog-copy .hero-stats.hero-feature-nav{width:min(100%,760px);grid-template-columns:repeat(4,minmax(0,1fr));gap:9px;margin-top:20px}.hero-feature-nav .stat{position:relative;display:grid;align-content:center;gap:3px;min-height:82px;padding:12px 13px;text-align:left;text-decoration:none;color:inherit;border-radius:14px;background:linear-gradient(145deg,rgba(20,23,35,.82),rgba(28,31,45,.66));border:1px solid rgba(245,245,245,.11);overflow:hidden}.hero-feature-nav .stat:before{content:'';position:absolute;inset:auto -30px -42px auto;width:76px;height:76px;border-radius:999px;background:rgba(91,188,176,.12);transition:.25s}.hero-feature-nav .stat:hover{transform:translateY(-2px);border-color:rgba(91,188,176,.34);background:linear-gradient(145deg,rgba(31,35,49,.9),rgba(28,31,45,.74))}.hero-feature-nav .stat:hover:before{transform:scale(1.3);background:rgba(212,130,154,.14)}.hero-feature-icon{font-size:16px;line-height:1}.hero-feature-title{font-size:15px;font-weight:700;color:#fff;line-height:1.2;white-space:nowrap}.hero-feature-desc{font-size:10px;color:rgba(255,107,157,.58);line-height:1.35;white-space:nowrap}.hero-feature-arrow{position:absolute;right:10px;top:10px;color:rgba(245,245,245,.42);font-size:13px}.hero-feature-nav .stat:hover .hero-feature-arrow{color:#bff8ef}


/* was @media max-width:768px → html.dg-h5 */
html.dg-h5 .home-vlog-copy .hero-stats.hero-feature-nav {display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:5px;margin-top:14px}html.dg-h5 .hero-feature-nav .stat {min-height:70px;padding:8px 5px;text-align:center;border-radius:11px}html.dg-h5 .hero-feature-icon {font-size:14px}html.dg-h5 .hero-feature-title {font-size:12px}html.dg-h5 .hero-feature-desc {font-size:8px;white-space:normal;line-height:1.2}html.dg-h5 .hero-feature-arrow {display:none}


@media(max-width:390px){.home-vlog-copy .hero-stats.hero-feature-nav{gap:4px}.hero-feature-nav .stat{min-height:66px;padding:7px 3px}.hero-feature-title{font-size:11px}.hero-feature-desc{font-size:8px}}

/* CODEx HERO FEATURE NAV END */
/* PRD: 标题两行省略 */
.home-vlog-title,.home-vlog-mini-title,.content-card .content-title{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}
.home-vlog-title,.content-card .content-title{-webkit-line-clamp:2;line-clamp:2}
.home-vlog-mini-title{-webkit-line-clamp:2;line-clamp:2;min-height:2.6em}
/* CODEx HOME GRID BALANCE END */
/* CODEx RESPONSIVE HOME REDESIGN END */


section.home-layout-compact{padding-top:42px;padding-bottom:42px}

section.home-layout-compact .section-title{font-size:34px}

section.home-layout-featured{padding-top:78px;padding-bottom:78px}

section.home-layout-featured .section-title{font-size:46px}

section.home-layout-standard{padding-top:64px;padding-bottom:64px}


/* was @media max-width:768px → html.dg-h5 */
html.dg-h5 section.home-layout-compact,
html.dg-h5 section.home-layout-standard,
html.dg-h5 section.home-layout-featured {padding-top:44px;padding-bottom:44px}html.dg-h5 section.home-layout-compact .section-title,
html.dg-h5 section.home-layout-standard .section-title,
html.dg-h5 section.home-layout-featured .section-title {font-size:28px}





/* CODEx HOME FEED IMAGE OPTIMIZATION */

#feed .post-image{

  width:100%;

  height:auto;

  aspect-ratio:16/10;

  max-height:360px;

  margin:4px 0 14px;

  padding:7px;

  border-radius:16px;

  overflow:hidden;

  display:flex;

  align-items:center;

  justify-content:center;

  background:linear-gradient(145deg,rgba(8,10,16,.72),rgba(28,31,45,.66));

  border:1px solid rgba(245,245,245,.1);

  box-shadow:inset 0 0 0 1px rgba(255,255,255,.025);

}

#feed .post-image img{

  width:100%;

  height:100%;

  object-fit:contain!important;

  display:block;

  border-radius:10px;

  background:rgba(0,0,0,.12);

}

#feed .post-card:first-child .post-image{aspect-ratio:16/9;max-height:420px}


/* was @media max-width:768px → html.dg-h5 */
html.dg-h5 #feed .post-image {aspect-ratio:4/3;max-height:320px;padding:5px;border-radius:14px}html.dg-h5 #feed .post-card:first-child .post-image {aspect-ratio:4/3}


/* CODEx HOME FEED IMAGE OPTIMIZATION END */


/* CODEx HOME FEED TWO IMAGES */

#feed .post-images{display:grid;grid-template-columns:1fr;gap:8px;margin:4px 0 14px}

#feed .post-images.two{grid-template-columns:repeat(2,minmax(0,1fr))}

#feed .post-images.two .post-image{aspect-ratio:1/1;max-height:280px;margin:0}

@media(max-width:480px){#feed .post-images.two{gap:6px}#feed .post-images.two .post-image{aspect-ratio:1/1}}

/* CODEx HOME FEED TWO IMAGES END */





/* CODEx MOBILE FOOTER FIX START */


/* was @media max-width:768px → html.dg-h5 */


  html.dg-h5 footer {padding:28px 18px 22px;background:linear-gradient(180deg,rgba(11,13,22,.18),rgba(10,12,20,.82));border-top:1px solid rgba(245,245,245,.1)}

  html.dg-h5 .footer-main {display:block!important;gap:0!important}

  html.dg-h5 .footer-brand {margin:0 0 16px!important;padding:0 8px 16px;border:0;border-bottom:1px solid rgba(245,245,245,.08);border-radius:0;background:transparent;text-align:center}

  html.dg-h5 .footer-logo {margin-bottom:9px;font-size:19px;letter-spacing:3px;line-height:1.2;color:#ff6b9d}

  html.dg-h5 .footer-desc {max-width:310px;margin:0 auto;font-size:12px;line-height:1.75;color:rgba(245,245,245,.58)}

  html.dg-h5 #d-footer-cols {display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px!important;width:100%;margin-top:0}

  html.dg-h5 .footer-col {min-width:0;padding:14px 13px;border:1px solid rgba(245,245,245,.09);border-radius:14px;background:rgba(18,20,31,.62)}

  html.dg-h5 .footer-col:nth-child(3) {grid-column:1/-1;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));column-gap:14px;row-gap:2px}

  html.dg-h5 .footer-col h4 {margin:0 0 10px;font-size:11px;letter-spacing:1px;color:#ff6b9d;line-height:1.2}

  html.dg-h5 .footer-col:nth-child(3) h4 {grid-column:1/-1}

  html.dg-h5 .footer-col a {display:flex;align-items:center;min-height:28px;margin:0;color:rgba(245,245,245,.64);font-size:12px;line-height:1.35;word-break:keep-all;white-space:normal}

  html.dg-h5 .footer-col a+a {margin-top:4px}

  html.dg-h5 .footer-col:nth-child(3) a+a {margin-top:0}

  html.dg-h5 .footer-bottom {margin-top:16px;padding-top:14px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;text-align:center;border-top:1px solid rgba(245,245,245,.08)}

  html.dg-h5 .footer-copy,
html.dg-h5 .footer-icp {width:100%;font-size:11px;line-height:1.6;color:rgba(245,245,245,.4)}

  html.dg-h5 .footer-icp {max-width:310px;color:rgba(245,245,245,.3)}




@media(max-width:360px){

  #d-footer-cols{grid-template-columns:1fr}

  .footer-col:nth-child(3){grid-column:auto;display:block}

  .footer-col:nth-child(3) a+a{margin-top:4px}

}

/* CODEx MOBILE FOOTER FIX END */

.pm-sub-btn{
  background:transparent;border:1px solid rgba(255,107,157,.16);color:rgba(255,107,157,.55);
  font:12px 'Noto Sans SC',sans-serif;padding:5px 12px;border-radius:14px;cursor:pointer;
}
.pm-sub-btn.active{background:rgba(255,45,120,.22);border-color:rgba(255,45,120,.45);color:#ff6b9d}

