@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #07060d;
  --bg2: #120f1c;
  --card: #1a1528;
  --card2: #221b35;
  --pink: #ff4d8d;
  --pink2: #ff7ab0;
  --violet: #9b6dff;
  --green: #2dd4a8;
  --text: #fff7fb;
  --muted: #b7a8c7;
  --line: rgba(255,255,255,.08);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255,77,141,.28), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(155,109,255,.22), transparent 50%),
    radial-gradient(700px 400px at 50% 100%, rgba(255,77,141,.12), transparent 60%),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* Android block */
.block-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 2rem; text-align: center;
}
.block-page .box {
  background: var(--card); border-radius: 24px; padding: 2.5rem 1.5rem;
  max-width: 360px; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.block-page i { font-size: 3rem; color: var(--pink); }

/* Home */
.home-wrap { min-height: 100vh; padding-bottom: 2rem; }
.site-header {
  padding: 1.1rem 1.25rem .4rem;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 40;
  background: linear-gradient(180deg, rgba(7,6,13,.95), rgba(7,6,13,.7), transparent);
  backdrop-filter: blur(10px);
}
.site-header .logo {
  font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em;
  display: flex; align-items: center; gap: .55rem;
  color: #fff;
}
.site-header .logo-img {
  width: 38px; height: 38px; border-radius: 11px; object-fit: cover;
  box-shadow: 0 6px 16px rgba(255,77,141,.35);
}
.site-header .logo span {
  background: linear-gradient(120deg, #fff, var(--pink2), var(--violet));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.block-logo {
  width: 72px; height: 72px; border-radius: 18px; object-fit: cover;
  margin: 0 auto 1rem; display: block;
  box-shadow: 0 12px 30px rgba(255,77,141,.3);
}
.modal-sheet .popup-icon.popup-logo {
  padding: 0; overflow: hidden; background: transparent; box-shadow: 0 10px 28px rgba(255,77,141,.35);
}
.modal-sheet .popup-icon.popup-logo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.online-count {
  font-size: .78rem; color: var(--muted);
  display: flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
  padding: .35rem .7rem; border-radius: 999px;
}
.pulse-dot {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(45,212,168,.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(45,212,168,.55); }
  70% { box-shadow: 0 0 0 8px rgba(45,212,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,212,168,0); }
}

.hero-text { padding: .6rem 1.25rem .4rem; }
.hero-text h1 {
  font-size: 1.55rem; margin: 0 0 .35rem; font-weight: 800; letter-spacing: -.03em;
}
.hero-text p { margin: 0; color: var(--muted); font-size: .92rem; }

.hero-banner { padding-bottom: .5rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 600; color: var(--green);
  background: rgba(45,212,168,.1); border: 1px solid rgba(45,212,168,.25);
  padding: .3rem .65rem; border-radius: 999px; margin-bottom: .65rem;
}

.trust-bar {
  display: flex; flex-wrap: wrap; gap: .45rem;
  padding: .55rem 1.25rem 1rem;
}
.trust-bar span {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 600; color: var(--muted);
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  padding: .35rem .65rem; border-radius: 999px;
}
.trust-bar span i { color: var(--green); font-size: .85rem; }
.trust-bar-compact {
  justify-content: center; padding: 0 0 .95rem; gap: .35rem;
}
.trust-bar-compact span { font-size: .68rem; padding: .28rem .55rem; }

.card-ribbon {
  position: absolute; top: .7rem; right: .7rem; z-index: 2;
  font-size: .65rem; font-weight: 700; padding: .28rem .55rem;
  border-radius: 999px; backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
}
.ribbon-msg {
  background: rgba(255,77,141,.85); color: #fff;
  display: flex; align-items: center; gap: .25rem;
}
.ribbon-active {
  background: rgba(251,191,36,.9); color: #1a1200;
}
.bot-card .online-badge { right: auto; }

.age-slider {
  width: 100%; margin: .55rem 0 .85rem; accent-color: var(--pink);
}
.age-live {
  color: var(--pink2); font-weight: 700; margin-left: .25rem;
}

.reviews-section {
  padding: .5rem 1.25rem 7.5rem; max-width: 780px; margin: 0 auto;
}
.reviews-section h2 {
  font-size: 1.05rem; font-weight: 800; margin: 0 0 .85rem;
}
.reviews-row {
  display: grid; gap: .7rem;
}
@media (min-width: 640px) {
  .reviews-row { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: rgba(26,21,40,.85); border: 1px solid var(--line);
  border-radius: 16px; padding: .9rem 1rem;
}
.review-card .stars { color: #fbbf24; font-size: .85rem; margin-bottom: .4rem; }
.review-card p {
  margin: 0 0 .55rem; color: var(--muted); font-size: .82rem; line-height: 1.4;
}
.review-card strong { font-size: .8rem; }

.bot-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .95rem;
  padding: 0 1.1rem 1.5rem;
}
@media (min-width: 640px) {
  .bot-grid { grid-template-columns: repeat(3, 1fr); max-width: 780px; margin: 0 auto; }
}
@media (min-width: 960px) {
  .bot-grid { grid-template-columns: repeat(3, 1fr); max-width: 860px; }
}

.bot-card {
  position: relative; border-radius: 22px; overflow: hidden;
  cursor: pointer; isolation: isolate;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  aspect-ratio: .72;
}
.bot-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 40px rgba(255,77,141,.18);
  border-color: rgba(255,77,141,.35);
}
.bot-card:active { transform: scale(.98); }
.bot-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.bot-card:hover img { transform: scale(1.06); }
.bot-card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.35) 65%, rgba(8,5,16,.92) 100%);
  pointer-events: none;
}
.bot-card .info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: .85rem .85rem 1rem; z-index: 2;
}
.bot-card .name {
  font-weight: 700; font-size: 1rem; margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.bot-card .meta {
  color: rgba(255,255,255,.75); font-size: .75rem; margin-top: .2rem;
  display: flex; align-items: center; gap: .35rem;
}
.bot-card .online-badge {
  position: absolute; top: .7rem; left: .7rem; z-index: 2;
  background: rgba(0,0,0,.45); backdrop-filter: blur(8px);
  color: #fff; font-size: .68rem; font-weight: 600;
  padding: .28rem .55rem; border-radius: 999px;
  display: flex; align-items: center; gap: .35rem;
  border: 1px solid rgba(255,255,255,.12);
}
.bot-card .online-badge span {
  width: 7px; height: 7px; background: var(--green); border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
}
.bot-card .chat-hint {
  position: absolute; top: .7rem; right: .7rem; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; box-shadow: 0 6px 16px rgba(255,77,141,.4);
  opacity: 0; transform: scale(.8); transition: .25s;
}
.bot-card:hover .chat-hint { opacity: 1; transform: scale(1); }

/* Register popup */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 1.2rem;
  background: rgba(4,3,10,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.modal-overlay.open { display: flex; }
.modal-sheet {
  width: 100%; max-width: 400px;
  background: linear-gradient(165deg, #261c3a 0%, #15101f 100%);
  border: 1px solid rgba(255,122,176,.25);
  border-radius: 26px; padding: 1.6rem 1.35rem 1.4rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04) inset;
  animation: popIn .35s cubic-bezier(.2,.8,.2,1);
  position: relative; overflow: hidden;
}
.modal-sheet::before {
  content: ""; position: absolute; top: -40%; left: -20%; width: 160%; height: 50%;
  background: radial-gradient(circle, rgba(255,77,141,.2), transparent 60%);
  pointer-events: none;
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(24px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-sheet .popup-icon {
  width: 58px; height: 58px; border-radius: 18px; margin: 0 auto .9rem;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 10px 28px rgba(255,77,141,.4);
  position: relative;
}
.modal-sheet h3 {
  margin: 0 0 .3rem; text-align: center; font-size: 1.35rem; font-weight: 800;
}
.modal-sheet .sub {
  color: var(--muted); font-size: .88rem; margin: 0 0 1.15rem; text-align: center;
}
.modal-sheet label {
  display: block; font-size: .75rem; color: var(--muted);
  margin-bottom: .28rem; font-weight: 600; letter-spacing: .02em;
}
.modal-sheet .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.modal-sheet input, .modal-sheet select {
  width: 100%; padding: .8rem .9rem; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.35); color: var(--text);
  margin-bottom: .8rem; font-size: .95rem; font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.modal-sheet input:focus, .modal-sheet select:focus {
  outline: none; border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,77,141,.18);
}
.btn-primary-pink {
  width: 100%; padding: .95rem; border: 0; border-radius: 16px;
  background: linear-gradient(135deg, var(--pink), #ff6bb5 40%, var(--violet));
  color: #fff; font-weight: 800; font-size: 1rem; cursor: pointer;
  font-family: inherit; margin-top: .2rem;
  box-shadow: 0 12px 30px rgba(255,77,141,.35);
  transition: transform .15s, filter .15s;
}
.btn-primary-pink:hover { filter: brightness(1.05); }
.btn-primary-pink:active { transform: scale(.98); }
.btn-primary-pink:disabled { opacity: .65; cursor: wait; }

/* Toast */
.toast-stack {
  position: fixed; bottom: calc(4.8rem + env(safe-area-inset-bottom, 0px)); left: 50%; transform: translateX(-50%);
  z-index: 150; width: calc(100% - 2rem); max-width: 360px;
  display: flex; flex-direction: column; gap: .5rem; pointer-events: none;
}
.toast-item {
  background: rgba(26,21,40,.94); border: 1px solid rgba(255,122,176,.25);
  border-radius: 16px; padding: .75rem .9rem; display: flex; align-items: center; gap: .7rem;
  animation: toastIn .35s ease, toastOut .35s ease 3.2s forwards;
  box-shadow: var(--shadow); backdrop-filter: blur(10px);
}
.toast-item img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,77,141,.5);
}
.toast-item .t-text { font-size: .82rem; color: var(--muted); }
.toast-item .t-text strong { display: block; font-size: .9rem; color: #fff; }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes toastOut {
  to { opacity: 0; transform: translateY(10px); }
}

/* Chat */
.chat-page {
  display: flex; flex-direction: column; height: 100dvh; max-height: 100vh;
  background: #0a0a12;
}
.chat-header {
  display: flex; align-items: center; gap: .8rem;
  padding: .75rem 1rem; flex-shrink: 0;
  background: rgba(18,15,28,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.chat-header img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,77,141,.45);
}
.chat-header .h-info { flex: 1; min-width: 0; }
.chat-header .h-name { font-weight: 700; font-size: .98rem; }
.chat-header .h-status { font-size: .75rem; color: var(--green); }
.chat-header .unread-badge {
  background: var(--pink); color: #fff; font-size: .7rem; font-weight: 700;
  min-width: 22px; height: 22px; border-radius: 999px; display: none;
  align-items: center; justify-content: center; padding: 0 6px;
}
.chat-header .unread-badge.show { display: inline-flex; }

.chat-messages {
  flex: 1; overflow-y: auto; padding: 1rem .9rem;
  display: flex; flex-direction: column;
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(255,77,141,.08), transparent 50%),
    radial-gradient(500px 300px at 100% 100%, rgba(155,109,255,.08), transparent 50%),
    #0a0a12;
  transition: filter .3s;
}
.chat-messages.blurred { filter: blur(7px); pointer-events: none; user-select: none; }

.msg {
  display: flex; margin-bottom: .6rem; max-width: 82%;
  animation: msgIn .28s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.msg.bot { align-self: flex-start; }
.msg .bubble {
  background: linear-gradient(160deg, #2a223c, #1c1629);
  padding: .65rem .9rem; border-radius: 4px 18px 18px 18px;
  font-size: .94rem; line-height: 1.45;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.msg .bubble .time {
  font-size: .65rem; color: var(--muted); text-align: right; margin-top: .25rem;
}

.msg.teaser .bubble { padding: 0; overflow: hidden; max-width: 230px; border: 0; }
.teaser-wrap { position: relative; width: 230px; height: 280px; }
.teaser-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(16px) brightness(.65); transform: scale(1.1);
}
.teaser-lock {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .45rem;
  background: rgba(0,0,0,.4); color: #fff; text-align: center; padding: 1rem;
}
.teaser-lock i {
  font-size: 1.9rem; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--pink), var(--violet));
}
.teaser-lock span { font-size: .78rem; font-weight: 600; }

.typing-indicator {
  display: none; align-items: center; gap: .35rem;
  background: #1c1629; padding: .6rem 1rem; border-radius: 4px 18px 18px 18px;
  width: fit-content; margin-bottom: .55rem;
  border: 1px solid rgba(255,255,255,.06);
}
.typing-indicator.show { display: flex; }
.typing-indicator span {
  width: 7px; height: 7px; background: #c4b5d8; border-radius: 50%;
  animation: bounce 1.2s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: .15s; }
.typing-indicator span:nth-child(3) { animation-delay: .3s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-input-bar {
  display: flex; align-items: center; gap: .55rem;
  padding: .65rem .8rem; background: #120f1c; flex-shrink: 0;
  border-top: 1px solid var(--line);
  padding-bottom: calc(.65rem + env(safe-area-inset-bottom, 0px));
}
.chat-input-bar input {
  flex: 1; border: 1px solid rgba(255,255,255,.08); background: #1c1629; color: #fff;
  padding: .75rem 1rem; border-radius: 24px; font-size: .95rem; font-family: inherit;
}
.chat-input-bar input:focus { outline: none; border-color: rgba(255,77,141,.4); }
.chat-input-bar button {
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #fff; font-size: 1.1rem; cursor: pointer;
  box-shadow: 0 6px 18px rgba(255,77,141,.35);
}

/* Download popup */
.download-popup {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  padding: 1.25rem;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.download-popup.open { display: flex; }
.popup-card {
  background: linear-gradient(165deg, #2a1c3a, #120e1c);
  border: 1px solid rgba(255,77,141,.4);
  border-radius: 26px; padding: 1.85rem 1.4rem 1.5rem;
  max-width: 350px; width: 100%; text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
  position: relative; animation: popIn .3s ease;
}
.popup-card-pro { max-width: 360px; }
.countdown-box {
  background: rgba(255,77,141,.12); border: 1px solid rgba(255,77,141,.3);
  border-radius: 14px; padding: .65rem .8rem; margin: 0 0 .85rem;
}
.countdown-label {
  display: block; font-size: .72rem; color: var(--pink2); font-weight: 600;
  margin-bottom: .15rem;
}
.countdown-timer {
  font-size: 1.75rem; font-weight: 800; letter-spacing: .04em;
  color: #fff; font-variant-numeric: tabular-nums;
}
.live-now {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  font-size: .82rem; color: var(--muted); margin-bottom: .55rem;
}
.live-now strong { color: var(--green); }
.popup-badge {
  position: absolute; top: -10px; right: 16px;
  background: var(--pink); color: #fff; font-size: .75rem; font-weight: 700;
  padding: .28rem .65rem; border-radius: 999px; display: none;
  box-shadow: 0 6px 16px rgba(255,77,141,.4);
}
.popup-badge.show { display: inline-block; }
.popup-icon {
  width: 68px; height: 68px; border-radius: 20px; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  display: flex; align-items: center; justify-content: center; font-size: 1.9rem;
  box-shadow: 0 12px 30px rgba(255,77,141,.4);
  overflow: hidden; padding: 0;
}
.popup-icon img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.popup-card h2 { font-size: 1.2rem; margin: 0 0 .5rem; line-height: 1.35; font-weight: 800; }
.popup-card p { color: var(--muted); font-size: .9rem; margin: 0 0 1rem; line-height: 1.45; }
.social-proof {
  font-size: .82rem; color: var(--green); margin-bottom: 1.1rem; font-weight: 600;
}
.btn-download {
  display: block; width: 100%; padding: 1.05rem; border: 0; border-radius: 16px;
  background: linear-gradient(135deg, #2dd4a8, #10b981);
  color: #04120e; font-weight: 800; font-size: 1.05rem; cursor: pointer;
  text-decoration: none; box-shadow: 0 12px 28px rgba(45,212,168,.35);
  font-family: inherit;
}
.btn-download:active { transform: scale(.98); }

/* ===== App bottom nav & tabs ===== */
.app-body { padding-bottom: 0; }
.app-shell { min-height: 100vh; min-height: 100dvh; }
.tab-panel { display: none; padding-bottom: 5.5rem; }
.tab-panel.active { display: block; }
.tab-panel[hidden] { display: none !important; }

.tab-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem .7rem;
  position: sticky; top: 0; z-index: 30;
  background: linear-gradient(180deg, rgba(7,6,13,.96), rgba(7,6,13,.8));
  backdrop-filter: blur(10px);
}
.tab-header h1 { margin: 0; font-size: 1.4rem; font-weight: 800; }
.tab-header-badge {
  font-size: .72rem; font-weight: 700; color: #fff;
  background: var(--pink); padding: .25rem .55rem; border-radius: 999px;
}
.tab-hint { padding: 0 1.25rem .85rem; margin: 0; color: var(--muted); font-size: .85rem; }
.empty-tab { text-align: center; color: var(--muted); padding: 3rem 1rem; }

.chat-list { padding: 0 .4rem .5rem; }
.chat-list-item {
  width: 100%; display: flex; align-items: center; gap: .85rem;
  background: transparent; border: 0; color: inherit; text-align: left;
  padding: .75rem .85rem; border-radius: 14px; cursor: pointer; font-family: inherit;
}
.chat-list-item:active { background: rgba(255,255,255,.04); }
.cli-avatar { position: relative; flex-shrink: 0; }
.cli-avatar img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,77,141,.3);
}
.cli-online {
  position: absolute; right: 1px; bottom: 1px;
  width: 12px; height: 12px; background: var(--green); border-radius: 50%;
  border: 2px solid #07060d;
}
.cli-body { flex: 1; min-width: 0; }
.cli-top { display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; }
.cli-top strong { font-size: .95rem; }
.cli-top span { font-size: .72rem; color: var(--muted); flex-shrink: 0; }
.cli-preview { display: flex; justify-content: space-between; align-items: center; gap: .5rem; margin-top: .2rem; }
.cli-preview > span {
  font-size: .82rem; color: var(--muted); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.cli-unread {
  min-width: 20px; height: 20px; border-radius: 999px;
  background: var(--pink); color: #fff; font-size: .7rem; font-weight: 700;
  font-style: normal; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 6px;
}

.likes-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem;
  padding: 0 1.1rem 1rem;
}
.like-card {
  position: relative; border: 0; padding: 0; border-radius: 18px; overflow: hidden;
  aspect-ratio: .85; cursor: pointer; background: var(--card);
}
.like-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.like-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.85));
}
.like-heart {
  position: absolute; top: .55rem; right: .55rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,77,141,.9); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.like-info {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .7rem .75rem;
  text-align: left; color: #fff;
}
.like-info strong { display: block; font-size: .9rem; }
.like-info span { font-size: .72rem; opacity: .8; }

.profile-card { text-align: center; padding: .5rem 1.25rem 1rem; }
.profile-avatar {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto .85rem;
  overflow: hidden; border: 3px solid rgba(255,77,141,.4);
  box-shadow: 0 10px 28px rgba(255,77,141,.25);
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-card h2 { margin: 0 0 .25rem; font-size: 1.35rem; }
.profile-meta { margin: 0 0 .85rem; color: var(--muted); font-size: .9rem; }
.profile-menu { padding: 0 1rem 1rem; display: grid; gap: .55rem; }
.profile-row {
  display: flex; align-items: center; gap: .7rem;
  width: 100%; padding: .95rem 1rem; border-radius: 14px;
  background: rgba(26,21,40,.9); border: 1px solid var(--line);
  color: var(--text); text-decoration: none; font-family: inherit;
  font-size: .92rem; font-weight: 600; cursor: pointer; text-align: left;
}
.profile-row i { color: var(--pink); font-size: 1.1rem; width: 22px; text-align: center; }
.profile-row span { margin-left: auto; color: var(--muted); font-weight: 500; }
.profile-row small { margin-left: auto; color: var(--muted); font-weight: 500; font-size: .75rem; }
.profile-row.muted { opacity: .7; cursor: default; }

.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(12,10,20,.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: .35rem .25rem calc(.35rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -10px 30px rgba(0,0,0,.35);
}
.bn-item {
  position: relative; appearance: none; border: 0; background: transparent;
  color: var(--muted); font-family: inherit; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  padding: .45rem .2rem; border-radius: 12px;
}
.bn-item i { font-size: 1.25rem; line-height: 1; }
.bn-item span { font-size: .68rem; font-weight: 600; }
.bn-item.active { color: var(--pink); }
.bn-dot {
  position: absolute; top: .35rem; right: calc(50% - 18px);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 0 2px #0c0a14;
}
.modal-overlay { z-index: 200; }
