:root {
  --bg: #0f172a;
  --bg-soft: #101a33;
  --card: rgba(18, 24, 45, 0.9);
  --accent: #ffb703;
  --accent-2: #ff5d8f;
  --accent-3: #6ee7b7;
  --text: #f8fafc;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.2);
  --shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
  --radius: 18px;
  --font: "Space Grotesk", "Montserrat", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(circle at top left, #1e293b, var(--bg));
  min-height: 100vh;
  padding: 32px 24px 80px;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.45;
  z-index: -1;
  animation: float 16s ease-in-out infinite;
}

.orb-1 {
  background: radial-gradient(circle, rgba(255, 183, 3, 0.65), transparent 70%);
  top: -120px;
  right: -80px;
}

.orb-2 {
  background: radial-gradient(circle, rgba(255, 93, 143, 0.5), transparent 70%);
  bottom: -160px;
  left: -60px;
  animation-delay: 2s;
}

.orb-3 {
  background: radial-gradient(circle, rgba(110, 231, 183, 0.4), transparent 70%);
  top: 30%;
  left: 65%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-18px) translateX(12px);
  }
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.bot-tab {
  white-space: nowrap;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.7rem;
  color: var(--accent);
  margin: 0 0 12px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  letter-spacing: -0.02em;
}

.hero-title .app-name {
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title .hero-slogan {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 600;
}

.hero .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.45em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 8px;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 260px;
}

.user-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.lang-switch {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lang-switch select {
  padding: 6px 10px;
  font-size: 0.85rem;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-weight: 700;
}

.label {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.value {
  margin: 4px 0 0;
  font-weight: 600;
}

.muted {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.online-counter {
  margin: 8px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(110, 231, 183, 0.22);
  background: rgba(110, 231, 183, 0.08);
  color: #cfeee0;
  font-size: 0.8rem;
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 0 6px rgba(110, 231, 183, 0.12);
  animation: onlinePulse 2.4s ease-in-out infinite;
}

.online-value {
  font-weight: 700;
  color: #6ee7b7;
  min-width: 4ch;
  text-align: right;
}

@keyframes onlinePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

.tab.active {
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.2), rgba(255, 93, 143, 0.2));
  border-color: rgba(255, 183, 3, 0.6);
}

.offer-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
}

.subtab {
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.subtab.active {
  background: rgba(110, 231, 183, 0.12);
  border-color: rgba(110, 231, 183, 0.56);
  color: var(--accent-3);
}

.offer-subpanel {
  display: none !important;
}

.offer-subpanel.active {
  display: grid !important;
}

.offer-subpanel#offer-replies-panel.active {
  display: block !important;
}

.panel {
  display: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.4s ease;
}

.panel.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.profile-chips {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rules {
  display: grid;
  gap: 16px;
}

.rule-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
}

.rule-card h3 {
  margin: 0 0 8px;
}

.rule-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

h2 {
  margin: 0;
}

.chip {
  background: rgba(148, 163, 184, 0.15);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.75rem;
  border: 1px solid var(--border);
}

.chip.action {
  cursor: pointer;
  border-color: rgba(34, 197, 94, 0.5);
  color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
}

.chip.action:hover {
  background: rgba(34, 197, 94, 0.16);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.notice {
  background: rgba(255, 183, 3, 0.12);
  border: 1px solid rgba(255, 183, 3, 0.45);
  color: #facc15;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.notice .btn {
  margin-top: 10px;
}

label {
  font-size: 0.85rem;
  color: var(--muted);
}

input,
select,
textarea {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 12px;
  font-family: var(--font);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.btn {
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1f2937;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.btn.ghost.map-cta {
  border-color: rgba(34, 197, 94, 0.72);
  color: #86efac;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(110, 231, 183, 0.1));
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.08), 0 12px 28px rgba(34, 197, 94, 0.12);
}

.btn.ghost.map-cta:hover {
  border-color: rgba(134, 239, 172, 0.9);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.26), rgba(110, 231, 183, 0.16));
}

.btn.ghost.danger {
  border-color: rgba(255, 93, 143, 0.5);
  color: #ff9bb7;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.widget-wrap {
  display: inline-flex;
  align-items: center;
}

.checkbox {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}

.filters.align-center {
  align-items: flex-end;
}

.toggle-btn.active {
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.2), rgba(255, 93, 143, 0.2));
  border-color: rgba(255, 183, 3, 0.6);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.reply-card {
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reply-title {
  color: var(--accent-3);
  font-weight: 800;
  margin-bottom: 4px;
}

.reply-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.reply-row span,
.reply-message span {
  color: var(--muted);
  font-size: 0.82rem;
}

.reply-row strong,
.reply-message div {
  color: #e2e8f0;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.reply-message {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card {
  background:
    linear-gradient(180deg, rgba(17, 24, 45, 0.96), rgba(14, 20, 39, 0.94)),
    rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.22);
  padding: 18px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 360px;
  width: 100%;
  justify-self: center;
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

#offers-list .card {
  cursor: pointer;
}

#offers-list .card:hover {
  border-color: rgba(110, 231, 183, 0.34);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(110, 231, 183, 0.08);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 14px 0 10px;
}

.card-top-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rating-badge {
  position: static;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rating-high {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.6);
  color: #22c55e;
}

.rating-mid {
  background: rgba(250, 204, 21, 0.2);
  border-color: rgba(250, 204, 21, 0.6);
  color: #facc15;
}

.rating-low {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.6);
  color: #ef4444;
}

.card-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #e2e8f0;
}

.offer-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 2px;
}

.offer-meta-row .muted {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-until {
  color: var(--muted);
  font-size: 0.95rem;
  white-space: nowrap;
  text-align: right;
}

.offer-person-date {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.offer-person-date span:first-child {
  text-align: left;
  color: var(--text);
}

.offer-person-date span:last-child {
  text-align: right;
  white-space: nowrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  margin-left: 6px;
  border: 1px solid var(--border);
}

.badge.adult {
  border-color: rgba(255, 93, 143, 0.6);
  color: #ff9bb7;
  background: rgba(255, 93, 143, 0.15);
}

.clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(148, 163, 184, 0.15);
  border: 1px solid var(--border);
}

.profile-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 6px 2px 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-profile {
  margin-top: -8px;
}

.profile-line {
  color: var(--text);
  font-weight: 400;
  font-size: clamp(1.35rem, 5vw, 2rem);
  letter-spacing: -0.03em;
  text-align: left;
}

.profile-bio {
  color: #b8c0d2;
  font-size: 1rem;
  line-height: 1.45;
  padding-left: 0;
}

.offer-detail-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  padding: 0 2px 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  min-width: 0;
}

.category-row {
  color: #e2e8f0;
}

.place-row {
  color: var(--muted);
}

.description-row {
  grid-template-columns: 1fr;
  color: #e2e8f0;
}

.description-row span {
  font-size: 0.98rem;
}

.seeking-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 2px;
}

.seeking-row span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
}

.seeking-row span:last-child {
  color: var(--accent);
  font-size: 1rem;
  text-align: left;
}

.interest-cta {
  width: min(220px, 100%);
  justify-content: center;
}

.distance-line {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 0.7rem;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
}

.icon-badge.danger {
  border-color: rgba(255, 93, 143, 0.5);
  color: #ff9bb7;
}

.icon-badge.like {
  border-color: rgba(110, 231, 183, 0.5);
  color: #6ee7b7;
}

.map {
  position: relative;
  height: 360px;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #0b1224;
}

.map-picker {
  position: relative;
}

.map-center-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 500;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 3px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(255, 93, 143, 0.28), 0 0 0 8px rgba(255, 183, 3, 0.12);
  pointer-events: none;
  transform: translate(-50%, calc(-100% + 4px)) rotate(-45deg);
}

.map-center-pin::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  top: 8px;
  left: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 2px rgba(255, 93, 143, 0.22);
}

.map-compact {
  height: 240px;
}

.leaflet-container {
  background: #0b1224;
  font-family: var(--font);
}

.leaflet-control-attribution {
  font-size: 0.65rem;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
}

.leaflet-popup-content-wrapper {
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.leaflet-popup-content {
  margin: 10px 12px;
}

.user-location-pin-wrap {
  background: transparent;
  border: 0;
}

.user-location-pin {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #22c55e, #6ee7b7);
  border: 3px solid rgba(240, 253, 244, 0.95);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.35), 0 0 0 6px rgba(34, 197, 94, 0.14);
  transform: rotate(-45deg);
}

.user-location-pin::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 7px;
  left: 7px;
  border-radius: 50%;
  background: rgba(240, 253, 244, 0.95);
  box-shadow: inset 0 0 0 2px rgba(34, 197, 94, 0.25);
}

.map-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
  position: relative;
}

.map-offer-card {
  width: min(320px, 78vw);
  max-width: 320px;
  min-height: 0;
  gap: 10px;
  padding: 14px;
  cursor: default;
}

.map-offer-card .card-top-actions {
  gap: 8px;
}

.map-offer-card .profile-strip {
  padding-bottom: 10px;
}

.map-offer-card .profile-bio,
.map-offer-card .description-row span,
.map-offer-card .seeking-row span {
  font-size: 0.82rem;
}

.map-offer-card .card-footer {
  padding: 6px 0 0;
}

.map-offer-card .interest-cta {
  width: min(180px, 100%);
}

.map-card .card-title {
  font-size: 1rem;
}

.map-card .tag {
  display: inline-flex;
}


.hidden {
  display: none;
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.7);
  backdrop-filter: blur(2px);
}

.modal-card {
  position: relative;
  width: min(420px, 92vw);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-card {
  width: min(520px, 92vw);
  gap: 16px;
}

.tutorial-modal {
  z-index: 12000;
}

.tutorial-card {
  width: min(500px, 94vw);
  max-height: min(680px, 92vh);
  overflow-y: auto;
  border-color: rgba(110, 231, 183, 0.28);
  gap: 10px;
}

.tutorial-modal-title {
  margin-right: 34px;
  color: var(--accent-3);
}

.tutorial-progress {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.tutorial-progress span {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.24);
}

.tutorial-progress span.active {
  background: var(--accent-3);
}

.tutorial-preview {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  padding: 10px;
  background:
    radial-gradient(circle at top right, rgba(255, 183, 3, 0.13), transparent 38%),
    rgba(11, 18, 36, 0.74);
  overflow: hidden;
  max-height: 210px;
}

.tutorial-screen {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tutorial-screen-title {
  color: var(--text);
  font-weight: 900;
  font-size: 0.92rem;
}

.tutorial-chips,
.tutorial-search-actions,
.tutorial-subtabs-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tutorial-chips span,
.tutorial-search-actions span,
.tutorial-subtabs-preview span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 8px;
  color: #e2e8f0;
  background: rgba(148, 163, 184, 0.1);
  font-weight: 700;
  font-size: 0.68rem;
}

.tutorial-subtabs-preview span.active,
.tutorial-search-actions span:nth-child(2) {
  border-color: rgba(110, 231, 183, 0.5);
  color: var(--accent-3);
}

.tutorial-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 0.66rem;
}

.tutorial-field strong {
  color: var(--text);
  font-weight: 600;
  padding: 5px 7px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.58);
}

.tutorial-field.tall strong {
  min-height: 34px;
}

.tutorial-gradient-btn {
  margin-top: 2px;
  text-align: center;
  border-radius: 12px;
  padding: 7px;
  color: #1f2937;
  font-weight: 900;
  font-size: 0.72rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.tutorial-mini-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.tutorial-mini-card strong {
  color: var(--text);
}

.tutorial-actions {
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
}

.tutorial-actions .btn {
  padding: 10px 12px;
}

.interest-card {
  width: min(520px, 92vw);
  border-color: rgba(110, 231, 183, 0.3);
  background:
    radial-gradient(circle at top right, rgba(110, 231, 183, 0.12), transparent 36%),
    rgba(15, 23, 42, 0.96);
}

.interest-card h3 {
  margin-right: 32px;
}

.interest-card textarea {
  min-height: 118px;
  resize: vertical;
  background: rgba(30, 41, 59, 0.78);
  border-color: rgba(110, 231, 183, 0.22);
}

.interest-card textarea:focus {
  border-color: rgba(110, 231, 183, 0.7);
  box-shadow: 0 0 0 3px rgba(110, 231, 183, 0.14);
}

.interest-actions {
  justify-content: flex-end;
}

.interest-card button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.invite-link {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.6);
  font-size: 0.85rem;
  word-break: break-all;
}

@media (max-width: 768px) {
  body {
    padding: 20px 16px 80px;
  }
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-card {
    width: 100%;
  }
  .bot-tab {
    width: 100%;
    text-align: center;
  }
}
