:root {
  --ob-bg: #060611;
  --ob-card: rgba(14, 14, 26, 0.92);
  --ob-text: #e9e9ff;
  --ob-muted: rgba(233, 233, 255, 0.7);
  --ob-border: rgba(233, 233, 255, 0.08);
  --ob-border-strong: rgba(233, 233, 255, 0.14);
  --ob-pink: #ff2bd6;
  --ob-blue: #1cc8ff;
  --ob-danger: #ff4d6d;
  --ob-shadow: rgba(0, 0, 0, 0.55);
  --ob-header-height: 60px;
  --ob-notice-height: 0px;
  --ob-nav-width: 96px;
}

.ob-search-page {
  display: grid;
  gap: 18px;
}

.ob-search-card {
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(12, 12, 22, 0.62);
  padding: 16px 16px;
  display: grid;
  gap: 12px;
}

.ob-search-card-head {
  display: grid;
  gap: 6px;
}

.ob-search-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.ob-search-subtitle {
  margin: 0;
  color: rgba(233, 233, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.ob-search-card-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(233, 233, 255, 0.82);
  text-transform: uppercase;
}

.ob-search-form {
  display: grid;
  gap: 10px;
}

.ob-search-form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.ob-search-results {
  display: grid;
  gap: 10px;
}

.ob-search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(233, 233, 255, 0.03);
}

.ob-search-row:hover {
  border-color: rgba(28, 200, 255, 0.22);
  background: rgba(28, 200, 255, 0.06);
}

.ob-search-user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: rgba(233, 233, 255, 0.92);
}

.ob-search-user-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ob-search-username {
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-search-name {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.70);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-search-empty {
  color: rgba(233, 233, 255, 0.70);
  font-size: 13px;
  padding: 6px 2px;
}

.ob-messages-panel {
  max-width: 920px;
}

.ob-messages-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 18px;
  min-height: 520px;
}

.ob-messages-sidebar {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 12px;
  padding-right: 14px;
  border-right: 1px solid rgba(233, 233, 255, 0.08);
  min-width: 0;
}

.ob-messages-sidebar-head {
  display: grid;
  gap: 4px;
}

.ob-messages-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.ob-messages-subtitle {
  margin: 0;
  font-size: 13px;
  color: rgba(233, 233, 255, 0.70);
}

.ob-messages-new label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(233, 233, 255, 0.70);
}

.ob-messages-new {
  display: grid;
  gap: 6px;
}

.ob-messages-threads {
  display: grid;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
  min-height: 0;
}

.ob-messages-thread {
  border-radius: 14px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(12, 12, 22, 0.55);
  padding: 10px;
  display: flex;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  width: 100%;
  color: rgba(233, 233, 255, 0.92);
  transition: border-color 120ms ease, background 120ms ease;
}

.ob-messages-thread:hover {
  border-color: rgba(233, 233, 255, 0.18);
}

.ob-messages-thread.ob-is-active {
  border-color: rgba(28, 200, 255, 0.36);
  background: rgba(28, 200, 255, 0.12);
}

.ob-messages-thread-avatar {
  position: relative;
  flex: 0 0 auto;
}

.ob-messages-chat-avatar {
  position: relative;
}

.ob-messages-online-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(34, 214, 108, 0.95);
  border: 2px solid rgba(12, 12, 22, 0.95);
  box-shadow: 0 0 0 2px rgba(34, 214, 108, 0.15);
}

.ob-messages-thread-meta {
  display: grid;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}

.ob-messages-thread-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ob-messages-thread-name {
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-messages-thread-time {
  font-size: 11px;
  color: rgba(233, 233, 255, 0.58);
  white-space: nowrap;
}

.ob-messages-thread-preview {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-messages-thread-status {
  font-size: 11px;
  color: rgba(233, 233, 255, 0.58);
  white-space: nowrap;
}

.ob-messages-chat {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ob-messages-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(233, 233, 255, 0.08);
}

.ob-messages-chat-user {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.ob-messages-chat-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ob-messages-chat-name {
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-messages-chat-username {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.70);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-messages-chat-status {
  font-size: 11px;
  color: rgba(233, 233, 255, 0.58);
}

.ob-messages-avatar-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 12px;
  font-weight: 900;
}

.ob-messages-loading {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(233, 233, 255, 0.70);
}

.ob-messages-status {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(233, 233, 255, 0.70);
}

.ob-messages-status.ob-is-error {
  color: rgba(255, 77, 109, 0.95);
}

.ob-messages-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  overflow-y: auto;
  padding-right: 4px;
  min-height: 0;
}

.ob-chat-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.ob-chat-message--out {
  align-items: flex-end;
}

.ob-chat-bubble {
  max-width: 75%;
  border-radius: 14px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(12, 12, 22, 0.55);
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(233, 233, 255, 0.92);
  white-space: pre-wrap;
  word-break: break-word;
}

.ob-chat-message--out .ob-chat-bubble {
  border-color: rgba(28, 200, 255, 0.24);
  background: rgba(28, 200, 255, 0.12);
}

.ob-chat-time {
  font-size: 11px;
  color: rgba(233, 233, 255, 0.58);
}

.ob-messages-chat-empty {
  margin-top: 8px;
  color: rgba(233, 233, 255, 0.70);
  font-size: 13px;
}

.ob-messages-form {
  margin-top: 12px;
}

.ob-messages-compose {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.ob-messages-compose .ob-textarea {
  flex: 1 1 auto;
}

.ob-messages-empty {
  margin-top: 8px;
  color: rgba(233, 233, 255, 0.70);
  font-size: 13px;
}

@media (max-width: 720px) {
  .ob-messages-layout {
    grid-template-columns: 1fr;
  }

  .ob-messages-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(233, 233, 255, 0.08);
    padding-right: 0;
    padding-bottom: 12px;
  }

  .ob-messages-threads {
    max-height: 220px;
  }
}

.ob-avatar,
.ob-home-avatar,
.ob-profile-avatar-ring,
.ob-profile-avatar-img,
.ob-profile-avatar-fallback,
.ob-avatar-img,
.ob-home-avatar-img,
.ob-profile-avatar-modal-img,
.ob-profile-avatar-modal-fallback {
  aspect-ratio: 1 / 1;
}

.ob-avatar,
.ob-profile-avatar-ring {
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--ob-text);
  background:
    radial-gradient(800px circle at 25% 0%, rgba(255, 43, 214, 0.12), transparent 45%),
    radial-gradient(900px circle at 80% 100%, rgba(28, 200, 255, 0.10), transparent 50%),
    var(--ob-bg);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.ob-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
}

.ob-card {
  width: 100%;
  max-width: 440px;
  background: var(--ob-card);
  border: 1px solid var(--ob-border);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow:
    0 24px 64px var(--ob-shadow),
    0 0 0 1px rgba(255, 43, 214, 0.10),
    0 0 0 1px rgba(28, 200, 255, 0.08);
  position: relative;
  isolation: isolate;
  backdrop-filter: blur(10px);
}

.ob-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(255, 43, 214, 0.32), rgba(28, 200, 255, 0.24), rgba(255, 43, 214, 0.20));
  filter: blur(18px);
  opacity: 0.55;
  z-index: -1;
}

.ob-header {
  text-align: center;
  margin-bottom: 18px;
}

.ob-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 34px;
  line-height: 1;
  margin: 0;
}

.ob-logo-only {
  color: var(--ob-pink);
  text-shadow:
    0 0 10px rgba(255, 43, 214, 0.65),
    0 0 28px rgba(255, 43, 214, 0.32);
}

.ob-logo-br {
  color: var(--ob-blue);
  text-shadow:
    0 0 10px rgba(28, 200, 255, 0.60),
    0 0 28px rgba(28, 200, 255, 0.28);
}

.ob-subtitle {
  margin: 10px 0 0;
  color: var(--ob-muted);
  font-size: 14px;
}

.ob-form {
  display: grid;
  gap: 14px;
}

.ob-field label {
  display: block;
  font-size: 13px;
  color: var(--ob-muted);
  margin-bottom: 7px;
}

.ob-input {
  width: 100%;
  border-radius: 12px;
  padding: 12px 12px;
  background: rgba(233, 233, 255, 0.04);
  border: 1px solid var(--ob-border);
  color: var(--ob-text);
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.ob-input::placeholder {
  color: rgba(233, 233, 255, 0.45);
}

.ob-input:focus {
  border-color: rgba(255, 43, 214, 0.35);
  box-shadow:
    0 0 0 3px rgba(255, 43, 214, 0.16),
    0 0 0 1px rgba(28, 200, 255, 0.10);
}

.ob-input--error {
  border-color: rgba(255, 77, 109, 0.55);
}

.ob-error {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 77, 109, 0.95);
}

.ob-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease;
}

.ob-button:active {
  transform: translateY(1px);
}

.ob-button-primary {
  background: linear-gradient(90deg, rgba(255, 43, 214, 0.92), rgba(28, 200, 255, 0.90));
  color: rgba(6, 6, 17, 0.92);
  box-shadow:
    0 10px 30px rgba(255, 43, 214, 0.12),
    0 10px 30px rgba(28, 200, 255, 0.10);
}

.ob-button-primary:hover {
  filter: brightness(1.05);
}

.ob-button-secondary {
  background: rgba(233, 233, 255, 0.06);
  border: 1px solid rgba(233, 233, 255, 0.14);
  color: rgba(233, 233, 255, 0.90);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.ob-button-secondary:hover {
  filter: brightness(1.06);
}

.ob-legal {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--ob-muted);
  line-height: 1.5;
  text-align: center;
}

.ob-link {
  color: rgba(28, 200, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(28, 200, 255, 0.30);
  transition: border-color 120ms ease, color 120ms ease;
}

.ob-link:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 43, 214, 0.55);
}

.ob-footer {
  margin-top: 18px;
  text-align: center;
}

.ob-footer .ob-link {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ob-modal-open {
  overflow: hidden;
}

.ob-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: grid;
  place-items: center;
  padding: 20px 14px;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.ob-modal-backdrop.ob-is-open {
  opacity: 1;
  pointer-events: auto;
}

.ob-modal-panel {
  width: 100%;
  max-width: 520px;
  background: rgba(12, 12, 22, 0.96);
  border: 1px solid var(--ob-border-strong);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.72);
  position: relative;
}

.ob-modal-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(255, 43, 214, 0.26), rgba(28, 200, 255, 0.18));
  filter: blur(18px);
  opacity: 0.50;
  z-index: -1;
}

.ob-modal-title {
  margin: 2px 0 14px;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.ob-modal-text {
  margin: 10px 0 0;
  color: var(--ob-muted);
  font-size: 13px;
  line-height: 1.6;
}

.ob-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.04);
  color: rgba(233, 233, 255, 0.86);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.ob-home-text {
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 28px;
  text-align: center;
  color: rgba(233, 233, 255, 0.92);
  text-shadow:
    0 0 12px rgba(28, 200, 255, 0.16),
    0 0 12px rgba(255, 43, 214, 0.12);
}

@media (min-width: 768px) {
  .ob-card {
    padding: 30px 28px;
  }
  .ob-modal-panel {
    padding: 26px 22px;
  }
}

.ob-shell {
  min-height: 100vh;
  padding-top: calc(var(--ob-header-height) + var(--ob-notice-height) + env(safe-area-inset-top, 0px));
}

.ob-headerbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(6, 6, 17, 0.72);
  border-bottom: 1px solid rgba(233, 233, 255, 0.06);
  backdrop-filter: blur(10px);
  padding-top: env(safe-area-inset-top, 0px);
}

.ob-header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--ob-header-height);
  padding: 10px 14px;
  max-width: 620px;
  margin: 0 auto;
}

.ob-site-notice {
  border-top: 1px solid rgba(233, 233, 255, 0.06);
  background: rgba(12, 12, 22, 0.60);
  backdrop-filter: blur(10px);
}

.ob-site-notice-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 8px 14px 10px;
  color: rgba(233, 233, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}

.ob-brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 18px;
  text-decoration: none;
}

.ob-brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  object-fit: contain;
  border: 1px solid rgba(233, 233, 255, 0.14);
  background: rgba(233, 233, 255, 0.04);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
  margin-right: 4px;
}

.ob-search {
  position: relative;
  flex: 1;
  min-width: 0;
}

.ob-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ob-search-input {
  width: 100%;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(233, 233, 255, 0.04);
  border: 1px solid rgba(233, 233, 255, 0.10);
  color: var(--ob-text);
  outline: none;
}

.ob-search-input:focus {
  border-color: rgba(28, 200, 255, 0.30);
  box-shadow: 0 0 0 3px rgba(28, 200, 255, 0.12);
}

.ob-search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  border-radius: 14px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(12, 12, 22, 0.96);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  overflow: hidden;
}

.ob-search-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  text-decoration: none;
  color: var(--ob-text);
  border-bottom: 1px solid rgba(233, 233, 255, 0.06);
}

.ob-search-item:last-child {
  border-bottom: none;
}

.ob-search-item:hover {
  background: rgba(233, 233, 255, 0.04);
}

.ob-search-item-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.ob-search-item-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ob-search-item-name {
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-search-item-username {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.7);
}

.ob-search-empty {
  padding: 14px 12px;
  color: rgba(233, 233, 255, 0.7);
  font-size: 13px;
}

.ob-icon-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.04);
  color: rgba(233, 233, 255, 0.9);
  cursor: pointer;
}

.ob-layout {
  max-width: 620px;
  margin: 0 auto;
  padding: 16px 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.ob-with-bottom-nav .ob-layout {
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}

.ob-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.ob-only-desktop {
  display: block;
}

.ob-only-mobile {
  display: block;
}

.ob-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(64px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(6, 6, 17, 0.86);
  border-top: 1px solid rgba(233, 233, 255, 0.08);
  backdrop-filter: blur(12px);
  z-index: 45;
}

.ob-nav-inner {
  height: 64px;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ob-nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 54px;
  height: 48px;
  padding: 0 10px;
  border-radius: 14px;
  border: 1px solid rgba(28, 200, 255, 0.14);
  background: rgba(28, 200, 255, 0.04);
  color: rgba(28, 200, 255, 0.92);
  text-decoration: none;
  cursor: pointer;
}

.ob-nav-item:hover {
  border-color: rgba(28, 200, 255, 0.22);
  background: rgba(28, 200, 255, 0.07);
}

.ob-nav-item.ob-is-active {
  border-color: rgba(28, 200, 255, 0.32);
  box-shadow: 0 0 0 3px rgba(28, 200, 255, 0.12);
}

.ob-nav-upload {
  min-width: 66px;
  height: 54px;
  border-color: rgba(255, 43, 214, 0.36);
  background: linear-gradient(135deg, rgba(255, 43, 214, 0.95), rgba(28, 200, 255, 0.88));
  color: rgba(6, 6, 17, 0.92);
  box-shadow:
    0 16px 46px rgba(255, 43, 214, 0.16),
    0 16px 46px rgba(28, 200, 255, 0.12),
    0 0 0 4px rgba(255, 43, 214, 0.08);
  transform: translateY(-10px);
}

.ob-nav-upload:hover {
  filter: brightness(1.05);
}

.ob-nav-upload:active {
  transform: translateY(-8px);
}

.ob-nav-label {
  display: none;
}

.ob-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 43, 214, 0.28), rgba(28, 200, 255, 0.20));
  border: 1px solid rgba(233, 233, 255, 0.14);
  color: rgba(233, 233, 255, 0.92);
  font-weight: 800;
}

.ob-avatar-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 999px;
}

.ob-avatar--sm {
  width: 32px;
  height: 32px;
  font-size: 12px;
}

.ob-avatar--lg {
  width: 64px;
  height: 64px;
  font-size: 22px;
}

.ob-avatar--nav {
  width: 30px;
  height: 30px;
  font-size: 12px;
}

.ob-avatar--story {
  width: 46px;
  height: 46px;
}

.ob-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 43, 214, 0.22);
  background: rgba(255, 43, 214, 0.10);
  color: rgba(233, 233, 255, 0.92);
  margin-left: 8px;
}

.ob-stories {
  border-radius: 16px;
  border: 1px solid rgba(233, 233, 255, 0.06);
  background: rgba(12, 12, 22, 0.46);
  padding: 12px 10px;
}

.ob-stories-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.ob-stories-track::-webkit-scrollbar {
  height: 8px;
}

.ob-stories-track::-webkit-scrollbar-thumb {
  background: rgba(233, 233, 255, 0.10);
  border-radius: 999px;
}

.ob-story {
  flex: 0 0 auto;
  display: grid;
  gap: 8px;
  justify-items: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(233, 233, 255, 0.92);
}

.ob-story-ring {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  padding: 3px;
  background: rgba(233, 233, 255, 0.06);
  display: grid;
  place-items: center;
}

.ob-story-ring--creator {
  background: linear-gradient(135deg, rgba(255, 43, 214, 0.95), rgba(255, 43, 214, 0.55));
  box-shadow: 0 0 18px rgba(255, 43, 214, 0.22);
}

.ob-story-ring--user {
  background: linear-gradient(135deg, rgba(28, 200, 255, 0.95), rgba(28, 200, 255, 0.55));
  box-shadow: 0 0 18px rgba(28, 200, 255, 0.18);
}

.ob-story-label {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.70);
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ob-feed {
  display: grid;
  gap: 16px;
}

.ob-post {
  border-radius: 16px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(12, 12, 22, 0.58);
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

.ob-post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px 0;
}

.ob-post-user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: rgba(233, 233, 255, 0.92);
}

.ob-post-user-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ob-post-user-name {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-post-user-username {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.70);
}

.ob-post-text {
  padding: 10px 12px 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(233, 233, 255, 0.92);
  white-space: pre-wrap;
}

.ob-post-image {
  padding: 10px 12px 0;
}

.ob-post-media-btn {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: block;
}

.ob-post-media-btn:focus-visible {
  outline: 2px solid rgba(28, 200, 255, 0.38);
  outline-offset: 4px;
}

.ob-post-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.ob-post-footer {
  padding: 10px 12px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.ob-follow-btn {
  border: 1px solid rgba(255, 43, 214, 0.26);
  background: rgba(255, 43, 214, 0.12);
  color: rgba(233, 233, 255, 0.92);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease, filter 120ms ease;
}

.ob-follow-btn:hover {
  border-color: rgba(255, 43, 214, 0.38);
  filter: brightness(1.05);
}

.ob-follow-btn:active {
  transform: translateY(1px);
}

.ob-follow-btn--compact {
  padding: 7px 10px;
}

.ob-follow-btn--profile {
  padding: 10px 14px;
  font-size: 13px;
}

.ob-follow-btn.ob-is-following {
  border-color: rgba(28, 200, 255, 0.25);
  background: rgba(28, 200, 255, 0.10);
}

.ob-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.03);
  color: rgba(233, 233, 255, 0.86);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.ob-like-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 43, 214, 0.18);
  background: rgba(255, 43, 214, 0.06);
  color: rgba(255, 43, 214, 0.92);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease, border-color 120ms ease, background 120ms ease;
}

.ob-like-btn:hover {
  border-color: rgba(255, 43, 214, 0.32);
  background: rgba(255, 43, 214, 0.10);
  filter: brightness(1.05);
}

.ob-like-btn:active {
  transform: translateY(1px);
}

.ob-view-btn.ob-is-loading,
.ob-follow-btn.ob-is-loading,
.ob-nav-item.ob-is-loading {
  opacity: 0.65;
}

.ob-suggestions-card {
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(12, 12, 22, 0.52);
  padding: 14px 14px;
}

.ob-suggestions-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(233, 233, 255, 0.86);
  margin-bottom: 10px;
}

.ob-suggestions-list {
  display: grid;
  gap: 10px;
}

.ob-suggestions-empty {
  padding: 10px 8px;
  color: rgba(233, 233, 255, 0.70);
  font-size: 13px;
}

.ob-suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ob-suggestion-user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: rgba(233, 233, 255, 0.92);
}

.ob-suggestion-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ob-suggestion-name {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-suggestion-username {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.70);
}

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

.ob-story-backdrop {
  padding: 0;
  background: rgba(0, 0, 0, 0.86);
}

.ob-story-viewer {
  width: 100%;
  max-width: 460px;
  height: 100%;
  max-height: 100%;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background: rgba(6, 6, 17, 0.96);
  border-color: rgba(233, 233, 255, 0.10);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.78);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}

.ob-story-viewer::before {
  display: none;
}

@media (min-width: 520px) {
  .ob-story-backdrop {
    padding: 24px 14px;
  }

  .ob-story-viewer {
    height: min(78vh, 760px);
    border-radius: 22px;
  }
}

.ob-story-progress {
  display: flex;
  gap: 6px;
  padding: 12px 12px 6px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.ob-story-progress-seg {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(233, 233, 255, 0.22);
  overflow: hidden;
  cursor: pointer;
}

.ob-story-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 43, 214, 0.95), rgba(28, 200, 255, 0.92));
  border-radius: 999px;
  transform: translateZ(0);
}

.ob-story-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px 10px;
}

.ob-story-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 10;
}

.ob-story-user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: rgba(233, 233, 255, 0.92);
}

.ob-story-user-avatar-wrap {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  padding: 2px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 43, 214, 0.80), rgba(28, 200, 255, 0.70));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.ob-story-user-avatar {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(6, 6, 17, 0.92);
  background: rgba(0, 0, 0, 0.25);
}

.ob-story-user-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ob-story-user-name {
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-story-user-time {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.72);
}

.ob-story-close,
.ob-story-menu-btn {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.04);
  color: rgba(233, 233, 255, 0.86);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 120ms ease, filter 120ms ease, border-color 120ms ease;
}

.ob-story-close:hover,
.ob-story-menu-btn:hover {
  border-color: rgba(233, 233, 255, 0.16);
  filter: brightness(1.05);
}

.ob-story-close:active,
.ob-story-menu-btn:active {
  transform: translateY(1px);
}

.ob-story-menu {
  position: absolute;
  top: 44px;
  right: 0;
  width: 220px;
  border-radius: 16px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(12, 12, 22, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  z-index: 6;
}

.ob-story-menu-item {
  width: 100%;
  border: none;
  background: transparent;
  color: rgba(233, 233, 255, 0.92);
  text-align: left;
  padding: 12px 12px;
  font-weight: 900;
  cursor: pointer;
}

.ob-story-menu-item:hover {
  background: rgba(233, 233, 255, 0.05);
}

.ob-story-menu-item--danger {
  color: rgba(255, 77, 109, 0.95);
}

.ob-story-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(860px circle at 20% 0%, rgba(255, 43, 214, 0.22), transparent 45%),
    radial-gradient(900px circle at 80% 100%, rgba(28, 200, 255, 0.18), transparent 52%),
    rgba(6, 6, 17, 0.78);
}

.ob-story-stage::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: var(--ob-story-bg, none) center / cover no-repeat;
  filter: blur(22px) saturate(1.08) brightness(0.82);
  transform: scale(1.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  z-index: 0;
}

.ob-story-stage.ob-has-bg::before {
  opacity: 0.55;
}

.ob-story-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.35);
  transition: opacity 140ms ease, filter 160ms ease, transform 160ms ease;
  z-index: 1;
}

.ob-story-text {
  position: absolute;
  inset: 0;
  padding: 22px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.45;
  white-space: pre-wrap;
  color: rgba(233, 233, 255, 0.95);
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.65);
  transition: opacity 140ms ease, filter 160ms ease, transform 160ms ease;
  z-index: 2;
}

.ob-story-stage.ob-is-transitioning .ob-story-media,
.ob-story-stage.ob-is-transitioning .ob-story-text {
  opacity: 0.35;
}

.ob-story-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  z-index: 3;
}

.ob-story-spinner {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 3px solid rgba(233, 233, 255, 0.16);
  border-top-color: rgba(233, 233, 255, 0.74);
  animation: obSpin 900ms linear infinite;
}

@keyframes obSpin {
  to {
    transform: rotate(360deg);
  }
}

.ob-story-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34%;
  z-index: 4;
  cursor: pointer;
}

.ob-story-nav--prev {
  left: 0;
}

.ob-story-nav--next {
  right: 0;
}

.ob-story-premium {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  z-index: 5;
}

.ob-story-stage.ob-is-premium-locked .ob-story-media,
.ob-story-stage.ob-is-premium-locked .ob-story-text {
  filter: blur(16px) saturate(0.95) brightness(0.8);
  transform: scale(1.04);
}

.ob-story-premium-overlay {
  width: min(330px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.12);
  background: rgba(12, 12, 22, 0.86);
  padding: 18px 16px;
  text-align: center;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.78),
    0 0 0 1px rgba(255, 43, 214, 0.10),
    0 0 0 1px rgba(28, 200, 255, 0.08);
  position: relative;
}

.ob-story-premium-overlay::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(255, 43, 214, 0.30), rgba(28, 200, 255, 0.18));
  filter: blur(16px);
  opacity: 0.55;
  z-index: -1;
}

.ob-story-premium-lock {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  border: 1px solid rgba(255, 43, 214, 0.22);
  background: rgba(255, 43, 214, 0.08);
  color: rgba(255, 43, 214, 0.92);
}

.ob-story-premium-title {
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.ob-story-premium-subtitle {
  color: rgba(233, 233, 255, 0.72);
  font-size: 13px;
  margin-bottom: 12px;
}

.ob-story-premium-btn {
  width: 100%;
}

.ob-story-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px calc(env(safe-area-inset-bottom, 0px) + 10px);
  border-top: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(6, 6, 17, 0.82);
  backdrop-filter: blur(12px);
}

.ob-story-like {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 43, 214, 0.18);
  background: rgba(255, 43, 214, 0.06);
  color: rgba(255, 43, 214, 0.92);
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease, border-color 120ms ease, background 120ms ease;
}

.ob-story-like:hover {
  border-color: rgba(255, 43, 214, 0.30);
  background: rgba(255, 43, 214, 0.10);
  filter: brightness(1.05);
}

.ob-story-like:active {
  transform: translateY(1px);
}

.ob-story-like.ob-is-liked {
  border-color: rgba(255, 43, 214, 0.35);
  background: rgba(255, 43, 214, 0.14);
}

.ob-story-like-count {
  font-size: 12px;
  font-weight: 900;
  color: rgba(233, 233, 255, 0.86);
}

.ob-story-reactions {
  display: inline-flex;
  gap: 6px;
}

.ob-story-reaction {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.04);
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease, border-color 120ms ease;
}

.ob-story-reaction:hover {
  border-color: rgba(233, 233, 255, 0.16);
  filter: brightness(1.05);
}

.ob-story-reaction:active {
  transform: translateY(1px);
}

.ob-story-reaction.ob-is-active {
  border-color: rgba(28, 200, 255, 0.28);
  box-shadow: 0 0 0 3px rgba(28, 200, 255, 0.10);
}

.ob-story-reply {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.03);
  padding: 6px 8px;
  min-width: 0;
}

.ob-story-reply-input {
  flex: 1;
  border: none;
  background: transparent;
  color: rgba(233, 233, 255, 0.90);
  padding: 0 6px;
  min-width: 0;
  font-size: 13px;
  outline: none;
}

.ob-story-send {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  border: 1px solid rgba(28, 200, 255, 0.18);
  background: rgba(28, 200, 255, 0.06);
  color: rgba(28, 200, 255, 0.92);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 120ms ease, filter 120ms ease, border-color 120ms ease;
}

.ob-story-send:hover {
  border-color: rgba(28, 200, 255, 0.28);
  filter: brightness(1.05);
}

.ob-story-send:active {
  transform: translateY(1px);
}

.ob-story-create {
  max-width: 560px;
  max-height: min(92vh, 860px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ob-story-create-form {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ob-story-create-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  display: grid;
  gap: 14px;
  padding-right: 2px;
}

.ob-story-create-footer {
  padding-top: 12px;
  border-top: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(12, 12, 22, 0.96);
}

.ob-story-create-preview {
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.03);
  padding: 12px;
}

.ob-story-create-preview-stage {
  width: min(320px, 100%);
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  max-height: 48vh;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(600px circle at 25% 0%, rgba(255, 43, 214, 0.20), transparent 52%),
    radial-gradient(600px circle at 80% 100%, rgba(28, 200, 255, 0.16), transparent 55%),
    rgba(6, 6, 17, 0.70);
  position: relative;
  display: grid;
  place-items: center;
}

.ob-story-create-submit {
  width: 100%;
}

.ob-story-create-preview-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ob-story-create-preview-text {
  position: relative;
  z-index: 1;
  padding: 18px 14px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: rgba(233, 233, 255, 0.95);
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.65);
  white-space: pre-wrap;
}

.ob-story-visibility {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ob-story-radio {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.03);
  padding: 10px 12px;
  font-weight: 800;
  color: rgba(233, 233, 255, 0.86);
  cursor: pointer;
}

.ob-story-radio input {
  width: 16px;
  height: 16px;
  accent-color: rgba(255, 43, 214, 0.90);
}

.ob-story-radio--premium {
  border-color: rgba(255, 43, 214, 0.20);
  background: rgba(255, 43, 214, 0.06);
}

.ob-story-radio--highlight {
  border-color: rgba(28, 200, 255, 0.22);
  background: rgba(28, 200, 255, 0.06);
}

.ob-story-insights {
  max-width: 520px;
}

.ob-story-insights-section {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.03);
  padding: 14px 14px;
}

.ob-story-insights-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(233, 233, 255, 0.92);
}

.ob-story-insights-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(6, 6, 17, 0.58);
  color: rgba(233, 233, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.ob-story-insights-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  max-height: min(48vh, 360px);
  overflow: auto;
  padding-right: 6px;
}

.ob-story-insights-empty {
  padding: 10px 6px;
  color: rgba(233, 233, 255, 0.70);
  font-size: 13px;
  text-align: center;
}

.ob-story-insights-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.ob-story-insights-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(233, 233, 255, 0.12);
  background: rgba(233, 233, 255, 0.04);
  display: grid;
  place-items: center;
}

.ob-story-insights-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.ob-story-insights-meta {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.ob-story-insights-name {
  font-weight: 900;
  font-size: 13px;
  color: rgba(233, 233, 255, 0.92);
  text-decoration: none;
  width: fit-content;
}

.ob-story-insights-username {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.62);
}

.ob-image-backdrop {
  padding: 0;
  background: rgba(0, 0, 0, 0.86);
}

.ob-image-viewer {
  width: 100%;
  max-width: 980px;
  height: 100%;
  max-height: 100%;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background: rgba(6, 6, 17, 0.96);
  border-color: rgba(233, 233, 255, 0.10);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.78);
  display: grid;
  grid-template-rows: auto 1fr;
}

.ob-image-viewer::before {
  display: none;
}

@media (min-width: 520px) {
  .ob-image-backdrop {
    padding: 24px 14px;
  }

  .ob-image-viewer {
    height: min(86vh, 900px);
    border-radius: 22px;
  }
}

.ob-image-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 12px 8px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent);
}

.ob-image-close {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.04);
  color: rgba(233, 233, 255, 0.86);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 120ms ease, filter 120ms ease, border-color 120ms ease;
}

.ob-image-close:hover {
  border-color: rgba(233, 233, 255, 0.16);
  filter: brightness(1.05);
}

.ob-image-close:active {
  transform: translateY(1px);
}

.ob-image-stage {
  position: relative;
  overflow: hidden;
  min-height: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(860px circle at 20% 0%, rgba(255, 43, 214, 0.22), transparent 45%),
    radial-gradient(900px circle at 80% 100%, rgba(28, 200, 255, 0.18), transparent 52%),
    rgba(6, 6, 17, 0.78);
  touch-action: none;
}

.ob-image-stage::before {
  content: "";
  position: absolute;
  inset: -50px;
  background: var(--ob-image-bg, none) center / cover no-repeat;
  filter: blur(26px) saturate(1.06) brightness(0.82);
  transform: scale(1.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  z-index: 0;
}

.ob-image-stage.ob-has-bg::before {
  opacity: 0.55;
}

.ob-image-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.30);
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
}

.ob-post-detail-backdrop {
  padding: 0;
  background: rgba(0, 0, 0, 0.86);
}

.ob-post-detail {
  width: 100%;
  max-width: 1100px;
  height: 100%;
  max-height: 100%;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background: rgba(6, 6, 17, 0.96);
  border-color: rgba(233, 233, 255, 0.10);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.78);
  display: grid;
  grid-template-rows: 1fr;
}

.ob-post-detail::before {
  display: none;
}

@media (min-width: 520px) {
  .ob-post-detail-backdrop {
    padding: 24px 14px;
  }

  .ob-post-detail {
    height: min(86vh, 940px);
    border-radius: 22px;
  }
}

.ob-post-detail-grid {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
}

@media (min-width: 900px) {
  .ob-post-detail-grid {
    grid-template-rows: 1fr;
    grid-template-columns: minmax(0, 1fr) 380px;
  }
}

.ob-post-detail-media {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(860px circle at 20% 0%, rgba(255, 43, 214, 0.22), transparent 45%),
    radial-gradient(900px circle at 80% 100%, rgba(28, 200, 255, 0.18), transparent 52%),
    rgba(6, 6, 17, 0.78);
}

.ob-post-detail-media::before {
  content: "";
  position: absolute;
  inset: -50px;
  background: var(--ob-post-bg, none) center / cover no-repeat;
  filter: blur(28px) saturate(1.06) brightness(0.82);
  transform: scale(1.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  z-index: 0;
}

.ob-post-detail-media.ob-has-bg::before {
  opacity: 0.55;
}

.ob-post-detail-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  z-index: 4;
}

.ob-post-detail-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.30);
  z-index: 1;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
}

.ob-post-detail-text {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 22px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.45;
  white-space: pre-wrap;
  color: rgba(233, 233, 255, 0.95);
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.65);
}

.ob-post-detail-lock {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  z-index: 5;
}

.ob-post-detail-media.ob-is-locked .ob-post-detail-img,
.ob-post-detail-media.ob-is-locked .ob-post-detail-text {
  filter: blur(16px) saturate(0.95) brightness(0.8);
  transform: scale(1.03);
}

.ob-post-detail-lock-overlay {
  width: min(340px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.12);
  background: rgba(12, 12, 22, 0.86);
  padding: 18px 16px;
  text-align: center;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.78),
    0 0 0 1px rgba(255, 43, 214, 0.10),
    0 0 0 1px rgba(28, 200, 255, 0.08);
  position: relative;
}

.ob-post-detail-lock-overlay::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(255, 43, 214, 0.30), rgba(28, 200, 255, 0.18));
  filter: blur(16px);
  opacity: 0.55;
  z-index: -1;
}

.ob-post-detail-lock-title {
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.ob-post-detail-lock-subtitle {
  color: rgba(233, 233, 255, 0.72);
  font-size: 13px;
  margin-bottom: 12px;
}

.ob-post-detail-side {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  border-top: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(6, 6, 17, 0.82);
  min-height: 0;
}

@media (min-width: 900px) {
  .ob-post-detail-side {
    border-top: none;
    border-left: 1px solid rgba(233, 233, 255, 0.08);
  }
}

.ob-post-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px 10px;
}

.ob-post-detail-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: rgba(233, 233, 255, 0.92);
}

.ob-post-detail-author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  padding: 2px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 43, 214, 0.80), rgba(28, 200, 255, 0.70));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  flex: 0 0 auto;
}

.ob-post-detail-author-img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(6, 6, 17, 0.92);
  background: rgba(0, 0, 0, 0.25);
}

.ob-post-detail-author-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ob-post-detail-author-username {
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-post-detail-author-name {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-post-detail-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 10;
}

.ob-post-detail-menu-btn,
.ob-post-detail-close {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.04);
  color: rgba(233, 233, 255, 0.86);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 120ms ease, filter 120ms ease, border-color 120ms ease;
}

.ob-post-detail-menu-btn:hover,
.ob-post-detail-close:hover {
  border-color: rgba(233, 233, 255, 0.16);
  filter: brightness(1.05);
}

.ob-post-detail-menu-btn:active,
.ob-post-detail-close:active {
  transform: translateY(1px);
}

.ob-post-detail-menu {
  position: absolute;
  top: 44px;
  right: 0;
  width: 220px;
  border-radius: 16px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(12, 12, 22, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  z-index: 6;
}

.ob-post-detail-menu-item {
  width: 100%;
  border: none;
  background: transparent;
  color: rgba(233, 233, 255, 0.92);
  text-align: left;
  padding: 12px 12px;
  font-weight: 900;
  cursor: pointer;
}

.ob-post-detail-menu-item:hover {
  background: rgba(233, 233, 255, 0.05);
}

.ob-post-detail-menu-item--danger {
  color: rgba(255, 77, 109, 0.95);
}

.ob-post-detail-caption {
  padding: 0 12px 12px;
  border-bottom: 1px solid rgba(233, 233, 255, 0.08);
  color: rgba(233, 233, 255, 0.92);
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.ob-post-detail-edit {
  padding: 0 12px 12px;
  border-bottom: 1px solid rgba(233, 233, 255, 0.08);
  display: grid;
  gap: 10px;
}

.ob-post-detail-edit-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.ob-post-detail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
}

.ob-post-detail-like {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 43, 214, 0.18);
  background: rgba(255, 43, 214, 0.06);
  color: rgba(255, 43, 214, 0.92);
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease, border-color 120ms ease, background 120ms ease;
}

.ob-post-detail-like:hover {
  border-color: rgba(255, 43, 214, 0.30);
  background: rgba(255, 43, 214, 0.10);
  filter: brightness(1.05);
}

.ob-post-detail-like:active {
  transform: translateY(1px);
}

.ob-post-detail-like.ob-is-liked {
  border-color: rgba(255, 43, 214, 0.35);
  background: rgba(255, 43, 214, 0.14);
}

.ob-post-detail-like-count {
  font-size: 12px;
  font-weight: 900;
  color: rgba(233, 233, 255, 0.86);
}

.ob-post-detail-visibility {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(233, 233, 255, 0.65);
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.03);
  padding: 6px 10px;
  border-radius: 999px;
}

.ob-post-detail-comments {
  padding: 10px 12px;
  overflow: auto;
  min-height: 0;
  display: grid;
  gap: 10px;
}

.ob-post-detail-comments-empty {
  padding: 12px 8px;
  color: rgba(233, 233, 255, 0.72);
  font-size: 13px;
  text-align: center;
}

.ob-post-detail-comment {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.ob-post-detail-comment-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(233, 233, 255, 0.12);
  background: rgba(233, 233, 255, 0.04);
}

.ob-post-detail-comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.ob-post-detail-comment-body {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.ob-post-detail-comment-user {
  font-weight: 900;
  font-size: 13px;
  color: rgba(233, 233, 255, 0.92);
  text-decoration: none;
  width: fit-content;
}

.ob-post-detail-comment-text {
  color: rgba(233, 233, 255, 0.90);
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

.ob-post-detail-comment-time {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.62);
}

.ob-post-detail-comment-form {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(6, 6, 17, 0.88);
  padding: 10px 12px calc(env(safe-area-inset-bottom, 0px) + 10px);
}

.ob-post-detail-comment-input {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
}

.ob-post-detail-comment-send {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(28, 200, 255, 0.18);
  background: rgba(28, 200, 255, 0.06);
  color: rgba(28, 200, 255, 0.92);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 120ms ease, filter 120ms ease, border-color 120ms ease;
}

.ob-post-detail-comment-send:hover {
  border-color: rgba(28, 200, 255, 0.28);
  filter: brightness(1.05);
}

.ob-post-detail-comment-send:active {
  transform: translateY(1px);
}

/* Admin */

.ob-admin-body {
  background: var(--ob-bg);
}

.ob-admin-shell {
  min-height: 100vh;
  padding-top: calc(var(--ob-header-height) + env(safe-area-inset-top, 0px));
}

.ob-admin-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(6, 6, 17, 0.78);
  border-bottom: 1px solid rgba(233, 233, 255, 0.06);
  backdrop-filter: blur(10px);
  padding-top: env(safe-area-inset-top, 0px);
}

.ob-admin-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  max-width: 1100px;
  margin: 0 auto;
  min-height: var(--ob-header-height);
}

.ob-admin-topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.ob-admin-user {
  display: none;
  text-align: right;
}

.ob-admin-user-name {
  font-weight: 900;
  font-size: 13px;
  color: rgba(233, 233, 255, 0.92);
}

.ob-admin-user-username {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.62);
}

.ob-admin-topbar-link {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
}

.ob-admin-layout {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 14px 26px;
  display: grid;
  gap: 12px;
}

.ob-admin-nav {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding: 10px 10px;
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(12, 12, 22, 0.70);
  backdrop-filter: blur(10px);
}

.ob-admin-nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(233, 233, 255, 0.78);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(233, 233, 255, 0.03);
  white-space: nowrap;
  transition: filter 120ms ease, transform 120ms ease, border-color 120ms ease;
}

.ob-admin-nav-item:hover {
  filter: brightness(1.05);
  border-color: rgba(233, 233, 255, 0.14);
}

.ob-admin-nav-item:active {
  transform: translateY(1px);
}

.ob-admin-nav-item.ob-is-active {
  color: rgba(233, 233, 255, 0.92);
  border-color: rgba(255, 43, 214, 0.22);
  background: linear-gradient(120deg, rgba(255, 43, 214, 0.12), rgba(28, 200, 255, 0.08));
}

.ob-admin-main {
  min-width: 0;
}

.ob-admin-page {
  display: grid;
  gap: 14px;
}

.ob-admin-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.ob-admin-title {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.ob-admin-subtitle {
  margin: 8px 0 0;
  color: rgba(233, 233, 255, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

.ob-admin-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ob-admin-card {
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(12, 12, 22, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  padding: 14px 14px;
  position: relative;
  overflow: hidden;
}

.ob-admin-card--accent::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, rgba(255, 43, 214, 0.26), rgba(28, 200, 255, 0.18));
  filter: blur(20px);
  opacity: 0.48;
  z-index: 0;
}

.ob-admin-card > * {
  position: relative;
  z-index: 1;
}

.ob-admin-card-label {
  color: rgba(233, 233, 255, 0.68);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ob-admin-card-value {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(233, 233, 255, 0.94);
}

.ob-admin-card-value--sm {
  font-size: 18px;
}

.ob-admin-card-meta {
  margin-top: 8px;
  color: rgba(233, 233, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.ob-admin-section {
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(12, 12, 22, 0.78);
  padding: 14px 14px;
}

.ob-admin-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.ob-admin-section-title {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ob-admin-section-note {
  color: rgba(233, 233, 255, 0.60);
  font-size: 12px;
}

.ob-admin-bars {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.ob-admin-flash {
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(12, 12, 22, 0.80);
  padding: 12px 14px;
  margin-bottom: 12px;
}

.ob-admin-flash--success {
  border-color: rgba(28, 200, 255, 0.18);
  background: rgba(28, 200, 255, 0.06);
  color: rgba(233, 233, 255, 0.92);
}

.ob-admin-flash--error {
  border-color: rgba(255, 77, 109, 0.22);
  background: rgba(255, 77, 109, 0.08);
  color: rgba(233, 233, 255, 0.92);
}

.ob-admin-flash-title {
  font-weight: 900;
  margin-bottom: 6px;
}

.ob-admin-flash-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(233, 233, 255, 0.86);
  font-size: 13px;
  line-height: 1.5;
}

.ob-admin-help {
  margin-top: 8px;
  color: rgba(233, 233, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.ob-admin-filters {
  display: grid;
  gap: 12px;
}

.ob-admin-filters-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ob-admin-filters-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ob-admin-table-wrap {
  width: 100%;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(6, 6, 17, 0.40);
}

.ob-admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.ob-admin-table th,
.ob-admin-table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(233, 233, 255, 0.06);
  text-align: left;
  vertical-align: middle;
}

.ob-admin-table th {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(233, 233, 255, 0.62);
  background: rgba(12, 12, 22, 0.62);
  position: sticky;
  top: 0;
  z-index: 1;
}

.ob-admin-table tr:hover td {
  background: rgba(233, 233, 255, 0.02);
}

.ob-admin-mono {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  white-space: nowrap;
}

.ob-admin-usercell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ob-admin-usercell-name {
  font-weight: 900;
  color: rgba(233, 233, 255, 0.92);
}

.ob-admin-usercell-sub {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.62);
}

.ob-admin-actions {
  text-align: right;
  white-space: nowrap;
}

.ob-admin-action {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
}

.ob-admin-row-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.ob-admin-empty {
  padding: 22px 12px;
  text-align: center;
  color: rgba(233, 233, 255, 0.68);
}

.ob-admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.03);
  color: rgba(233, 233, 255, 0.78);
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}

.ob-admin-badge--admin {
  border-color: rgba(28, 200, 255, 0.20);
  background: rgba(28, 200, 255, 0.08);
  color: rgba(28, 200, 255, 0.96);
}

.ob-admin-badge--creator {
  border-color: rgba(255, 43, 214, 0.20);
  background: rgba(255, 43, 214, 0.08);
  color: rgba(255, 43, 214, 0.96);
}

.ob-admin-badge--ok {
  border-color: rgba(28, 200, 255, 0.18);
  background: rgba(28, 200, 255, 0.06);
  color: rgba(233, 233, 255, 0.92);
}

.ob-admin-badge--warn {
  border-color: rgba(255, 189, 46, 0.25);
  background: rgba(255, 189, 46, 0.10);
  color: rgba(255, 225, 150, 0.96);
}

.ob-admin-badge--danger {
  border-color: rgba(255, 77, 109, 0.25);
  background: rgba(255, 77, 109, 0.10);
  color: rgba(255, 77, 109, 0.96);
}

.ob-admin-pagination {
  margin-top: 12px;
}

.ob-admin-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ob-admin-pager-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.03);
  color: rgba(233, 233, 255, 0.86);
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  transition: transform 120ms ease, filter 120ms ease, border-color 120ms ease;
}

.ob-admin-pager-btn:hover {
  filter: brightness(1.05);
  border-color: rgba(233, 233, 255, 0.14);
}

.ob-admin-pager-btn:active {
  transform: translateY(1px);
}

.ob-admin-pager-btn.ob-is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.ob-admin-pager-meta {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.62);
}

.ob-admin-form {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.ob-admin-form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ob-admin-actions-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.ob-admin-inline {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: end;
}

.ob-admin-inline-input {
  text-align: center;
}

.ob-admin-toggles {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-top: 8px;
}

.ob-admin-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.03);
  font-weight: 900;
  color: rgba(233, 233, 255, 0.86);
}

.ob-admin-toggle input {
  width: 16px;
  height: 16px;
  accent-color: rgba(255, 43, 214, 0.90);
}

.ob-admin-bar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: rgba(233, 233, 255, 0.72);
  margin-bottom: 6px;
}

.ob-admin-bar-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(233, 233, 255, 0.04);
  overflow: hidden;
}

.ob-admin-bar-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 43, 214, 0.85), rgba(28, 200, 255, 0.85));
  box-shadow: 0 0 22px rgba(255, 43, 214, 0.22);
}

@media (min-width: 860px) {
  .ob-admin-user {
    display: block;
  }

  .ob-admin-layout {
    grid-template-columns: 250px 1fr;
    align-items: start;
  }

  .ob-admin-nav {
    position: sticky;
    top: calc(var(--ob-header-height) + 14px);
    flex-direction: column;
    gap: 10px;
    padding: 14px 12px;
  }

  .ob-admin-nav-item {
    justify-content: flex-start;
    width: 100%;
    border-radius: 14px;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 13px;
  }

  .ob-admin-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ob-admin-filters-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ob-admin-form-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ob-admin-actions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
  }

  .ob-admin-toggles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ob-profile {
  gap: 14px;
}

.ob-profile-hero,
.ob-profile-stats,
.ob-profile-tabs,
.ob-profile-stories {
  border-radius: 16px;
  border: 1px solid rgba(233, 233, 255, 0.07);
  background: rgba(12, 12, 22, 0.58);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

.ob-profile-stories {
  padding: 10px 10px;
}

.ob-profile-section-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(233, 233, 255, 0.78);
  margin: 2px 4px 10px;
}

.ob-profile-hero {
  padding: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.ob-profile-avatar {
  position: relative;
  width: 84px;
  height: 84px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.ob-profile-avatar-ring {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  padding: 2px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 43, 214, 0.80), rgba(28, 200, 255, 0.68));
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(233, 233, 255, 0.06);
  overflow: hidden;
}

.ob-profile-avatar-img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(6, 6, 17, 0.92);
}

.ob-profile-avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(220px circle at 30% 0%, rgba(255, 43, 214, 0.14), rgba(28, 200, 255, 0.10));
  border: 2px solid rgba(6, 6, 17, 0.92);
  color: rgba(233, 233, 255, 0.94);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.02em;
}

.ob-profile-avatar-edit {
  position: absolute;
  right: -6px;
  bottom: -6px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(233, 233, 255, 0.12);
  background: rgba(6, 6, 17, 0.92);
  color: rgba(233, 233, 255, 0.90);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ob-profile-identity {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.ob-profile-name {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ob-profile-username {
  color: rgba(233, 233, 255, 0.72);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ob-profile-location {
  color: rgba(233, 233, 255, 0.66);
  font-size: 13px;
}

.ob-profile-bio {
  color: rgba(233, 233, 255, 0.88);
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.ob-profile-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.ob-profile-action {
  width: 100%;
  border-radius: 14px;
  padding: 10px 10px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.03);
  color: rgba(233, 233, 255, 0.92);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease, border-color 120ms ease, background 120ms ease;
}

.ob-profile-action:hover {
  border-color: rgba(28, 200, 255, 0.22);
  background: rgba(28, 200, 255, 0.06);
  filter: brightness(1.05);
}

.ob-profile-action:active {
  transform: translateY(1px);
}

.ob-profile-action--primary {
  border-color: rgba(255, 43, 214, 0.28);
  background: linear-gradient(135deg, rgba(255, 43, 214, 0.95), rgba(28, 200, 255, 0.88));
  color: rgba(6, 6, 17, 0.92);
  box-shadow:
    0 14px 42px rgba(255, 43, 214, 0.14),
    0 14px 42px rgba(28, 200, 255, 0.10);
}

.ob-profile-stats {
  padding: 10px 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ob-profile-stat {
  border-radius: 14px;
  border: 1px solid rgba(233, 233, 255, 0.07);
  background: rgba(233, 233, 255, 0.02);
  padding: 10px 8px;
  text-align: center;
}

.ob-profile-stat-value {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: rgba(233, 233, 255, 0.96);
}

.ob-profile-stat-label {
  margin-top: 4px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(233, 233, 255, 0.62);
}

.ob-profile-tabs {
  position: relative;
  padding: 4px;
  display: flex;
  gap: 4px;
}

.ob-profile-tab {
  flex: 1;
  height: 40px;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: rgba(233, 233, 255, 0.70);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 120ms ease, transform 120ms ease;
}

.ob-profile-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 18px;
  padding: 0 6px;
  margin-left: 6px;
  border-radius: 999px;
  border: 1px solid rgba(233, 233, 255, 0.14);
  background: rgba(233, 233, 255, 0.05);
  color: rgba(233, 233, 255, 0.74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.ob-profile-tab.ob-is-active .ob-profile-tab-count {
  border-color: rgba(28, 200, 255, 0.22);
  background: rgba(28, 200, 255, 0.10);
  color: rgba(233, 233, 255, 0.92);
}

.ob-profile-tab:active {
  transform: translateY(1px);
}

.ob-profile-tab.ob-is-active {
  color: rgba(233, 233, 255, 0.96);
}

.ob-profile-tabs-indicator {
  position: absolute;
  bottom: 6px;
  left: 6px;
  height: 2px;
  width: 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 43, 214, 0.95), rgba(28, 200, 255, 0.90));
  box-shadow:
    0 0 0 3px rgba(255, 43, 214, 0.12),
    0 0 0 3px rgba(28, 200, 255, 0.10);
  transform: translateX(0);
  transition: transform 180ms ease, width 180ms ease;
}

.ob-profile-panels {
  display: grid;
  gap: 12px;
}

.ob-profile-panel {
  animation: obFadeIn 140ms ease both;
}

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

.ob-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ob-profile-tile {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(12, 12, 22, 0.58);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 120ms ease, border-color 120ms ease, filter 120ms ease;
}

.ob-profile-tile:hover {
  border-color: rgba(28, 200, 255, 0.18);
  filter: brightness(1.04);
}

.ob-profile-tile:active {
  transform: translateY(1px);
}

.ob-profile-tile-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.25);
}

.ob-profile-tile.ob-is-locked .ob-profile-tile-img,
.ob-profile-tile.ob-is-locked .ob-profile-tile-text {
  filter: blur(14px) saturate(0.95) brightness(0.82);
  transform: scale(1.04);
}

.ob-profile-tile-lock {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(6, 6, 17, 0.92);
  border: 1px solid rgba(233, 233, 255, 0.16);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
  color: rgba(233, 233, 255, 0.90);
}

.ob-profile-tile-text {
  width: 100%;
  height: 100%;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(800px circle at 30% 0%, rgba(255, 43, 214, 0.14), transparent 45%),
    radial-gradient(900px circle at 80% 100%, rgba(28, 200, 255, 0.12), transparent 50%),
    rgba(6, 6, 17, 0.55);
}

.ob-profile-tile-text-inner {
  font-weight: 900;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(233, 233, 255, 0.92);
  word-break: break-word;
}

.ob-profile-empty {
  padding: 10px 6px;
  color: rgba(233, 233, 255, 0.72);
  font-size: 13px;
}

.ob-profile-premium-cta {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.ob-profile-premium-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(12, 12, 22, 0.58);
  overflow: hidden;
  min-height: 220px;
}

.ob-profile-premium-blur {
  position: absolute;
  inset: -30px;
  background:
    radial-gradient(800px circle at 25% 0%, rgba(255, 43, 214, 0.18), transparent 45%),
    radial-gradient(900px circle at 80% 100%, rgba(28, 200, 255, 0.14), transparent 50%),
    rgba(6, 6, 17, 0.55);
  filter: blur(14px);
  opacity: 0.9;
}

.ob-profile-premium-overlay {
  position: relative;
  z-index: 1;
  padding: 18px 14px;
  height: 100%;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
}

.ob-profile-premium-lock {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(233, 233, 255, 0.14);
  background: rgba(6, 6, 17, 0.55);
  display: grid;
  place-items: center;
  color: rgba(233, 233, 255, 0.92);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.55),
    0 0 0 4px rgba(255, 43, 214, 0.08);
}

.ob-profile-premium-title {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.ob-profile-premium-subtitle {
  color: rgba(233, 233, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
  max-width: 44ch;
  margin: 0 auto;
}

.ob-profile-about {
  display: grid;
  gap: 10px;
}

.ob-profile-about-card {
  border-radius: 16px;
  border: 1px solid rgba(233, 233, 255, 0.07);
  background: rgba(12, 12, 22, 0.58);
  padding: 12px 12px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

.ob-profile-about-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(233, 233, 255, 0.72);
  margin-bottom: 8px;
}

.ob-profile-about-text {
  color: rgba(233, 233, 255, 0.90);
  line-height: 1.55;
  font-size: 13px;
  white-space: pre-wrap;
  word-break: break-word;
}

.ob-profile-avatar-modal {
  max-width: 520px;
}

.ob-profile-avatar-modal-media {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 6px 0 14px;
}

.ob-profile-avatar-modal-img {
  width: min(280px, 72vw);
  height: min(280px, 72vw);
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(233, 233, 255, 0.10);
  background: rgba(0, 0, 0, 0.25);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.72),
    0 0 0 4px rgba(255, 43, 214, 0.08),
    0 0 0 4px rgba(28, 200, 255, 0.06);
}

.ob-profile-avatar-modal-fallback {
  width: min(280px, 72vw);
  height: min(280px, 72vw);
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(233, 233, 255, 0.10);
  background:
    radial-gradient(800px circle at 30% 0%, rgba(255, 43, 214, 0.18), transparent 45%),
    radial-gradient(900px circle at 80% 100%, rgba(28, 200, 255, 0.14), transparent 50%),
    rgba(6, 6, 17, 0.55);
  color: rgba(233, 233, 255, 0.94);
  font-weight: 900;
  font-size: 74px;
  letter-spacing: 0.02em;
}

.ob-post-backdrop {
  padding: 0;
  background: rgba(0, 0, 0, 0.86);
}

.ob-post-viewer {
  width: 100%;
  max-width: 980px;
  height: 100%;
  max-height: 100%;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background: rgba(6, 6, 17, 0.96);
  border-color: rgba(233, 233, 255, 0.10);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.78);
  display: grid;
  grid-template-rows: auto 1fr;
}

.ob-post-viewer::before {
  display: none;
}

@media (min-width: 520px) {
  .ob-post-backdrop {
    padding: 24px 14px;
  }

  .ob-post-viewer {
    height: min(86vh, 900px);
    border-radius: 22px;
  }
}

.ob-post-viewer-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 12px 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent);
  border-bottom: 1px solid rgba(233, 233, 255, 0.08);
}

.ob-post-viewer-meta {
  display: grid;
  gap: 2px;
}

.ob-post-viewer-name {
  font-weight: 900;
  font-size: 14px;
}

.ob-post-viewer-username {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.72);
}

.ob-post-viewer-body {
  border-radius: 0;
  border: none;
  background: rgba(6, 6, 17, 0.55);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 0;
  align-items: stretch;
  justify-items: stretch;
}

.ob-post-viewer-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.30);
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
}

.ob-post-viewer-text {
  width: 100%;
  padding: 12px 12px 14px;
  border-top: 1px solid rgba(233, 233, 255, 0.08);
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(233, 233, 255, 0.92);
  overflow: auto;
  max-height: 180px;
}

.ob-profile-actions .ob-follow-btn--profile {
  width: 100%;
}

@media (max-width: 360px) {
  .ob-profile-actions {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .ob-layout {
    max-width: 1100px;
    padding: 18px 20px;
  }

  .ob-with-bottom-nav .ob-layout {
    padding-bottom: 18px;
  }

  .ob-shell {
    padding-left: var(--ob-nav-width);
  }

  .ob-headerbar {
    padding-left: var(--ob-nav-width);
  }

  .ob-header-inner {
    max-width: 1100px;
    padding: 10px 20px;
  }

  .ob-nav {
    top: calc(var(--ob-header-height) + var(--ob-notice-height) + env(safe-area-inset-top, 0px));
    bottom: 0;
    left: 0;
    right: auto;
    width: var(--ob-nav-width);
    height: auto;
    padding-bottom: 10px;
    border-top: none;
    border-right: 1px solid rgba(233, 233, 255, 0.08);
    background: rgba(6, 6, 17, 0.78);
  }

  .ob-nav-inner {
    height: 100%;
    max-width: none;
    margin: 0;
    padding: 12px 10px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
  }

  .ob-nav-item {
    width: 100%;
    height: 60px;
    padding: 10px 10px;
    flex-direction: column;
    gap: 8px;
    border-radius: 16px;
  }

  .ob-nav-upload {
    height: 66px;
    transform: none;
  }

  .ob-nav-label {
    display: block;
    font-size: 11px;
    color: rgba(233, 233, 255, 0.72);
    letter-spacing: 0.08em;
    font-weight: 900;
    text-transform: uppercase;
  }

  .ob-profile-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ob-home {
  min-height: 100vh;
  padding-top: calc(var(--ob-header-height) + var(--ob-notice-height) + env(safe-area-inset-top, 0px));
  padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}

.ob-home-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: calc(var(--ob-header-height) + var(--ob-notice-height) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(6, 6, 17, 0.78);
  border-bottom: 1px solid rgba(233, 233, 255, 0.06);
  backdrop-filter: blur(12px);
}

.ob-home-header-inner {
  height: var(--ob-header-height);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ob-home-brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 18px;
  text-decoration: none;
}

.ob-home-search {
  position: relative;
  flex: 1;
  min-width: 0;
}

.ob-home-search-input {
  width: 100%;
  border-radius: 999px;
  padding: 11px 14px;
  background: rgba(233, 233, 255, 0.04);
  border: 1px solid rgba(233, 233, 255, 0.10);
  color: var(--ob-text);
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease, transform 120ms ease;
}

.ob-home-search-input::placeholder {
  color: rgba(233, 233, 255, 0.45);
}

.ob-home-search-input:focus {
  border-color: rgba(28, 200, 255, 0.32);
  box-shadow: 0 0 0 3px rgba(28, 200, 255, 0.12);
}

.ob-home-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ob-home-icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.04);
  color: rgba(233, 233, 255, 0.92);
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease, border-color 120ms ease, background 120ms ease;
}

.ob-home-icon-btn:hover {
  border-color: rgba(28, 200, 255, 0.22);
  background: rgba(28, 200, 255, 0.08);
  filter: brightness(1.05);
}

.ob-home-icon-btn:active {
  transform: translateY(1px);
}

.ob-home-icon-btn--ghost {
  border-color: transparent;
  background: transparent;
  color: rgba(28, 200, 255, 0.92);
}

.ob-home-icon-btn--ghost:hover {
  border-color: rgba(28, 200, 255, 0.18);
  background: rgba(28, 200, 255, 0.06);
}

.ob-home-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 14px;
}

.ob-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.ob-home-primary {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.ob-home-aside {
  min-width: 0;
}

.ob-home-stories,
.ob-home-suggestions {
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(12, 12, 22, 0.58);
  padding: 12px 12px;
}

.ob-home-feed {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.ob-home-block {
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(12, 12, 22, 0.62);
  padding: 14px 14px;
}

.ob-home-block--stories {
  padding: 12px 12px;
  background: rgba(12, 12, 22, 0.52);
}

.ob-home-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.ob-home-block-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  color: rgba(233, 233, 255, 0.86);
  text-transform: uppercase;
}

.ob-home-stories-track {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.ob-home-stories-track::-webkit-scrollbar {
  height: 8px;
}

.ob-home-stories-track::-webkit-scrollbar-thumb {
  background: rgba(233, 233, 255, 0.10);
  border-radius: 999px;
}

.ob-home-story {
  flex: 0 0 auto;
  display: grid;
  gap: 7px;
  justify-items: center;
  width: 68px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(233, 233, 255, 0.92);
  scroll-snap-align: start;
  transition: transform 120ms ease, filter 120ms ease;
}

.ob-home-story:hover {
  filter: brightness(1.05);
}

.ob-home-story:active {
  transform: translateY(1px);
}

.ob-home-story:focus-visible {
  outline: 2px solid rgba(28, 200, 255, 0.38);
  outline-offset: 4px;
}

.ob-home-story-ring {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  padding: 2px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 43, 214, 0.82), rgba(28, 200, 255, 0.74));
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(233, 233, 255, 0.06);
  position: relative;
}

.ob-home-story.ob-is-seen .ob-home-story-ring {
  background: rgba(233, 233, 255, 0.06);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(233, 233, 255, 0.08);
}

.ob-home-story.ob-is-seen .ob-home-story-label {
  color: rgba(233, 233, 255, 0.58);
}

.ob-home-story-ring .ob-home-avatar {
  box-shadow: 0 0 0 2px rgba(6, 6, 17, 0.90);
}

.ob-home-story-ring--add {
  background: rgba(233, 233, 255, 0.06);
  border: 1px dashed rgba(233, 233, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(6, 6, 17, 0.55),
    0 12px 34px rgba(0, 0, 0, 0.40);
}

.ob-home-story-ring--creator {
  background: linear-gradient(135deg, rgba(255, 43, 214, 0.95), rgba(255, 43, 214, 0.52));
  box-shadow: 0 0 18px rgba(255, 43, 214, 0.22);
}

.ob-home-story-ring--user {
  background: linear-gradient(135deg, rgba(28, 200, 255, 0.95), rgba(28, 200, 255, 0.52));
  box-shadow: 0 0 18px rgba(28, 200, 255, 0.18);
}

.ob-home-story-label {
  font-size: 10.5px;
  color: rgba(233, 233, 255, 0.72);
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ob-home-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: radial-gradient(160px circle at 30% 0%, rgba(255, 43, 214, 0.24), rgba(28, 200, 255, 0.16));
  border: 1px solid rgba(233, 233, 255, 0.14);
  color: rgba(233, 233, 255, 0.92);
  font-weight: 900;
}

.ob-home-avatar--sm {
  width: 32px;
  height: 32px;
  font-size: 12px;
}

.ob-home-avatar--story {
  width: 44px;
  height: 44px;
  font-size: 14px;
}

.ob-home-avatar-img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(6, 6, 17, 0.90);
  background: rgba(0, 0, 0, 0.25);
}

.ob-home-avatar-img--story {
  width: 44px;
  height: 44px;
}

.ob-home-story-lock {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(6, 6, 17, 0.92);
  border: 1px solid rgba(233, 233, 255, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
  color: rgba(233, 233, 255, 0.86);
}

.ob-home-avatar--nav {
  width: 32px;
  height: 32px;
  font-size: 12px;
}

.ob-home-post {
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(12, 12, 22, 0.62);
  overflow: hidden;
}

.ob-home-post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 12px;
}

.ob-home-post-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.ob-home-post-user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: rgba(233, 233, 255, 0.92);
}

.ob-home-post-user-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ob-home-post-username {
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-home-post-subtitle {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.66);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-home-post-menu-wrap {
  position: relative;
  flex: 0 0 auto;
}

.ob-home-post-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  border-radius: 14px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(12, 12, 22, 0.98);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  z-index: 30;
}

.ob-home-post-menu-item {
  width: 100%;
  border: none;
  background: transparent;
  color: rgba(233, 233, 255, 0.92);
  text-align: left;
  padding: 12px 12px;
  font-weight: 900;
  cursor: pointer;
}

.ob-home-post-menu-item:hover {
  background: rgba(233, 233, 255, 0.05);
}

.ob-home-post-menu-item--danger {
  color: rgba(255, 77, 109, 0.95);
}

.ob-home-post-menu-form {
  margin: 0;
}

.ob-home-post-media {
  background: rgba(0, 0, 0, 0.25);
  position: relative;
}

.ob-home-post-media-btn {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  display: block;
  cursor: pointer;
}

.ob-home-post-media-btn:focus-visible {
  outline: 2px solid rgba(28, 200, 255, 0.38);
  outline-offset: 4px;
}

.ob-home-post-image {
  width: 100%;
  display: block;
  height: auto;
  background: rgba(0, 0, 0, 0.35);
}

.ob-home-post-media.ob-is-locked .ob-home-post-image,
.ob-home-post-media.ob-is-locked .ob-home-post-text-media {
  filter: blur(16px) saturate(0.95) brightness(0.8);
  transform: scale(1.03);
}

.ob-home-post-lock {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.ob-home-post-lock-inner {
  width: min(320px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.12);
  background: rgba(12, 12, 22, 0.86);
  padding: 18px 16px;
  text-align: center;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.78),
    0 0 0 1px rgba(255, 43, 214, 0.10),
    0 0 0 1px rgba(28, 200, 255, 0.08);
  position: relative;
}

.ob-home-post-lock-inner::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(255, 43, 214, 0.30), rgba(28, 200, 255, 0.18));
  filter: blur(16px);
  opacity: 0.55;
  z-index: -1;
}

.ob-home-post-lock-title {
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.ob-home-post-lock-subtitle {
  color: rgba(233, 233, 255, 0.72);
  font-size: 13px;
  margin-bottom: 12px;
}

.ob-home-post-lock-btn {
  width: 100%;
}

.ob-home-post-text-media {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  text-align: center;
  background:
    radial-gradient(800px circle at 30% 0%, rgba(255, 43, 214, 0.18), transparent 45%),
    radial-gradient(900px circle at 80% 100%, rgba(28, 200, 255, 0.14), transparent 50%),
    rgba(6, 6, 17, 0.55);
  border-top: 1px solid rgba(233, 233, 255, 0.06);
  border-bottom: 1px solid rgba(233, 233, 255, 0.06);
}

.ob-home-post-text-media-inner {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: rgba(233, 233, 255, 0.92);
  white-space: pre-wrap;
  word-break: break-word;
}

.ob-home-post-actions {
  display: flex;
  gap: 10px;
  padding: 10px 12px 0;
}

.ob-home-action-btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(233, 233, 255, 0.10);
  background: rgba(233, 233, 255, 0.03);
  color: rgba(233, 233, 255, 0.92);
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease, border-color 120ms ease, background 120ms ease, color 120ms ease;
}

.ob-home-action-btn:hover {
  border-color: rgba(255, 43, 214, 0.22);
  background: rgba(255, 43, 214, 0.08);
  color: rgba(255, 43, 214, 0.92);
  filter: brightness(1.05);
}

.ob-home-action-btn:active {
  transform: translateY(1px);
}

.ob-home-post-caption {
  padding: 8px 14px 14px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(233, 233, 255, 0.92);
}

.ob-home-post-caption-user {
  font-weight: 900;
  margin-right: 6px;
}

.ob-home-post-caption-text {
  word-break: break-word;
  white-space: pre-wrap;
}

.ob-home-comments {
  border-top: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(6, 6, 17, 0.55);
  padding: 12px 14px;
}

.ob-home-comments-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.ob-home-comments-title {
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: rgba(233, 233, 255, 0.78);
  text-transform: uppercase;
}

.ob-home-comments-empty {
  color: rgba(233, 233, 255, 0.72);
  font-size: 13px;
}

.ob-home-feed-list {
  display: grid;
  gap: 16px;
}

.ob-home-post-card {
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(12, 12, 22, 0.62);
  overflow: hidden;
}

.ob-home-post-head {
  padding: 14px 14px 0;
}

.ob-home-user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: rgba(233, 233, 255, 0.92);
}

.ob-home-user-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ob-home-user-name {
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-home-user-username {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.70);
}

.ob-home-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 43, 214, 0.22);
  background: rgba(255, 43, 214, 0.10);
  color: rgba(233, 233, 255, 0.92);
  margin-left: 8px;
}

.ob-home-post-text {
  padding: 12px 14px 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(233, 233, 255, 0.92);
  white-space: pre-wrap;
}

.ob-home-post-foot {
  padding: 12px 14px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ob-home-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(28, 200, 255, 0.16);
  background: rgba(28, 200, 255, 0.06);
  color: rgba(28, 200, 255, 0.92);
  padding: 8px 12px;
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease, border-color 120ms ease, background 120ms ease;
}

.ob-home-chip:hover {
  border-color: rgba(28, 200, 255, 0.28);
  background: rgba(28, 200, 255, 0.09);
  filter: brightness(1.05);
}

.ob-home-chip:active {
  transform: translateY(1px);
}

.ob-home-chip--like {
  border-color: rgba(255, 43, 214, 0.20);
  background: rgba(255, 43, 214, 0.06);
  color: rgba(255, 43, 214, 0.92);
}

.ob-home-chip--like:hover {
  border-color: rgba(255, 43, 214, 0.32);
  background: rgba(255, 43, 214, 0.10);
}

.ob-home-chip.ob-is-loading,
.ob-home-follow-btn.ob-is-loading,
.ob-home-nav-btn.ob-is-loading,
.ob-home-icon-btn.ob-is-loading,
.ob-home-action-btn.ob-is-loading {
  opacity: 0.65;
}

.ob-home-suggestions-list {
  display: grid;
  gap: 10px;
}

.ob-home-suggestions-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(233, 233, 255, 0.78);
  text-decoration: none;
}

.ob-home-suggestions-more:hover {
  color: rgba(233, 233, 255, 0.92);
}

.ob-home-suggestions-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  color: rgba(233, 233, 255, 0.86);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ob-home-suggestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ob-home-suggestion-user {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: rgba(233, 233, 255, 0.92);
}

.ob-home-suggestion-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ob-home-suggestion-username {
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-home-suggestion-name {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.70);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-home-follow-btn {
  border: 1px solid rgba(255, 43, 214, 0.26);
  background: rgba(255, 43, 214, 0.12);
  color: rgba(233, 233, 255, 0.92);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease, filter 120ms ease;
}

.ob-home-follow-btn--inline {
  padding: 6px 10px;
  font-size: 11px;
}

.ob-home-follow-btn:hover {
  border-color: rgba(255, 43, 214, 0.38);
  filter: brightness(1.05);
}

.ob-home-follow-btn:active {
  transform: translateY(1px);
}

.ob-home-follow-btn.ob-is-following {
  border-color: rgba(28, 200, 255, 0.26);
  background: rgba(28, 200, 255, 0.10);
}

.ob-home-empty {
  padding: 8px 6px;
  color: rgba(233, 233, 255, 0.70);
  font-size: 13px;
}

.ob-home-activity-section {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.ob-home-activity-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  color: rgba(233, 233, 255, 0.86);
  text-transform: uppercase;
}

.ob-home-activity-list {
  display: grid;
  gap: 10px;
}

.ob-home-activity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(233, 233, 255, 0.92);
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(233, 233, 255, 0.03);
  border-radius: 14px;
  padding: 10px 10px;
}

.ob-home-activity-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ob-home-activity-username {
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-home-activity-name {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.70);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ob-home-activity-empty {
  border-radius: 14px;
  border: 1px dashed rgba(233, 233, 255, 0.14);
  padding: 10px 10px;
  color: rgba(233, 233, 255, 0.72);
  font-size: 13px;
}

.ob-home-activity-note {
  margin-top: 12px;
  color: rgba(233, 233, 255, 0.70);
  font-size: 13px;
}

.ob-home-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  height: calc(76px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(6, 6, 17, 0.88);
  border-top: 1px solid rgba(233, 233, 255, 0.08);
  backdrop-filter: blur(12px);
}

.ob-home-nav-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 64px;
  height: 56px;
  padding: 0 12px;
  border-radius: 16px;
  border: 1px solid rgba(28, 200, 255, 0.14);
  background: rgba(28, 200, 255, 0.04);
  color: rgba(28, 200, 255, 0.92);
  text-decoration: none;
  cursor: pointer;
}

.ob-home-nav-btn.ob-is-active,
.ob-home-nav-btn[aria-current="page"] {
  border-color: rgba(28, 200, 255, 0.32);
  box-shadow: 0 0 0 3px rgba(28, 200, 255, 0.12);
}

.ob-home-nav-create {
  min-width: 76px;
  height: 62px;
  border-color: rgba(255, 43, 214, 0.36);
  background: radial-gradient(120px circle at 30% 0%, rgba(255, 43, 214, 0.95), rgba(255, 43, 214, 0.35));
  color: rgba(6, 6, 17, 0.92);
  box-shadow:
    0 16px 46px rgba(255, 43, 214, 0.20),
    0 0 0 4px rgba(255, 43, 214, 0.10);
  transform: translateY(-12px);
}

.ob-home-nav-create:active {
  transform: translateY(-10px);
}

.ob-home-nav-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 900;
  color: rgba(233, 233, 255, 0.74);
}

@media (min-width: 1024px) {
  .ob-home {
    padding-bottom: 22px;
  }

  .ob-home-grid {
    grid-template-columns: minmax(0, 640px) 320px;
    align-items: start;
  }

  .ob-home-aside {
    position: sticky;
    top: calc(var(--ob-header-height) + var(--ob-notice-height) + env(safe-area-inset-top, 0px) + 14px);
    height: fit-content;
  }

  .ob-home-bottom-nav {
    display: none;
  }
}

.ob-alert {
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 14px;
  border: 1px solid rgba(233, 233, 255, 0.12);
  background: rgba(12, 12, 24, 0.72);
  color: rgba(233, 233, 255, 0.92);
}

.ob-alert--success {
  border-color: rgba(50, 200, 120, 0.35);
  background: rgba(30, 120, 70, 0.2);
}

.ob-alert--error {
  border-color: rgba(255, 90, 90, 0.45);
  background: rgba(120, 30, 40, 0.25);
}

.ob-messages-page {
  padding: 24px 16px 110px;
}

.ob-messages-layout--page {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(8, 8, 18, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  min-height: 64vh;
}

.ob-messages-sidebar {
  grid-template-rows: auto auto auto minmax(0, 1fr);
}

.ob-messages-search label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(233, 233, 255, 0.7);
}

.ob-messages-search {
  display: grid;
  gap: 6px;
}

.ob-messages-thread-unread {
  margin-left: auto;
  background: #ff4f7a;
  color: #fff;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  padding: 0 6px;
}

.ob-home-online {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(14, 14, 26, 0.7);
  border: 1px solid rgba(233, 233, 255, 0.08);
}

.ob-home-online-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.ob-home-online-title {
  font-size: 15px;
  font-weight: 700;
}

.ob-home-online-subtitle {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.6);
}

.ob-home-online-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.ob-home-online-track::-webkit-scrollbar {
  height: 6px;
}

.ob-home-online-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.ob-home-online-item {
  position: relative;
  flex: 0 0 auto;
}

.ob-home-online-btn {
  display: grid;
  gap: 6px;
  text-align: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(233, 233, 255, 0.12);
  background: rgba(12, 12, 22, 0.7);
  color: rgba(233, 233, 255, 0.9);
  min-width: 120px;
}

.ob-home-online-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.ob-home-online-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ob-home-online-dot {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 10px;
  height: 10px;
  background: #2fd36b;
  border-radius: 999px;
  border: 2px solid rgba(8, 8, 18, 0.9);
}

.ob-home-online-name {
  font-size: 13px;
  font-weight: 700;
}

.ob-home-online-status {
  font-size: 11px;
  color: rgba(233, 233, 255, 0.6);
}

.ob-home-online-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(12, 12, 22, 0.95);
  border: 1px solid rgba(233, 233, 255, 0.12);
  border-radius: 12px;
  padding: 6px;
  display: grid;
  gap: 6px;
  min-width: 140px;
  z-index: 10;
}

.ob-home-online-menu a {
  display: block;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 12px;
  color: rgba(233, 233, 255, 0.9);
}

.ob-home-online-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ob-follows-page {
  padding: 20px 16px 110px;
}

.ob-follows-header {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.ob-follows-back {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.6);
}

.ob-follows-title {
  font-size: 20px;
  font-weight: 700;
}

.ob-follows-subtitle {
  font-size: 13px;
  color: rgba(233, 233, 255, 0.7);
}

.ob-follows-list {
  display: grid;
  gap: 12px;
}

.ob-follows-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(12, 12, 24, 0.6);
}

.ob-follows-user {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.ob-follows-meta {
  display: grid;
  gap: 4px;
}

.ob-follows-name {
  font-size: 14px;
  font-weight: 700;
}

.ob-follows-username {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.6);
}

.ob-follows-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(233, 233, 255, 0.8);
}

.ob-follows-empty {
  text-align: center;
  padding: 24px 12px;
  color: rgba(233, 233, 255, 0.7);
  border-radius: 14px;
  border: 1px dashed rgba(233, 233, 255, 0.15);
}

.ob-follows-pagination {
  margin-top: 16px;
}

.ob-profile-stat--link {
  color: inherit;
  text-decoration: none;
}

.ob-profile-stat--link:hover {
  border-color: rgba(233, 233, 255, 0.2);
  background: rgba(233, 233, 255, 0.06);
}

.ob-settings {
  padding: 24px 16px 110px;
  display: grid;
  gap: 18px;
}

.ob-settings-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ob-settings-title {
  font-size: 20px;
  font-weight: 700;
}

.ob-settings-subtitle {
  font-size: 13px;
  color: rgba(233, 233, 255, 0.6);
}

.ob-settings-card {
  border-radius: 18px;
  border: 1px solid rgba(233, 233, 255, 0.08);
  background: rgba(12, 12, 22, 0.6);
  padding: 16px;
  display: grid;
  gap: 12px;
}

.ob-settings-card-title {
  font-size: 15px;
  font-weight: 700;
}

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

.ob-settings-label {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.6);
}

.ob-settings-value {
  font-size: 14px;
  font-weight: 600;
}

.ob-settings-note {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.6);
  margin-top: 4px;
}

.ob-settings-grid {
  display: grid;
  gap: 12px;
}

.ob-settings-divider {
  border-top: 1px solid rgba(233, 233, 255, 0.08);
  margin: 6px 0;
}

.ob-settings-locked {
  padding: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(233, 233, 255, 0.2);
  color: rgba(233, 233, 255, 0.7);
}

.ob-creator-apply {
  padding: 24px 16px 110px;
  display: grid;
  gap: 18px;
}

.ob-creator-apply-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ob-creator-apply-title {
  font-size: 20px;
  font-weight: 700;
}

.ob-creator-apply-subtitle {
  font-size: 13px;
  color: rgba(233, 233, 255, 0.6);
}

.ob-creator-apply-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ob-creator-step {
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  font-size: 12px;
  color: rgba(233, 233, 255, 0.6);
  border: 1px solid rgba(233, 233, 255, 0.08);
}

.ob-creator-step.ob-is-active {
  color: rgba(233, 233, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
}

.ob-creator-apply-card {
  border-radius: 16px;
  border: 1px solid rgba(233, 233, 255, 0.1);
  background: rgba(12, 12, 22, 0.6);
  padding: 16px;
  display: grid;
  gap: 12px;
}

.ob-creator-apply-text {
  font-size: 14px;
  font-weight: 600;
}

.ob-creator-apply-note {
  font-size: 12px;
  color: rgba(233, 233, 255, 0.6);
}

.ob-creator-apply-summary {
  display: grid;
  gap: 6px;
  font-size: 13px;
}

.ob-creator-form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ob-pagination {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ob-pagination a,
.ob-pagination span {
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(233, 233, 255, 0.12);
  font-size: 12px;
  color: rgba(233, 233, 255, 0.85);
}

.ob-pagination .ob-is-active {
  background: rgba(255, 255, 255, 0.12);
}

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

.ob-admin-kyc-img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ob-admin-reject {
  display: grid;
  gap: 8px;
  min-width: 240px;
}

@media (min-width: 720px) {
  .ob-messages-layout--page {
    min-height: 72vh;
  }

  .ob-settings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
