:root {
  --bg: #07111f;
  --bg-2: #0b1730;
  --bg-3: #0f1d3d;
  --panel: rgba(11, 23, 48, 0.78);
  --panel-strong: rgba(13, 27, 56, 0.96);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f7ff;
  --muted: #99a8c7;
  --muted-2: #7f90b3;
  --accent1: #7c6cff;
  --accent2: #22d3a6;
  --accent3: #5cc8ff;
  --accent4: #a78bfa;
  --danger: #ff6b7a;
  --success: #25d39a;
  --warning: #ffca5f;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.22);
  --radius: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(92, 200, 255, 0.16), transparent 22%),
    radial-gradient(circle at top right, rgba(124, 108, 255, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(34, 211, 166, 0.10), transparent 24%),
    linear-gradient(180deg, #091220 0%, #07111f 100%);
}

.text-secondary {
  color: var(--muted) !important;
}

a {
  text-decoration: none;
}

.btn {
  border-radius: 16px;
  font-weight: 600;
}

.btn-gradient {
  border: none;
  color: #fff;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow: 0 18px 35px rgba(88, 86, 214, 0.28);
  transition: 0.25s ease;
}

.btn-gradient:hover {
  color: #fff;
  transform: translateY(-1px);
  opacity: 0.96;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}
.thread-empty {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  text-align: center;
}

.chat-empty-state {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px;
  color: var(--muted);
}

.chat-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(124, 108, 255, 0.18), rgba(92, 200, 255, 0.16));
  color: #fff;
  font-size: 1.6rem;
}

.chat-empty-state h4 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}

.chat-empty-state p {
  max-width: 520px;
  margin: 0;
  line-height: 1.7;
}
.form-control,
.form-select {
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  color: var(--text);
  border-color: rgba(124, 108, 255, 0.72);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 4px rgba(124, 108, 255, 0.12);
}

.form-control::placeholder {
  color: #8ea0c2;
}

.form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--line-strong);
}

.form-check-input:checked {
  background-color: var(--accent1);
  border-color: var(--accent1);
}

.form-label {
  color: #dfe7ff;
  font-weight: 600;
  margin-bottom: 10px;
}

.alert {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.panel-card,
.hero-panel,
.feature-card,
.info-box,
.security-card,
.mini-card,
.auth-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.glass-nav {
  background: rgba(5, 10, 28, 0.58);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar-brand {
  letter-spacing: 0.02em;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(92, 200, 255, 0.10), transparent 20%),
    radial-gradient(circle at 85% 18%, rgba(124, 108, 255, 0.12), transparent 20%);
  pointer-events: none;
}

.hero-panel {
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 2rem;
}

.chat-preview {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bubble {
  padding: 16px 18px;
  border-radius: 20px;
  max-width: 92%;
  line-height: 1.6;
  font-size: 0.98rem;
}

.bubble.user {
  align-self: flex-end;
  background: rgba(92, 200, 255, 0.13);
  border: 1px solid rgba(92, 200, 255, 0.2);
}

.bubble.ai {
  align-self: flex-start;
  background: rgba(124, 108, 255, 0.13);
  border: 1px solid rgba(124, 108, 255, 0.2);
}

.mini-card {
  padding: 18px;
}

.mini-card strong,
.feature-card h5 {
  display: block;
  margin-bottom: 8px;
}

.mini-card span,
.feature-card p,
.info-box p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.section-dark {
  background: rgba(7, 14, 28, 0.58);
}

.section-light {
  background: #f6f8fe;
  color: #111827;
}

.section-light .text-secondary {
  color: #667085 !important;
}

.feature-card {
  padding: 30px;
  height: 100%;
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 108, 255, 0.25);
}

.feature-card i {
  font-size: 2rem;
  margin-bottom: 18px;
  display: inline-flex;
}

.timeline-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.timeline-item span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #fff;
  font-weight: 800;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.info-box,
.security-card {
  padding: 24px;
}

.security-card {
  display: grid;
  gap: 18px;
}

.secure-list {
  padding-left: 1rem;
}

.secure-list li {
  margin-bottom: 10px;
  color: var(--muted);
}

.cta-section {
  background: #fff;
  color: #0f172a;
}

.auth-body,
.dashboard-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(92, 200, 255, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(124, 108, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #091424 100%);
}

.auth-card {
  margin-top: 6vh;
  padding: 2rem;
}

.dashboard-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
}

.dashboard-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(7, 15, 33, 0.97) 0%, rgba(10, 20, 42, 0.95) 100%);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.sidebar-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  margin-bottom: 6px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow: 0 16px 32px rgba(109, 94, 252, 0.28);
  flex: 0 0 auto;
}

.brand-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.84rem;
  margin-top: 2px;
}

.sidebar-status-card,
.sidebar-mini-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 16px;
}

.sidebar-status-label {
  color: var(--accent3);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.sidebar-status-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.sidebar-status-text {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.93rem;
}

.dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.dashboard-sidebar .nav-link {
  border: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
  padding: 13px 14px;
  color: var(--muted);
  border-radius: 16px;
  background: transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

.dashboard-sidebar .nav-link i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex: 0 0 20px;
}

.dashboard-sidebar .nav-link:hover,
.dashboard-sidebar .nav-link.active {
  color: #fff;
  background: rgba(124, 108, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(124, 108, 255, 0.12);
}

.sidebar-bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
}

.sidebar-logout {
  min-height: 50px;
}

.dashboard-main {
  min-width: 0;
  min-height: 100vh;
}

.dashboard-main-inner {
  padding: 28px;
  min-height: 100vh;
}

.sidebar-logout {
  min-height: 50px;
}

.dashboard-main {
  min-width: 0;
}

.dashboard-main-inner {
  padding: 28px;
}

.dashboard-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  padding: 28px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(14, 28, 58, 0.95), rgba(11, 20, 41, 0.95)),
    radial-gradient(circle at top right, rgba(92, 200, 255, 0.12), transparent 30%);
  box-shadow: var(--shadow);
}

.dashboard-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 108, 255, 0.20), transparent 68%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: #dce5ff;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.dashboard-title {
  max-width: 780px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 14px;
}

.dashboard-subtitle {
  max-width: 840px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.dashboard-hero-side {
  display: flex;
  align-items: stretch;
}

.hero-side-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 24px;
  padding: 22px;
}

.hero-side-label {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-side-value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.hero-side-meta {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.section-kicker {
  color: var(--accent3);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
}

.section-subtitle {
  color: var(--muted);
  max-width: 760px;
  line-height: 1.7;
}

.quick-insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quick-insight-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-soft);
}

.quick-insight-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124, 108, 255, 0.22), rgba(34, 211, 166, 0.2));
  color: #fff;
  font-size: 1.05rem;
}

.quick-insight-title {
  font-weight: 700;
  margin-bottom: 5px;
}

.quick-insight-text {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.overview-stat {
  padding: 24px;
  height: 100%;
}

.overview-stat .label {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.overview-stat .value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

.chat-workspace {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.chat-sidebar-panel,
.chat-main-panel {
  min-height: 76vh;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.chat-sidebar-panel {
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.chat-sidebar-top,
.chat-main-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.chat-panel-label {
  color: var(--muted-2);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.chat-panel-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.chat-sidebar-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 18px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.chat-sidebar-hint i {
  color: var(--accent3);
  margin-top: 2px;
}

.thread-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 100%;
  overflow: auto;
  padding-right: 4px;
}

.thread-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 15px;
  cursor: pointer;
  transition: 0.2s ease;
}

.thread-item:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 108, 255, 0.24);
  background: rgba(124, 108, 255, 0.08);
}

.thread-item.active {
  border-color: rgba(124, 108, 255, 0.38);
  background: rgba(124, 108, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(124, 108, 255, 0.12);
}

.chat-main-panel {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.chat-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 211, 166, 0.10);
  border: 1px solid rgba(34, 211, 166, 0.18);
  color: #c8fff0;
  font-size: 0.85rem;
  font-weight: 600;
}

.chat-status-pill i {
  color: var(--success);
  font-size: 0.62rem;
}

.chat-intro-card {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(124, 108, 255, 0.10), rgba(92, 200, 255, 0.08));
}

.chat-intro-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 108, 255, 0.18);
  color: #fff;
  font-size: 1.15rem;
}

.chat-intro-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.chat-intro-text {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.messages-box {
  flex: 1 1 auto;
  min-height: 420px;
  max-height: 420px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 4px 4px 0;
  margin-bottom: 16px;
}

.message-item {
  max-width: 88%;
  border-radius: 22px;
  padding: 16px 18px;
  line-height: 1.7;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.message-item strong {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #fff;
}

.message-item.user {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(92, 200, 255, 0.14), rgba(92, 200, 255, 0.08));
  border-color: rgba(92, 200, 255, 0.2);
}

.message-item.assistant {
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(124, 108, 255, 0.14), rgba(124, 108, 255, 0.08));
  border-color: rgba(124, 108, 255, 0.2);
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.chat-suggestion-chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: #d9e4ff;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.2s ease;
}

.chat-suggestion-chip:hover {
  background: rgba(124, 108, 255, 0.12);
  border-color: rgba(124, 108, 255, 0.22);
}

.chat-input-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}

.chat-input-wrap {
  position: relative;
}

.chat-input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-2);
  font-size: 1rem;
}

.chat-input {
  min-height: 62px;
  padding-left: 48px;
  padding-right: 16px;
  border-radius: 18px;
  font-size: 1rem;
}

.chat-send-btn {
  min-width: 160px;
  min-height: 62px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.support-main-card,
.support-side-card,
.wallet-highlight-card {
  height: 100%;
}

.support-label,
.wallet-highlight-label {
  color: var(--accent3);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.support-title,
.wallet-highlight-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.support-text,
.wallet-highlight-text {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #deebff;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.benefit-item i {
  color: var(--success);
}

.wallet-highlight-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wallet-highlight-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(124, 108, 255, 0.24), rgba(34, 211, 166, 0.2));
  color: #fff;
  font-size: 1.45rem;
}

.settings-toggle-card {
  height: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

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

.admin-table-wrap {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
}

.table-dark {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: transparent;
  --bs-table-hover-bg: rgba(255, 255, 255, 0.04);
  --bs-table-border-color: rgba(255, 255, 255, 0.06);
  color: #f3f6ff;
}

.table > :not(caption) > * > * {
  padding: 1rem 1rem;
}

.thread-list::-webkit-scrollbar,
.messages-box::-webkit-scrollbar {
  width: 8px;
}

.thread-list::-webkit-scrollbar-thumb,
.messages-box::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.thread-list::-webkit-scrollbar-track,
.messages-box::-webkit-scrollbar-track {
  background: transparent;
}

@media (max-width: 1399px) {
  .dashboard-shell {
    grid-template-columns: 290px minmax(0, 1fr);
  }

  .chat-workspace {
    grid-template-columns: 320px minmax(0, 1fr);
  }
}

@media (max-width: 1199px) {
  .dashboard-hero {
    grid-template-columns: 1fr;
  }

  .quick-insights {
    grid-template-columns: 1fr;
  }

  .chat-workspace {
    grid-template-columns: 1fr;
  }

  .chat-sidebar-panel,
  .chat-main-panel {
    min-height: auto;
  }

  .messages-box {
    max-height: 420px;
  }
}

@media (max-width: 991px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .dashboard-sidebar {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    overflow: visible;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dashboard-main-inner {
    padding: 18px;
  }

  .dashboard-hero {
    padding: 22px;
    border-radius: 24px;
  }

  .section-title {
    font-size: 1.45rem;
  }

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

  .chat-send-btn {
    width: 100%;
    min-width: 0;
  }

  .messages-box {
    min-height: 360px;
    max-height: 360px;
  }
}
@media (max-width: 767px) {
  .hero-panel {
    min-height: auto;
  }

  .dashboard-title {
    font-size: 1.75rem;
  }

  .support-title,
  .wallet-highlight-title {
    font-size: 1.45rem;
  }

  .message-item {
    max-width: 100%;
  }

  .dashboard-main-inner {
    padding: 14px;
  }

  .chat-main-panel,
  .chat-sidebar-panel,
  .panel-card {
    border-radius: 22px;
  }
}
