:root {
  --bg: #f3f5f9;
  --surface: rgba(255,255,255,0.86);
  --text: #0f1728;
  --muted: #667085;
  --line: rgba(15, 23, 42, 0.09);
  --line-strong: rgba(15, 23, 42, 0.14);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
  --shadow-strong: 0 28px 90px rgba(15, 23, 42, 0.16);
  --max: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.08), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(59, 130, 246, 0.08), transparent 20%),
    linear-gradient(180deg, #f8fafc 0%, #f3f5f9 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
@supports (min-height: 100dvh) {
  body { min-height: 100dvh; }
}
body.auth-open {
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 30; backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.78); border-bottom: 1px solid rgba(255,255,255,0.7);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 15px; background: linear-gradient(135deg, #0f172a 0%, #1f2937 100%);
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; letter-spacing: 0.06em;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18); flex-shrink: 0;
}
.brand-text small { display: block; font-size: 11px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-bottom: 3px; }
.brand-text strong { display: block; font-family: "Noto Serif KR", "Times New Roman", serif; font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.86);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.topbar.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.topbar.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.topbar.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav { display: flex; align-items: center; gap: 28px; color: #4b5563; font-size: 14px; flex: 1; justify-content: center; }
.nav a:hover { color: #111827; }
.account-area { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.account-chip {
  display: inline-flex; align-items: center; gap: 10px; min-height: 42px; padding: 10px 14px; border-radius: 16px;
  background: rgba(255,255,255,0.78); border: 1px solid var(--line); font-size: 13px; color: #475467;
}
.account-chip strong { color: #0f1728; font-weight: 700; }
.ghost-btn, .solid-btn, .primary-btn, .secondary-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 0 18px;
  border-radius: 16px; border: 1px solid transparent; transition: 0.2s ease; font-size: 14px; font-weight: 600;
}
.ghost-btn { background: rgba(255,255,255,0.76); border-color: var(--line); color: #111827; }
.ghost-btn:hover { background: #fff; }
.solid-btn, .primary-btn {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%); color: #fff; box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
}
.solid-btn:hover, .primary-btn:hover { transform: translateY(-1px); }
.secondary-btn { background: rgba(255,255,255,0.84); color: #111827; border-color: var(--line); }
.secondary-btn:hover { background: #fff; }
.hero { padding: 28px 0 42px; }
.hero-grid { display: grid; grid-template-columns: 1.18fr 0.82fr; gap: 28px; align-items: stretch; }
.panel, .hero-copy, .hero-panel, .service-card, .section-card, .feature-card, .contact-card, .auth-panel, .app-shell {
  background: var(--surface); border: 1px solid rgba(255,255,255,0.7); box-shadow: var(--shadow); backdrop-filter: blur(18px);
}
.hero-copy { border-radius: 42px; padding: 56px; min-height: 560px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content; padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.84); border: 1px solid var(--line); color: #546070; font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}
h1 {
  margin: 22px 0 0; font-family: "Noto Serif KR", "Times New Roman", serif; font-size: clamp(40px, 5.5vw, 62px);
  line-height: 1.14; letter-spacing: -0.04em; font-weight: 600;
}
.hero-copy p { margin: 24px 0 0; max-width: 760px; font-size: 18px; line-height: 1.9; color: #4f5d6f; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.hero-point { background: rgba(255,255,255,0.74); border: 1px solid var(--line); border-radius: 22px; padding: 22px; }
.hero-point strong { display: block; font-size: 15px; margin-bottom: 10px; }
.hero-point span { font-size: 14px; color: #667085; line-height: 1.75; }
.hero-panel { border-radius: 42px; padding: 28px; min-height: 560px; display: flex; flex-direction: column; justify-content: flex-start; }
.panel-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.panel-top h2 { margin: 0; font-size: 18px; }
.panel-top span {
  display: inline-flex; align-items: center; justify-content: center; padding: 8px 12px; border-radius: 999px; background: #eef2ff; color: #374151;
  font-size: 12px; font-weight: 700;
}
.stat-list { display: grid; gap: 14px; margin-top: 28px; }
.stat-item {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; background: rgba(255,255,255,0.76);
  border: 1px solid var(--line); border-radius: 20px; padding: 18px;
}
.stat-item small { display: block; color: #667085; font-size: 13px; margin-bottom: 6px; }
.stat-item strong { font-size: 15px; }
.stat-value { font-size: 15px; font-weight: 700; text-align: right; }
.panel-feature {
  margin-top: 18px; border-radius: 28px; padding: 28px; background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: rgba(255,255,255,0.92);
}
.panel-feature small { display: block; color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; font-weight: 700; }
.panel-feature p { margin: 0; font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.76); }
section { padding: 56px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 24px; }
.section-head small { display: block; color: #667085; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; }
.section-head h2 { margin: 0; font-family: "Noto Serif KR", "Times New Roman", serif; font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.03em; line-height: 1.22; font-weight: 600; }
.section-head p { margin: 0; max-width: 580px; font-size: 15px; line-height: 1.85; color: #667085; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 24px; }
.service-card {
  border-radius: 30px; padding: 26px; transition: 0.22s ease; min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12); }
.service-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service-badge {
  display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,0.76); color: #475467; font-size: 12px; font-weight: 700;
}
.service-state { color: #98a2b3; font-size: 12px; font-weight: 700; }
.service-card h3 { margin: 28px 0 10px; font-family: "Noto Serif KR", "Times New Roman", serif; font-size: 24px; line-height: 1.25; letter-spacing: -0.03em; font-weight: 600; }
.service-card p { margin: 0; color: #667085; font-size: 15px; line-height: 1.85; }
.service-link { margin-top: 30px; display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; }
.service-link span { transition: 0.2s ease; }
.service-card:hover .service-link span { transform: translateX(4px); }
.locked::after {
  content: "회원 전용"; position: absolute; top: 18px; right: 18px; display: inline-flex; align-items: center; justify-content: center; min-height: 34px; padding: 0 12px; border-radius: 999px; background: rgba(15, 23, 42, 0.92); color: #fff; font-size: 12px; font-weight: 700;
}
.section-card { border-radius: 36px; padding: 36px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.feature-card { border-radius: 28px; padding: 28px; }
.feature-card h3 { margin: 0 0 12px; font-family: "Noto Serif KR", "Times New Roman", serif; font-size: 18px; letter-spacing: -0.02em; font-weight: 600; }
.feature-card p { margin: 0; color: #667085; font-size: 15px; line-height: 1.85; }
.contact-card {
  border-radius: 40px; padding: 42px; display: flex; align-items: end; justify-content: space-between; gap: 24px;
  background: linear-gradient(135deg, rgba(17,24,39,0.97) 0%, rgba(31,41,55,0.98) 100%); color: #fff;
}
.contact-card small { display: block; color: rgba(255,255,255,0.56); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px; font-weight: 700; }
.contact-card h2 { margin: 0; font-family: "Noto Serif KR", "Times New Roman", serif; font-size: clamp(28px, 4vw, 40px); line-height: 1.24; letter-spacing: -0.03em; font-weight: 600; }
.contact-card p { margin: 18px 0 0; max-width: 760px; color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.9; }
footer { padding: 28px 0 44px; color: #98a2b3; font-size: 13px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
 .auth-overlay {
  --keyboard-offset: 0px;
  position: fixed; inset: 0; z-index: 70; display: none; overflow-y: auto; -webkit-overflow-scrolling: touch;
  align-items: flex-start; justify-content: center;
  padding: max(20px, env(safe-area-inset-top)) 24px calc(max(24px, env(safe-area-inset-bottom)) + var(--keyboard-offset));
  background: rgba(12,18,28,0.56); backdrop-filter: blur(16px);
}
.auth-overlay.active { display: flex; }
.auth-panel {
  width: min(100%, 1040px); margin: auto 0; border-radius: 36px; overflow: hidden; display: grid; grid-template-columns: 0.96fr 1.04fr; background: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.72); box-shadow: var(--shadow-strong);
}
.auth-left {
  padding: 44px; background: linear-gradient(160deg, #0f172a 0%, #162132 55%, #223049 100%); color: #fff; position: relative; overflow: hidden;
}
.auth-left small { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.64); margin-bottom: 18px; }
.auth-left h2 { margin: 0; font-family: "Noto Serif KR", "Times New Roman", serif; font-size: clamp(28px, 4vw, 38px); line-height: 1.24; letter-spacing: -0.03em; font-weight: 600; }
.auth-left p { margin: 18px 0 0; color: rgba(255,255,255,0.76); font-size: 15px; line-height: 1.9; max-width: 360px; }
.auth-points { margin-top: 34px; display: grid; gap: 14px; }
.auth-point { border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.06); border-radius: 20px; padding: 18px; }
.auth-point strong { display: block; margin-bottom: 8px; font-size: 15px; font-weight: 700; }
.auth-point span { display: block; color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.75; }
.auth-right { padding: 44px; background: rgba(255,255,255,0.92); overflow: visible; }
.auth-tabs { display: inline-grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 6px; border-radius: 18px; background: #eef2f7; border: 1px solid var(--line); }
.auth-tab { min-height: 42px; min-width: 110px; padding: 0 16px; border-radius: 14px; border: 0; background: transparent; color: #64748b; font-weight: 700; }
.auth-tab.active { background: #fff; color: #111827; box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08); }
.auth-title { margin: 28px 0 10px; font-family: "Noto Serif KR", "Times New Roman", serif; font-size: 28px; letter-spacing: -0.03em; font-weight: 600; color: #0f1728; }
.auth-subtitle { margin: 0 0 24px; color: #667085; font-size: 15px; line-height: 1.8; }
.auth-form { display: none; gap: 16px; }
.auth-form.active { display: grid; }
.field { display: grid; gap: 8px; }
.field label { font-size: 13px; font-weight: 700; color: #334155; }
.field input { width: 100%; min-height: 54px; padding: 0 16px; border-radius: 18px; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.94); outline: none; }
.field input:focus { border-color: rgba(59,130,246,0.4); box-shadow: 0 0 0 4px rgba(59,130,246,0.08); }
.auth-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.auth-note { margin-top: 14px; color: #94a3b8; font-size: 13px; line-height: 1.7; }
.auth-message { min-height: 24px; margin-top: 8px; font-size: 14px; font-weight: 600; color: #0f1728; }
.app-shell { border-radius: 36px; padding: 20px; overflow: hidden; }
.app-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 8px 20px; }
.app-head h1 { margin: 0; font-size: clamp(26px, 4vw, 42px); }
.app-head p { margin: 8px 0 0; color: var(--muted); font-size: 15px; }
.iframe-wrap { border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: #fff; min-height: 72vh; }
.iframe-wrap iframe { width: 100%; height: 78vh; border: 0; display: block; background: #fff; }
.hidden { display: none !important; }
@media (max-width: 1120px) {
  .hero-grid, .features-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy, .hero-panel { min-height: auto; }
  .auth-panel { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .topbar-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0 14px;
    align-items: center;
  }
  .brand {
    flex: 1;
    min-width: 0;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
  .brand-text small {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .brand-text strong {
    font-size: 14px;
    line-height: 1.3;
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav,
  .account-area {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .topbar.menu-open .nav,
  .topbar.menu-open .account-area {
    display: flex;
  }
  .nav {
    margin-top: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  }
  .nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.04);
    color: #111827;
    font-size: 14px;
    font-weight: 600;
  }
  .account-area {
    margin-top: 0;
    padding-top: 0;
  }
  .account-chip,
  .ghost-btn,
  .solid-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .hero-grid,
  .services-grid,
  .features-grid,
  .hero-points {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .hero-panel,
  .section-card,
  .contact-card,
  .auth-left,
  .auth-right,
  .app-shell {
    padding: 28px;
    border-radius: 28px;
  }
  h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.18;
  }
  .hero-copy p,
  .panel-feature p,
  .section-head p,
  .feature-card p,
  .contact-card p,
  .service-card p {
    font-size: 14px;
    line-height: 1.8;
  }
  .hero-copy p {
    margin-top: 18px;
  }
  .hero-panel,
  .hero-copy {
    min-height: auto;
  }
  .service-card {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }
  .service-card h3 {
    margin-top: 20px;
    font-size: 20px;
  }
  .stat-item {
    display: block;
    padding: 16px;
  }
  .stat-value {
    margin-top: 10px;
    text-align: left;
  }
  .section-head,
  .contact-card,
  .footer-inner,
  .app-head {
    display: block;
  }
  .section-head p,
  .contact-card .secondary-btn {
    margin-top: 16px;
  }
  .auth-overlay {
    padding-left: 12px;
    padding-right: 12px;
    justify-content: stretch;
  }
  .auth-panel {
    width: 100%;
    max-width: 580px;
    border-radius: 28px;
    margin: 0 auto;
  }
  .auth-left {
    padding: 24px;
  }
  .auth-right {
    padding: 24px;
  }
  .auth-title {
    margin-top: 20px;
    font-size: 24px;
  }
  .auth-subtitle {
    margin-bottom: 18px;
    font-size: 14px;
  }
  .auth-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .auth-actions .primary-btn,
  .auth-actions .secondary-btn {
    width: 100%;
  }
  .field input {
    min-height: 56px;
    font-size: 16px;
  }
  .hero {
    padding-top: 24px;
  }
  .iframe-wrap iframe {
    height: 70vh;
  }
}
@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }
  .hero-copy,
  .hero-panel,
  .section-card,
  .contact-card,
  .service-card,
  .love-arcana-shell {
    padding: 20px;
    border-radius: 24px;
  }
  .eyebrow,
  .service-badge,
  .panel-top span {
    font-size: 11px;
  }
  .contact-card h2,
  .section-head h2 {
    font-size: 26px;
  }
  .love-popup {
    padding: 14px;
  }
  .love-popup-panel {
    padding: 22px;
    border-radius: 22px;
  }
  .auth-left {
    display: none;
  }
  .auth-panel {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .auth-right {
    padding: 20px;
  }
  .auth-tabs {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
  .auth-tab {
    min-width: 0;
  }
}


.hero-love-copy {
  justify-content: flex-start;
}

.hero-love-copy h1 {
  margin-bottom: 0;
}

.love-hero-guide {
  max-width: 760px;
}

.love-arcana-shell {
  margin-top: 28px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
}

.love-arcana-shell.is-locked {
  position: relative;
}

.love-login-hint {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.love-arcana-toolbar {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.love-main-btn {
  min-width: 140px;
}

.love-card-container {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 24px);
  flex-wrap: wrap;
}

.love-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.love-card {
  width: clamp(110px, 18vw, 156px);
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  background: url('love-assets/images/back.png') center/cover no-repeat;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
  cursor: pointer;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.love-pos-label {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

.love-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.love-mode-select {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  color: #0f1728;
  font-size: 14px;
  font-weight: 600;
  outline: none;
}

.love-post-guide {
  margin: 18px 0 0;
  text-align: center;
  color: #667085;
  font-size: 14px;
  line-height: 1.8;
}

.love-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 18, 28, 0.48);
  backdrop-filter: blur(12px);
}

.love-popup.active {
  display: flex;
}

.love-popup-panel {
  width: min(100%, 760px);
  max-height: 80vh;
  overflow: auto;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18);
}

.love-popup-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: #0f1728;
  font-size: 13px;
  font-weight: 700;
  margin-left: auto;
  margin-bottom: 18px;
}

#lovePopupContent h2 {
  margin: 0 0 18px;
  font-family: "Noto Serif KR", "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: 600;
}

#lovePopupContent p {
  margin: 0 0 14px;
  line-height: 1.9;
  color: #475467;
}

#lovePopupContent strong {
  display: block;
  margin-bottom: 6px;
  color: #0f1728;
}

#lovePopupContent span {
  display: block;
}

@media (max-width: 860px) {
  .love-arcana-shell {
    padding: 20px;
  }

  .love-card {
    width: min(27vw, 132px);
  }

  .love-pos-label {
    font-size: 13px;
  }

  .love-post-guide {
    font-size: 13px;
  }
}


.contact-side {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-instagram {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 12px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
}

.contact-instagram:hover {
  background: rgba(255,255,255,0.18);
}

.contact-instagram-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-instagram-icon svg {
  width: 22px;
  height: 22px;
}

.contact-instagram-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-instagram-text small {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.contact-instagram-text strong {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  font-family: "Noto Serif KR", "Times New Roman", serif;
}

@media (max-width: 860px) {
  .contact-side {
    margin-top: 18px;
    justify-content: flex-start;
  }

  .contact-instagram {
    width: 100%;
    justify-content: flex-start;
  }
}


/* real auth and admin */
.admin-shell{gap:24px;}
.admin-head{align-items:flex-end;gap:16px;flex-wrap:wrap;}
.admin-actions{display:flex;gap:12px;align-items:center;flex-wrap:wrap;}
.admin-search{min-width:260px;padding:14px 16px;border-radius:14px;border:1px solid rgba(15,23,40,.12);background:#fff;color:#0f1728;font:inherit;}
.admin-card{background:rgba(255,255,255,.92);border:1px solid rgba(15,23,40,.08);border-radius:28px;padding:20px;box-shadow:0 18px 60px rgba(15,23,40,.08);}
.admin-message{min-height:24px;font-size:14px;margin-bottom:12px;}
.table-wrap{overflow:auto;}
.member-table{width:100%;border-collapse:collapse;min-width:920px;}
.member-table th,.member-table td{padding:14px 12px;border-bottom:1px solid rgba(15,23,40,.08);text-align:left;font-size:14px;color:#0f1728;}
.member-table th{font-size:13px;color:#5b6472;background:rgba(15,23,40,.03);}
.member-role-select{width:100%;padding:10px 12px;border-radius:12px;border:1px solid rgba(15,23,40,.12);background:#fff;color:#0f1728;font:inherit;}
.empty-row{text-align:center;color:#5b6472;}
@media (max-width: 768px){.admin-search{width:100%;min-width:0;}.admin-actions{width:100%;}.admin-actions .secondary-btn{width:100%;}}
