/* ===========================================================
   School Music - VVIP Invite Popup V2
   Light editorial style. Gold accent + black primary button.
   =========================================================== */

:root {
  --sm-vvip2-gold: #c9a14d;
  --sm-vvip2-gold-bg: #fbf4e2;
  --sm-vvip2-gold-border: rgba(184,134,11,.42);
  --sm-vvip2-gold-ink: #8a6510;
  --sm-vvip2-ink: #0a0a0a;
  --sm-vvip2-muted: #4b5563;
  --sm-vvip2-soft: #9ca3af;
  --sm-vvip2-line: #ebe7dd;
}

.sm-vvip2-lock { overflow: hidden !important; }

.sm-vvip2-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(10,10,10,.10);
  backdrop-filter: blur(1.5px);
  font-family: Pretendard, "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  letter-spacing: 0;
}

.sm-vvip2-modal {
  position: relative;
  width: min(540px, calc(100vw - 32px));
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--sm-vvip2-line);
  box-shadow: 0 32px 90px rgba(20,22,30,.18);
  overflow: hidden;
}

.sm-vvip2-inner {
  padding: 60px 44px 38px;
  text-align: center;
}

.sm-vvip2-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--sm-vvip2-line);
  border-radius: 999px;
  background: transparent;
  color: #a8a8a8;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}
.sm-vvip2-close:hover { color: var(--sm-vvip2-ink); border-color: #d4d0c4; }

/* Gold pill badge */
.sm-vvip2-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--sm-vvip2-gold-bg);
  border: 1px solid var(--sm-vvip2-gold-border);
  color: var(--sm-vvip2-gold-ink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .22em;
  white-space: nowrap;
}

/* Headline with gold underline (focal point) */
.sm-vvip2-title {
  display: inline-block;
  margin: 22px 0 0;
  color: var(--sm-vvip2-ink);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -.02em;
  text-decoration: underline;
  text-decoration-color: rgba(201,161,77,.65);
  text-decoration-thickness: 8px;
  text-underline-offset: -2px;
  text-decoration-skip-ink: none;
  word-break: keep-all;
}

/* Subtext */
.sm-vvip2-copy {
  margin: 24px 0 0;
  color: var(--sm-vvip2-muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  word-break: keep-all;
}

.sm-vvip2-copy .sm-vvip2-name {
  color: var(--sm-vvip2-ink);
  font-weight: 800;
}

/* Actions */
.sm-vvip2-actions {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.sm-vvip2-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 0;
  border-radius: 12px;
  background: var(--sm-vvip2-ink);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(10,10,10,.22);
  transition: background .15s ease;
}
.sm-vvip2-primary:hover { background: #1f1f1f; color: #fff; }

.sm-vvip2-muted-btn {
  background: transparent;
  border: 0;
  color: var(--sm-vvip2-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #d4d4d4;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  cursor: pointer;
  padding: 4px 0;
  justify-self: center;
}
.sm-vvip2-muted-btn:hover { color: var(--sm-vvip2-ink); }

/* Legacy hooks - hidden in current layout */
.sm-vvip2-visual,
.sm-vvip2-price,
.sm-vvip2-offer,
.sm-vvip2-note {
  display: none !important;
}

@media (max-width: 520px) {
  .sm-vvip2-overlay { padding: 16px; }
  .sm-vvip2-modal { border-radius: 18px; }
  .sm-vvip2-inner { padding: 44px 24px 28px; }
  .sm-vvip2-kicker { font-size: 11px; letter-spacing: .2em; padding: 0 14px; }
  .sm-vvip2-title { font-size: 25px; text-decoration-thickness: 6px; }
  .sm-vvip2-copy { font-size: 14.5px; margin-top: 20px; }
  .sm-vvip2-actions { margin-top: 26px; gap: 12px; }
  .sm-vvip2-primary { font-size: 14px; min-height: 52px; }
}
