/* 主播站首页 — 少女金碧 · PC/手机响应式 */
:root {
  --al-bg-deep: #2a0838;
  --al-gold: #ffd966;
  --al-gold-light: #ffe9a8;
  --al-pink: #ff5a9e;
  --al-rose: #ff8ec8;
  --al-text: #fff8fc;
  --al-muted: rgba(255, 235, 250, 0.78);
  --al-card: rgba(255, 255, 255, 0.12);
  --al-border: rgba(255, 220, 150, 0.45);
  --al-shadow: 0 12px 40px rgba(255, 100, 140, 0.28);
  --al-max: 1080px;
  --al-font: "PingFang SC", "Microsoft YaHei", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--al-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--al-text);
  background: var(--al-bg-deep);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 50% at 10% 0%, rgba(255, 215, 120, 0.42) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 92% 8%, rgba(255, 120, 200, 0.38) 0%, transparent 50%),
    radial-gradient(ellipse 55% 40% at 50% 100%, rgba(255, 80, 160, 0.32) 0%, transparent 55%),
    linear-gradient(165deg, #4a1248 0%, #9b1a5c 30%, #c42d6a 48%, #6b2080 75%, #2d0a38 100%);
}

.al-wrap {
  position: relative;
  z-index: 1;
  max-width: var(--al-max);
  margin: 0 auto;
  padding: 0 16px 48px;
}

/* 顶栏 */
.al-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.al-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.al-brand--logo {
  gap: 0;
}

.al-brand__logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(200px, 52vw);
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(255, 100, 160, 0.35));
}

@media (min-width: 900px) {
  .al-brand__logo {
    height: 64px;
    max-width: 320px;
  }
}

.al-brand__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg, var(--al-pink), var(--al-gold));
  box-shadow: 0 4px 16px rgba(255, 180, 60, 0.4);
}

.al-brand__text {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, var(--al-gold-light), var(--al-rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.al-brand__text--sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  background: none;
  color: transparent;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}

.al-header__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.al-lang {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.al-header__cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  color: #2a0818;
  background: linear-gradient(135deg, var(--al-pink), #ffb347, var(--al-gold));
  box-shadow: 0 6px 20px rgba(255, 120, 80, 0.45);
  white-space: nowrap;
}

/* Hero */
.al-hero {
  text-align: center;
  padding: 28px 8px 36px;
}

.al-hero__badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #2a0818;
  background: linear-gradient(90deg, var(--al-gold-light), var(--al-gold));
  box-shadow: 0 4px 14px rgba(255, 215, 80, 0.45);
}

.al-hero__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.al-hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, #fff 10%, var(--al-gold-light) 50%, var(--al-rose) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.al-hero__lead {
  margin: 0 auto 24px;
  max-width: 520px;
  font-size: clamp(15px, 3.8vw, 18px);
  color: var(--al-muted);
}

.al-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.al-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.al-btn:active {
  transform: scale(0.98);
}

.al-btn--primary {
  color: #2a0818;
  background: linear-gradient(135deg, var(--al-pink), #ffb347, var(--al-gold));
  box-shadow: 0 8px 28px rgba(255, 100, 120, 0.5);
}

.al-btn--ghost {
  color: var(--al-gold-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--al-border);
}

/* 收益亮点 */
.al-earn-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .al-earn-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.al-earn-item {
  padding: 14px 10px;
  text-align: center;
  border-radius: 14px;
  background: var(--al-card);
  border: 1px solid var(--al-border);
  backdrop-filter: blur(8px);
}

.al-earn-item__icon {
  font-size: 26px;
  display: block;
  margin-bottom: 6px;
}

.al-earn-item__label {
  font-size: 12px;
  color: var(--al-muted);
  margin: 0 0 4px;
}

.al-earn-item strong {
  display: block;
  font-size: 15px;
  color: var(--al-gold);
}

/* 适合谁 */
.al-section {
  margin-bottom: 36px;
}

.al-section__title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: var(--al-gold-light);
}

.al-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.al-tag {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(255, 90, 150, 0.35), rgba(255, 200, 80, 0.2));
  border: 1px solid rgba(255, 230, 150, 0.4);
}

/* 三步 */
.al-steps {
  display: grid;
  gap: 14px;
}

@media (min-width: 720px) {
  .al-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.al-step {
  padding: 20px 16px;
  border-radius: 16px;
  background: var(--al-card);
  border: 1px solid var(--al-border);
  text-align: center;
  box-shadow: var(--al-shadow);
}

.al-step__num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 50%;
  font-weight: 800;
  color: #2a0818;
  background: linear-gradient(135deg, var(--al-gold), var(--al-pink));
}

.al-step h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #fff;
}

.al-step p {
  margin: 0;
  font-size: 13px;
  color: var(--al-muted);
}

/* 主内容区：文案 + 登录 */
.al-main-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

@media (min-width: 900px) {
  .al-main-grid {
    grid-template-columns: 1fr 360px;
    gap: 32px;
  }
}

.al-quote {
  padding: 24px 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 230, 160, 0.15), rgba(255, 100, 180, 0.12));
  border: 1px solid var(--al-border);
}

.al-quote p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 245, 255, 0.92);
}

.al-quote p:last-child {
  margin-bottom: 0;
}

.al-quote strong {
  color: var(--al-gold);
}

/* 登录卡 */
.al-login-card {
  padding: 24px 20px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.16), rgba(255, 200, 120, 0.08));
  border: 1px solid var(--al-border);
  box-shadow: var(--al-shadow);
  scroll-margin-top: 80px;
}

.al-login-card__title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  color: var(--al-gold-light);
}

.al-login-card__sub {
  margin: 0 0 20px;
  text-align: center;
  font-size: 13px;
  color: var(--al-muted);
}

.al-field {
  margin-bottom: 14px;
}

.al-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(255, 240, 220, 0.9);
}

.al-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 210, 140, 0.45);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 16px;
}

.al-field input:focus {
  outline: none;
  border-color: var(--al-gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 100, 0.25);
}

.al-login-card .al-btn--primary {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 17px;
}

.al-login-hint {
  margin: 14px 0 0;
  font-size: 12px;
  text-align: center;
  color: var(--al-muted);
  line-height: 1.5;
}

.al-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 210, 140, 0.2);
  text-align: center;
  font-size: 12px;
  color: rgba(255, 230, 250, 0.5);
}

.al-footer a {
  color: rgba(255, 220, 150, 0.75);
  text-decoration: none;
}
