:root {
  --bg: #061712;
  --panel: #0d261f;
  --panel-2: #12382f;
  --text: #f6f7fb;
  --muted: #a8c9be;
  --line: #285448;
  --accent: #4ade80;
  --accent-2: #06b6d4;
  --accent-3: #b7f7d0;
  --danger: #ff6b6b;
  --blue: #67e8f9;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.real-overlay-demo {
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 0.75rem;
  background: rgba(5, 19, 34, 0.88);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  text-align: left;
}

.real-overlay-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border-bottom: 1px solid rgba(34, 211, 238, 0.18);
}

.real-overlay-heading h2 {
  margin: 0.25rem 0 0;
  font-size: 1.35rem;
}

.real-overlay-kicker {
  color: #67e8f9;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.verified-payment-badge {
  flex: 0 0 auto;
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.12);
  color: #bbf7d0;
  padding: 0.55rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 900;
}

.real-overlay-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 2rem;
  align-items: center;
  min-height: 25rem;
  padding: 2rem;
  background:
    linear-gradient(rgba(34, 211, 238, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 30% 40%, rgba(6, 182, 212, 0.14), transparent 18rem),
    #041a1a;
  background-size: 2rem 2rem, 2rem 2rem, auto, auto;
}

.real-tip-alert {
  justify-self: center;
  width: min(100%, 25rem);
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(34, 211, 238, 0.45);
  border-radius: 0.75rem;
  background: rgba(5, 20, 37, 0.84);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 1.35rem;
  text-align: center;
  animation: alert-pulse 3.5s ease-in-out infinite;
}

.real-tip-visual {
  width: 5.25rem;
  height: 5.25rem;
  display: grid;
  place-items: center;
}

.real-tip-visual .brand-logo {
  width: 100%;
  height: 100%;
}

.real-tip-alert strong {
  font-size: 1.35rem;
}

.real-tip-alert p,
.real-overlay-note {
  margin: 0;
  color: var(--muted);
}

.real-overlay-stack {
  display: grid;
  gap: 0.75rem;
}

.real-overlay-pill,
.real-goal-pill {
  position: relative;
  overflow: hidden;
  min-height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 999px;
  background: rgba(6, 29, 48, 0.78);
  padding: 0.8rem 1rem;
}

.real-overlay-pill::after,
.real-goal-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 25%, rgba(103, 232, 249, 0.18), transparent 70%);
  transform: translateX(-100%);
  animation: real-overlay-sweep 4s ease-in-out infinite;
}

.real-overlay-pill span,
.real-goal-pill span,
.real-overlay-pill strong,
.real-goal-pill strong {
  position: relative;
  z-index: 1;
}

.real-overlay-pill span,
.real-goal-pill span {
  color: #a5f3fc;
  font-size: 0.8rem;
  font-weight: 800;
}

.real-goal-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 20%;
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.35), rgba(74, 222, 128, 0.38));
  animation: real-goal-liquid 4s ease-in-out infinite;
}

.real-overlay-note {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(34, 211, 238, 0.14);
  font-size: 0.84rem;
  line-height: 1.55;
}

@keyframes real-overlay-sweep {
  0%,
  45% {
    transform: translateX(-100%);
  }
  75%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes real-goal-liquid {
  0%,
  100% {
    width: 19%;
  }
  50% {
    width: 21%;
  }
}

@media (max-width: 720px) {
  .real-overlay-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .real-overlay-stage {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 1rem;
  }

  .real-overlay-pill,
  .real-goal-pill {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
    border-radius: 0.65rem;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, #061712 0%, #092820 48%, #071d22 100%);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    radial-gradient(circle, rgba(74, 222, 128, 0.48) 1px, transparent 1.7px),
    radial-gradient(circle, rgba(6, 182, 212, 0.24) 1px, transparent 1.5px);
  background-position: 0 0, 2.5rem 2.5rem;
  background-size: 5rem 5rem, 7rem 7rem;
  animation: particle-drift 22s linear infinite;
  opacity: 0.38;
}

body::after {
  background:
    linear-gradient(115deg, rgba(6, 182, 212, 0.16), transparent 36%),
    linear-gradient(295deg, rgba(74, 222, 128, 0.14), transparent 34%);
  animation: light-sweep 12s ease-in-out infinite alternate;
}

body.obs-mode {
  overflow: hidden;
  background: transparent;
}

body.obs-mode::before,
body.obs-mode::after {
  display: none;
}

button,
input,
textarea,
select {
  font: inherit;
  max-width: 100%;
}

button {
  cursor: pointer;
}

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 17rem 1fr;
}

.sidebar {
  border-right: 1px solid var(--line);
  background: rgba(6, 17, 31, 0.84);
  backdrop-filter: blur(16px);
  padding: 1.25rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.brand-mark,
.brand-logo {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  overflow: hidden;
  color: #0d1514;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.brand-logo img,
.footer-logo img,
.donate-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-title {
  font-weight: 800;
  letter-spacing: 0;
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.35rem;
  padding: 0.15rem 0.42rem;
  border: 1px solid rgba(34, 211, 238, 0.42);
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.12);
  color: #a5f3fc;
  font-size: 0.65rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  vertical-align: middle;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 0.1rem;
}

.nav {
  display: grid;
  gap: 0.5rem;
}

.nav button {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  text-align: left;
  border-radius: 0.45rem;
  padding: 0.8rem 0.85rem;
  font-weight: 700;
}

.nav button.active,
.nav button:hover {
  color: var(--text);
  background: var(--panel-2);
  border-color: var(--line);
}

.sidebar-note {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding-top: 1rem;
}

.main {
  padding: 1.5rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.page-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0;
}

.page-kicker {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.button {
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  padding: 0.72rem 0.95rem;
  background: var(--panel-2);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.button.primary {
  color: #04130f;
  background: var(--accent);
  border-color: var(--accent);
}

.button.warning {
  color: #f7fbff;
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.button.danger {
  color: #fff;
  background: rgba(255, 107, 107, 0.18);
  border-color: rgba(255, 107, 107, 0.56);
}

.grid {
  display: grid;
  gap: 1rem;
}

.owner-notification-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(6, 182, 212, 0.42);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.22), rgba(74, 222, 128, 0.08)),
    rgba(6, 17, 31, 0.82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  margin: 0 0 1rem;
  padding: 0.8rem 0.95rem;
}

.owner-notification-bar div {
  display: grid;
  gap: 0.2rem;
}

.owner-notification-bar strong {
  color: var(--text);
}

.owner-notification-bar span {
  color: var(--muted);
  font-size: 0.86rem;
}

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

.metric,
.panel,
.donation-card {
  background: rgba(13, 28, 51, 0.9);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.metric {
  padding: 1rem;
}

.metric-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 800;
  margin-top: 0.4rem;
}

.content-grid {
  grid-template-columns: minmax(18rem, 0.9fr) minmax(28rem, 1.1fr);
  margin-top: 1rem;
  align-items: start;
}

.panel {
  padding: 1rem;
}

.dashboard-tools {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.onboarding-panel {
  border: 1px solid rgba(6, 182, 212, 0.34);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.18), rgba(74, 222, 128, 0.08)),
    rgba(13, 28, 51, 0.82);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.onboarding-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.onboarding-header h2 {
  margin: 0.2rem 0 0;
  font-size: 1.15rem;
}

.onboarding-header p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.onboarding-step {
  display: grid;
  gap: 0.25rem;
  text-align: left;
  border: 1px solid rgba(74, 222, 128, 0.16);
  border-radius: 0.45rem;
  background: rgba(6, 17, 31, 0.44);
  color: var(--text);
  padding: 0.7rem;
}

.onboarding-step span {
  width: fit-content;
  border: 1px solid rgba(6, 182, 212, 0.36);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(6, 182, 212, 0.1);
  padding: 0.14rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.onboarding-step strong {
  font-size: 0.92rem;
}

.onboarding-step small {
  color: var(--muted);
  line-height: 1.35;
}

.onboarding-step.done {
  border-color: rgba(74, 222, 128, 0.34);
}

.onboarding-step.done span {
  color: var(--accent);
  border-color: rgba(74, 222, 128, 0.46);
  background: rgba(74, 222, 128, 0.1);
}

.dashboard-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}

.dashboard-tab {
  width: 100%;
  height: 2.75rem;
  min-height: 0;
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 0.45rem;
  color: var(--muted);
  background:
    linear-gradient(145deg, rgba(18, 41, 74, 0.68), rgba(6, 17, 31, 0.72));
  font-weight: 900;
  font-size: 0.8rem;
  padding: 0.45rem 0.75rem;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.dashboard-tab span {
  display: grid;
  place-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-tab:hover {
  color: var(--text);
  border-color: rgba(74, 222, 128, 0.46);
  transform: translateY(-1px);
}

.dashboard-tab.active {
  color: var(--text);
  border-color: var(--accent);
  background:
    linear-gradient(145deg, rgba(6, 182, 212, 0.76), rgba(74, 222, 128, 0.22)),
    rgba(18, 41, 74, 0.96);
  box-shadow: 0 8px 18px rgba(6, 182, 212, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.dashboard-tab-panel[hidden] {
  display: none;
}

.dashboard-tab-panel {
  min-height: 0;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.panel-header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.panel-header-actions .button {
  min-height: 2.35rem;
  padding: 0.5rem 0.7rem;
  font-size: 0.82rem;
}

.panel-title {
  margin: 0;
  font-size: 1rem;
}

.panel-caption {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form {
  display: grid;
  gap: 0.9rem;
}

.horizontal-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
}

.horizontal-form > div:first-child,
.horizontal-form .goal-preview-mini,
.horizontal-form .custom-sound-list,
.horizontal-form .form-actions,
.horizontal-form > button {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.form-actions .button {
  flex: 1 1 auto;
}

.goal-preview-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.goal-preview-mini div {
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: 0.5rem;
  background: rgba(6, 17, 31, 0.5);
  padding: 0.8rem;
}

.goal-preview-mini span,
.goal-preview-mini strong {
  display: block;
}

.goal-preview-mini span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.goal-preview-mini strong {
  margin-top: 0.35rem;
  color: var(--accent);
  font-size: 1.25rem;
  overflow-wrap: anywhere;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field[hidden] {
  display: none;
}

.field span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  color: var(--text);
  border: 1px solid var(--line);
  background: #11151d;
  border-radius: 0.45rem;
  min-width: 0;
  padding: 0.78rem 0.85rem;
  outline: none;
}

.field textarea {
  min-height: 6rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.16);
}

.password-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem;
  align-items: center;
}

.password-input input {
  min-width: 0;
}

.password-input button {
  height: 100%;
  min-height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: rgba(15, 23, 42, 0.82);
  color: var(--text);
  padding: 0 0.75rem;
  font-weight: 800;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.type-option {
  min-height: 5rem;
  border: 1px solid var(--line);
  background: #121720;
  color: var(--text);
  border-radius: 0.45rem;
  padding: 0.75rem;
  text-align: left;
  display: grid;
  align-content: center;
  gap: 0.25rem;
}

.type-option strong {
  font-size: 0.95rem;
}

.type-option small {
  color: var(--muted);
  line-height: 1.35;
}

.type-option.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.14);
}

.type-option.active strong {
  color: var(--accent);
}

.method-fields {
  display: grid;
  gap: 0.9rem;
}

.method-fields[hidden] {
  display: none;
}

.chip {
  border: 1px solid var(--line);
  background: #121720;
  color: var(--text);
  border-radius: 0.45rem;
  padding: 0.7rem;
  font-weight: 800;
}

.chip.active {
  border-color: var(--accent);
  color: #04130f;
  background: var(--accent);
}

.donation-list {
  display: grid;
  gap: 0.75rem;
}

.donation-card {
  padding: 0.95rem;
}

.donation-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.donation-card-actions {
  display: grid;
  justify-items: end;
  gap: 0.45rem;
  flex: 0 0 auto;
}

.compact-button {
  padding: 0.4rem 0.65rem;
  min-height: 0;
  font-size: 0.78rem;
}

.overlay-tip-manager {
  display: grid;
  gap: 0.75rem;
  grid-column: 1 / -1;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 0.75rem;
  background: rgba(8, 28, 44, 0.62);
  padding: 0.85rem;
}

.overlay-tip-manager h3 {
  margin: 0;
  font-size: 1rem;
}

.overlay-tip-manager p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.overlay-tip-list {
  display: grid;
  gap: 0.5rem;
}

.overlay-tip-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.6rem;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 0.6rem;
  background: rgba(15, 23, 42, 0.55);
  padding: 0.55rem;
}

.overlay-tip-row span {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.overlay-tip-row strong {
  color: #67e8f9;
}

.verifier-panel {
  display: grid;
  gap: 1rem;
}

.verifier-panel .panel-header {
  margin-bottom: 0;
}

.verifier-setup-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.verifier-setup-steps div {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.6rem;
  align-items: center;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 0.6rem;
  background: rgba(8, 28, 44, 0.62);
  padding: 0.75rem;
}

.verifier-setup-steps strong {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: #042f2e;
  background: #67e8f9;
}

.verifier-setup-steps span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.verifier-token-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: end;
}

.verifier-token-result {
  display: grid;
  gap: 0.7rem;
  border: 1px solid rgba(74, 222, 128, 0.42);
  border-radius: 0.65rem;
  background: rgba(20, 83, 45, 0.18);
  padding: 0.85rem;
}

.verifier-token-result[hidden] {
  display: none;
}

.verifier-token-result span,
.verifier-token-result strong {
  display: block;
}

.verifier-token-result span {
  color: #bbf7d0;
  font-weight: 900;
}

.verifier-token-result strong {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.verifier-error {
  border-color: rgba(248, 113, 113, 0.5);
  color: #fecaca;
}

.verifier-device-section {
  display: grid;
  gap: 0.65rem;
}

.verifier-device-section h3 {
  margin: 0;
  font-size: 1rem;
}

.verifier-device-list {
  display: grid;
  gap: 0.55rem;
}

.verifier-device {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid rgba(74, 222, 128, 0.24);
  border-radius: 0.6rem;
  background: rgba(15, 23, 42, 0.58);
  padding: 0.75rem;
}

.verifier-device div {
  min-width: 0;
}

.verifier-device strong,
.verifier-device span,
.verifier-device small {
  display: block;
  overflow-wrap: anywhere;
}

.verifier-device span,
.verifier-device small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.verifier-device.revoked {
  opacity: 0.58;
}

.donor {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.35rem;
  border: 1px solid rgba(74, 222, 128, 0.38);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(74, 222, 128, 0.1);
  padding: 0.18rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.amount {
  color: var(--accent-2);
  font-weight: 800;
  white-space: nowrap;
}

.message {
  color: var(--muted);
  line-height: 1.45;
  margin: 0.45rem 0 0;
}

.upi-review-panel {
  border-color: rgba(34, 211, 238, 0.32);
}

.upi-review-list {
  display: grid;
  gap: 0.75rem;
}

.pending-upi-card {
  border-color: rgba(34, 211, 238, 0.28);
  background:
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.12), transparent 9rem),
    rgba(13, 28, 51, 0.82);
}

.pending-upi-ref {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.pending-upi-ref strong {
  color: #e0f2fe;
}

.pending-upi-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.empty {
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 0.5rem;
  padding: 2rem 1rem;
}

.empty.compact {
  padding: 1rem;
  font-size: 0.9rem;
}

.admin-empty {
  display: grid;
  gap: 0.35rem;
}

.admin-empty strong {
  color: var(--text);
}

.admin-empty span {
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.45;
}

.admin-page {
  min-height: 100vh;
  padding: 1.25rem;
}

.admin-nav {
  margin-bottom: 1.25rem;
}

.admin-hero {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.18), rgba(74, 222, 128, 0.08)),
    rgba(13, 28, 51, 0.78);
  box-shadow: var(--shadow);
  padding: 1.15rem;
}

.admin-hero h1 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: 0;
}

.admin-hero p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.admin-metrics {
  margin-top: 1rem;
}

.admin-panel {
  margin-top: 1rem;
}

.admin-section-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.admin-section-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 0.5rem;
  background:
    linear-gradient(145deg, rgba(18, 41, 74, 0.68), rgba(6, 17, 31, 0.72));
  color: var(--muted);
  min-height: 3rem;
  padding: 0.65rem 0.8rem;
  font-weight: 900;
}

.admin-section-tab strong {
  display: inline-grid;
  min-width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(6, 17, 31, 0.62);
  color: var(--blue);
  font-size: 0.82rem;
}

.admin-section-tab.active,
.admin-section-tab:hover {
  color: var(--text);
  border-color: var(--accent);
  background:
    linear-gradient(145deg, rgba(6, 182, 212, 0.64), rgba(74, 222, 128, 0.16)),
    rgba(18, 41, 74, 0.96);
}

.admin-filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.admin-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 0.45rem;
  background:
    linear-gradient(145deg, rgba(18, 41, 74, 0.68), rgba(6, 17, 31, 0.72));
  color: var(--muted);
  min-height: 2.55rem;
  padding: 0.55rem 0.65rem;
  font-weight: 900;
}

.admin-filter strong {
  display: inline-grid;
  min-width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(6, 17, 31, 0.62);
  color: var(--blue);
  font-size: 0.78rem;
}

.admin-filter:hover,
.admin-filter.active {
  color: var(--text);
  border-color: var(--accent);
  background:
    linear-gradient(145deg, rgba(6, 182, 212, 0.64), rgba(74, 222, 128, 0.16)),
    rgba(18, 41, 74, 0.96);
}

.admin-search {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.admin-search span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-search input {
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: 0.45rem;
  background:
    linear-gradient(145deg, rgba(18, 41, 74, 0.54), rgba(6, 17, 31, 0.62));
  min-height: 2.75rem;
  outline: none;
  padding: 0.72rem 0.85rem;
}

.admin-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.16);
}

.admin-request-list {
  display: grid;
  gap: 0.8rem;
}

.compact-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0.9rem;
}

.admin-request-card {
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 0.5rem;
  background:
    linear-gradient(145deg, rgba(18, 41, 74, 0.68), rgba(6, 17, 31, 0.72));
  padding: 0.95rem;
}

.admin-request-main,
.admin-request-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.admin-request-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.admin-request-title h3 {
  margin: 0;
  font-size: 1.05rem;
}

.admin-request-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.admin-request-meta span {
  border: 1px solid rgba(74, 222, 128, 0.16);
  border-radius: 999px;
  background: rgba(6, 17, 31, 0.42);
  padding: 0.2rem 0.55rem;
}

.admin-request-date {
  min-width: 10rem;
  text-align: right;
}

.admin-request-date span,
.admin-request-footer small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.admin-request-date strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.86rem;
}

.admin-request-body {
  display: grid;
  gap: 0.55rem;
  margin: 0.9rem 0;
}

.admin-request-body a {
  color: var(--blue);
  overflow-wrap: anywhere;
  font-weight: 800;
}

.admin-request-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-note-field {
  display: grid;
  gap: 0.4rem;
  border: 1px solid rgba(74, 222, 128, 0.16);
  border-radius: 0.5rem;
  background: rgba(6, 17, 31, 0.38);
  padding: 0.75rem;
}

.admin-note-field span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.admin-note-field textarea {
  width: 100%;
  min-height: 4.8rem;
  resize: vertical;
  color: var(--text);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 0.45rem;
  background: #11151d;
  outline: none;
  padding: 0.7rem 0.75rem;
}

.admin-note-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.16);
}

.admin-invite-box {
  display: grid;
  gap: 0.45rem;
  border: 1px solid rgba(6, 182, 212, 0.24);
  border-radius: 0.5rem;
  background: rgba(6, 182, 212, 0.08);
  padding: 0.75rem;
}

.admin-invite-box span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.admin-request-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-request-actions .button {
  min-height: 2.35rem;
  padding: 0.5rem 0.72rem;
  font-size: 0.82rem;
}

.status-pill {
  display: inline-flex;
  border: 1px solid rgba(74, 222, 128, 0.32);
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.1);
  color: var(--accent);
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill.approved {
  color: #9fffd0;
  border-color: rgba(74, 222, 128, 0.46);
}

.status-pill.rejected {
  color: #ffb8b8;
  border-color: rgba(255, 107, 107, 0.5);
  background: rgba(255, 107, 107, 0.12);
}

.status-pill.revoked {
  color: #ffd6a5;
  border-color: rgba(255, 214, 165, 0.5);
  background: rgba(255, 214, 165, 0.12);
}

.status-pill.completed {
  color: var(--blue);
  border-color: rgba(6, 182, 212, 0.5);
  background: rgba(6, 182, 212, 0.12);
}

.managed-streamer-list {
  display: grid;
  gap: 0.8rem;
}

.managed-streamer-card {
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 0.5rem;
  background:
    linear-gradient(145deg, rgba(18, 41, 74, 0.68), rgba(6, 17, 31, 0.72));
  padding: 0.95rem;
}

.managed-streamer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.managed-streamer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.managed-streamer-actions .button {
  min-height: 2.35rem;
  padding: 0.5rem 0.72rem;
  font-size: 0.82rem;
}

.managed-streamer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.managed-streamer-links label {
  display: grid;
  gap: 0.35rem;
}

.managed-streamer-links span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.managed-streamer-links input {
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 0.45rem;
  background: #11151d;
  padding: 0.7rem 0.75rem;
}

.custom-sound-list {
  display: grid;
  gap: 0.7rem;
}

.custom-sound-card {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(6, 17, 31, 0.52);
}

.custom-sound-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0.45rem;
  color: #04130f;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  font-weight: 900;
}

.custom-sound-icon img,
.sound-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-sound-icon span,
.sound-icon span {
  display: grid;
  place-items: center;
}

.custom-sound-card strong,
.custom-sound-card small {
  display: block;
}

.custom-sound-card small {
  color: var(--muted);
  margin-top: 0.2rem;
  overflow-wrap: anywhere;
}

.custom-sound-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.profile-image-row {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: end;
}

.profile-banner-row {
  display: grid;
  grid-template-columns: minmax(8rem, 13rem) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: end;
}

.profile-image-preview {
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.36);
  border-radius: 0.8rem;
  background: rgba(5, 22, 38, 0.94);
  color: #bae6fd;
  font-size: 1.15rem;
  font-weight: 950;
}

.profile-banner-preview {
  width: 100%;
  aspect-ratio: 16 / 6;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.36);
  border-radius: 0.8rem;
  background: rgba(5, 22, 38, 0.94);
  color: #bae6fd;
  font-weight: 950;
}

.checkbox-field {
  align-content: start;
}

.inline-check {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 0.55rem;
  background: rgba(8, 28, 44, 0.58);
  padding: 0.7rem;
  color: var(--text);
  font-weight: 850;
}

.inline-check input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent-2);
}

.profile-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-banner-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.viewer-wrap {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 1.5rem;
}

.donate-shell {
  width: min(100%, 34rem);
  display: grid;
  gap: 0.65rem;
}

.donate-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.donate-logo {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0.75rem;
  background: rgba(8, 28, 44, 0.72);
  border: 1px solid rgba(34, 211, 238, 0.25);
}

.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.auth-panel {
  width: min(100%, 30rem);
  background: rgba(13, 28, 51, 0.94);
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 4vw, 2rem);
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.auth-hero {
  margin-bottom: 1.2rem;
}

.auth-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.auth-hero p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.text-link-button {
  width: fit-content;
  border: 0;
  background: transparent;
  color: var(--accent-2);
  padding: 0;
  font-weight: 850;
  text-align: left;
}

.text-link-button:hover {
  color: var(--accent);
  text-decoration: underline;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.auth-tab {
  border: 1px solid var(--line);
  background: #0a1a2f;
  color: var(--muted);
  border-radius: 0.45rem;
  padding: 0.78rem 0.9rem;
  font-weight: 800;
}

.auth-tab.active {
  color: #04130f;
  border-color: var(--accent);
  background: var(--accent);
}

.auth-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.viewer-card {
  width: 100%;
  background: rgba(8, 13, 20, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 1rem;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.42);
  padding: 0.95rem;
  backdrop-filter: blur(12px);
}

.creator-hero {
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 1rem;
  background: rgba(5, 22, 38, 0.9);
  box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.3);
}

.creator-cover {
  min-height: 9.5rem;
  position: relative;
  display: grid;
  place-items: end center;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(8, 145, 178, 0.78), rgba(22, 163, 74, 0.54)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 4rem),
    #092131;
}

.creator-cover-image,
.creator-cover-overlay {
  position: absolute;
  inset: 0;
}

.creator-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-cover-overlay {
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.04), rgba(2, 6, 23, 0.56)),
    linear-gradient(90deg, rgba(8, 47, 73, 0.46), rgba(20, 184, 166, 0.14));
}

.creator-avatar {
  width: 5.8rem;
  height: 5.8rem;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 4px solid rgba(2, 6, 23, 0.92);
  border-radius: 999px;
  background: #08111c;
  color: #e0f2fe;
  font-size: 1.5rem;
  font-weight: 950;
  box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.28);
}

.creator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-page-title {
  position: relative;
  z-index: 1;
  margin-top: 0.25rem;
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 950;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.creator-badge,
.creator-channel-link,
.creator-meta span {
  display: inline-flex;
  align-items: center;
}

.creator-badge {
  width: fit-content;
  gap: 0.45rem;
  color: #e0f2fe;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.creator-badge span,
.creator-channel-link span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, #06b6d4, #22c55e);
  color: #031b26;
  font-size: 0.72rem;
  font-weight: 950;
}

.cover-badge {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(224, 242, 254, 0.34);
  border-radius: 999px;
  background: rgba(4, 19, 31, 0.62);
  backdrop-filter: blur(10px);
}

.creator-profile {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.creator-profile h1 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

.creator-profile p {
  max-width: 34rem;
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.creator-channel-link {
  gap: 0.55rem;
  border: 1px solid rgba(34, 211, 238, 0.38);
  border-radius: 0.55rem;
  background: rgba(8, 37, 59, 0.9);
  color: var(--text);
  padding: 0.7rem 0.85rem;
  font-weight: 900;
  text-decoration: none;
}

.creator-channel-link.compact {
  justify-content: center;
  width: 100%;
  margin-bottom: 0.2rem;
  padding: 0.62rem 0.75rem;
}

.creator-channel-link:hover {
  border-color: rgba(34, 211, 238, 0.72);
  transform: translateY(-1px);
}

.amount-currency-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 7rem;
  gap: 0.6rem;
}

.upi-payment-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 8rem;
  gap: 0.85rem;
  align-items: center;
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 0.75rem;
  background:
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.14), transparent 9rem),
    rgba(8, 28, 44, 0.78);
  padding: 0.85rem;
}

.upi-payment-box h3 {
  margin: 0;
  font-size: 1rem;
}

.upi-payment-box p {
  margin: 0.45rem 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
}

.upi-payment-box strong {
  color: #bae6fd;
  overflow-wrap: anywhere;
}

.upi-payment-box img {
  width: 8rem;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(226, 232, 240, 0.28);
  border-radius: 0.75rem;
  background: white;
  padding: 0.35rem;
}

.upi-payment-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(14px);
}

.upi-payment-card {
  position: relative;
  display: grid;
  gap: 1rem;
  width: min(24rem, 100%);
  border: 1px solid rgba(34, 211, 238, 0.45);
  border-radius: 0.95rem;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 10rem),
    linear-gradient(145deg, rgba(8, 37, 59, 0.98), rgba(3, 20, 34, 0.98));
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.46);
  padding: 1.2rem;
}

.upi-payment-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.74);
  color: var(--text);
  cursor: pointer;
}

.upi-payment-eyebrow {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: #67e8f9;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.upi-payment-card h2 {
  max-width: calc(100% - 2.5rem);
  margin: 0;
  font-size: clamp(1.25rem, 5vw, 1.8rem);
}

.upi-payment-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.upi-payment-card img {
  justify-self: center;
  width: min(15rem, 82vw);
  aspect-ratio: 1;
  border: 0.6rem solid #f8fafc;
  border-radius: 1rem;
  background: #fff;
  object-fit: contain;
}

.upi-reference-box {
  display: grid;
  gap: 0.25rem;
  border: 1px dashed rgba(34, 211, 238, 0.44);
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.68);
  padding: 0.8rem;
  text-align: center;
}

.upi-reference-box span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.upi-reference-box strong {
  color: #e0f2fe;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}

.upi-payment-card .button {
  justify-content: center;
  width: 100%;
}

.upi-payment-actions {
  display: grid;
  gap: 0.6rem;
}

.upi-payment-small {
  font-size: 0.82rem;
  text-align: center;
}

.upi-thank-you-mark {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid rgba(74, 222, 128, 0.62);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(74, 222, 128, 0.22), transparent 70%),
    rgba(20, 83, 45, 0.45);
  color: #bbf7d0;
  font-size: 2.3rem;
  font-weight: 1000;
  box-shadow: 0 0 2rem rgba(34, 197, 94, 0.24);
}

.char-count {
  margin-top: -0.35rem;
  color: rgba(226, 232, 240, 0.62);
  font-size: 0.8rem;
  text-align: right;
}

.refund-ack {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  border: 1px dashed rgba(148, 163, 184, 0.34);
  border-radius: 0.65rem;
  background: rgba(15, 23, 42, 0.7);
  padding: 0.7rem;
  color: #e2e8f0;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.refund-ack input {
  width: 1rem;
  height: 1rem;
  margin: 0.1rem 0 0;
  accent-color: var(--accent-2);
}

.refund-ack a {
  color: #38bdf8;
  text-decoration: none;
}

.donate-submit {
  width: 100%;
  min-height: 2.8rem;
  border-radius: 0.65rem;
}

.creator-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0 1rem 1rem;
}

.creator-meta span {
  justify-content: center;
  min-height: 2.7rem;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 0.5rem;
  background: rgba(6, 31, 50, 0.72);
  color: #bae6fd;
  font-size: 0.85rem;
  font-weight: 850;
  text-align: center;
}

.viewer-header {
  margin-bottom: 1.25rem;
}

.viewer-header h1 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  letter-spacing: 0;
}

.viewer-header p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.sound-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.sound-card {
  display: grid;
  gap: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: #121720;
  padding: 0.75rem;
}

.sound-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.14);
}

.sound-main {
  width: 100%;
  min-height: 4.5rem;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.75rem;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0;
  text-align: left;
}

.sound-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0.45rem;
  color: #06120f;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  font-weight: 900;
}

.sound-main strong,
.sound-main small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.sound-main small {
  color: var(--muted);
  margin-top: 0.2rem;
}

.sound-preview {
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.limit-note {
  color: var(--muted);
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.24);
  border-radius: 0.45rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.reset-zone {
  display: grid;
  gap: 0.8rem;
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 0.55rem;
  background: rgba(127, 29, 29, 0.12);
  padding: 0.9rem;
}

.reset-zone h3 {
  margin: 0;
  font-size: 0.98rem;
}

.reset-zone p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.obs-stage {
  position: fixed;
  inset: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
  padding: 4vh 1rem;
}

.obs-debug {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(74, 222, 128, 0.65);
  border-radius: 8px;
  background: rgba(6, 23, 18, 0.9);
  color: #dcfce7;
  font-weight: 800;
}

.alert {
  width: min(34rem, calc(100vw - 2rem));
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: 1.1rem;
  border-radius: 1.1rem;
  color: white;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(8, 28, 44, 0.78), rgba(5, 14, 26, 0.72));
  border: 1px solid rgba(34, 211, 238, 0.52);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.5), 0 0 2.4rem rgba(6, 182, 212, 0.18);
  backdrop-filter: blur(10px);
  transform: translateY(-2rem) scale(0.95);
  opacity: 0;
}

.alert.show {
  animation: alert-in var(--alert-duration, 5.8s) ease-in-out forwards;
}

.alert-icon {
  width: min(17rem, 70vw);
  height: min(17rem, 70vw);
  border-radius: 1rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #e0f2fe;
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.84), rgba(34, 197, 94, 0.68)),
    #071827;
  border: 2px solid rgba(224, 242, 254, 0.55);
  font-size: clamp(3.2rem, 14vw, 7rem);
  font-weight: 950;
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.36);
}

.alert-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alert-title {
  font-size: clamp(1.45rem, 4vw, 2.45rem);
  font-weight: 950;
  line-height: 1.05;
  text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.62);
}

.alert-message {
  color: #dbeafe;
  margin-top: 0.45rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.4;
  font-weight: 750;
}

.alert-copy {
  max-width: 31rem;
}

.persistent-overlay-root {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: start center;
  pointer-events: none;
  padding: 0.6rem;
}

.persistent-widget {
  width: min(25rem, calc(100vw - 0.75rem));
  display: grid;
  color: white;
  filter: drop-shadow(0 0.28rem 0.6rem rgba(0, 0, 0, 0.55));
}

.persistent-widget-wide {
  width: min(42rem, calc(100vw - 0.75rem));
}

.overlay-pill {
  min-height: 2.15rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.32rem 0.7rem;
  border: 1px solid rgba(103, 232, 249, 0.3);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(8, 47, 73, 0.68), rgba(6, 78, 98, 0.62)),
    rgba(6, 17, 31, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0.22rem 0.5rem rgba(0, 0, 0, 0.32),
    0 0 1rem rgba(6, 182, 212, 0.16);
  overflow: hidden;
  position: relative;
}

.overlay-pill::before,
.goal-liquid-tube::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.16), rgba(34, 211, 238, 0.78), rgba(74, 222, 128, 0.5), rgba(103, 232, 249, 0.16));
  background-size: 220% 100%;
  opacity: 0.68;
  animation: overlay-edge-flow 4.5s linear infinite;
  pointer-events: none;
  z-index: 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.overlay-pill::after,
.goal-liquid-tube::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -35%;
  width: 28%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(224, 242, 254, 0.22), transparent);
  animation: overlay-edge-sheen 5.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.overlay-pill span,
.overlay-pill strong,
.overlay-pill em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(0.76rem, 2vw, 0.94rem);
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.overlay-pill span {
  color: #bae6fd;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.overlay-pill strong {
  color: #ffffff;
  font-weight: 950;
}

.overlay-pill em {
  color: #e0f2fe;
  font-style: normal;
  font-weight: 950;
  text-align: right;
}

.overlay-pill.muted span,
.overlay-pill.muted strong,
.overlay-pill.muted em {
  color: rgba(255, 255, 255, 0.74);
}

.goal-liquid-tube {
  min-height: 2.55rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.36);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(8, 47, 73, 0.62), rgba(6, 78, 98, 0.48)),
    rgba(6, 17, 31, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -0.8rem 1.4rem rgba(2, 6, 23, 0.28),
    0 0.24rem 0.7rem rgba(0, 0, 0, 0.38),
    0 0 1.35rem rgba(6, 182, 212, 0.14);
}

.goal-liquid-fill {
  position: absolute;
  inset: 0;
  width: var(--goal-progress, 0%);
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(6, 182, 212, 0.9), rgba(34, 211, 238, 0.82), rgba(74, 222, 128, 0.72));
  box-shadow: 0 0 1.4rem rgba(34, 211, 238, 0.28);
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.goal-liquid-fill::before,
.goal-liquid-fill::after {
  content: "";
  position: absolute;
  inset: -80% -12% 25%;
  border-radius: 45%;
  background: rgba(224, 242, 254, 0.2);
  animation: liquid-wave 5.2s linear infinite;
}

.goal-liquid-fill::after {
  inset: -65% -8% 34%;
  border-radius: 42%;
  background: rgba(255, 255, 255, 0.14);
  animation-duration: 7s;
  animation-direction: reverse;
}

.goal-liquid-text {
  position: relative;
  z-index: 2;
  min-height: 2.55rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.35rem 0.85rem;
}

.goal-liquid-text span,
.goal-liquid-text strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #f8fafc;
  text-shadow: 0 0.12rem 0.4rem rgba(0, 0, 0, 0.58);
  font-size: clamp(0.82rem, 2.2vw, 1rem);
  line-height: 1.1;
}

.goal-liquid-text span {
  font-weight: 900;
}

.goal-liquid-text strong {
  font-weight: 950;
}

.goal-row,
.goal-amounts {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.goal-row {
  margin-top: 0.45rem;
}

.goal-row strong {
  font-size: clamp(1.15rem, 5vw, 2rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.goal-row span {
  color: var(--accent);
  font-weight: 900;
  font-size: clamp(1.2rem, 5vw, 2.2rem);
}

.goal-bar {
  height: 0.38rem;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.28);
  border-radius: 999px;
  background: rgba(8, 47, 73, 0.72);
}

.goal-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-2), var(--accent), var(--accent-3));
  transition: width 0.4s ease;
}

.goal-amounts {
  margin-top: 0.45rem;
  color: #dcfce7;
  font-weight: 900;
}

.copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
}

.copy-row input {
  min-width: 0;
}

.home-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(74, 222, 128, 0.16), transparent 34rem),
    linear-gradient(180deg, rgba(6, 17, 31, 0), rgba(6, 182, 212, 0.08) 42%, rgba(6, 17, 31, 0));
}

.home-nav {
  width: min(1160px, calc(100% - 2rem));
  min-height: 4.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  position: sticky;
  top: 0.8rem;
  z-index: 10;
  padding: 0.7rem;
  border: 1px solid rgba(74, 222, 128, 0.24);
  border-radius: 999px;
  background: rgba(6, 17, 31, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 0;
}

.home-brand strong,
.home-brand small {
  display: block;
}

.home-brand small {
  color: var(--muted);
  margin-top: 0.1rem;
}

.home-nav-links {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.home-nav-links a,
.home-nav-links button {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
}

.home-nav-links a:hover,
.home-nav-links button:hover {
  color: var(--accent);
  background: rgba(74, 222, 128, 0.08);
}

.home-nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

.home-hero,
.home-section {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.home-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 5rem 0 2.5rem;
  text-align: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin: 0.8rem 0 0;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 48rem;
  margin: 1.2rem 0 0;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
  justify-content: center;
}

.fee-pill {
  width: fit-content;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(74, 222, 128, 0.32);
  border-radius: 999px;
  color: #d7ffe6;
  background: rgba(74, 222, 128, 0.1);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-demo {
  perspective: 1000px;
  width: min(100%, 68rem);
  margin: 0 auto;
}

.demo-stream {
  border: 1px solid rgba(74, 222, 128, 0.28);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(13, 28, 51, 0.94), rgba(8, 25, 48, 0.86));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  animation: demo-float 5s ease-in-out infinite;
}

.demo-topbar {
  height: 2.6rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.9rem;
  border-bottom: 1px solid var(--line);
}

.demo-topbar span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.75;
}

.demo-video {
  min-height: 30rem;
  position: relative;
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.22), transparent 42%),
    radial-gradient(circle at 75% 20%, rgba(74, 222, 128, 0.3), transparent 12rem),
    #061712;
  overflow: hidden;
}

.demo-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 2rem 2rem;
  animation: grid-pan 12s linear infinite;
}

.demo-alert {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0.8rem;
  align-items: center;
  width: min(100%, 30rem);
  margin: 1rem auto 0;
  padding: 0.85rem;
  border: 1px solid rgba(74, 222, 128, 0.55);
  border-radius: 0.65rem;
  background: rgba(6, 17, 31, 0.86);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  animation: alert-pulse 3.5s ease-in-out infinite;
}

.demo-sidebar {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 0.8rem;
  border: 1px solid rgba(74, 222, 128, 0.14);
  border-radius: 0.75rem;
  background: rgba(6, 17, 31, 0.58);
}

.demo-nav-dot {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.55rem;
  background: rgba(159, 180, 216, 0.14);
}

.demo-nav-dot.active {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 10px 28px rgba(74, 222, 128, 0.28);
}

.demo-dashboard {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 0.8rem;
  align-content: start;
}

.demo-card {
  min-height: 8rem;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 0.75rem;
  background: rgba(13, 28, 51, 0.78);
  text-align: left;
}

.demo-card small,
.demo-card span {
  color: var(--muted);
  font-weight: 800;
}

.demo-card strong {
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
}

.demo-alert-icon,
.feature-icon {
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  color: #04130f;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  font-weight: 900;
}

.demo-alert-icon {
  width: 4rem;
  height: 4rem;
}

.demo-alert p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.demo-chat {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.5rem;
  width: min(16rem, calc(100% - 2rem));
}

.home-stats {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 0 3rem;
}

.home-stats div {
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 0.8rem;
  background: rgba(13, 28, 51, 0.62);
  padding: 1rem;
  text-align: center;
}

.home-stats strong,
.home-stats span {
  display: block;
}

.home-stats span {
  margin-top: 0.35rem;
  color: var(--muted);
}

.demo-chat div {
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 0.45rem;
  background: rgba(13, 28, 51, 0.82);
  color: #dcfce7;
  padding: 0.55rem 0.65rem;
  font-weight: 700;
  animation: chat-rise 5s ease-in-out infinite;
}

.demo-chat div:nth-child(2) {
  animation-delay: 0.45s;
}

.demo-chat div:nth-child(3) {
  animation-delay: 0.9s;
}

.home-section {
  padding: 4rem 0;
}

.section-heading {
  max-width: 48rem;
  margin: 0 auto 1.4rem;
  text-align: center;
}

.section-heading h2,
.pricing-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.section-heading p,
.pricing-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.pricing-card,
.step {
  border: 1px solid rgba(74, 222, 128, 0.24);
  border-radius: 0.65rem;
  background: rgba(13, 28, 51, 0.82);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 18rem;
  padding: 1.2rem;
  transition: transform 0.18s ease, border-color 0.18s ease;
  transform-style: preserve-3d;
}

.overlay-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.overlay-preview-card {
  min-height: 12rem;
  display: grid;
  align-content: center;
  gap: 0.55rem;
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 0.8rem;
  background:
    radial-gradient(circle at top right, rgba(74, 222, 128, 0.16), transparent 12rem),
    rgba(13, 28, 51, 0.82);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.overlay-preview-card span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.overlay-preview-card strong {
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
}

.overlay-preview-card small {
  color: var(--muted);
  font-weight: 800;
}

.mini-goal-bar {
  height: 0.65rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(6, 17, 31, 0.8);
}

.mini-goal-bar i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-2), var(--accent), var(--accent-3));
}

.feature-card:hover,
.pricing-card:hover {
  border-color: rgba(74, 222, 128, 0.7);
}

.feature-icon {
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.55;
}

.pricing-band {
  display: grid;
  grid-template-columns: 1fr minmax(16rem, 24rem);
  gap: 1rem;
  align-items: stretch;
}

.pricing-copy,
.pricing-card {
  padding: clamp(1rem, 4vw, 2rem);
}

.pricing-copy {
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 0.65rem;
  background: rgba(6, 17, 31, 0.58);
}

.pricing-number {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--accent);
}

.pricing-label {
  margin-top: 0.6rem;
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  font-size: 0.85rem;
}

.pricing-card p {
  color: var(--muted);
  line-height: 1.55;
}

.platform-requirement,
.pricing-change-note,
.verifier-compatibility-note {
  border-left: 2px solid var(--accent);
  background: rgba(6, 182, 212, 0.08);
  padding: 0.75rem 0.85rem;
  color: #cffafe;
  line-height: 1.5;
}

.platform-requirement strong,
.verifier-compatibility-note strong {
  color: #ffffff;
}

.pricing-change-note {
  margin-top: 1rem;
  border-left-color: rgba(74, 222, 128, 0.8);
  background: rgba(34, 197, 94, 0.08);
  font-size: 0.82rem;
}

.pricing-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: rgba(217, 245, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.45;
}

.pricing-list li {
  padding-left: 1rem;
  position: relative;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--accent);
}

.subscription-gate {
  min-height: 100vh;
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 2.5rem;
}

.subscription-nav {
  width: min(100%, 72rem);
  min-height: 4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(34, 211, 238, 0.2);
}

.subscription-layout {
  width: min(100%, 72rem);
  margin: clamp(2rem, 7vh, 5rem) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.75fr);
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: start;
}

.subscription-intro {
  padding-top: 1rem;
}

.subscription-intro h1 {
  max-width: 13ch;
  margin: 0.8rem 0 1rem;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.02;
}

.subscription-intro > p {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.subscription-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.25rem;
  border-top: 1px solid rgba(34, 211, 238, 0.2);
  border-left: 1px solid rgba(34, 211, 238, 0.2);
}

.subscription-feature-grid div {
  min-width: 0;
  min-height: 8rem;
  padding: 1rem;
  border-right: 1px solid rgba(34, 211, 238, 0.2);
  border-bottom: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(6, 29, 48, 0.4);
}

.subscription-feature-grid strong,
.subscription-feature-grid span {
  display: block;
}

.subscription-feature-grid strong {
  color: #ecfeff;
}

.subscription-feature-grid span {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.subscription-checkout {
  position: sticky;
  top: 1rem;
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 0.75rem;
  background: rgba(6, 24, 38, 0.94);
  box-shadow: var(--shadow);
  padding: clamp(1.1rem, 3vw, 1.5rem);
}

.subscription-plan-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.subscription-plan-heading span,
.subscription-plan-heading strong {
  display: block;
}

.subscription-plan-heading > div > span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.subscription-plan-heading > div > strong {
  margin-top: 0.25rem;
  color: #ecfeff;
  font-size: 1.25rem;
}

.subscription-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.subscription-price strong {
  color: var(--accent);
  font-size: clamp(2.7rem, 8vw, 4rem);
  line-height: 1;
}

.subscription-price span,
.subscription-small,
.subscription-period {
  color: var(--muted);
}

.subscription-summary {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.subscription-summary li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.subscription-summary strong {
  color: #cffafe;
  text-align: right;
}

.beta-service-note {
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 0.55rem;
  background: rgba(6, 182, 212, 0.09);
  color: #cffafe;
  padding: 0.75rem;
  font-weight: 800;
  line-height: 1.45;
}

.subscription-status-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0;
}

.subscription-status-row span {
  color: var(--muted);
}

.subscription-status-row strong {
  color: var(--blue);
  text-transform: capitalize;
}

.subscription-primary-action,
.subscription-support-action {
  width: 100%;
}

.subscription-pending-box,
.subscription-setup-warning,
.subscription-action-error {
  display: grid;
  gap: 0.35rem;
  border-radius: 0.55rem;
  padding: 0.85rem;
  line-height: 1.5;
}

.subscription-pending-box {
  border: 1px solid rgba(74, 222, 128, 0.32);
  background: rgba(34, 197, 94, 0.1);
  color: #dcfce7;
}

.subscription-pending-box span {
  color: rgba(220, 252, 231, 0.74);
  font-size: 0.86rem;
}

.subscription-setup-warning,
.subscription-action-error {
  border: 1px solid rgba(248, 113, 113, 0.35);
  background: rgba(127, 29, 29, 0.16);
  color: #fecaca;
}

.subscription-action-error[hidden] {
  display: none;
}

.subscription-qr-panel {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  text-align: center;
}

.subscription-qr-panel img {
  width: min(100%, 15rem);
  aspect-ratio: 1;
  display: block;
  border: 0.55rem solid #ffffff;
  border-radius: 0.65rem;
  background: #ffffff;
}

.subscription-qr-panel .upi-reference-box {
  width: 100%;
}

.subscription-qr-panel > p,
.subscription-qr-panel > small {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.subscription-qr-panel > p {
  color: #cffafe;
  font-weight: 800;
}

.subscription-qr-panel .button {
  width: 100%;
}

.subscription-small {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.subscription-unavailable {
  justify-items: center;
  text-align: center;
}

.subscription-unavailable h1,
.subscription-unavailable p {
  margin: 0;
}

.subscription-unavailable p {
  color: var(--muted);
  line-height: 1.55;
}

.dashboard-plan-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.dashboard-plan-strip div {
  min-width: 0;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 0.55rem;
  background: rgba(6, 29, 48, 0.62);
  padding: 0.75rem;
}

.dashboard-plan-strip span,
.dashboard-plan-strip strong {
  display: block;
}

.dashboard-plan-strip span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.dashboard-plan-strip strong {
  margin-top: 0.3rem;
  color: #cffafe;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .subscription-layout {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .subscription-intro h1 {
    max-width: 17ch;
  }

  .subscription-checkout {
    position: static;
  }

  .dashboard-plan-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .dashboard-plan-strip {
    grid-template-columns: 1fr;
  }

  .subscription-gate {
    padding: 0.75rem 0.85rem 1.5rem;
  }

  .subscription-nav {
    min-height: 3.5rem;
  }

  .subscription-feature-grid {
    grid-template-columns: 1fr;
  }

  .subscription-feature-grid div {
    min-height: auto;
  }

  .subscription-intro h1 {
    font-size: 2.35rem;
  }

  .subscription-summary li {
    align-items: flex-start;
  }
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  padding: 1rem;
}

.step span {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #04130f;
  background: var(--accent);
  font-weight: 900;
  margin-bottom: 1rem;
}

.step strong {
  display: block;
  font-size: 1.05rem;
}

.step p {
  color: var(--muted);
  line-height: 1.5;
}

.seo-band {
  display: grid;
  gap: 1.2rem;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.seo-copy-card,
.faq-list details {
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 0.65rem;
  background:
    radial-gradient(circle at top left, rgba(6, 182, 212, 0.13), transparent 12rem),
    rgba(8, 28, 44, 0.74);
  box-shadow: var(--shadow);
}

.seo-copy-card {
  padding: 1.1rem;
}

.seo-copy-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.seo-copy-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.faq-list details {
  padding: 0.95rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

.faq-list p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.legal-trust-band {
  display: grid;
  gap: 1rem;
}

.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.legal-card {
  min-height: 16rem;
  display: grid;
  align-content: start;
  gap: 0.65rem;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 0.65rem;
  background: rgba(8, 28, 44, 0.78);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.legal-card span {
  width: fit-content;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.1);
  color: #bae6fd;
  padding: 0.35rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.legal-card button {
  align-self: end;
  width: 100%;
  border: 1px solid rgba(74, 222, 128, 0.24);
  border-radius: 0.5rem;
  background: rgba(13, 28, 51, 0.72);
  color: var(--text);
  padding: 0.72rem 0.85rem;
  font-weight: 900;
}

.legal-card button:hover {
  border-color: rgba(34, 211, 238, 0.62);
  color: #bae6fd;
}

.contact-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: 0.75rem;
  background: rgba(6, 17, 31, 0.72);
  padding: 1rem;
}

.contact-strip strong {
  display: block;
  font-size: 1.05rem;
}

.contact-strip p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(74, 222, 128, 0.18);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0.7rem;
  background: rgba(8, 28, 44, 0.72);
  border: 1px solid rgba(34, 211, 238, 0.25);
}

.site-footer strong {
  font-size: 1.05rem;
}

.site-footer p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.site-footer .legal-identity {
  color: rgba(217, 245, 255, 0.72);
  font-size: 0.92rem;
}

.udyam-registration {
  width: fit-content;
  display: grid;
  gap: 0.16rem;
  margin-top: 0.7rem;
  border-left: 2px solid var(--accent);
  padding: 0.2rem 0 0.2rem 0.7rem;
  color: #cffafe;
  text-decoration: none;
}

.udyam-registration span,
.udyam-registration strong,
.udyam-registration small {
  display: block;
}

.udyam-registration span {
  color: rgba(217, 245, 255, 0.72);
  font-size: 0.75rem;
}

.udyam-registration strong {
  font-size: 0.86rem;
}

.udyam-registration small {
  color: var(--accent);
  font-size: 0.72rem;
}

.udyam-registration:hover {
  color: #ffffff;
}

.site-footer nav,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.site-footer button,
.legal-links button {
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 999px;
  background: rgba(13, 28, 51, 0.64);
  color: var(--muted);
  padding: 0.55rem 0.75rem;
  font-weight: 800;
}

.site-footer button:hover,
.legal-links button:hover {
  color: var(--accent);
  border-color: rgba(74, 222, 128, 0.48);
}

.legal-wrap {
  min-height: 100vh;
  padding-bottom: 4rem;
}

.legal-nav {
  margin-top: 0.75rem;
}

.legal-document {
  width: min(920px, calc(100% - 2rem));
  margin: 3rem auto 0;
  border: 1px solid rgba(74, 222, 128, 0.24);
  border-radius: 0.8rem;
  background: rgba(13, 28, 51, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.legal-header {
  padding: clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(74, 222, 128, 0.07));
}

.legal-header h1 {
  margin: 0.7rem 0 0;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 0.98;
}

.legal-header p {
  color: var(--muted);
  line-height: 1.6;
}

.legal-note {
  border: 1px solid rgba(255, 209, 102, 0.28);
  border-radius: 0.5rem;
  background: rgba(255, 209, 102, 0.08);
  padding: 0.8rem;
}

.legal-sections {
  display: grid;
  gap: 0;
}

.legal-sections section {
  padding: 1.2rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(36, 65, 96, 0.72);
}

.legal-sections section:last-child {
  border-bottom: 0;
}

.legal-sections h2 {
  margin: 0;
  font-size: 1.05rem;
}

.legal-sections p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.toast {
  position: fixed;
  right: 1rem;
  top: 1rem;
  z-index: 95;
  background: #0e1512;
  color: var(--text);
  border: 1px solid rgba(74, 222, 128, 0.5);
  padding: 0.8rem 0.95rem;
  border-radius: 0.45rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-1rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
  max-width: calc(100vw - 2rem);
}

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

.top-notice {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 110;
  width: min(34rem, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem;
  color: var(--text);
  border: 1px solid rgba(34, 211, 238, 0.55);
  border-radius: 0.75rem;
  background: rgba(5, 20, 34, 0.96);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.36), 0 0 1.8rem rgba(34, 211, 238, 0.16);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translate(-50%, -0.85rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.top-notice.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.top-notice-mark {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #031b26;
  font-weight: 950;
}

.top-notice strong,
.top-notice span {
  display: block;
}

.top-notice strong {
  font-size: 0.98rem;
}

.top-notice span {
  margin-top: 0.15rem;
  color: var(--muted);
  line-height: 1.35;
  font-size: 0.9rem;
}

.top-notice button {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 0.45rem;
  background: rgba(15, 23, 42, 0.72);
  color: var(--text);
  font-size: 1.15rem;
}

.notice-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(12px);
}

.notice-modal {
  width: min(100%, 28rem);
  border: 1px solid rgba(34, 211, 238, 0.36);
  border-radius: 0.85rem;
  background: rgba(8, 28, 44, 0.96);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  text-align: center;
}

.notice-modal-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  margin: 0 auto 0.8rem;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #031b26;
  font-weight: 950;
}

.notice-modal h2 {
  margin: 0;
  font-size: 1.45rem;
}

.notice-modal p {
  margin: 0.65rem 0 1rem;
  color: var(--muted);
  line-height: 1.55;
}

@keyframes alert-in {
  0% {
    transform: translateY(-150%) scale(0.95);
    opacity: 0;
  }

  10%,
  82% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateY(-150%) scale(0.96);
    opacity: 0;
  }
}

@keyframes particle-drift {
  from {
    background-position: 0 0, 2.5rem 2.5rem;
  }

  to {
    background-position: 5rem 10rem, 9.5rem 16.5rem;
  }
}

@keyframes light-sweep {
  from {
    opacity: 0.54;
    transform: translateX(-1rem);
  }

  to {
    opacity: 0.85;
    transform: translateX(1rem);
  }
}

@keyframes demo-float {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(-2deg);
  }

  50% {
    transform: translateY(-0.8rem) rotateX(2deg) rotateY(2deg);
  }
}

@keyframes grid-pan {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 4rem 4rem;
  }
}

@keyframes alert-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(0.4rem) scale(1.02);
  }
}

@keyframes chat-rise {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-0.35rem);
    opacity: 1;
  }
}

@keyframes liquid-wave {
  from {
    transform: translateX(-8%) rotate(0deg);
  }

  to {
    transform: translateX(8%) rotate(360deg);
  }
}

@keyframes overlay-edge-flow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 220% 50%;
  }
}

@keyframes overlay-edge-sheen {
  0%,
  32% {
    left: -35%;
    opacity: 0;
  }

  45% {
    opacity: 0.8;
  }

  68%,
  100% {
    left: 110%;
    opacity: 0;
  }
}

@keyframes widget-glow {
  0%,
  100% {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 0 rgba(74, 222, 128, 0);
  }

  50% {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 24px rgba(74, 222, 128, 0.2);
  }
}

@media (max-width: 920px) {
  .home-nav {
    grid-template-columns: 1fr;
    position: static;
    margin-top: 1rem;
  }

  .home-nav-links,
  .home-nav-actions {
    justify-content: stretch;
    flex-wrap: wrap;
  }

  .home-nav-links a,
  .home-nav-links button,
  .home-nav-actions .button {
    flex: 1 1 auto;
    text-align: center;
  }

  .pricing-band {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .home-stats,
  .feature-grid,
  .seo-grid,
  .faq-list,
  .overlay-showcase,
  .legal-card-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav,
  .legal-links {
    justify-content: flex-start;
  }

  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    padding: 1rem;
  }

  .brand {
    margin-bottom: 1rem;
  }

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

  .nav button {
    text-align: center;
  }

  .sidebar-note {
    margin-top: 1rem;
  }

  .metrics,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .owner-notification-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-hero,
  .admin-request-main,
  .admin-request-footer,
  .managed-streamer-main {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-request-date {
    min-width: 0;
    text-align: left;
  }

  .admin-request-actions {
    justify-content: stretch;
  }

  .admin-request-actions .button,
  .managed-streamer-actions .button {
    flex: 1 1 auto;
  }

  .managed-streamer-actions {
    justify-content: stretch;
  }

  .managed-streamer-links {
    grid-template-columns: 1fr;
  }

  .dashboard-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .onboarding-header {
    align-items: stretch;
    flex-direction: column;
  }

  .onboarding-steps {
    grid-template-columns: 1fr;
  }

  .horizontal-form {
    grid-template-columns: 1fr;
  }

  .verifier-setup-steps {
    grid-template-columns: 1fr;
  }

  .verifier-token-form {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .actions {
    justify-content: stretch;
  }

  .actions .button {
    flex: 1 1 auto;
  }
}

@media (max-width: 560px) {
  body::before {
    background-size: 4.2rem 4.2rem, 5.6rem 5.6rem;
    opacity: 0.28;
  }

  body::after {
    opacity: 0.8;
  }

  .sidebar {
    padding: 0.85rem;
  }

  .brand {
    gap: 0.6rem;
  }

  .brand-logo {
    width: 2.2rem;
    height: 2.2rem;
  }

  .brand-title {
    font-size: 0.98rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }

  .nav {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .nav button {
    min-height: 2.7rem;
    padding: 0.7rem 0.75rem;
  }

  .sidebar-note {
    font-size: 0.78rem;
  }

  .home-nav-links {
    display: none;
  }

  .home-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .home-nav-actions .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-stats,
  .feature-grid,
  .overlay-showcase,
  .legal-card-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .demo-video {
    min-height: 32rem;
    grid-template-columns: 1fr;
  }

  .demo-sidebar {
    display: none;
  }

  .demo-dashboard {
    grid-template-columns: 1fr;
  }

  .demo-alert {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .demo-alert-icon {
    margin: 0 auto;
  }

  .custom-sound-card {
    grid-template-columns: 3rem 1fr;
  }

  .profile-image-row,
  .profile-banner-row,
  .upi-payment-box {
    grid-template-columns: 1fr;
  }

  .upi-payment-box img {
    width: min(12rem, 100%);
    justify-self: center;
  }

  .custom-sound-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .custom-sound-actions .button {
    flex: 1 1 auto;
  }

  .main {
    padding: 0.85rem;
  }

  .topbar {
    margin-bottom: 1rem;
  }

  .page-title {
    font-size: clamp(1.45rem, 9vw, 2rem);
    line-height: 1.08;
  }

  .page-kicker {
    line-height: 1.45;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .metrics,
  .compact-metrics,
  .admin-filters {
    grid-template-columns: 1fr;
  }

  .metric,
  .panel,
  .donation-card,
  .onboarding-panel,
  .admin-request-card,
  .managed-streamer-card {
    border-radius: 0.55rem;
  }

  .metric {
    padding: 0.85rem;
  }

  .metric-value {
    font-size: 1.55rem;
  }

  .panel,
  .admin-request-card,
  .managed-streamer-card {
    padding: 0.85rem;
  }

  .panel-header,
  .donation-card-top {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-tools {
    gap: 0.65rem;
  }

  .dashboard-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .verifier-device {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-tab {
    height: 2.55rem;
    padding: 0.4rem 0.55rem;
    font-size: 0.76rem;
  }

  .content-grid {
    margin-top: 0.85rem;
  }

  .form {
    gap: 0.75rem;
  }

  .form-actions,
  .panel-header-actions,
  .admin-request-actions,
  .managed-streamer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .field input,
  .field textarea,
  .field select,
  .button {
    min-height: 2.8rem;
  }

  .password-input {
    grid-template-columns: 1fr;
  }

  .password-input button {
    width: 100%;
  }

  .viewer-wrap {
    padding: 0.75rem;
  }

  .viewer-card {
    padding: 0.85rem;
    border-radius: 0.85rem;
  }

  .donate-shell {
    width: 100%;
  }

  .donate-brand {
    font-size: 1.55rem;
  }

  .donate-logo {
    width: 2.65rem;
    height: 2.65rem;
  }

  .creator-cover {
    min-height: 7.6rem;
  }

  .creator-avatar {
    width: 4.6rem;
    height: 4.6rem;
  }

  .creator-profile {
    flex-direction: column;
    padding: 0.85rem;
  }

  .creator-profile h1 {
    font-size: clamp(1.55rem, 9vw, 2.2rem);
  }

  .creator-channel-link {
    width: 100%;
    justify-content: center;
  }

  .creator-meta {
    grid-template-columns: 1fr;
  }

  .type-grid {
    grid-template-columns: 1fr;
  }

  .sound-card-grid {
    grid-template-columns: 1fr;
  }

  .sound-main {
    grid-template-columns: 2.8rem minmax(0, 1fr);
    min-height: 4rem;
  }

  .sound-icon {
    width: 2.8rem;
    height: 2.8rem;
  }

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

  .amount-currency-row {
    grid-template-columns: 1fr;
  }

  .goal-preview-mini {
    grid-template-columns: 1fr;
  }

  .copy-row {
    grid-template-columns: 1fr;
  }

  .copy-row input {
    min-height: 2.75rem;
  }

  .admin-page {
    padding: 0.85rem;
  }

  .admin-hero {
    padding: 0.9rem;
  }

  .admin-section-tabs {
    grid-template-columns: 1fr;
  }

  .admin-section-tab,
  .admin-filter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .admin-request-meta span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .managed-streamer-links {
    gap: 0.55rem;
  }

  .auth-wrap {
    align-items: start;
    padding: 0.75rem;
  }

  .auth-panel {
    width: 100%;
    border-radius: 0.75rem;
  }

  .auth-brand {
    margin-bottom: 1rem;
  }

  .auth-hero h1 {
    font-size: clamp(1.8rem, 11vw, 2.45rem);
    line-height: 1.05;
  }

  .top-notice {
    top: 0.6rem;
    width: calc(100vw - 1rem);
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0.75rem;
  }

  .top-notice-mark {
    display: none;
  }

  .toast {
    right: 0.5rem;
    top: 0.5rem;
    left: 0.5rem;
  }

  .notice-modal {
    padding: 1rem;
  }

  .legal-document {
    width: min(100%, calc(100vw - 1.5rem));
    border-radius: 0.75rem;
  }

  .legal-header,
  .legal-sections section {
    padding: 1rem;
  }

  .legal-nav,
  .legal-links,
  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .legal-links button,
  .site-footer button {
    width: 100%;
  }

  .alert {
    width: min(28rem, calc(100vw - 2rem));
  }

  .alert-icon {
    width: min(13rem, 72vw);
    height: min(13rem, 72vw);
    margin: 0 auto;
  }

  .goal-liquid-text {
    grid-template-columns: 1fr;
    gap: 0.18rem;
    padding: 0.42rem 0.8rem;
  }

  .goal-liquid-text strong {
    text-align: left;
  }
}

