/* ============================================================
   ぴゅあじょ – Multi-page Vanilla JS
   css/style.css
   ============================================================ */

/* ==================== CSS CUSTOM PROPERTIES ==================== */
:root {
  --primary:              #FF1493;
  --primary-container:    #FFE4E1;
  --on-primary:           #ffffff;
  --secondary:            #00E5FF;
  --secondary-container:  #E0FFFF;
  --tertiary:             #9D00FF;
  --tertiary-container:   #F3E5F5;
  --surface:              #F8F9FA;
  --surface-container-low:#FFFFFF;
  --on-surface:           #1A1A1A;
  --on-surface-variant:   #666666;
  --outline:              #E0E0E0;
  --black:                #111111;
  --font-headline:        "LINE Seed JP", sans-serif;
}

/* ==================== RESET ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--surface);
  color: var(--on-surface);
  font-family: var(--font-headline);
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ==================== BG BLOBS ==================== */
.bg-blob {
  position: fixed;
  pointer-events: none;
  filter: blur(48px);
  z-index: 0;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
.bg-blob-1 {
  top: -80px;
  left: -80px;
  width: 288px;
  height: 288px;
  background: rgba(0, 229, 255, 0.3);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.6;
}
.bg-blob-2 {
  top: 33%;
  right: -80px;
  width: 256px;
  height: 256px;
  background: rgba(255, 20, 147, 0.3);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.5;
}
.bg-blob-3 {
  bottom: -40px;
  left: 25%;
  width: 320px;
  height: 320px;
  background: rgba(157, 0, 255, 0.2);
  border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
  opacity: 0.4;
}
.bg-blob-desktop-1 {
  top: 10%;
  left: 5%;
  width: 320px;
  height: 320px;
  background: rgba(255, 20, 147, 0.2);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.5;
}
.bg-blob-desktop-2 {
  bottom: 10%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(0, 229, 255, 0.2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.4;
}

/* ==================== CUSTOM DECORATION UTILITIES ==================== */
.bg-dots {
  background-image: radial-gradient(circle, rgba(0,0,0,0.15) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.amoeba-1 { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
.amoeba-2 { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.amoeba-3 { border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%; }

.sticker {
  border: 2px solid var(--black);
  box-shadow: 2px 2px 0 var(--black);
  border-radius: 16px;
  background-color: #fff;
}
.sticker-alt {
  border: 2px solid var(--black);
  box-shadow: 2px 2px 0 var(--black);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background-color: #fff;
}
.hand-drawn-box {
  border: 2px solid var(--black);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: 3px 3px 0 var(--black);
  background-color: var(--surface-container-low);
}
.pop-shadow   { box-shadow: 4px 4px 0 var(--black); }
.pop-shadow-sm { box-shadow: 2px 2px 0 var(--black); }

/* ==================== SCROLLBAR ==================== */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ==================== LINE CLAMP ==================== */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==================== SCREEN READER ONLY ==================== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==================== POP AVATAR ==================== */
.pop-avatar {
  border-radius: 50%;
  border: 3px solid var(--black);
  box-shadow: 2px 2px 0 var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

/* ==================== MOBILE LAYOUT ==================== */
.mobile-layout {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.mobile-container {
  max-width: 448px;
  margin: 0 auto;
  min-height: 100vh;
  background: rgba(248, 249, 250, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-bottom: 88px;
  position: relative;
  z-index: 10;
}
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 4px solid var(--black);
  box-shadow: 0 -4px 0 var(--black);
  z-index: 50;
}
.bottom-nav-inner {
  max-width: 448px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  padding: 8px 0 max(12px, env(safe-area-inset-bottom));
}
.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 12px;
  color: var(--on-surface-variant);
  font-size: 10px;
  font-weight: 700;
  transition: color 0.15s;
  cursor: pointer;
  min-width: 56px;
}
.nav-link:hover { color: var(--on-surface); }
.nav-link.active { color: var(--primary); }
.nav-link.active svg { stroke-width: 2.5; }
.nav-icon { position: relative; display: flex; align-items: center; justify-content: center; }
.nav-label { font-size: 10px; font-weight: 700; }
.notif-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid #fff;
}

/* ==================== DESKTOP LAYOUT ==================== */
.desktop-layout {
  min-height: 100vh;
  display: flex;
  background: var(--surface);
}
.sidebar {
  width: 264px;
  min-height: 100vh;
  background: #fff;
  border-right: 2px solid var(--black);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  flex-shrink: 0;
  overflow-y: auto;
}
.sidebar-header {
  height: 64px;
  background: var(--primary);
  border-bottom: 2px solid var(--black);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  flex-shrink: 0;
}
.sidebar-header img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.sidebar-header span {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.1em;
}
.sidebar-nav {
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 14px;
  color: var(--on-surface);
  transition: all 0.15s;
  cursor: pointer;
}
.sidebar-link:hover { background: var(--surface); }
.sidebar-link.active {
  background: var(--secondary-container);
  border-color: var(--black);
  box-shadow: 2px 2px 0 var(--black);
}
.sidebar-link .icon { display: flex; align-items: center; flex-shrink: 0; }
.desktop-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.desktop-header {
  height: 64px;
  background: #fff;
  border-bottom: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 20;
  flex-shrink: 0;
}
.desktop-header h1 {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 20px;
  color: var(--black);
}
.user-badge {
  background: var(--surface-container-low);
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 6px 16px;
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}
.desktop-content {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
  position: relative;
  z-index: 10;
}

/* ==================== ROLE SWITCHER ==================== */
.rs-toggle {
  position: fixed;
  bottom: 100px;
  right: 16px;
  z-index: 1001;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  border: 2px solid var(--black);
  box-shadow: 2px 2px 0 var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.rs-toggle:hover {
  background: var(--primary);
}
.role-switcher {
  position: fixed;
  bottom: 148px;
  right: 16px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--black);
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--black);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 158px;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.role-switcher .rs-label {
  color: var(--on-surface-variant);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.role-switcher .rs-divider {
  height: 1px;
  background: var(--outline);
  margin: 2px 0;
}
.rs-btn {
  width: 100%;
  padding: 6px 10px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 11px;
  background: var(--surface);
  color: var(--on-surface);
  text-align: left;
  transition: all 0.15s;
}
.rs-btn:hover { background: var(--outline); }
.rs-btn.active-guest  { background: var(--primary);    color: #fff; border-color: var(--black); }
.rs-btn.active-member { background: var(--primary);    color: #fff; border-color: var(--black); }
.rs-btn.active-shop   { background: #1e40af;           color: #fff; border-color: var(--black); }
.rs-btn.active-admin  { background: var(--black);      color: #fff; border-color: var(--black); }
.phase-bar { display: flex; gap: 3px; }
.phase-btn {
  flex: 1;
  padding: 4px 2px;
  border-radius: 6px;
  border: 2px solid transparent;
  font-weight: 900;
  font-size: 10px;
  background: var(--surface);
  color: var(--on-surface);
  transition: all 0.15s;
  text-align: center;
}
.phase-btn:hover { background: var(--outline); }
.phase-btn.active { background: var(--black); color: #fff; border-color: var(--black); }
.rs-nav-btn {
  width: 100%;
  padding: 7px 10px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  text-align: left;
  transition: opacity 0.15s;
  cursor: pointer;
}
.rs-nav-btn:hover { opacity: 0.85; }

/* ==================== CARDS ==================== */
.card {
  background: #fff;
  border: 3px solid var(--black);
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--black);
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 var(--black);
}
.card-pop {
  background: #fff;
  border: 3px solid var(--black);
  border-radius: 24px;
  box-shadow: 4px 4px 0 var(--black);
}
.card-flat {
  background: #fff;
  border: 2px solid var(--outline);
  border-radius: 16px;
}

/* ==================== BUTTONS ==================== */
.btn-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--black);
  color: #fff;
  border: 2px solid var(--black);
  border-radius: 12px;
  padding: 14px 24px;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 16px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  width: 100%;
}
.btn-black:hover { transform: translateY(-2px); box-shadow: 4px 4px 0 rgba(0,0,0,0.4); }
.btn-black:active { transform: translateY(0); box-shadow: 1px 1px 0 rgba(0,0,0,0.3); }
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 12px;
  padding: 14px 24px;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 16px;
  box-shadow: 3px 3px 0 var(--black);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  width: 100%;
}
.btn-white:hover { transform: translateY(-2px); }
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  font-weight: 900;
  font-size: 14px;
  color: var(--on-surface);
  cursor: pointer;
  padding: 8px 0;
  transition: opacity 0.15s;
}
.btn-back:hover { opacity: 0.7; }

/* ==================== FORM INPUTS ==================== */
.form-input {
  width: 100%;
  border: 2px solid var(--black);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 15px;
  background: #fff;
  color: var(--on-surface);
  outline: none;
  transition: box-shadow 0.15s;
}
.form-input:focus { box-shadow: 3px 3px 0 var(--black); }
.form-input-3 {
  width: 100%;
  border: 3px solid var(--black);
  border-radius: 16px;
  padding: 16px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 15px;
  background: var(--surface-container-low);
  color: var(--on-surface);
  outline: none;
  resize: vertical;
  min-height: 120px;
  box-shadow: 3px 3px 0 var(--black);
  transition: box-shadow 0.15s;
}
.form-input-3:focus { box-shadow: 4px 4px 0 var(--black); }

/* ==================== AD SLOT ==================== */
.ad-slot {
  border: 2px solid var(--outline);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: block;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  color: inherit;
}
.ad-slot:hover { border-color: var(--black); box-shadow: 2px 2px 0 var(--black); }
.ad-slot .ad-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
}
.ad-slot .ad-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ad-slot .ad-pr {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 900;
  background: var(--on-surface-variant);
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
}
.ad-slot .ad-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
}
.ad-slot .ad-body-text { flex: 1; min-width: 0; }
.ad-slot .ad-name { font-size: 13px; font-weight: 900; }
.ad-slot .ad-catch { font-size: 11px; font-weight: 700; color: var(--on-surface-variant); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ==================== PROGRESS BAR ==================== */
.progress-bar {
  width: 100%;
  background: var(--outline);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
}
.progress-bar-inner {
  height: 100%;
  border-radius: 999px;
  transition: width 0.4s ease;
}

/* ==================== TOGGLE SWITCH ==================== */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
  flex-shrink: 0;
}
.toggle-switch input { display: none; }
.toggle-switch .slider {
  position: absolute;
  inset: 0;
  background: var(--outline);
  border-radius: 999px;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background 0.2s;
}
.toggle-switch .slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--black);
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  transition: left 0.2s;
}
.toggle-switch input:checked + .slider { background: var(--primary); }
.toggle-switch input:checked + .slider::before { left: calc(100% - 22px); }

/* onclick版トグル (.toggle-knob) ← admin画面で使用 */
.toggle-switch .toggle-knob {
  position: absolute;
  inset: 0;
  background: var(--outline);
  border-radius: 999px;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background 0.2s;
}
.toggle-switch .toggle-knob::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--black);
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  transition: left 0.2s;
}
.toggle-switch.on .toggle-knob { background: var(--primary); }
.toggle-switch.on .toggle-knob::before { left: calc(100% - 22px); }

.toggle-sm {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.toggle-sm input { display: none; }
.toggle-sm .slider {
  position: absolute;
  inset: 0;
  background: var(--outline);
  border-radius: 999px;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background 0.2s;
}
.toggle-sm .slider::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--black);
  top: 50%;
  left: 1px;
  transform: translateY(-50%);
  transition: left 0.2s;
}
.toggle-sm input:checked + .slider { background: var(--primary); }
.toggle-sm input:checked + .slider::before { left: calc(100% - 17px); }

.toggle-sm-48 {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.toggle-sm-48 input { display: none; }
.toggle-sm-48 .slider {
  position: absolute;
  inset: 0;
  background: var(--outline);
  border-radius: 999px;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background 0.2s;
}
.toggle-sm-48 .slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--black);
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  transition: left 0.2s;
}
.toggle-sm-48 input:checked + .slider { background: var(--primary); }
.toggle-sm-48 input:checked + .slider::before { left: calc(100% - 20px); }

/* ==================== PHASE LOCK ==================== */
.phase-lock {
  position: relative;
  overflow: hidden;
}
.phase-lock::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10;
  border-radius: inherit;
}
.phase-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 20;
  padding: 16px;
  text-align: center;
}
.phase-lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--black);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
}
.phase-lock-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--on-surface-variant);
  max-width: 240px;
}

/* ==================== MODAL ==================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 16px;
}
.modal-content {
  background: #fff;
  border: 3px solid var(--black);
  border-radius: 24px 24px 16px 16px;
  padding: 32px 24px;
  width: 100%;
  max-width: 448px;
  box-shadow: 0 -4px 0 var(--black);
  position: relative;
  animation: zoomIn 0.2s ease;
}

/* ==================== TOPIC OPTION ==================== */
.topic-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 3px solid var(--outline);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: all 0.15s;
  font-weight: 700;
  font-size: 15px;
  width: 100%;
  text-align: left;
}
.topic-option:hover {
  border-color: var(--primary);
  background: var(--primary-container);
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 var(--black);
}
.topic-option.selected {
  border-color: var(--black);
  background: var(--primary);
  color: #fff;
  box-shadow: 3px 3px 0 var(--black);
}

/* ==================== CATEGORY SCROLL ==================== */
.category-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.category-scroll::-webkit-scrollbar { display: none; }
.category-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.15s;
}
.category-chip:hover { transform: translateY(-2px); }

/* ==================== DATA TABLE ==================== */
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  background: var(--surface);
  border-bottom: 2px solid var(--black);
  padding: 12px 16px;
  text-align: left;
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--outline);
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
}
.data-table tr:hover td { background: var(--surface); }

/* ==================== GRIDS ==================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 768px) {
  .grid-4-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== MOCK OHP – PAID (CLUB LUXURY) ==================== */
.ohp-paid {
  min-height: 100vh;
  background: #0a0a0a;
  color: #f5f5f0;
  font-family: "Times New Roman", Georgia, serif;
}
.ohp-paid-header {
  background: #0a0a0a;
  border-bottom: 1px solid #c9a84c;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.ohp-paid-header .logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #c9a84c;
}
.ohp-paid-header nav a {
  color: #c9a84c;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-left: 32px;
  transition: opacity 0.15s;
}
.ohp-paid-header nav a:hover { opacity: 0.7; }
.ohp-paid-hero {
  background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
  padding: 80px 32px 64px;
  text-align: center;
  border-bottom: 1px solid #c9a84c;
}
.ohp-paid-hero h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #c9a84c;
  margin-bottom: 16px;
}
.ohp-paid-hero p {
  color: rgba(245, 245, 240, 0.7);
  font-size: 15px;
  letter-spacing: 0.1em;
}
.ohp-paid-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px;
}
.ohp-paid-section-title {
  font-size: 22px;
  letter-spacing: 0.2em;
  color: #c9a84c;
  border-bottom: 1px solid #c9a84c;
  padding-bottom: 16px;
  margin-bottom: 32px;
}

/* ==================== MOCK OHP – FREE (GIRLS BAR PINKY) ==================== */
.ohp-free {
  min-height: 100vh;
  background: #fff0f6;
  color: #1a1a1a;
  font-family: var(--font-headline);
}
.ohp-free-header {
  background: #FF85B3;
  border-bottom: 3px solid var(--black);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 3px 0 var(--black);
}
.ohp-free-header .logo {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}
.ohp-free-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* ==================== WIDGET CARD (SHARED OHP) ==================== */
.widget-card {
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
}
.widget-card-dark {
  background: #1a1a1a;
  border: 1px solid #c9a84c;
}
.widget-card-pink {
  background: #fff;
  border: 3px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
}
.widget-option-btn {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 2px solid;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
}
.widget-option-btn-dark {
  background: transparent;
  border-color: rgba(201, 168, 76, 0.5);
  color: #f5f5f0;
}
.widget-option-btn-dark:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: #c9a84c;
}
.widget-option-btn-pink {
  background: #fff0f6;
  border-color: rgba(255, 133, 179, 0.5);
  color: var(--black);
}
.widget-option-btn-pink:hover {
  background: #FFD6E8;
  border-color: #FF85B3;
}
.widget-result-bar {
  height: 10px;
  border-radius: 999px;
  transition: width 0.4s ease;
}
.ohp-result-bar-dark { background: #c9a84c; }
.ohp-result-bar-pink { background: var(--primary); }
.ohp-comment {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
}
.ohp-comment-dark { background: rgba(255,255,255,0.05); color: rgba(245,245,240,0.85); }
.ohp-comment-pink { background: #fff0f6; color: var(--on-surface); border: 1px solid rgba(255,133,179,0.3); }

/* ==================== ANIMATIONS ==================== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

@keyframes zoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.zoom-in { animation: zoomIn 0.2s ease; }

@keyframes slideUp {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.slide-up { animation: slideUp 0.25s ease; }

/* ==================== MISC ==================== */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tag-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  border: 2px solid var(--black);
  box-shadow: 2px 2px 0 var(--black);
  white-space: nowrap;
}
