*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #050508;
  --bg-card: #0d0d12;
  --surface: rgba(255, 255, 255, 0.045);
  --border: rgba(255, 255, 255, 0.09);
  --text: #faf8f9;
  --text-soft: rgba(250, 248, 249, 0.68);
  --text-muted: rgba(250, 248, 249, 0.38);
  --rose: #ff6b9d;
  --rose-hot: #ff4081;
  --rose-soft: #f0a8c4;
  --violet: #a78bfa;
  --cyan: #67e8f9;
  --online: #4ade80;
  --radius-lg: 26px;
  --radius-md: 18px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  --cta-height: 88px;
  --cta-dock-height: 132px;
  --safe-bottom: max(12px, env(safe-area-inset-bottom));
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

.particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: drift 14s ease-in-out infinite;
}

.ambient__orb--1 {
  width: 340px;
  height: 340px;
  top: -100px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 64, 129, 0.38) 0%, transparent 68%);
}

.ambient__orb--2 {
  width: 380px;
  height: 380px;
  bottom: 12%;
  left: -160px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.22) 0%, transparent 68%);
  animation-delay: -4s;
}

.ambient__orb--3 {
  width: 240px;
  height: 240px;
  top: 38%;
  right: -40px;
  background: radial-gradient(circle, rgba(103, 232, 249, 0.1) 0%, transparent 70%);
  animation-delay: -8s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12px, 18px) scale(1.06); }
}

.ambient__scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.012) 50%, transparent 100%);
  background-size: 100% 4px;
  opacity: 0.35;
}

.ambient__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 auto;
  padding: 16px 18px calc(var(--cta-dock-height) + var(--safe-bottom) + 16px);
}

.glass {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.glass-strong {
  background: linear-gradient(145deg, rgba(22, 22, 30, 0.94) 0%, rgba(8, 8, 12, 0.98) 100%);
  border: 1px solid rgba(255, 107, 157, 0.28);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  opacity: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--violet) 100%);
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.6);
}

.brand__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 157, 0.45);
  animation: brandPulse 2.4s ease-out infinite;
}

@keyframes brandPulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

.brand__name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.topbar__pill {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--rose-soft);
  border: 1px solid rgba(255, 107, 157, 0.2);
  background: rgba(255, 107, 157, 0.1);
}

.hero {
  text-align: center;
  padding: 0 4px 16px;
}

.hero__eyebrow,
.hero__title,
.hero__subtitle {
  opacity: 0;
}

.hero__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 9.5vw, 3.1rem);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(120deg, #fff 0%, var(--rose-soft) 40%, var(--rose-hot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 64, 129, 0.25));
}

.hero__subtitle {
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 300;
  color: var(--text-soft);
  max-width: 33ch;
  margin-left: auto;
  margin-right: auto;
}

.viewer-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  margin-bottom: 14px;
  opacity: 0;
}

.viewer-bar__avatars {
  flex-shrink: 0;
}

.avatar-stack {
  position: relative;
  width: 96px;
  height: 34px;
}

.avatar-stack__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: #1e1e28;
  border: 2px solid #12121a;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  will-change: transform, opacity;
}

.viewer-bar__text {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.viewer-bar__text strong {
  color: var(--rose-soft);
  font-weight: 600;
}

.carousel-wrap {
  position: relative;
  margin: 4px -6px 0;
  opacity: 0;
}

.carousel-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 64, 129, 0.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.profile-swiper {
  position: relative;
  z-index: 1;
  padding: 10px 0 26px;
  overflow: visible;
}

.profile-swiper .swiper-slide {
  width: 80%;
  max-width: 300px;
}

.profile-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 107, 157, 0.35) 50%, rgba(167, 139, 250, 0.25) 100%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.swiper-slide-active .profile-card {
  transform: scale(1.02);
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.65) 0%, rgba(167, 139, 250, 0.45) 50%, rgba(103, 232, 249, 0.25) 100%);
  animation: borderShift 4s linear infinite;
}

@keyframes borderShift {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(25deg); }
}

.profile-card__inner {
  position: relative;
  border-radius: calc(var(--radius-lg) - 2px);
  overflow: hidden;
  background: var(--bg-card);
}

.profile-card__media {
  position: relative;
  aspect-ratio: 3 / 4.08;
  background: #151018;
  overflow: hidden;
}

.profile-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.1);
  transition: transform 6s ease-out, filter 0.5s ease;
  filter: saturate(1.14) contrast(1.1) brightness(0.86);
}

.swiper-slide-active .profile-card__media img {
  transform: scale(1.02);
  filter: saturate(1.2) contrast(1.12) brightness(0.92);
}

.profile-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 64, 129, 0.08) 0%, transparent 22%),
    linear-gradient(180deg, rgba(5, 5, 8, 0.18) 0%, transparent 24%),
    linear-gradient(0deg, rgba(5, 5, 8, 0.96) 0%, rgba(80, 10, 40, 0.42) 36%, transparent 62%);
}

.profile-card__match {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
}

.match-ring {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.match-ring__bg,
.match-ring__fg {
  fill: none;
  stroke-width: 2.5;
}

.match-ring__bg {
  stroke: rgba(255, 255, 255, 0.12);
}

.match-ring__fg {
  stroke: var(--rose-hot);
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.swiper-slide-active .match-ring__fg {
  stroke-dashoffset: var(--match-offset, 12);
}

.match-ring__value {
  position: relative;
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.profile-card__top {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 600;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  width: fit-content;
}

.chip--verified {
  color: #fff;
  background: rgba(59, 130, 246, 0.85);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.chip--online {
  color: var(--online);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.chip--online::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--online);
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.9);
  animation: onlinePulse 2s ease infinite;
}

@keyframes onlinePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.profile-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 15px 15px;
}

.profile-card__name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 500;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.profile-card__meta {
  margin-top: 7px;
  font-size: 0.76rem;
  color: rgba(255, 180, 210, 0.88);
  display: flex;
  align-items: center;
  gap: 5px;
}

.profile-card__meta svg {
  width: 11px;
  height: 11px;
  color: var(--rose-soft);
}

.profile-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tag--accent {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 64, 129, 0.9) 0%, rgba(167, 139, 250, 0.8) 100%);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(255, 64, 129, 0.35);
}

.profile-card__hint {
  margin-top: 10px;
  font-size: 0.7rem;
  font-style: italic;
  color: rgba(255, 170, 200, 0.92);
}

.profile-pagination {
  position: static !important;
  margin-top: -4px;
}

.profile-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.16);
  opacity: 1;
  transition: all 0.3s ease;
}

.profile-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose-hot) 0%, var(--violet) 100%);
  box-shadow: 0 0 12px rgba(255, 64, 129, 0.5);
}

.stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-top: 16px;
  padding: 16px 10px;
  border-radius: var(--radius-md);
  opacity: 0;
}

.stats__item {
  text-align: center;
}

.stats__item strong {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, var(--rose-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats__suffix {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rose-soft);
}

.stats__item span:last-child {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  color: var(--text-muted);
}

.stats__divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
  opacity: 0;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 11px;
  border-radius: 14px;
}

.feature__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 107, 157, 0.12);
  color: var(--rose-soft);
  flex-shrink: 0;
}

.feature__icon svg {
  width: 16px;
  height: 16px;
}

.feature strong {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
}

.feature span {
  display: block;
  margin-top: 2px;
  font-size: 0.64rem;
  color: var(--text-muted);
}

.live-feed {
  margin-top: 14px;
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  opacity: 0;
}

.live-feed strong {
  color: var(--rose-soft);
  font-weight: 600;
}

.page__spacer {
  height: 8px;
}

.toast {
  position: fixed;
  top: max(16px, env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%) translateY(-140%);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(calc(100% - 28px), 380px);
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(14, 14, 20, 0.94);
  border: 1px solid rgba(255, 107, 157, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

.toast__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 107, 157, 0.35);
  display: block;
  background: #1e1e28;
  transition: opacity 0.28s ease;
}

.toast__text {
  font-size: 0.74rem;
  color: var(--text-soft);
  line-height: 1.35;
}

.toast__text strong {
  color: var(--text);
}

.cta-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  pointer-events: none;
  opacity: 0;
}

.cta-dock__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 8, 0.82) 38%, rgba(5, 5, 8, 0.98) 100%);
  pointer-events: none;
}

.cta-dock__inner {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 16px var(--safe-bottom);
  pointer-events: auto;
}

.cta-dock__urgency {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.cta-dock__urgency strong {
  color: var(--rose-soft);
  font-weight: 600;
}

.cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: var(--cta-height);
  padding: 16px 18px 16px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #ff4d88 0%, #ff2d6f 45%, #e91e8c 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 45, 111, 0.35) inset,
    0 12px 32px rgba(255, 45, 111, 0.45),
    0 24px 60px rgba(0, 0, 0, 0.55);
  animation: ctaBreathe 2.6s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes ctaBreathe {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 0 1px rgba(255, 45, 111, 0.35) inset,
      0 12px 32px rgba(255, 45, 111, 0.45),
      0 24px 60px rgba(0, 0, 0, 0.55);
  }
  50% {
    transform: scale(1.025);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.15) inset,
      0 16px 42px rgba(255, 45, 111, 0.58),
      0 28px 70px rgba(0, 0, 0, 0.6);
  }
}

.cta-btn:active {
  transform: scale(0.98);
  animation: none;
}

.cta-btn__pulse {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  animation: ctaPulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes ctaPulse {
  0% { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(1.08); opacity: 0; }
}

.cta-btn__shimmer {
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  animation: ctaShimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaShimmer {
  0% { left: -120%; }
  45%, 100% { left: 140%; }
}

.cta-btn__icon {
  position: relative;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cta-btn__icon svg {
  width: 24px;
  height: 24px;
}

.cta-btn__text {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.cta-btn__label {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.cta-btn__sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.25;
}

.cta-btn__badge {
  position: relative;
  flex-shrink: 0;
  padding: 7px 11px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--rose-hot);
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  animation: badgePop 2.6s ease-in-out infinite;
}

@keyframes badgePop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.cta-btn--disabled {
  background: linear-gradient(135deg, #2a2a32 0%, #1a1a22 100%);
  border-color: rgba(255, 255, 255, 0.08);
  animation: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.cta-btn--disabled .cta-btn__pulse,
.cta-btn--disabled .cta-btn__shimmer {
  display: none;
}

.cta-btn--disabled .cta-btn__badge {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  animation: none;
}

.cta-btn--disabled .cta-btn__sub {
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 431px) {
  body {
    display: flex;
    justify-content: center;
  }
}

.link-admin {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.link-admin[hidden] {
  display: none !important;
}

.link-admin__panel {
  width: min(100%, 420px);
  padding: 18px 16px;
  border-radius: 18px;
}

.link-admin__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.link-admin__label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 10px 0 6px;
}

.link-admin__input {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
  font-size: 0.82rem;
}

.link-admin__input:focus {
  outline: none;
  border-color: rgba(255, 107, 157, 0.45);
}

.link-admin__actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.link-admin__btn {
  flex: 1;
  padding: 11px 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.link-admin__btn--primary {
  background: linear-gradient(135deg, #ff4d88 0%, #ff2d6f 100%);
  border-color: transparent;
}

.link-admin__preview {
  margin-top: 12px;
  font-size: 0.68rem;
  color: var(--text-soft);
  word-break: break-all;
  line-height: 1.45;
}

.link-admin__tip {
  margin-top: 10px;
  font-size: 0.64rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.link-admin__tip code {
  color: var(--rose-soft);
}
