/* ============================================================
   Detail — 상세 화면 + 검색/스플래시/알림 (Detail.jsx)
   ============================================================
   섹션 순서
     1) Atoms — TagPill, StatTile, DetailCard, InfoGridItem,
                HeroIconBtn, SectionTitle, StickyDetailFooter
     2) PartyDetail
     3) ClubDetail
     4) SearchModal
     5) SplashScreen
     6) NotificationsPanel
   ============================================================ */

/* 상세 헤더 공통 — 주소 + 길찾기/복사 + 별점 (파티·클럽 상세 동일) */
.cp-dt-addr-row {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cp-dt-addr {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.cp-dt-dirbtn {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.24);
  color: #A5F3FC;
  font-size: 11px;
  font-weight: 800;
}
.cp-dt-copybtn {
  all: unset;
  cursor: pointer;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 700;
}
.cp-dt-rating {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cp-dt-rating__val {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}
.cp-dt-rating__count {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-left: 4px;
}

/* 파티 티켓 구매 버튼 — 어드민에 ticket_url 입력 시 파티 상세 정보 그리드에 노출 */
.cp-ticket-btn {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FF1077, #7B49FF);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(255, 16, 119, 0.35);
}
.cp-ticket-btn:active {
  filter: brightness(1.08);
}
/* 별점 바로 아래(제목 영역)에 놓일 때 상단 여백 */
.cp-ticket-btn--inline {
  margin-top: 12px;
}
/* 매진 — 클릭 불가, 회색 처리 */
.cp-ticket-btn--soldout {
  cursor: default;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
  letter-spacing: 0.04em;
}
.cp-ticket-btn--soldout:active {
  filter: none;
}
/* 인스타그램 — 박스 없이 아이콘만(티켓 버튼 높이에 맞춤). 티켓 버튼 옆 / 단독 시 맨 앞 */
.cp-insta-icon-btn {
  all: unset;
  cursor: pointer;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp-insta-icon-btn img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* ────────────────────────────────────────────────────
   1. Atoms
   ──────────────────────────────────────────────────── */
.cp-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.08);
  color: #E5E7EB;
  border: 1px solid transparent;
}
.cp-tag-pill--emerald { background: rgba(16, 185, 129, 0.15); color: #6EE7B7; border-color: rgba(16, 185, 129, 0.20); }
.cp-tag-pill--pink    { background: rgba(236, 72, 153, 0.15); color: #FBCFE8; border-color: rgba(236, 72, 153, 0.20); }
.cp-tag-pill--cyan    { background: rgba(6, 182, 212, 0.15);  color: #67E8F9; border-color: rgba(6, 182, 212, 0.20); }
.cp-tag-pill--sky     { background: rgba(14, 165, 233, 0.15); color: #7DD3FC; border-color: rgba(14, 165, 233, 0.20); }
.cp-tag-pill--violet  { background: rgba(139, 92, 246, 0.15); color: #C4B5FD; border-color: rgba(139, 92, 246, 0.20); }
.cp-tag-pill--amber   { background: rgba(245, 158, 11, 0.15); color: #FCD34D; border-color: rgba(245, 158, 11, 0.20); }

.cp-stat {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.20);
  padding: 12px 14px;
}
.cp-stat__label { font-size: 11px; color: rgba(255, 255, 255, 0.45); }
.cp-stat__value {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
.cp-stat__value--mono { font-family: 'JetBrains Mono', monospace; }
.cp-stat__hint { margin-top: 4px; font-size: 11px; color: rgba(255, 255, 255, 0.45); }

.cp-detail-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #15151E;
  padding: 16px;
}

.cp-info-grid {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  background: #15151E;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cp-info-grid__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.cp-info-grid__body { flex: 1; min-width: 0; }
.cp-info-grid__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}
.cp-info-grid__value {
  margin-top: 2px;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cp-info-grid__value--mono { font-family: 'JetBrains Mono', monospace; }

.cp-hero-icon-btn {
  all: unset;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(12, 12, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.cp-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}
.cp-section-title__h {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cp-section-title__badge { font-size: 14px; }

/* Sticky 하단 액션 바 */
.cp-detail-foot {
  position: sticky;
  bottom: 0;
  padding: 12px;
  background: linear-gradient(180deg, rgba(7, 7, 10, 0) 0%, #07070A 35%);
  z-index: 30;
}
.cp-detail-foot__inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.cp-detail-foot__notice {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7, 7, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.cp-detail-foot__bar {
  background: rgba(14, 14, 20, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 10px;
  display: grid;
  grid-template-columns: 48px 48px 1fr;
  gap: 8px;
}
.cp-detail-foot__btn {
  all: unset;
  cursor: pointer;
  height: 48px;
  border-radius: 14px;
  background: rgba(36, 36, 46, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}
.cp-detail-foot__btn--fav[data-on="true"] { color: #FF1077; }
.cp-detail-foot__btn--primary {
  background: linear-gradient(135deg, #FF1077 0%, #7B49FF 100%);
  border: none;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(255, 16, 119, 0.32);
}

/* ────────────────────────────────────────────────────
   2. PartyDetail / ClubDetail — 공용 컨테이너
   ──────────────────────────────────────────────────── */
.cp-detail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 70px);
  background: #07070A;
  overflow-y: auto;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.cp-detail__hero {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.cp-detail__hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.5) 0%, rgba(7, 7, 10, 0) 30%, rgba(7, 7, 10, 0) 60%, rgba(7, 7, 10, 0.95) 100%);
}
.cp-detail__hero-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
.cp-detail__hero-topbar-actions { display: flex; gap: 8px; }

.cp-detail__tonight-pos {
  position: absolute;
  top: 58px;
  right: 16px;
  z-index: 3;
}
.cp-detail__tonight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF1077 0%, #7B49FF 50%, #1FD2FF 100%);
  box-shadow: 0 6px 20px rgba(255, 16, 119, 0.55);
  letter-spacing: 0.10em;
}

.cp-detail__hero-genre {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
}
.cp-detail__hero-genre-badge {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #7B49FF, #FF1077);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(123, 73, 255, 0.42);
}

.cp-detail__hero-bottom-pills {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}
.cp-detail__hero-pill {
  display: inline-flex;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.cp-detail__hero-pill--sky {
  color: #7DD3FC;
  background: rgba(14, 165, 233, 0.20);
  border: 1px solid rgba(14, 165, 233, 0.20);
}
.cp-detail__hero-pill--ink {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.30);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.cp-detail__body {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: -16px;
  position: relative;
  z-index: 5;
}

/* Hero summary card — party / club 공용 */
.cp-detail__summary {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
}
.cp-detail__summary--party {
  background:
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.18), transparent 40%),
    linear-gradient(180deg, #171727 0%, #11111b 100%);
}
.cp-detail__summary--club {
  background:
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.24), transparent 42%),
    linear-gradient(180deg, #171727 0%, #11111b 100%);
}

.cp-detail__pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cp-detail__title-row {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.cp-detail__title-body { flex: 1; min-width: 0; }
.cp-detail__h1 {
  margin: 0;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.cp-detail__h1--party { font-size: 22px; line-height: 1.18; }
.cp-detail__h1--club  { font-size: 24px; line-height: 1.15; }

.cp-detail__venue-link {
  all: unset;
  cursor: pointer;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #FF7AB8;
}

.cp-detail__date-line {
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.cp-detail__date-time-mono { font-family: 'JetBrains Mono', monospace; }

.cp-detail__addr {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.cp-detail__rating-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cp-detail__rating {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}
.cp-detail__rating-count {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-left: 4px;
}
.cp-detail__cap {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.cp-detail__title-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
.cp-detail__fav-btn {
  all: unset;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(36, 36, 46, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
}
.cp-detail__fav-btn[data-on="true"] { color: #FF1077; }
.cp-detail__cmp-btn {
  all: unset;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(36, 36, 46, 0.6);
  text-align: center;
}

.cp-detail__stats-2 {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cp-detail__stats-3 {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.cp-detail__signal-pills {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cp-detail__notice {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.20);
}
.cp-detail__notice-eyebrow {
  font-size: 11px;
  font-weight: 700;
}
.cp-detail__notice-text {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

/* Inquiry snapshot 카드 */
.cp-inq__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.cp-inq__title { margin: 0; font-size: 14px; font-weight: 800; color: #fff; }
.cp-inq__sub {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}
.cp-inq__badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 16, 119, 0.15);
  color: #FFB8DA;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Info grid 4-cell */
.cp-info-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Lineup */
.cp-lineup-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cp-lineup-row:last-child { border-bottom: none; }
.cp-lineup-row__body { flex: 1; min-width: 0; }
.cp-lineup-row__head {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.cp-lineup-row__name { font-size: 14px; font-weight: 800; color: #fff; }
.cp-lineup-row__resident {
  font-size: 9px;
  font-weight: 800;
  color: #C8FF1A;
  letter-spacing: 0.10em;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(200, 255, 26, 0.12);
}
.cp-lineup-row__set {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 2px;
}
.cp-lineup-row__play {
  all: unset;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Description card */
.cp-detail__desc-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}
.cp-detail__desc-lead {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  line-height: 1.55;
}
.cp-detail__desc-body {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* Friends row */
.cp-friends-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.cp-friend-chip {
  min-width: 110px;
  padding: 12px;
  border-radius: 14px;
  background: #15151E;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  flex-shrink: 0;
}
.cp-friend-chip__name {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-top: 8px;
}
.cp-friend-chip__handle {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

/* Reviews */
.cp-review-write-link {
  all: unset;
  cursor: pointer;
  font-size: 11px;
  color: #1FD2FF;
  font-weight: 700;
}
.cp-reviews-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cp-review-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cp-review-card__author {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.cp-review-card__body {
  margin: 6px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  font-weight: 500;
}
.cp-review-card__date {
  margin-top: 8px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-family: 'JetBrains Mono', monospace;
}
.cp-reviews-empty {
  padding: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
}

/* Tags row */
.cp-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cp-tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
}

/* CTA */
.cp-detail__cta-ghost {
  all: unset;
  cursor: pointer;
  width: 100%;
  padding: 14px 0;
  border-radius: 16px;
  text-align: center;
  box-sizing: border-box;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: rgba(36, 36, 46, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cp-detail__cta-primary {
  all: unset;
  cursor: pointer;
  width: 100%;
  padding: 14px 0;
  border-radius: 16px;
  text-align: center;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #FF1077 0%, #7B49FF 100%);
  box-shadow: 0 8px 24px rgba(255, 16, 119, 0.32);
}

/* Address card */
.cp-addr-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cp-addr-row__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp-addr-row__body { flex: 1; min-width: 0; }
.cp-addr-row__addr { margin: 0; font-size: 13px; color: #fff; font-weight: 600; }
.cp-addr-row__handle {
  margin: 4px 0 0;
  font-size: 12px;
  color: #FF7AB8;
  font-weight: 600;
}

/* Upcoming party row at club */
.cp-upcoming-row {
  all: unset;
  cursor: pointer;
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: #15151E;
  border: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
}
.cp-upcoming-row__date {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FF1077, #7B49FF);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 16, 119, 0.32);
}
.cp-upcoming-row__date-d {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.cp-upcoming-row__date-m {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.cp-upcoming-row__body { flex: 1; min-width: 0; }
.cp-upcoming-row__title {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cp-upcoming-row__meta {
  margin: 2px 0 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}
.cp-upcoming-row__time { font-family: 'JetBrains Mono', monospace; }

/* ────────────────────────────────────────────────────
   4. SearchModal
   ──────────────────────────────────────────────────── */
.cp-search {
  position: absolute;
  inset: 0;
  background: #07070A;
  z-index: 150;
  display: flex;
  flex-direction: column;
}
.cp-search__bar {
  padding: 50px 16px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #0E0E14;
}
.cp-search__field {
  flex: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: #15151E;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cp-search__input {
  flex: 1;
  all: unset;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Pretendard', system-ui;
}
.cp-search__clear {
  all: unset;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
}
.cp-search__cancel {
  all: unset;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: #FF7AB8;
}
.cp-search__body {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px 16px;
}
.cp-search__h {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.cp-search__h--pink { color: rgba(255, 122, 184, 0.85); }
.cp-search__h--violet { color: rgba(160, 122, 255, 0.85); }
.cp-search__recent-row {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.cp-search__recent-text { flex: 1; font-size: 13px; color: #fff; }
.cp-search__trend-chip {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.cp-search__result-row {
  all: unset;
  cursor: pointer;
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: #15151E;
  align-items: center;
}
.cp-search__result-thumb {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #0E0E14;
}
.cp-search__result-title { font-size: 13px; font-weight: 800; color: #fff; }
.cp-search__result-sub   { font-size: 11px; color: rgba(255, 255, 255, 0.5); }

.cp-search__empty {
  padding: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}
.cp-search__empty-title { margin-top: 12px; font-size: 13px; font-weight: 600; }
.cp-search__empty-sub   { margin-top: 4px; font-size: 11px; }

/* ────────────────────────────────────────────────────
   5. SplashScreen
   ──────────────────────────────────────────────────── */
.cp-splash {
  position: absolute;
  inset: 0;
  background: #07070A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 500;
}
.cp-splash__title {
  margin-top: 20px;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #FF1077 0%, #7B49FF 50%, #1FD2FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cp-splash__sub {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* ────────────────────────────────────────────────────
   6. NotificationsPanel
   ──────────────────────────────────────────────────── */
.cp-notif {
  position: absolute;
  inset: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
}
.cp-notif__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.cp-notif__panel {
  position: relative;
  margin: 50px 12px 0;
  background: #0E0E14;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
}
.cp-notif__head {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cp-notif__title {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-top: 2px;
}
.cp-notif__close {
  all: unset;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.cp-notif__list {
  max-height: 460px;
  overflow-y: auto;
}
.cp-notif__row {
  all: unset;
  display: flex;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}
.cp-notif__row[data-clickable="true"] { cursor: pointer; }
.cp-notif__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cp-notif__row-body { flex: 1; min-width: 0; }
.cp-notif__row-title {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.cp-notif__row-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}
.cp-notif__row-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
}
