/* ============================================================
   9o도리 랜딩 페이지 — 완성형 디자인
   style.css 이후 로드되어 기존 lp-* 규칙을 덮어씁니다.
   ============================================================ */

.lp-body {
  --lp-ink:    #14152a;
  --lp-ink-2:  #4b4d6b;
  --lp-line:   #e7e8f2;
  --lp-bg:     #f6f7fc;
  --lp-brand:  #5865f2;
  --lp-brand2: #818cf8;
  --lp-violet: #a78bfa;
  --lp-pink:   #f472b6;
  --lp-dark:   #0b0c1a;

  margin: 0;
  padding: 0;
  background: var(--lp-bg);
  color: var(--lp-ink);
  font-family: 'Pretendard', 'Noto Sans KR', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.lp-body ::selection { background: rgba(88,101,242,0.2); }

.lp-wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── 공통 버튼 ───────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.lp-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #5865f2, #7c5cff);
  box-shadow: 0 10px 30px rgba(88,101,242,0.35);
}
.lp-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(88,101,242,0.45); }
.lp-btn--ghost {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.lp-btn--ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.lp-btn--lg { height: 58px; padding: 0 34px; font-size: 1.05rem; }
.lp-btn__arrow { transition: transform .15s ease; }
.lp-btn:hover .lp-btn__arrow { transform: translateX(3px); }

/* ── 상단 네비 ───────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 64px;
  display: flex;
  align-items: center;
  z-index: 100;
  background: rgba(11,12,26,0.55);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .25s ease;
}
.lp-nav__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-nav__logo img { height: 28px; display: block; }
.lp-nav__menu { display: flex; align-items: center; gap: 10px; }
.lp-nav__link {
  color: rgba(255,255,255,0.78);
  font-size: .9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  transition: color .15s, background .15s;
}
.lp-nav__link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.lp-nav__login {
  height: 40px;
  padding: 0 18px;
  border-radius: 11px;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #5865f2, #7c5cff);
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s, box-shadow .15s;
}
.lp-nav__login:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(88,101,242,0.4); }

.lp-login { position: relative; }
.lp-login__pop {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 200;
  background: #fff; border: 1px solid #e6e8f2; border-radius: 14px;
  box-shadow: 0 18px 46px rgba(15,18,40,0.22);
  padding: 12px; min-width: 230px;
}
.lp-login__pop::before {
  content: ''; position: absolute; top: -6px; right: 24px; width: 12px; height: 12px;
  background: #fff; border-left: 1px solid #e6e8f2; border-top: 1px solid #e6e8f2;
  transform: rotate(45deg);
}
.lp-login__chzzk {
  display: flex; align-items: center; justify-content: center;
  height: 46px; padding: 0 18px; border-radius: 11px;
  font-size: .92rem; font-weight: 700; color: #fff; text-decoration: none;
  white-space: nowrap; background: linear-gradient(135deg, #5865f2, #7c5cff);
  transition: box-shadow .15s, transform .12s;
}
.lp-login__chzzk:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(88,101,242,0.45); }

/* ── 히어로 ──────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  padding: 150px 0 110px;
  background: radial-gradient(120% 90% at 50% -10%, #1b1e4d 0%, #0d0e22 55%, #090a16 100%);
  overflow: hidden;
  text-align: center;
}
.lp-hero::before,
.lp-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.lp-hero::before {
  width: 520px; height: 520px;
  top: -120px; left: -80px;
  background: radial-gradient(circle, rgba(124,92,255,0.5), transparent 70%);
}
.lp-hero::after {
  width: 480px; height: 480px;
  top: 40px; right: -100px;
  background: radial-gradient(circle, rgba(244,114,182,0.32), transparent 70%);
}
.lp-hero__inner { position: relative; z-index: 1; }

.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: #c7c9ff;
  background: rgba(124,92,255,0.14);
  border: 1px solid rgba(124,92,255,0.3);
  padding: 7px 15px;
  border-radius: 30px;
  margin-bottom: 26px;
}
.lp-hero__badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #818cf8; box-shadow: 0 0 8px #818cf8;
}
.lp-hero__title {
  font-size: clamp(2.1rem, 6vw, 3.7rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 22px;
}
.lp-hero__title .grad {
  background: linear-gradient(110deg, #818cf8, #c4b5fd 40%, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.66);
  max-width: 620px;
  margin: 0 auto 38px;
}
.lp-hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.lp-hero__trust {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255,255,255,0.5);
}
.lp-hero__trust span { display: inline-flex; align-items: center; gap: 6px; }
.lp-hero__trust b { color: #a5f3c0; font-weight: 700; }

/* 히어로 채팅 미리보기 */
.lp-hero__preview {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 64px auto 0;
}

.lp-chat {
  text-align: left;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.lp-chat__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lp-chat__head .live {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 8px #22c55e;
  animation: lp-pulse 1.8s infinite;
}
@keyframes lp-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.lp-chat__body { padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 11px; }
.lp-msg {
  font-size: .9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  opacity: 0;
  transform: translateY(8px);
  animation: lp-msg-in .5s ease forwards;
}
.lp-msg:nth-child(1){animation-delay:.1s}
.lp-msg:nth-child(2){animation-delay:.5s}
.lp-msg:nth-child(3){animation-delay:.9s}
.lp-msg:nth-child(4){animation-delay:1.3s}
.lp-msg:nth-child(5){animation-delay:1.7s}
@keyframes lp-msg-in { to { opacity: 1; transform: translateY(0); } }
.lp-msg b { font-weight: 700; margin-right: 6px; }
.lp-msg--bot {
  background: rgba(124,92,255,0.16);
  border: 1px solid rgba(124,92,255,0.28);
  border-radius: 12px;
  padding: 9px 13px;
  color: #fff;
}
.lp-msg--bot b { color: #c4b5fd; }
.lp-u1 { color: #f472b6; }
.lp-u2 { color: #60a5fa; }
.lp-u3 { color: #fbbf24; }

/* ── 섹션 공통 ───────────────────────────────────────────── */
.lp-sec { padding: 100px 0; position: relative; }
.lp-sec--light { background: var(--lp-bg); }
.lp-sec--white {
  background:
    radial-gradient(640px circle at 12% 12%, rgba(167,139,250,0.10), transparent 60%),
    radial-gradient(620px circle at 88% 88%, rgba(244,114,182,0.08), transparent 60%),
    #ffffff;
}
.lp-sec__head { text-align: center; margin-bottom: 60px; }
.lp-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--lp-brand);
  margin-bottom: 14px;
}
.lp-h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--lp-ink);
  margin: 0 0 14px;
}
.lp-sub2 {
  font-size: 1.02rem;
  color: var(--lp-ink-2);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ── 기능 그리드 ─────────────────────────────────────────── */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.lp-card {
  position: relative;
  padding: 28px 26px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.7), rgba(255,255,255,0.45));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 10px 30px rgba(31,38,80,0.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.lp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(88,101,242,0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 18px 44px rgba(88,101,242,0.16);
}
.lp-card__icon {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border-radius: 14px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(88,101,242,0.14), rgba(167,139,250,0.14));
  border: 1px solid rgba(88,101,242,0.16);
}
.lp-card__title { font-size: 1.06rem; font-weight: 800; margin-bottom: 9px; color: var(--lp-ink); }
.lp-card__desc { font-size: .9rem; line-height: 1.65; color: var(--lp-ink-2); }
.lp-card__desc code {
  background: rgba(88,101,242,0.1);
  color: var(--lp-brand);
  padding: 1px 6px;
  border-radius: 5px;
  font-size: .85em;
  font-family: 'Consolas', monospace;
}

/* ── 명령어 데모 (어두운 섹션) ───────────────────────────── */
.lp-demo {
  padding: 110px 0;
  background: radial-gradient(110% 80% at 50% 0%, #16183a 0%, #0c0d1e 60%, #090a16 100%);
  position: relative;
  overflow: hidden;
}
.lp-demo::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,0.22), transparent 70%);
  top: -200px; left: 50%; transform: translateX(-50%);
  filter: blur(60px);
  pointer-events: none;
}
.lp-demo__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lp-demo__text .lp-eyebrow { color: #a5b4fc; }
.lp-demo__text .lp-h2 { color: #fff; }
.lp-demo__list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 16px; }
.lp-demo__list li { display: flex; gap: 13px; color: rgba(255,255,255,0.72); font-size: .96rem; line-height: 1.55; }
.lp-demo__list .ic {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,92,255,0.18);
  color: #c4b5fd;
  font-size: .8rem;
}
.lp-demo__list b { color: #fff; font-weight: 700; }

/* ── How it works ────────────────────────────────────────── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-step {
  position: relative;
  padding: 32px 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--lp-line);
  text-align: left;
}
.lp-step__n {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #5865f2, #7c5cff);
  box-shadow: 0 8px 20px rgba(88,101,242,0.3);
  margin-bottom: 18px;
}
.lp-step__t { font-size: 1.08rem; font-weight: 800; margin-bottom: 8px; }
.lp-step__d { font-size: .92rem; color: var(--lp-ink-2); line-height: 1.6; }

/* ── FAQ ─────────────────────────────────────────────────── */
.lp-faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.lp-faq__item {
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.lp-faq__item[open] { border-color: rgba(88,101,242,0.35); box-shadow: 0 8px 26px rgba(31,38,80,0.06); }
.lp-faq__q {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-faq__q::-webkit-details-marker { display: none; }
.lp-faq__q .pm {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lp-brand);
  font-size: 1.3rem;
  transition: transform .2s ease;
}
.lp-faq__item[open] .pm { transform: rotate(45deg); }
.lp-faq__a {
  padding: 0 22px 20px;
  font-size: .94rem;
  color: var(--lp-ink-2);
  line-height: 1.7;
}

/* ── 최종 CTA ────────────────────────────────────────────── */
.lp-final {
  padding: 110px 24px;
  text-align: center;
  background: radial-gradient(100% 100% at 50% 0%, #1b1e4d 0%, #0c0d1e 70%);
  position: relative;
  overflow: hidden;
}
.lp-final::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 40%, rgba(124,92,255,0.25), transparent 70%);
  pointer-events: none;
}
.lp-final__inner { position: relative; z-index: 1; }
.lp-final__title { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 900; color: #fff; letter-spacing: -0.02em; margin: 0 0 16px; }
.lp-final__sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); margin: 0 0 36px; line-height: 1.6; }
.lp-final__logo { height: 110px; margin-bottom: 28px; opacity: .95; }

/* ── 푸터 ────────────────────────────────────────────────── */
.lp-foot {
  background: #090a16;
  padding: 36px 24px;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lp-foot a { color: rgba(255,255,255,0.6); text-decoration: underline; text-underline-offset: 3px; }
.lp-foot__links { margin-top: 14px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.lp-foot__links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: .82rem; }
.lp-foot__links a:hover { color: rgba(255,255,255,0.85); }

/* ── 반응형 ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-demo__inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-steps { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .lp-grid { grid-template-columns: 1fr; }
  .lp-hero { padding: 130px 0 80px; }
  .lp-sec, .lp-demo { padding: 72px 0; }
  .lp-nav__link { display: none; }
  .lp-hero__cta .lp-btn { width: 100%; }
}

/* ── 카드 클릭 미리보기 오버레이 ── */
.lp-card { cursor: pointer; }
.lp-card::after {
  content: '미리보기 ▸';
  display: block;
  margin-top: 14px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--lp-brand);
  opacity: .55;
  transition: opacity .15s, transform .15s;
}
.lp-card:hover::after { opacity: 1; transform: translateX(3px); }

.lp-preview {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(9, 10, 22, 0.62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: lp-prev-fade .2s ease;
}
.lp-preview[hidden] { display: none; }
.lp-preview__card {
  width: 100%;
  max-width: 440px;
  background: radial-gradient(120% 100% at 50% 0%, #1a1d3e 0%, #0d0e22 70%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  animation: lp-prev-pop .35s cubic-bezier(.34,1.56,.64,1);
}
.lp-preview__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.lp-preview__icon { font-size: 1.7rem; line-height: 1; }
.lp-preview__title { font-size: 1.2rem; font-weight: 800; color: #fff; }
.lp-preview__desc { font-size: .9rem; color: rgba(255,255,255,0.62); line-height: 1.6; margin: 0 0 18px; }
.lp-preview__close {
  margin-top: 18px;
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s;
}
.lp-preview__close:hover { background: rgba(255,255,255,0.18); }

@keyframes lp-prev-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lp-prev-pop {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── 미리보기 목업 컴포넌트 ── */
.lp-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 18px;
}
.lp-mock__title { font-size: .95rem; font-weight: 800; color: #fff; margin-bottom: 16px; text-align: center; }
.lp-mock__btn {
  width: 100%; margin-top: 8px; padding: 10px; border: none; border-radius: 10px;
  background: linear-gradient(135deg,#5865f2,#7c5cff); color: #fff; font-weight: 700; font-size: .88rem;
  font-family: inherit; cursor: default;
}

/* 투표 결과 막대 */
.lp-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
.lp-bar:last-child { margin-bottom: 0; }
.lp-bar__lbl { width: 72px; flex-shrink: 0; font-size: .85rem; color: rgba(255,255,255,0.85); }
.lp-bar__track { flex: 1; height: 10px; background: rgba(255,255,255,0.1); border-radius: 6px; overflow: hidden; }
.lp-bar__fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg,#818cf8,#c4b5fd); transform-origin: left; animation: lp-bar-grow .8s cubic-bezier(.34,1.2,.64,1) both; }
.lp-bar__pct { width: 42px; text-align: right; font-size: .85rem; font-weight: 800; color: #fff; }
@keyframes lp-bar-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* 포털 */
.lp-portal { text-align: center; }
.lp-portal__name { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.lp-portal__bio { font-size: .82rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.lp-portal__links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.lp-portal__links a {
  display: block; padding: 11px; border-radius: 10px; font-size: .82rem; font-weight: 600; color: #fff;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); transition: background .15s;
}
.lp-portal__links a:hover { background: rgba(255,255,255,0.14); }

/* 시간표 폼 */
.lp-field { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.lp-field label { width: 46px; flex-shrink: 0; font-size: .8rem; color: rgba(255,255,255,0.55); }
.lp-pill { flex: 1; padding: 8px 12px; border-radius: 9px; font-size: .85rem; color: #fff; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }

/* 채팅 관리 설명 */
.lp-mock--text ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.lp-mock--text li { font-size: .9rem; line-height: 1.5; color: rgba(255,255,255,0.85); }

/* 추첨 당첨 */
.lp-win { text-align: center; padding: 30px 18px; }
.lp-win__label { font-size: .92rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.lp-win__name {
  font-size: 2rem; font-weight: 900; line-height: 1.2;
  background: linear-gradient(90deg,#f59e0b,#ef4444,#f97316,#f59e0b); background-size: 300%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: lp-prev-pop .5s cubic-bezier(.34,1.56,.64,1), lp-gold 3s linear infinite;
}
@keyframes lp-gold { from { background-position: 0%; } to { background-position: 300%; } }

/* 돌림판 */
.lp-wheel { position: relative; width: 200px; height: 200px; margin: 8px auto; }
.lp-wheel__disc {
  width: 100%; height: 100%; border-radius: 50%;
  background: conic-gradient(#8b5cf6 0 90deg, #ec4899 90deg 180deg, #6366f1 180deg 270deg, #f472b6 270deg 360deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45), inset 0 0 0 3px rgba(255,255,255,0.15);
  animation: lp-spin 4s linear infinite;
}
@keyframes lp-spin { to { transform: rotate(360deg); } }
.lp-wheel__hub {
  position: absolute; inset: 0; margin: auto; width: 56px; height: 56px; border-radius: 50%;
  background: #1a1f33; color: #fff; font-weight: 800; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.55); box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.lp-wheel__pin {
  position: absolute; top: -7px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 0; height: 0; border-left: 9px solid transparent; border-right: 9px solid transparent;
  border-top: 17px solid #fff; filter: drop-shadow(0 2px 3px rgba(0,0,0,0.4));
}

/* ── 신청곡 OBS 오버레이 목업 ── */
.lp-sr-obs { margin-top: 16px; }
.lp-sr-obs__label { font-size: .75rem; color: rgba(255,255,255,0.5); text-align: center; margin-bottom: 8px; }
.lp-sr-obs__stage {
  border-radius: 14px;
  padding: 22px 16px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 55%, #0f172a 100%);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-srbar {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  max-width: 300px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,.30) 0%, rgba(255,255,255,.12) 55%, rgba(200,210,230,.08) 100%);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,.7), 0 8px 24px rgba(0,0,0,.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.lp-srbar__thumb {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 8px;
  background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.lp-srbar__info { flex: 1; min-width: 0; }
.lp-srbar__badge {
  display: flex; align-items: center; gap: 5px;
  font-size: .58rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.8); text-shadow: 0 1px 3px rgba(0,0,0,.6); margin-bottom: 2px;
}
.lp-srbar__badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg,#a78bfa,#f472b6); box-shadow: 0 0 6px #a78bfa;
  animation: lp-pulse 1.6s infinite;
}
.lp-srbar__title {
  font-size: .9rem; font-weight: 700; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-shadow: 0 1px 3px rgba(0,0,0,.7);
}
.lp-srbar__next {
  font-size: .72rem; color: rgba(255,255,255,.7);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-shadow: 0 1px 3px rgba(0,0,0,.6); margin-top: 1px;
}

/* ── 타이머 오버레이 목업 ── */
.lp-tmr {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 12px;
  width: 100%; max-width: 300px; padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,.30) 0%, rgba(255,255,255,.12) 55%, rgba(200,210,230,.08) 100%);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,.7), 0 8px 24px rgba(0,0,0,.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.lp-tmr__fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 58%; z-index: 0;
  background: linear-gradient(90deg, rgba(34,197,94,.28), rgba(34,197,94,.58));
}
.lp-tmr__icon {
  position: relative; z-index: 1; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
  background: linear-gradient(135deg,#a78bfa,#f472b6); box-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.lp-tmr__info { position: relative; z-index: 1; }
.lp-tmr__badge {
  font-size: .58rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.8); text-shadow: 0 1px 3px rgba(0,0,0,.6); margin-bottom: 3px;
}
.lp-tmr__time {
  font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1;
  font-variant-numeric: tabular-nums; text-shadow: 0 1px 3px rgba(0,0,0,.7);
}

/* ── 뉴스속보 오버레이 목업 ── */
.lp-news-stage { justify-content: flex-start; overflow: hidden; }
.lp-newsbar {
  display: flex; align-items: stretch; height: 40px; white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.lp-newsbar__logo {
  display: flex; align-items: center; padding: 0 14px; background: #fff; flex-shrink: 0;
}
.lp-newsbar__logo img { height: 22px; width: auto; display: block; filter: invert(1); }
.lp-newsbar__text {
  display: flex; align-items: center; padding: 0 18px;
  background: rgba(0,0,0,.62); color: #fff;
  font-size: .9rem; font-weight: 700; text-shadow: 0 1px 3px rgba(0,0,0,.55);
}

/* ── Discord 방송알림 목업 ── */
.lp-dc__mention { font-size: .88rem; color: #fff; margin-bottom: 10px; }
.lp-dc__embed {
  background: #2b2d31;
  border-left: 4px solid #00c73c;
  border-radius: 0 6px 6px 0;
  padding: 14px 16px;
}
.lp-dc__title { color: #00a8fc; font-weight: 700; font-size: .92rem; margin-bottom: 10px; }
.lp-dc__row { margin-bottom: 10px; }
.lp-dc__row .k { display: block; font-size: .7rem; font-weight: 700; color: #b5bac1; margin-bottom: 2px; }
.lp-dc__row span:last-child { font-size: .85rem; color: #dbdee1; }
.lp-dc__shot {
  background: #404249; border-radius: 4px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  color: #87898c; font-size: .8rem;
}
.lp-dc__foot { font-size: .7rem; color: #87898c; margin-top: 9px; }
