﻿:root {
  --green: #0a8a4b;
  --green-dark: #076a39;
  --green-soft: #d8f3e4;
  --blue-soft: #dbeafe;
  --gold-soft: #fff3c4;
  --bg: #f3f6f9;
  --text: #20262d;
  --muted: #6b7785;
  --card: #ffffff;
  --border: #dde4ea;
  --shadow: 0 10px 30px rgba(9, 31, 54, 0.08);
  --shadow-soft: 0 18px 45px rgba(10, 45, 33, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Segoe UI Variable", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(10, 138, 75, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(63, 122, 186, 0.10), transparent 26%),
    linear-gradient(180deg, #edf7f1 0%, #f5f8fb 42%, #eef3f7 100%);
  color: var(--text);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(10px);
}

body::before {
  width: 280px;
  height: 280px;
  top: 88px;
  right: -90px;
  background: radial-gradient(circle, rgba(87, 201, 143, 0.22), rgba(87, 201, 143, 0));
  animation: floatOrb 12s ease-in-out infinite;
}

body::after {
  width: 220px;
  height: 220px;
  bottom: 40px;
  left: -60px;
  background: radial-gradient(circle, rgba(126, 170, 227, 0.18), rgba(126, 170, 227, 0));
  animation: floatOrb 14s ease-in-out infinite reverse;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  z-index: 10;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.14) 50%, transparent 80%);
  transform: translateX(-100%);
  animation: sweepGlow 8.5s linear infinite;
  pointer-events: none;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.sidebar-toggle {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.16);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sidebar-toggle:hover {
  background: rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.sidebar-toggle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.brand {
  font-weight: 700;
  letter-spacing: 1.6px;
}

.layout {
  margin-top: 64px;
  min-height: calc(100vh - 64px);
}

.sidebar {
  position: fixed;
  top: 64px;
  left: 0;
  bottom: 0;
  width: 260px;
  z-index: 9;
  background: rgba(252, 255, 255, 0.82);
  border-right: 1px solid rgba(214, 226, 233, 0.92);
  padding: 18px 14px 20px;
  backdrop-filter: blur(12px);
  overflow-y: auto;
  transform: translateX(-105%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

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

.sidebar a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #455668;
  border-radius: 16px;
  padding: 11px 14px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.sidebar a::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1ed8ae 0%, #3ac8ff 100%);
  opacity: 0;
  transform: scaleY(0.55);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.sidebar-link-label {
  flex: 1;
  min-width: 0;
}

.sidebar-link-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 8px 16px rgba(21, 61, 102, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sidebar-link-icon svg {
  width: 18px;
  height: 18px;
}

.sidebar a:hover,
.sidebar a.active {
  background: linear-gradient(90deg, rgba(235, 248, 242, 0.95) 0%, rgba(240, 247, 255, 0.96) 100%);
  color: #138765;
  transform: translateX(4px);
  box-shadow: 0 16px 28px rgba(23, 63, 98, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.sidebar a:hover::before,
.sidebar a.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.sidebar a:hover .sidebar-link-icon,
.sidebar a.active .sidebar-link-icon {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 12px 20px rgba(21, 61, 102, 0.16);
}

.sidebar-icon-panel {
  background: linear-gradient(135deg, rgba(57, 228, 188, 0.22) 0%, rgba(52, 137, 236, 0.20) 100%);
  color: #32b89d;
}

.sidebar-icon-seller {
  background: linear-gradient(135deg, rgba(88, 214, 141, 0.22) 0%, rgba(75, 154, 255, 0.18) 100%);
  color: #178d6d;
}

.sidebar-icon-ranking {
  background: linear-gradient(135deg, rgba(255, 206, 90, 0.28) 0%, rgba(255, 150, 64, 0.22) 100%);
  color: #f0a31f;
}

.sidebar-icon-account {
  background: linear-gradient(135deg, rgba(136, 185, 255, 0.24) 0%, rgba(88, 130, 232, 0.18) 100%);
  color: #5284d7;
}

.sidebar-icon-social {
  background: linear-gradient(135deg, rgba(53, 216, 170, 0.22) 0%, rgba(118, 210, 255, 0.18) 100%);
  color: #21a17f;
}

.sidebar-icon-withdraw {
  background: linear-gradient(135deg, rgba(120, 148, 233, 0.22) 0%, rgba(91, 123, 178, 0.18) 100%);
  color: #4b6798;
}

.sidebar-icon-history {
  background: linear-gradient(135deg, rgba(139, 199, 255, 0.22) 0%, rgba(98, 221, 192, 0.18) 100%);
  color: #4e8ec5;
}

.sidebar-icon-gift {
  background: linear-gradient(135deg, rgba(255, 196, 80, 0.24) 0%, rgba(70, 214, 171, 0.18) 100%);
  color: #d99a1a;
}

.sidebar-icon-logout {
  background: linear-gradient(135deg, rgba(114, 149, 232, 0.20) 0%, rgba(71, 96, 171, 0.16) 100%);
  color: #4565a2;
}

.sidebar-icon-check {
  background: linear-gradient(135deg, rgba(78, 225, 141, 0.22) 0%, rgba(87, 205, 255, 0.18) 100%);
  color: #179868;
}

.sidebar-icon-clipboard {
  background: linear-gradient(135deg, rgba(81, 225, 201, 0.22) 0%, rgba(97, 154, 255, 0.18) 100%);
  color: #2f94a9;
}

.sidebar-icon-network {
  background: linear-gradient(135deg, rgba(148, 153, 255, 0.22) 0%, rgba(93, 215, 250, 0.18) 100%);
  color: #5b74c8;
}

.sidebar-icon-puzzle {
  background: linear-gradient(135deg, rgba(255, 181, 85, 0.24) 0%, rgba(255, 133, 98, 0.18) 100%);
  color: #d18629;
}

.sidebar-icon-package {
  background: linear-gradient(135deg, rgba(106, 203, 188, 0.22) 0%, rgba(107, 145, 234, 0.18) 100%);
  color: #3f857e;
}

.sidebar-icon-telegram {
  background: linear-gradient(135deg, rgba(114, 189, 255, 0.24) 0%, rgba(68, 150, 255, 0.18) 100%);
  color: #3790dd;
}

.sidebar-icon-login {
  background: linear-gradient(135deg, rgba(75, 224, 177, 0.22) 0%, rgba(83, 188, 255, 0.18) 100%);
  color: #1e937a;
}

.sidebar-icon-create {
  background: linear-gradient(135deg, rgba(169, 139, 255, 0.22) 0%, rgba(100, 184, 255, 0.18) 100%);
  color: #7161db;
}

.sidebar-backdrop {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  border: 0;
  background: rgba(7, 20, 33, 0.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.content {
  padding: 22px;
  animation: riseIn 0.45s ease;
  transition: margin-left 0.24s ease;
}

body.sidebar-open .sidebar {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

body.sidebar-open .sidebar-backdrop {
  opacity: 1;
  pointer-events: auto;
}

h1 {
  margin-top: 0;
  font-size: 1.5rem;
}

p {
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.one { grid-template-columns: 1fr; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.money { font-size: 1.6rem; font-weight: 700; color: var(--green-dark); margin: 8px 0; }

.list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #edf2f7;
  padding: 12px 0;
}

.list li:last-child { border-bottom: 0; }

.form {
  display: grid;
  gap: 8px;
}

input, select {
  width: 100%;
  border: 1px solid #d0d9e3;
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 0.95rem;
}

.toggle {
  display: flex;
  gap: 8px;
  align-items: center;
}

.toggle input { width: auto; }

.btn {
  border: 0;
  background: var(--green);
  color: white;
  border-radius: 10px;
  padding: 9px 12px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 10px 22px rgba(10, 138, 75, 0.18);
}

.btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(7, 106, 57, 0.22);
}
.btn.ghost { background: #ebeff4; color: #1f2d3a; }
.btn.success { background: #048a54; }
.btn.danger { background: #b83a3a; }

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-start-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}

.post-start-actions form {
  display: grid;
  gap: 8px;
}

.post-start-actions label {
  margin-top: 6px;
}

.post-start-actions select {
  min-width: 280px;
  margin-bottom: 8px;
}

.alerts {
  margin-bottom: 14px;
  display: grid;
  gap: 6px;
}

.alert {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.alert-success { background: #e7f8ef; color: #08643c; border-color: #bfe8cf; }
.alert-danger { background: #fde8e8; color: #8f2525; border-color: #f3c0c0; }
.alert-warning { background: #fff6df; color: #755200; border-color: #f2df9d; }
.alert-info { background: #e8f1fb; color: #1a4f84; border-color: #c7daef; }

.page-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.action-item {
  margin: 0;
}

.action-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8f5ed;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.action-avatar {
  border: 1px solid #d8e8df;
}

.action-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.action-avatar-fallback {
  line-height: 1;
}

.badge {
  font-size: 0.8rem;
  border-radius: 999px;
  background: #ecf1f6;
  padding: 4px 8px;
  text-transform: lowercase;
}

.badge-pending { background: #fff5d9; color: #8d6700; }
.badge-validating { background: #e0efff; color: #1a5c9a; }
.badge-done { background: #ddf7ea; color: #126a43; }
.badge-error { background: #fde8e8; color: #8f2525; }
.badge-skipped { background: #f2edf8; color: #5a3f80; }

.code {
  font-family: Consolas, monospace;
  font-size: 1.2rem;
  color: #1c2f45;
}

.inline-form { display: inline; margin-left: 8px; }

.auth-shell {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.auth-card {
  width: min(100%, 520px);
  margin: 0 auto;
}

.account-select {
  width: 100%;
  border: 1px solid #d0d9e3;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 10px;
}

.social-hub {
  display: grid;
  gap: 16px;
}

.social-page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background:
    radial-gradient(circle at top right, rgba(66, 205, 167, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(111, 170, 255, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 251, 246, 0.98) 52%, rgba(238, 246, 255, 0.98) 100%);
  border-color: #d5e8e2;
}

.social-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.36) 52%, transparent 70%);
  pointer-events: none;
}

.social-page-hero-main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-page-icon,
.social-guide-icon,
.social-security-icon,
.social-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-page-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #43c68e 0%, #28a570 100%);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(29, 157, 108, 0.22);
}

.social-page-icon svg,
.social-guide-icon svg,
.social-security-icon svg,
.social-empty-icon svg,
.social-stat-icon svg,
.social-hero-action svg,
.social-submit svg,
.social-reset svg {
  width: 22px;
  height: 22px;
}

.social-page-hero h1 {
  margin-bottom: 6px;
}

.social-page-hero p {
  margin: 0;
  max-width: 640px;
}

.social-hero-action {
  position: relative;
  z-index: 1;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(237, 248, 241, 0.98) 0%, rgba(233, 247, 255, 0.98) 100%);
  border: 1px solid #d8ebe2;
  box-shadow: 0 14px 26px rgba(25, 64, 88, 0.08);
}

.social-hero-action span {
  display: inline-flex;
  align-items: center;
}

.social-hero-action-arrow svg {
  width: 18px;
  height: 18px;
}

.social-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 16px;
  align-items: start;
}

.social-form-card,
.social-list-card {
  border-radius: 18px;
  padding: 18px;
}

.social-form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 252, 255, 0.99) 100%);
}

.social-list-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 253, 255, 0.99) 100%);
}

.social-form-intro-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.social-form-hero,
.social-guide-card {
  border-radius: 16px;
  padding: 16px;
}

.social-form-hero {
  background: linear-gradient(135deg, #f3fcf7 0%, #edf7ff 100%);
  border: 1px solid #dcecf2;
}

.social-form-hero h3 {
  margin: 8px 0 6px;
}

.social-form-hero p {
  margin: 0;
}

.social-chip {
  display: inline-block;
  background: linear-gradient(135deg, #effbf4 0%, #def5eb 100%);
  color: #15845f;
  border: 1px solid #cfeadf;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  letter-spacing: 0.7px;
}

.social-guide-card {
  border: 1px solid #dbe9f1;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.social-guide-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.social-guide-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(46, 170, 118, 0.16) 0%, rgba(86, 145, 236, 0.14) 100%);
  color: #2b9a72;
}

.social-guide-head strong,
.social-guide-head small {
  display: block;
}

.social-guide-head small {
  margin-top: 2px;
  color: #6f8399;
}

.social-guide-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.social-guide-list li {
  position: relative;
  padding-left: 28px;
  color: #39516a;
}

.social-guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #31bf86 0%, #239d6a 100%);
  box-shadow: 0 8px 16px rgba(35, 157, 106, 0.18);
}

.social-guide-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 5px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.social-guide-note {
  margin-top: 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(229, 247, 244, 0.95) 0%, rgba(232, 242, 252, 0.95) 100%);
  border: 1px solid #d6eaf0;
  color: #1f6c69;
}

.social-guide-note strong {
  color: #117870;
}

.social-form-shell {
  gap: 14px;
}

.social-form-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #dde8f1;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.social-form-panel-base {
  background:
    radial-gradient(circle at top right, rgba(46, 194, 141, 0.10), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
}

.social-form-panel-audience {
  background:
    radial-gradient(circle at top right, rgba(111, 170, 255, 0.10), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.social-form-panel-validation {
  background:
    radial-gradient(circle at top right, rgba(255, 193, 87, 0.10), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fdfdf9 100%);
}

.social-panel-kicker {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #edf7f2;
  border: 1px solid #d5ebe0;
  color: #157f60;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.social-panel-copy h4 {
  margin: 8px 0 4px;
  color: #173247;
}

.social-panel-copy p {
  margin: 0;
}

.social-form-grid {
  display: grid;
  gap: 12px;
}

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

.social-field {
  display: grid;
  gap: 7px;
}

.social-field-wide {
  grid-column: 1 / -1;
}

.social-field-label {
  font-weight: 700;
  color: #23425a;
}

.social-form .social-field input,
.social-form .social-field select {
  background: #f9fcff;
  border: 1px solid #ccd9e6;
  border-radius: 14px;
  padding: 11px 12px;
  color: #1d3447;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.social-form .social-field input:focus,
.social-form .social-field select:focus {
  outline: none;
  border-color: #70b6b7;
  box-shadow: 0 0 0 4px rgba(83, 183, 170, 0.12);
}

.social-platform-picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.social-platform-option {
  display: block;
  cursor: pointer;
}

.social-platform-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.social-platform-option-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid #d7e3ee;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 22px rgba(17, 39, 66, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.social-platform-option:hover .social-platform-option-box {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(17, 39, 66, 0.08);
}

.social-platform-option input:focus-visible + .social-platform-option-box {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.18);
}

.social-platform-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-platform-option-icon svg {
  width: 24px;
  height: 24px;
}

.social-platform-option-copy strong,
.social-platform-option-copy small {
  display: block;
}

.social-platform-option-copy strong {
  color: #173449;
  margin-bottom: 4px;
}

.social-platform-option-copy small {
  color: #72859a;
  line-height: 1.35;
}

.social-platform-option-kwai .social-platform-option-icon {
  background: linear-gradient(135deg, rgba(255, 191, 84, 0.22) 0%, rgba(255, 146, 61, 0.16) 100%);
  color: #ff861e;
}

.social-platform-option-instagram .social-platform-option-icon {
  background: linear-gradient(135deg, rgba(255, 122, 223, 0.20) 0%, rgba(170, 82, 255, 0.16) 100%);
  color: #ca4ef2;
}

.social-platform-option-x .social-platform-option-icon {
  background: linear-gradient(135deg, rgba(116, 132, 154, 0.20) 0%, rgba(34, 45, 60, 0.16) 100%);
  color: #233244;
}

.social-platform-option-kwai input:checked + .social-platform-option-box {
  border-color: rgba(255, 142, 39, 0.34);
  background: linear-gradient(140deg, #fff8ee 0%, #fff1e1 100%);
  box-shadow: 0 16px 28px rgba(255, 134, 30, 0.14);
}

.social-platform-option-instagram input:checked + .social-platform-option-box {
  border-color: rgba(202, 78, 242, 0.28);
  background: linear-gradient(140deg, #fff6ff 0%, #f7eeff 100%);
  box-shadow: 0 16px 28px rgba(202, 78, 242, 0.12);
}

.social-platform-option-x input:checked + .social-platform-option-box {
  border-color: rgba(62, 77, 95, 0.26);
  background: linear-gradient(140deg, #f4f8fc 0%, #ecf2f8 100%);
  box-shadow: 0 16px 28px rgba(44, 57, 74, 0.10);
}

.social-field-note {
  color: #2c9870;
  font-size: 0.82rem;
}

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

.social-toggle-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid #dce8ef;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  cursor: pointer;
}

.social-toggle-card input {
  width: auto;
  margin-top: 2px;
  accent-color: #189567;
}

.social-toggle-copy strong,
.social-toggle-copy small {
  display: block;
}

.social-toggle-copy strong {
  color: #1d364a;
}

.social-toggle-copy small {
  margin-top: 4px;
  color: #718399;
}

.social-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-submit,
.social-reset {
  gap: 8px;
  min-width: 170px;
  border-radius: 14px;
  padding: 11px 16px;
}

.social-list-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.social-list-copy {
  min-width: 0;
}

.social-list-kicker {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(96, 190, 170, 0.12) 0%, rgba(126, 166, 255, 0.12) 100%);
  border: 1px solid #d4e5eb;
  color: #5d7f8a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.6px;
}

.social-list-head h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 4px;
  color: #173449;
}

.social-list-head p {
  margin: 0;
  color: #6f8398;
}

.social-list-title-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(88, 195, 173, 0.18) 0%, rgba(120, 163, 255, 0.16) 100%);
  color: #2f8e82;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.social-list-title-icon svg {
  width: 20px;
  height: 20px;
}

.social-list-total-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #dce8f1;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  color: #587288;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.social-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.social-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid #dfebf2;
  background: linear-gradient(140deg, #f6fcf8 0%, #edf7ff 100%);
  text-align: left;
  appearance: none;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.social-stat:hover {
  transform: translateY(-1px);
  border-color: #cdddeb;
  box-shadow: 0 12px 22px rgba(17, 39, 66, 0.08);
}

.social-stat:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.18);
}

.social-stat.is-active {
  transform: translateY(-1px);
  border-color: #b9d6ca;
  box-shadow: 0 14px 26px rgba(17, 39, 66, 0.10);
}

.social-stat-total.is-active {
  background: linear-gradient(140deg, #eefaf4 0%, #e7f2ff 100%);
}

.social-stat-kwai.is-active {
  border-color: rgba(255, 142, 39, 0.34);
  background: linear-gradient(140deg, #fff8ee 0%, #fff1e1 100%);
}

.social-stat-instagram.is-active {
  border-color: rgba(202, 78, 242, 0.28);
  background: linear-gradient(140deg, #fff6ff 0%, #f7eeff 100%);
}

.social-stat-x.is-active {
  border-color: rgba(62, 77, 95, 0.26);
  background: linear-gradient(140deg, #f4f8fc 0%, #ecf2f8 100%);
}

.social-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-stat-total .social-stat-icon {
  background: linear-gradient(135deg, rgba(55, 189, 138, 0.18) 0%, rgba(78, 149, 255, 0.16) 100%);
  color: #2f9a77;
}

.social-stat-kwai .social-stat-icon {
  background: linear-gradient(135deg, rgba(255, 191, 84, 0.22) 0%, rgba(255, 146, 61, 0.16) 100%);
  color: #ff861e;
}

.social-stat-instagram .social-stat-icon {
  background: linear-gradient(135deg, rgba(255, 122, 223, 0.20) 0%, rgba(170, 82, 255, 0.16) 100%);
  color: #ca4ef2;
}

.social-stat-x .social-stat-icon {
  background: linear-gradient(135deg, rgba(116, 132, 154, 0.20) 0%, rgba(34, 45, 60, 0.16) 100%);
  color: #233244;
}

.social-stat-label {
  display: block;
  color: #6a8097;
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.social-stat-value {
  color: #173449;
  font-size: 1.35rem;
  line-height: 1;
}

.social-filter-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 16px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #dde8f1;
  background: linear-gradient(180deg, #fbfdff 0%, #f5fafe 100%);
}

.social-filter-status-label {
  color: #74879a;
  font-size: 0.82rem;
}

.social-filter-status strong {
  color: #173449;
  font-size: 0.92rem;
}

.social-accounts-grid {
  display: grid;
  gap: 16px;
}

.social-account-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(223, 233, 241, 0.96);
  border-radius: 34px;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 253, 255, 0.95) 100%);
  box-shadow:
    0 20px 38px rgba(17, 39, 66, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -3px 0 rgba(222, 230, 239, 0.72);
}

.social-account-card::before,
.social-account-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.social-account-card::before {
  border-radius: inherit;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.95), transparent 8%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.76), transparent 12%),
    radial-gradient(circle at 18% 74%, rgba(255, 255, 255, 0.64), transparent 10%),
    radial-gradient(circle at 90% 82%, rgba(255, 255, 255, 0.54), transparent 14%),
    radial-gradient(circle at 55% 58%, rgba(255, 255, 255, 0.38), transparent 18%);
  opacity: 0.92;
}

.social-account-card::after {
  inset: 10px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.social-account-card-kwai {
  background:
    radial-gradient(circle at top right, rgba(255, 205, 112, 0.32), transparent 26%),
    radial-gradient(circle at bottom left, rgba(223, 237, 225, 0.44), transparent 34%),
    linear-gradient(135deg, #fff7e6 0%, #fffdf8 44%, #f6fff8 100%);
}

.social-account-card-instagram {
  background:
    radial-gradient(circle at top right, rgba(224, 132, 255, 0.26), transparent 26%),
    radial-gradient(circle at bottom left, rgba(154, 225, 255, 0.26), transparent 34%),
    linear-gradient(135deg, #f6f2ff 0%, #fffefe 44%, #eefbff 100%);
}

.social-account-card-x {
  background:
    radial-gradient(circle at top right, rgba(105, 124, 150, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(164, 205, 224, 0.20), transparent 34%),
    linear-gradient(135deg, #f4f8fc 0%, #ffffff 44%, #edf3f9 100%);
}

.social-account-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.social-account-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef9f3 0%, #e8f2fd 100%);
  border: 3px solid rgba(255, 255, 255, 0.84);
  color: #2a986e;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(40, 78, 89, 0.08);
}

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

.social-account-copy {
  min-width: 0;
}

.social-account-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.social-account-id {
  color: #57a082;
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1;
}

.social-state-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.social-state-pill.is-active {
  background: rgba(220, 247, 234, 0.84);
  color: #157b52;
}

.social-state-pill.is-inactive {
  background: rgba(253, 232, 232, 0.88);
  color: #9b3030;
}

.social-account-user-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.social-account-user {
  margin: 0;
  color: #152f42;
  font-size: 1.08rem;
  font-weight: 800;
}

.social-account-platform-mark {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-account-platform-mark svg {
  width: 18px;
  height: 18px;
}

.social-account-platform-mark-kwai {
  color: #df7e08;
}

.social-account-platform-mark-instagram {
  color: #bc47eb;
}

.social-account-platform-mark-x {
  color: #2a3a4c;
}

.social-account-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-account-meta span {
  background: #eef4fa;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.8rem;
  color: #56708a;
}

.social-platform-badge-kwai {
  background: rgba(255, 173, 59, 0.16) !important;
  color: #df7e08 !important;
}

.social-platform-badge-instagram {
  background: rgba(224, 111, 255, 0.14) !important;
  color: #bc47eb !important;
}

.social-platform-badge-x {
  background: rgba(91, 111, 133, 0.14) !important;
  color: #2a3a4c !important;
}

.social-account-menu {
  position: relative;
  z-index: 2;
}

.social-account-menu-toggle {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid #e0e7f0;
  color: #7f93a7;
  background: #f8fbfe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.social-account-menu-toggle svg,
.social-account-menu-link svg {
  width: 18px;
  height: 18px;
}

.social-account-menu-toggle:hover,
.social-account-menu-toggle[aria-expanded="true"] {
  transform: translateY(-1px);
  color: #168a64;
  border-color: #cfe5dc;
}

.social-account-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid #dbe6ef;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(17, 39, 66, 0.12);
  z-index: 3;
}

.social-account-menu-panel form {
  margin: 0;
}

.social-account-menu-link {
  width: 100%;
  border: 0;
  background: transparent;
  color: #40586e;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font: inherit;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.social-account-menu-link:hover {
  background: #f3f8fc;
  color: #168a64;
}

.social-account-menu-link-danger {
  color: #9a3b3b;
}

.social-account-menu-link-danger:hover {
  background: #fff1f1;
  color: #b03f3f;
}

.social-account-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.social-account-stat-item {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(226, 235, 242, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(251, 253, 255, 0.94) 100%);
  box-shadow:
    0 8px 16px rgba(17, 39, 66, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.social-account-stats small,
.social-account-stats strong {
  display: block;
}

.social-account-stats small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #75879b;
  margin-bottom: 4px;
}

.social-account-stats strong {
  color: #163247;
  font-size: 1.05rem;
}

.social-account-stat-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-account-stat-icon svg {
  width: 18px;
  height: 18px;
}

.social-account-card-kwai .social-account-stat-icon {
  color: #e4a533;
}

.social-account-card-instagram .social-account-stat-icon {
  color: #8eb1ff;
}

.social-account-card-x .social-account-stat-icon {
  color: #5d728a;
}

.social-security-tip {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(237, 248, 241, 0.96) 0%, rgba(231, 245, 255, 0.96) 100%);
  border: 1px solid #d7e9e3;
}

.social-security-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(45, 184, 131, 0.18) 0%, rgba(86, 145, 236, 0.15) 100%);
  color: #2a986f;
}

.social-security-tip strong {
  display: block;
  margin-bottom: 4px;
  color: #1c4258;
}

.social-security-tip p {
  margin: 0;
}

.social-empty-state {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 18px;
  border-radius: 18px;
  border: 1px dashed #cfdfe9;
  background: linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
}

.social-filter-empty {
  margin-top: 14px;
}

.social-empty-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(61, 197, 149, 0.16) 0%, rgba(111, 170, 255, 0.14) 100%);
  color: #2b9a74;
}

.social-empty-state h4 {
  margin: 0;
  color: #183246;
}

.social-empty-state p {
  margin: 0;
  max-width: 320px;
}

@media (max-width: 1080px) {
  .social-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .social-page-hero,
  .social-page-hero-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-list-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-list-total-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .social-hero-action {
    width: 100%;
    justify-content: center;
  }

  .social-form-grid-two,
  .social-platform-picker,
  .social-toggle-grid,
  .social-summary,
  .social-account-stats {
    grid-template-columns: 1fr;
  }

  .social-account-main {
    grid-template-columns: 1fr;
  }

  .social-account-card {
    border-radius: 28px;
    padding: 16px;
  }

  .social-account-avatar {
    width: 60px;
    height: 60px;
  }

  .social-account-header,
  .social-account-user-line {
    flex-wrap: wrap;
  }

  .social-account-link {
    justify-self: start;
  }

  .social-submit-row {
    flex-direction: column;
  }

  .social-submit,
  .social-reset {
    width: 100%;
  }
}

.panel-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.9fr);
  gap: 18px;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(240, 251, 244, 0.96) 52%, rgba(232, 242, 252, 0.96) 100%);
  border: 1px solid #d9e8f3;
  margin-bottom: 14px;
  min-height: 220px;
}

.panel-hero h1 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.panel-hero p {
  margin: 0;
  max-width: 620px;
}

.panel-hero-copy {
  position: relative;
  z-index: 1;
}

.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 218, 199, 0.9);
  color: #0a7c48;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panel-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.panel-highlight-card {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(214, 229, 240, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(18, 39, 64, 0.06);
}

.panel-highlight-card span,
.history-overview-card span,
.balance-label {
  display: block;
  color: #55708c;
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.panel-highlight-card strong,
.history-overview-card strong {
  display: block;
  font-size: 1.15rem;
  color: #12354f;
}

.panel-highlight-card small,
.history-overview-card small {
  display: block;
  margin-top: 5px;
  color: #60758a;
}

.panel-hero-visual {
  position: relative;
  min-height: 160px;
}

.hero-orb,
.hero-grid {
  position: absolute;
  border-radius: 24px;
}

.hero-orb-a {
  inset: 10px 50px 58px 28px;
  border-radius: 28px;
  background: radial-gradient(circle at 30% 30%, rgba(87, 201, 143, 0.56), rgba(87, 201, 143, 0.08) 60%, transparent 70%);
  animation: floatOrb 10s ease-in-out infinite;
}

.hero-orb-b {
  inset: 56px 8px 12px 86px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(126, 170, 227, 0.48), rgba(126, 170, 227, 0.08) 62%, transparent 72%);
  animation: floatOrb 13s ease-in-out infinite reverse;
}

.hero-grid {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent);
}

.panel-balances .balance-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.panel-balances .balance-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  opacity: 0.25;
}

.panel-balances .balance-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), currentColor 30%, rgba(255, 255, 255, 0));
  opacity: 0.18;
}

.panel-balances .balance-card.available::after {
  background: #57c98f;
}

.panel-balances .balance-card.blocked::after {
  background: #9dc0e8;
}

.panel-balances .balance-card.available {
  background: linear-gradient(145deg, #ffffff 0%, #f3fdf7 100%);
  color: #0d6f3d;
}

.panel-balances .balance-card.blocked {
  background: linear-gradient(145deg, #ffffff 0%, #f4f8ff 100%);
  color: #22527d;
}

.panel-balances .balance-card h3 {
  margin-top: 0;
  margin-bottom: 4px;
}

.panel-balances .balance-card small {
  color: #5b6f83;
}

.balance-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.balance-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0a7c48;
  background: rgba(10, 138, 75, 0.1);
}

.balance-badge.soft {
  color: #2b5a84;
  background: rgba(43, 90, 132, 0.1);
}

.history-card {
  border-color: #d8e3ef;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.history-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.history-pill {
  background: #eaf4ff;
  color: #1b4f7a;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.82rem;
  font-weight: 600;
}

.history-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.history-overview-card {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #dce8f3;
  background: linear-gradient(135deg, #f7fbff 0%, #f5fcf8 100%);
}

.history-list li {
  border-bottom: 1px solid #e7eef6;
}

.history-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 14px 0;
}

.history-row.latest {
  background: linear-gradient(90deg, rgba(236, 248, 241, 0.9) 0%, rgba(240, 247, 255, 0.9) 100%);
  border-radius: 14px;
  margin: 4px 0;
  padding: 14px 12px;
  border: 1px solid #dbe8f2;
}

.history-main {
  display: grid;
  gap: 10px;
}

.history-date {
  color: #35516c;
  font-weight: 600;
}

.history-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg, #e9eff6 0%, #f3f7fb 100%);
}

.history-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a8a4b 0%, #61c893 55%, #7bb6f0 100%);
  box-shadow: 0 0 18px rgba(10, 138, 75, 0.18);
  animation: barPulse 2.8s ease-in-out infinite;
}

.history-side {
  display: flex;
  align-items: center;
  gap: 10px;
}

.history-tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: #e8f5ed;
  color: #0a8a4b;
  font-size: 0.76rem;
  font-weight: 700;
}

.history-value {
  color: #0d6f3d;
  font-size: 1rem;
}

.history-empty {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f9fcff 0%, #f4fbf7 100%);
  border: 1px solid #dce8f3;
}

.history-empty p {
  margin: 4px 0 0;
}

.history-empty-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a8a4b 0%, #5dbf8d 100%);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(10, 138, 75, 0.18);
}

.account-hero {
  background: linear-gradient(120deg, #f3fbff 0%, #eef9f2 100%);
  border: 1px solid #d6e6f2;
  margin-bottom: 14px;
}

.account-hero h1 {
  margin-bottom: 6px;
}

.account-hero p {
  margin: 0;
}

.account-main-card {
  border-color: #d8e5f1;
}

.account-form {
  gap: 10px;
}

.account-section-title {
  margin-top: 6px;
  font-weight: 700;
  color: #1f4262;
  padding: 6px 10px;
  border-radius: 10px;
  background: #eef5fb;
  border: 1px solid #d8e4f0;
}

.bot-token-card {
  border-color: #d7e6ef;
}

.bot-token-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.token-output {
  font-family: Consolas, monospace;
  letter-spacing: 0.2px;
  background: #f8fbff;
}

.inline-config {
  grid-template-columns: minmax(260px, 420px) auto;
  align-items: end;
}

.search-select-stack {
  display: grid;
  gap: 8px;
}

.search-input-wrap {
  position: relative;
  display: block;
}

.search-input-wrap input {
  padding-left: 36px;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  opacity: 0.7;
  pointer-events: none;
}

.ranking-hero {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(120deg, #ffffff 0%, #edf9f1 100%);
}

.ranking-hero h1 {
  margin-bottom: 8px;
}

.ranking-hero p {
  margin-top: 0;
}

.ranking-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ranking-controls input {
  min-width: 150px;
}

.ranking-card {
  padding-top: 8px;
}

.ranking-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.ranking-pill {
  background: #e8f5ed;
  color: #0a8a4b;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 600;
}

.ranking-list {
  gap: 0;
}

.ranking-row {
  padding: 12px 8px;
  border-radius: 10px;
}

.ranking-row.pos-1 {
  background: linear-gradient(90deg, #fff4cc 0%, #fff9e6 100%);
}

.ranking-row.pos-2 {
  background: linear-gradient(90deg, #eff3f8 0%, #f7f9fc 100%);
}

.ranking-row.pos-3 {
  background: linear-gradient(90deg, #f8efe6 0%, #fcf6f0 100%);
}

.ranking-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ranking-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ranking-pos {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef2f6;
  font-weight: 700;
  font-size: 0.86rem;
  color: #2b3d4f;
}

.ranking-row.pos-1 .ranking-pos {
  background: #f5b400;
  color: #fff;
}

.ranking-row.pos-2 .ranking-pos {
  background: #75808b;
  color: #fff;
}

.ranking-row.pos-3 .ranking-pos {
  background: #9a6b3f;
  color: #fff;
}

.ranking-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e9f0ff;
  color: #185fd6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.ranking-name {
  color: #1b2632;
}

.ranking-meta {
  color: #667789;
  font-size: 0.78rem;
}

.ranking-money {
  color: #0a8a4b;
  font-size: 1rem;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.table th,
.table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid #e7eef6;
  white-space: nowrap;
}

.table th {
  color: #35516c;
  font-weight: 700;
  background: #f8fbff;
}

.inline-filters {
  grid-template-columns: repeat(4, minmax(0, auto));
  gap: 8px;
  align-items: end;
  margin-bottom: 10px;
}

.admin-kwai-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-kwai-chip {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: #edf4ff;
  color: #1b4f7a;
  text-decoration: none;
  max-width: 340px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-concluir-form {
  display: grid;
  gap: 6px;
  min-width: 180px;
}

.smm-hero {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  background: linear-gradient(120deg, #fdfefe 0%, #e8f7ff 46%, #e8f8ef 100%);
}

.smm-hero h1 {
  margin: 6px 0 8px;
  font-size: 1.7rem;
}

.smm-hero p {
  margin: 0;
  max-width: 640px;
}

.smm-hero-chip {
  min-width: 170px;
  border-radius: 14px;
  border: 1px solid #cce5d6;
  background: linear-gradient(150deg, #0d9b53 0%, #0a8a4b 50%, #08683a 100%);
  color: #fff;
  padding: 14px;
  text-align: right;
  box-shadow: 0 16px 30px rgba(6, 82, 45, 0.24);
}

.smm-hero-chip span,
.smm-hero-chip small {
  display: block;
  opacity: 0.86;
}

.smm-hero-chip strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1.05;
  margin: 5px 0;
}

.smm-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.smm-stat {
  position: relative;
  overflow: hidden;
  border-color: #d8e6f0;
}

.smm-stat::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e9f62, #2f8dd6);
}

.smm-stat span {
  color: #50708d;
  font-size: 0.86rem;
}

.smm-stat strong {
  display: block;
  margin-top: 7px;
  font-size: 1.4rem;
  color: #102132;
}

.smm-stat small {
  color: #667789;
}

.smm-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  margin-bottom: 14px;
  background: linear-gradient(120deg, #f3f9ff 0%, #f4faf6 100%);
}

.smm-tab {
  flex: 1;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 10px 12px;
  font-weight: 600;
  color: #2d4c66;
  transition: all 0.2s ease;
}

.smm-tab:hover {
  border-color: #b7d7ca;
  background: #f5fcf8;
}

.smm-tab.active {
  color: #fff;
  background: linear-gradient(90deg, #0a8a4b 0%, #0f6fca 100%);
  box-shadow: 0 10px 24px rgba(9, 60, 112, 0.2);
}

.smm-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.smm-form-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

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

.smm-field {
  display: grid;
  gap: 6px;
}

.smm-field span {
  color: #385975;
  font-size: 0.86rem;
  font-weight: 600;
}

.smm-field input,
.smm-field select,
.smm-field textarea {
  border-color: #c9d8e8;
  background: #fff;
}

.smm-field-wide {
  grid-column: 1 / -1;
}

.smm-submit {
  margin-top: 4px;
}

.table-action-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.smm-service-list-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.smm-service-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.smm-inline-form {
  margin: 0;
  display: inline-flex;
}

.smm-service-filters {
  margin-bottom: 12px;
}

.smm-pagination-summary {
  margin: 0 0 10px;
  color: #48637a;
  font-size: 0.9rem;
}

.smm-bulk-actions {
  margin: 0 0 12px;
}

.smm-bulk-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.smm-bulk-options {
  width: auto;
  margin-left: auto;
}

.smm-bulk-options .smm-options-menu {
  min-width: 280px;
}

.smm-filter-grid {
  grid-template-columns: minmax(280px, 2.2fr) minmax(160px, 1fr) minmax(180px, auto);
  gap: 10px;
  align-items: end;
}

.smm-col-select {
  width: 62px;
}

.js-service-check,
.js-category-check {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #0f8b67;
  cursor: pointer;
}

.smm-service-table th {
  font-size: 0.85rem;
}

.smm-category-header-row td {
  background: linear-gradient(90deg, #f5f9fc 0%, #f2f8f4 100%);
  border-top: 1px solid #dce8f2;
  border-bottom: 1px solid #dce8f2;
}

.smm-category-row-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
}

.smm-check-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e9f1fb;
  color: #2a4a66;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.smm-check-chip input {
  width: 14px;
  height: 14px;
}

.smm-category-row-inner strong {
  color: #183149;
  font-size: 1.02rem;
}

.smm-category-row-inner span {
  color: #5d7489;
  font-size: 0.86rem;
}

.smm-category-toggle {
  margin-left: auto;
  padding: 6px 10px;
  font-size: 0.82rem;
  min-width: 124px;
}

.smm-category-delete {
  padding: 6px 10px;
  font-size: 0.82rem;
}

.smm-service-row td {
  vertical-align: middle;
}

.smm-service-name {
  display: grid;
  gap: 2px;
}

.smm-service-name strong {
  color: #152e45;
  font-size: 0.95rem;
}

.smm-service-name small {
  color: #6b7f91;
  font-size: 0.8rem;
}

.smm-options {
  position: relative;
  display: inline-flex;
  justify-content: flex-end;
  width: 100%;
}

.smm-options-category {
  width: auto;
  margin-left: auto;
}

.smm-options-trigger {
  min-width: 92px;
}

.smm-options-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 12;
  min-width: 180px;
  display: grid;
  gap: 2px;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid #cdd9e5;
  background: #ffffff;
  box-shadow: 0 12px 22px rgba(9, 31, 54, 0.16);
}

.smm-options-menu[hidden] {
  display: none !important;
}

.smm-options-menu form {
  margin: 0;
}

.smm-option-btn {
  width: 100%;
  border: 0;
  border-radius: 8px;
  text-align: left;
  padding: 8px 10px;
  background: #eef4fb;
  color: #1d3e5a;
  cursor: pointer;
  font-size: 0.85rem;
}

.smm-option-btn:hover {
  background: #e1ecf8;
}

.smm-option-btn.smm-option-danger {
  background: #fdeaea;
  color: #8d2525;
}

.smm-option-btn.smm-option-danger:hover {
  background: #f9dada;
}

.smm-pagination {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.smm-page-link,
.smm-page-current {
  min-width: 42px;
  justify-content: center;
}

.smm-page-current {
  background: linear-gradient(135deg, #0f8b67 0%, #0f9a72 100%);
  color: #fff;
  border-radius: 10px;
  padding: 9px 12px;
  box-shadow: 0 12px 24px rgba(15, 139, 103, 0.24);
}

.btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.smm-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}

.smm-category-card {
  border: 1px solid #d8e7f4;
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(160deg, #fafdff 0%, #f3f9ff 55%, #eef8f2 100%);
}

.smm-category-card h4 {
  margin: 0 0 6px;
  color: #1d3248;
}

.smm-category-card p {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.smm-category-card strong {
  color: #0b7f47;
  font-size: 1.1rem;
}

.smm-category-card small {
  display: block;
  color: #687a8a;
}

.smm-endpoint-list {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.smm-endpoint-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border: 1px solid #d7e3ef;
  border-radius: 10px;
  padding: 10px 12px;
  background: #f6fbff;
}

.smm-endpoint-item span {
  color: #3f5f7b;
  font-size: 0.9rem;
}

.smm-endpoint-item code {
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.83rem;
  border: 1px solid #c8d9e8;
  border-radius: 8px;
  padding: 3px 7px;
  background: #fff;
  color: #1d4369;
}

.smm-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(9, 21, 34, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.smm-modal-backdrop[hidden] {
  display: none !important;
}

.smm-modal-card {
  width: min(880px, 100%);
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  border-radius: 14px;
  border: 1px solid #c9d9e8;
  background: linear-gradient(180deg, #fbfeff 0%, #f3f9ff 100%);
  box-shadow: 0 24px 48px rgba(8, 32, 55, 0.28);
  padding: 16px;
}

body.smm-modal-open {
  overflow: hidden;
}

body.smm-modal-open .card:hover {
  transform: none;
}

.smm-service-list-card,
.smm-service-list-card:hover {
  transform: none;
}

/* Palette Refresh */
:root {
  --green: #0f8b67;
  --green-dark: #0a664d;
  --green-soft: #def4eb;
  --blue-soft: #e1ecf8;
  --gold-soft: #ffe8b0;
  --bg: #edf3f4;
  --text: #162636;
  --muted: #566b7d;
  --card: #fcfefe;
  --border: #cddae4;
  --accent: #2d7fb8;
  --accent-soft: #e7f1f9;
  --shadow: 0 12px 30px rgba(16, 35, 54, 0.10);
  --shadow-soft: 0 18px 42px rgba(16, 61, 45, 0.10);
}

body {
  background:
    radial-gradient(circle at top left, rgba(15, 139, 103, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(45, 127, 184, 0.12), transparent 28%),
    linear-gradient(180deg, #e8f1ef 0%, #f2f6f9 45%, #e9f0f5 100%);
}

body::before {
  background: radial-gradient(circle, rgba(91, 191, 155, 0.24), rgba(91, 191, 155, 0));
}

body::after {
  background: radial-gradient(circle, rgba(120, 168, 216, 0.20), rgba(120, 168, 216, 0));
}

.topbar {
  background: linear-gradient(90deg, #0b6d52 0%, var(--green) 45%, #1f7ea2 100%);
}

.sidebar {
  background: rgba(250, 254, 255, 0.88);
  border-right: 1px solid rgba(206, 219, 229, 0.94);
}

.sidebar a:hover,
.sidebar a.active {
  background: linear-gradient(90deg, rgba(229, 246, 238, 0.96) 0%, rgba(235, 244, 250, 0.96) 100%);
  box-shadow: 0 16px 28px rgba(21, 59, 89, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.sidebar-backdrop {
  background: rgba(9, 28, 45, 0.40);
}

.card {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

input,
select {
  border-color: #bfd0de;
  background: #fbfeff;
  color: var(--text);
}

input:focus,
select:focus {
  outline: none;
  border-color: #78afcf;
  box-shadow: 0 0 0 3px rgba(45, 127, 184, 0.16);
}

.btn {
  background: linear-gradient(135deg, var(--green) 0%, #0f9a72 100%);
  box-shadow: 0 12px 24px rgba(15, 139, 103, 0.24);
}

.btn:hover {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f7e5f 100%);
  box-shadow: 0 16px 30px rgba(10, 102, 77, 0.26);
}

.btn.ghost {
  background: linear-gradient(135deg, #edf3f9 0%, #e4edf7 100%);
  color: #1f3a52;
}

.btn.success {
  background: linear-gradient(135deg, #159a58 0%, #127d49 100%);
}

.btn.danger {
  background: linear-gradient(135deg, #c04444 0%, #9f2f2f 100%);
  box-shadow: 0 12px 24px rgba(159, 47, 47, 0.24);
}

.btn.danger:hover {
  background: linear-gradient(135deg, #a33838 0%, #872626 100%);
  box-shadow: 0 16px 30px rgba(135, 38, 38, 0.26);
}

.badge {
  background: #ecf2f7;
  color: #3f5468;
}

.badge-pending {
  background: #ffeec2;
  color: #805d00;
}

.badge-validating {
  background: #dfeeff;
  color: #1f5f98;
}

.badge-done {
  background: #d8f3e8;
  color: #166344;
}

.badge-error {
  background: #fde6e6;
  color: #8a2b2b;
}

.is-hidden {
  display: none !important;
}

.seller-hero {
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
  align-items: stretch;
  background: linear-gradient(135deg, #fdfefe 0%, #eef8ff 42%, #eef9f1 100%);
}

.seller-highlight-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.seller-hero-aside {
  display: flex;
  align-items: stretch;
}

.seller-tip-card {
  width: 100%;
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(16, 111, 202, 0.1) 0%, rgba(10, 138, 75, 0.12) 100%);
  border: 1px solid rgba(31, 96, 163, 0.12);
  display: grid;
  gap: 10px;
}

.seller-tip-card h3 {
  margin: 0;
  color: #17314b;
}

.seller-tip-card p,
.seller-tip-card small {
  margin: 0;
  color: #48637a;
}

.seller-tip-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a8a4b;
}

.seller-topic-card,
.seller-topic-card:hover {
  position: sticky;
  top: 78px;
  z-index: 4;
  transform: none;
}

.seller-topic-card {
  padding: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 250, 255, 0.98) 48%, rgba(239, 249, 242, 0.98) 100%);
  border-color: #d6e4ef;
}

.seller-topic-head {
  margin-bottom: 12px;
}

.seller-topic-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}

.seller-topic-link {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #d9e7f2;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  color: #1c3348;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 22px rgba(18, 39, 64, 0.05);
}

.seller-topic-link:hover {
  transform: translateY(-2px);
  border-color: #9ccdb5;
  box-shadow: 0 16px 28px rgba(12, 71, 55, 0.10);
}

.seller-topic-link small {
  color: #0a8a4b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seller-topic-link strong {
  font-size: 1rem;
  color: #17314b;
}

.seller-topic-link span {
  color: #567289;
  font-size: 0.88rem;
  line-height: 1.4;
}

.seller-topic-link.is-active {
  border-color: rgba(15, 139, 103, 0.38);
  background: linear-gradient(135deg, rgba(226, 246, 237, 0.98) 0%, rgba(231, 241, 249, 0.98) 100%);
  box-shadow: inset 3px 0 0 #0f8b67, 0 18px 30px rgba(15, 139, 103, 0.12);
}

.seller-topic-section[hidden] {
  display: none !important;
}

.seller-section-copy {
  margin: 4px 0 0;
  color: #567289;
  font-size: 0.92rem;
}

.seller-admin-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.seller-admin-stat {
  border: 1px solid #d8e7f3;
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(145deg, #ffffff 0%, #f5fbff 100%);
}

.seller-admin-stat span,
.seller-review-meta span {
  display: block;
  color: #567289;
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.seller-admin-stat strong,
.seller-review-meta strong {
  display: block;
  color: #17314b;
  font-size: 1.1rem;
}

.seller-admin-stat small,
.seller-review-meta small {
  color: #5f778b;
}

.seller-admin-review-grid {
  display: grid;
  gap: 12px;
}

.seller-review-card {
  border: 1px solid #d6e4ef;
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 24px rgba(18, 39, 64, 0.05);
}

.seller-review-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.seller-review-head h4 {
  margin: 2px 0 0;
  color: #17314b;
  font-size: 1.05rem;
}

.seller-review-kicker {
  color: #0a8a4b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seller-review-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.seller-review-copy {
  display: grid;
  gap: 8px;
}

.seller-review-copy p {
  margin: 0;
  color: #344d63;
}

.seller-review-copy strong {
  color: #17314b;
}

.seller-review-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.seller-review-actions form {
  margin: 0;
}

.seller-form-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 228, 168, 0.34), transparent 28%),
    radial-gradient(circle at bottom left, rgba(109, 200, 178, 0.20), transparent 30%),
    linear-gradient(145deg, #fffdf7 0%, #f5fbff 48%, #eefaf4 100%);
  border-color: #d6e6ef;
}

.seller-form-card::before,
.seller-form-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.seller-form-card::before {
  width: 220px;
  height: 220px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(254, 213, 122, 0.24), rgba(254, 213, 122, 0));
}

.seller-form-card::after {
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(53, 168, 126, 0.16), rgba(53, 168, 126, 0));
}

.seller-form-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.seller-form-head {
  margin-bottom: 0;
}

.seller-form-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(215, 226, 235, 0.92);
  background: linear-gradient(135deg, rgba(19, 54, 76, 0.96) 0%, rgba(19, 111, 133, 0.94) 54%, rgba(82, 170, 127, 0.92) 100%);
  box-shadow: 0 20px 38px rgba(17, 44, 63, 0.18);
}

.seller-form-showcase-copy {
  display: grid;
  gap: 8px;
  align-content: center;
}

.seller-form-showcase-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fdf7de;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seller-form-showcase-copy h4 {
  margin: 0;
  color: #fffef7;
  font-size: 1.55rem;
  line-height: 1.15;
}

.seller-form-showcase-copy p {
  margin: 0;
  color: rgba(245, 250, 255, 0.84);
  max-width: 560px;
}

.seller-form-mini-grid {
  display: grid;
  gap: 10px;
}

.seller-form-mini-card {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.seller-form-mini-card strong {
  color: #fff9df;
  font-size: 0.98rem;
}

.seller-form-mini-card span {
  color: rgba(244, 251, 255, 0.84);
  font-size: 0.86rem;
  line-height: 1.4;
}

.seller-form-layout {
  gap: 16px;
}

.seller-form-grid {
  gap: 14px;
}

.seller-form-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid #d8e7f2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 255, 0.94) 100%);
  box-shadow: 0 14px 26px rgba(18, 39, 64, 0.05);
}

.seller-form-panel h4 {
  margin: 2px 0 0;
  color: #15314a;
  font-size: 1.1rem;
}

.seller-form-panel p {
  margin: 4px 0 0;
  color: #557089;
}

.seller-form-panel-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf8f2;
  border: 1px solid #cfe8d9;
  color: #0d8451;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seller-form-panel-grid {
  display: grid;
  gap: 12px;
}

.seller-form-panel-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seller-form-panel-story {
  background: linear-gradient(145deg, rgba(255, 253, 245, 0.98) 0%, rgba(246, 251, 255, 0.96) 100%);
}

.seller-form-panel-sale {
  background: linear-gradient(145deg, rgba(240, 248, 255, 0.98) 0%, rgba(244, 252, 247, 0.96) 100%);
}

.seller-form-panel-access {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.96) 100%);
}

.seller-form-panel-txt {
  background: linear-gradient(145deg, rgba(255, 250, 231, 0.94) 0%, rgba(248, 253, 246, 0.98) 100%);
  border-color: #e1dcc2;
}

.seller-form-card .smm-field span {
  color: #294c68;
  font-size: 0.85rem;
  font-weight: 700;
}

.seller-form-card .smm-field input,
.seller-form-card .smm-field textarea {
  border: 1px solid #c9d9e6;
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 18px rgba(20, 51, 76, 0.04);
}

.seller-form-card .smm-field textarea {
  min-height: 118px;
  resize: vertical;
}

.seller-form-card .smm-field input:focus,
.seller-form-card .smm-field textarea:focus {
  outline: none;
  border-color: #62ad9b;
  box-shadow: 0 0 0 4px rgba(83, 176, 146, 0.14);
}

.seller-sale-card {
  border: 1px solid #d4e4ef;
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 248, 255, 0.95) 52%, rgba(239, 252, 245, 0.95) 100%);
  display: grid;
  gap: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.seller-sale-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.seller-sale-head strong {
  display: block;
  margin-top: 4px;
  color: #183149;
  font-size: 1rem;
}

.seller-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #eef7ff 0%, #f4fff6 100%);
  border: 1px solid #cfe1ed;
  color: #184d78;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(21, 55, 82, 0.06);
}

.seller-switch input {
  width: auto;
  margin: 0;
  accent-color: #0a8a4b;
}

.seller-lot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.seller-field-note {
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed #cadeea;
  color: #4f677c;
  font-size: 0.9rem;
}

.seller-form-txt-callout {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 242, 203, 0.82) 0%, rgba(255, 255, 255, 0.7) 100%);
  border: 1px solid rgba(225, 204, 142, 0.72);
}

.seller-form-txt-callout strong {
  color: #684d0d;
}

.seller-form-txt-callout small {
  color: #685f4b;
}

.seller-submit-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, #15344d 0%, #0f7f65 58%, #68c39d 100%);
  box-shadow: 0 20px 34px rgba(16, 61, 45, 0.18);
}

.seller-submit-copy {
  display: grid;
  gap: 4px;
}

.seller-submit-copy strong {
  color: #fff8e5;
}

.seller-submit-copy small {
  color: rgba(242, 249, 255, 0.88);
}

.seller-submit {
  min-width: 180px;
  background: linear-gradient(135deg, #fff3c0 0%, #ffffff 100%);
  color: #133651;
  box-shadow: 0 16px 28px rgba(13, 39, 56, 0.24);
}

.seller-submit:hover {
  background: linear-gradient(135deg, #ffe08b 0%, #fff9e3 100%);
  color: #102a40;
}

.seller-list-card,
.seller-sales-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.seller-table th {
  vertical-align: top;
}

.seller-item-stack {
  display: grid;
  gap: 6px;
  min-width: 220px;
}

.seller-inline-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.seller-delivery-stack {
  display: grid;
  gap: 4px;
  min-width: 150px;
}

.seller-delivery-stack small {
  color: #4f677c;
}

.seller-toggle-form {
  margin: 0;
}

.seller-order-form {
  min-width: 240px;
  gap: 10px;
}

.alert-success { background: #e4f7ef; color: #0f6542; border-color: #b8e6d3; }
.alert-danger { background: #fde8e8; color: #8f2525; border-color: #f3c0c0; }
.alert-warning { background: #fff3d2; color: #7a5800; border-color: #f2dc97; }
.alert-info { background: #e6f1fb; color: #1e527f; border-color: #bfd8ee; }

@media (max-width: 980px) {
  .topbar { padding: 0 14px; }
  .hello { font-size: 0.85rem; }
  .content { padding: 16px; }
  .cards.two,
  .cards.three { grid-template-columns: 1fr; }
  .page-title-row { flex-direction: column; align-items: flex-start; }
  .panel-hero { grid-template-columns: 1fr; min-height: auto; }
  .panel-highlight-grid { grid-template-columns: 1fr; }
  .history-overview { grid-template-columns: 1fr; }
  .history-row { grid-template-columns: 1fr; }
  .history-side { justify-content: space-between; }
  .inline-config { grid-template-columns: 1fr; }
  .ranking-hero { flex-direction: column; }
  .ranking-controls { width: 100%; flex-wrap: wrap; }
  .ranking-controls input { width: 100%; }
  .inline-filters { grid-template-columns: 1fr; }
  .smm-hero { flex-direction: column; align-items: flex-start; }
  .smm-hero-chip { width: 100%; text-align: left; }
  .smm-stats { grid-template-columns: 1fr; }
  .seller-hero { grid-template-columns: 1fr; }
  .seller-highlight-grid { grid-template-columns: 1fr; }
  .seller-topic-card,
  .seller-topic-card:hover { position: static; }
  .seller-topic-nav { grid-template-columns: 1fr; }
  .seller-form-showcase { grid-template-columns: 1fr; }
  .seller-form-mini-grid { grid-template-columns: 1fr; }
  .seller-form-panel-grid-two { grid-template-columns: 1fr; }
  .seller-admin-overview { grid-template-columns: 1fr; }
  .seller-review-head { flex-direction: column; }
  .seller-review-meta { grid-template-columns: 1fr; }
  .seller-review-actions { justify-content: stretch; }
  .seller-review-actions .btn { width: 100%; }
  .seller-sale-head { flex-direction: column; }
  .seller-lot-grid { grid-template-columns: 1fr; }
  .seller-submit-row { flex-direction: column; align-items: stretch; }
  .seller-submit { width: 100%; }
  .smm-tabs { flex-direction: column; }
  .smm-form-grid { grid-template-columns: 1fr; }
  .smm-filter-grid { grid-template-columns: 1fr; }
  .smm-bulk-buttons { flex-direction: column; }
  .smm-bulk-buttons .btn { width: 100%; }
  .smm-bulk-options { width: 100%; margin-left: 0; }
  .smm-category-row-inner { flex-wrap: wrap; }
  .smm-category-toggle { margin-left: 0; }
  .smm-options-menu { right: auto; left: 0; }
  .smm-endpoint-item { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 981px) {
  body.sidebar-open .content {
    margin-left: 266px;
  }

  body.sidebar-open .sidebar-backdrop {
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-12px) translateX(6px) scale(1.04); }
}

@keyframes sweepGlow {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

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

@keyframes barPulse {
  0%, 100% { filter: saturate(1); }
  50% { filter: saturate(1.1) brightness(1.03); }
}

.seller-hub {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 12px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(115, 83, 255, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(38, 211, 169, 0.14), transparent 22%),
    linear-gradient(180deg, #0a1020 0%, #0b1327 38%, #09111f 100%);
  border: 1px solid rgba(67, 88, 142, 0.38);
  box-shadow: 0 28px 54px rgba(5, 11, 26, 0.32);
}

.seller-hub::before,
.seller-hub::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

.seller-hub::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 82%);
}

.seller-hub::after {
  border: 1px solid rgba(130, 157, 255, 0.08);
}

.seller-hub > .card {
  position: relative;
  z-index: 1;
}

.seller-hub .seller-hero,
.seller-hub .seller-topic-card,
.seller-hub .seller-form-card,
.seller-hub .seller-list-card,
.seller-hub .seller-sales-card {
  background: linear-gradient(180deg, rgba(15, 23, 43, 0.96) 0%, rgba(16, 27, 49, 0.92) 100%);
  border-color: rgba(62, 82, 132, 0.55);
  box-shadow: 0 18px 36px rgba(4, 10, 25, 0.24);
}

.seller-hub .seller-hero {
  background:
    radial-gradient(circle at top right, rgba(125, 82, 255, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(15, 23, 43, 0.98) 0%, rgba(14, 25, 48, 0.96) 56%, rgba(10, 56, 58, 0.92) 100%);
}

.seller-hub .panel-kicker {
  background: rgba(54, 77, 146, 0.2);
  border-color: rgba(104, 128, 255, 0.28);
  color: #9cb6ff;
}

.seller-hub h1,
.seller-hub h3,
.seller-hub h4,
.seller-hub .ranking-name,
.seller-hub .seller-submit-copy strong,
.seller-hub .seller-item-stack strong,
.seller-hub .seller-review-head h4,
.seller-hub .panel-highlight-card strong,
.seller-hub .seller-admin-stat strong,
.seller-hub .seller-review-meta strong {
  color: #f4f7ff;
}

.seller-hub p,
.seller-hub .seller-section-copy,
.seller-hub .panel-hero p,
.seller-hub .panel-highlight-card span,
.seller-hub .panel-highlight-card small,
.seller-hub .seller-tip-card p,
.seller-hub .seller-tip-card small,
.seller-hub .seller-delivery-stack small,
.seller-hub .seller-item-stack small,
.seller-hub .seller-review-copy p,
.seller-hub .seller-admin-stat span,
.seller-hub .seller-admin-stat small,
.seller-hub .seller-review-meta span,
.seller-hub .seller-review-meta small,
.seller-hub .smm-pagination-summary,
.seller-hub .table th,
.seller-hub .table td small {
  color: #93a6cc;
}

.seller-hub .panel-highlight-card,
.seller-hub .seller-admin-stat,
.seller-hub .seller-review-card {
  background: linear-gradient(180deg, rgba(23, 34, 62, 0.92) 0%, rgba(15, 24, 46, 0.92) 100%);
  border-color: rgba(72, 93, 149, 0.45);
}

.seller-hub .seller-tip-card {
  background: linear-gradient(160deg, rgba(18, 48, 89, 0.72) 0%, rgba(17, 98, 101, 0.52) 100%);
  border-color: rgba(74, 154, 159, 0.22);
}

.seller-hub .seller-tip-kicker {
  color: #73ead0;
}

.seller-hub .seller-topic-card {
  background: linear-gradient(180deg, rgba(11, 18, 35, 0.98) 0%, rgba(11, 21, 41, 0.96) 100%);
  border-color: rgba(56, 77, 129, 0.5);
}

.seller-topic-link-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.seller-topic-icon,
.seller-form-mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seller-topic-icon svg,
.seller-form-mini-icon svg {
  width: 19px;
  height: 19px;
}

.seller-hub .seller-topic-link {
  border-color: rgba(66, 88, 144, 0.45);
  background: linear-gradient(180deg, rgba(20, 31, 58, 0.94) 0%, rgba(16, 25, 46, 0.92) 100%);
  color: #f3f7ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 16px 28px rgba(3, 9, 24, 0.22);
}

.seller-hub .seller-topic-link strong {
  color: #f7f9ff;
}

.seller-hub .seller-topic-link small {
  color: #8da8e8;
}

.seller-hub .seller-topic-link span {
  color: #a1b0d1;
}

.seller-hub .seller-topic-link:hover {
  border-color: rgba(102, 125, 201, 0.64);
  box-shadow: 0 18px 32px rgba(5, 11, 27, 0.3);
}

.seller-hub .seller-topic-link.is-active {
  box-shadow: inset 0 0 0 1px rgba(158, 124, 255, 0.34), 0 18px 34px rgba(9, 14, 33, 0.34);
}

.seller-hub .seller-topic-link-overview .seller-topic-icon {
  background: linear-gradient(135deg, rgba(49, 125, 255, 0.28) 0%, rgba(25, 84, 180, 0.4) 100%);
  color: #7cb5ff;
}

.seller-hub .seller-topic-link-form .seller-topic-icon {
  background: linear-gradient(135deg, rgba(162, 90, 255, 0.28) 0%, rgba(111, 59, 230, 0.42) 100%);
  color: #d5a4ff;
}

.seller-hub .seller-topic-link-catalog .seller-topic-icon {
  background: linear-gradient(135deg, rgba(255, 180, 69, 0.26) 0%, rgba(190, 113, 32, 0.4) 100%);
  color: #ffc57a;
}

.seller-hub .seller-topic-link-sales .seller-topic-icon {
  background: linear-gradient(135deg, rgba(61, 228, 151, 0.24) 0%, rgba(27, 152, 102, 0.4) 100%);
  color: #87f2c0;
}

.seller-hub .seller-topic-link-admin .seller-topic-icon {
  background: linear-gradient(135deg, rgba(114, 165, 255, 0.24) 0%, rgba(71, 107, 201, 0.38) 100%);
  color: #a4c2ff;
}

.seller-hub .seller-topic-link-overview.is-active {
  border-color: rgba(80, 143, 255, 0.68);
  background: linear-gradient(135deg, rgba(25, 46, 88, 0.96) 0%, rgba(18, 32, 61, 0.94) 100%);
}

.seller-hub .seller-topic-link-form.is-active {
  border-color: rgba(175, 117, 255, 0.68);
  background: linear-gradient(135deg, rgba(57, 32, 94, 0.96) 0%, rgba(27, 25, 67, 0.94) 100%);
}

.seller-hub .seller-topic-link-catalog.is-active {
  border-color: rgba(255, 186, 91, 0.68);
  background: linear-gradient(135deg, rgba(76, 50, 23, 0.96) 0%, rgba(34, 28, 44, 0.94) 100%);
}

.seller-hub .seller-topic-link-sales.is-active,
.seller-hub .seller-topic-link-admin.is-active {
  border-color: rgba(71, 233, 169, 0.62);
  background: linear-gradient(135deg, rgba(20, 64, 63, 0.96) 0%, rgba(14, 28, 48, 0.94) 100%);
}

.seller-hub .ranking-pill {
  background: rgba(23, 44, 86, 0.9);
  color: #8eb4ff;
  border: 1px solid rgba(84, 115, 194, 0.4);
}

.seller-hub .seller-form-showcase {
  border-color: rgba(66, 88, 144, 0.48);
  background: linear-gradient(135deg, rgba(17, 27, 53, 0.98) 0%, rgba(31, 26, 71, 0.96) 50%, rgba(14, 71, 68, 0.92) 100%);
  box-shadow: 0 24px 44px rgba(3, 9, 24, 0.34);
}

.seller-hub .seller-form-showcase-kicker {
  background: rgba(115, 97, 255, 0.2);
  border-color: rgba(147, 125, 255, 0.34);
  color: #cab6ff;
}

.seller-hub .seller-form-mini-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(107, 135, 209, 0.18);
}

.seller-hub .seller-form-mini-card strong {
  color: #f5f7ff;
}

.seller-hub .seller-form-mini-card span {
  color: #a8b7d8;
}

.seller-hub .seller-form-mini-card:nth-child(1) .seller-form-mini-icon {
  background: linear-gradient(135deg, rgba(58, 169, 255, 0.22) 0%, rgba(52, 93, 221, 0.34) 100%);
  color: #8fd7ff;
}

.seller-hub .seller-form-mini-card:nth-child(2) .seller-form-mini-icon {
  background: linear-gradient(135deg, rgba(150, 102, 255, 0.2) 0%, rgba(88, 67, 225, 0.34) 100%);
  color: #cfb5ff;
}

.seller-hub .seller-form-mini-card:nth-child(3) .seller-form-mini-icon {
  background: linear-gradient(135deg, rgba(36, 199, 182, 0.22) 0%, rgba(15, 129, 124, 0.34) 100%);
  color: #92f0dc;
}

.seller-hub .seller-form-panel,
.seller-hub .seller-sale-card {
  background: linear-gradient(180deg, rgba(18, 28, 52, 0.95) 0%, rgba(13, 21, 40, 0.92) 100%);
  border-color: rgba(63, 84, 138, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 14px 28px rgba(4, 10, 25, 0.18);
}

.seller-hub .seller-form-panel-story {
  background: linear-gradient(180deg, rgba(19, 31, 59, 0.96) 0%, rgba(13, 21, 42, 0.92) 100%);
}

.seller-hub .seller-form-panel-sale {
  background: linear-gradient(180deg, rgba(18, 31, 61, 0.96) 0%, rgba(14, 25, 46, 0.92) 100%);
}

.seller-hub .seller-form-panel-access {
  background: linear-gradient(180deg, rgba(17, 28, 53, 0.96) 0%, rgba(12, 21, 41, 0.92) 100%);
}

.seller-hub .seller-form-panel-txt {
  background: linear-gradient(180deg, rgba(28, 32, 55, 0.96) 0%, rgba(17, 24, 41, 0.92) 100%);
  border-color: rgba(96, 94, 153, 0.42);
}

.seller-hub .seller-form-panel-tag {
  background: rgba(42, 70, 150, 0.22);
  border-color: rgba(104, 127, 228, 0.32);
  color: #8dacff;
}

.seller-hub .seller-form-card .smm-field span {
  color: #cddaff;
}

.seller-hub .seller-form-card .smm-field input,
.seller-hub .seller-form-card .smm-field textarea,
.seller-hub .seller-order-form .smm-field input,
.seller-hub .seller-order-form .smm-field textarea {
  border-color: rgba(63, 84, 138, 0.52);
  background: rgba(10, 17, 34, 0.88);
  color: #eef4ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 10px 18px rgba(4, 10, 25, 0.12);
}

.seller-hub .seller-form-card .smm-field input::placeholder,
.seller-hub .seller-form-card .smm-field textarea::placeholder,
.seller-hub .seller-order-form .smm-field input::placeholder,
.seller-hub .seller-order-form .smm-field textarea::placeholder {
  color: #6f84af;
}

.seller-hub .seller-form-card .smm-field input:focus,
.seller-hub .seller-form-card .smm-field textarea:focus,
.seller-hub .seller-order-form .smm-field input:focus,
.seller-hub .seller-order-form .smm-field textarea:focus {
  border-color: rgba(122, 106, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(100, 88, 255, 0.16);
}

.seller-hub .seller-switch {
  background: linear-gradient(135deg, rgba(22, 35, 70, 0.95) 0%, rgba(18, 28, 55, 0.94) 100%);
  border-color: rgba(69, 90, 145, 0.5);
  color: #d4defa;
}

.seller-hub .seller-field-note,
.seller-hub .seller-form-txt-callout {
  background: linear-gradient(180deg, rgba(19, 29, 55, 0.92) 0%, rgba(14, 22, 42, 0.9) 100%);
  border-color: rgba(63, 84, 138, 0.42);
  color: #9ab0d9;
}

.seller-hub .seller-form-txt-callout strong {
  color: #ffda93;
}

.seller-hub .seller-submit-row {
  background: linear-gradient(135deg, rgba(23, 32, 59, 0.98) 0%, rgba(35, 32, 80, 0.96) 52%, rgba(16, 90, 76, 0.94) 100%);
  box-shadow: 0 24px 38px rgba(4, 10, 25, 0.3);
}

.seller-hub .seller-submit {
  background: linear-gradient(135deg, #6f47ff 0%, #8f5cff 48%, #2fd9a7 100%);
  color: #fdfcff;
  box-shadow: 0 16px 28px rgba(61, 85, 181, 0.36);
}

.seller-hub .seller-submit:hover {
  background: linear-gradient(135deg, #825cff 0%, #9e78ff 48%, #3ceab6 100%);
  color: #ffffff;
}

.seller-hub .table th {
  background: rgba(14, 21, 41, 0.92);
  color: #d7e3ff;
  border-bottom-color: rgba(63, 84, 138, 0.4);
}

.seller-hub .table td {
  border-bottom-color: rgba(63, 84, 138, 0.24);
  color: #f0f4ff;
}

.seller-hub .table-wrap {
  border-radius: 18px;
  border: 1px solid rgba(60, 82, 134, 0.42);
  background: rgba(8, 15, 31, 0.32);
}

.seller-hub .badge {
  background: rgba(255, 255, 255, 0.08);
  color: #d8e4ff;
}

.seller-hub .badge-pending {
  background: rgba(255, 189, 84, 0.18);
  color: #ffd085;
}

.seller-hub .badge-validating {
  background: rgba(121, 121, 255, 0.2);
  color: #c6c7ff;
}

.seller-hub .badge-done {
  background: rgba(55, 219, 145, 0.18);
  color: #8ef2bf;
}

.seller-hub .badge-error {
  background: rgba(255, 112, 136, 0.18);
  color: #ffb0c1;
}

.seller-hub .btn.ghost {
  background: linear-gradient(180deg, rgba(20, 31, 58, 0.94) 0%, rgba(16, 25, 46, 0.92) 100%);
  color: #d8e4ff;
  border: 1px solid rgba(67, 89, 145, 0.44);
  box-shadow: none;
}

.seller-hub .btn.ghost:hover {
  background: linear-gradient(180deg, rgba(28, 40, 72, 0.98) 0%, rgba(20, 32, 59, 0.96) 100%);
  color: #f4f8ff;
}

.seller-hub .smm-page-current {
  background: linear-gradient(135deg, #734fff 0%, #2dd8a7 100%);
  box-shadow: 0 16px 28px rgba(35, 56, 130, 0.32);
}

.seller-hub .btn.is-disabled {
  background: rgba(255, 255, 255, 0.05);
  color: #617399;
}

@media (max-width: 980px) {
  .seller-hub {
    padding: 10px;
    border-radius: 22px;
  }

  .seller-topic-link-head {
    margin-bottom: 8px;
  }
}
