* {
  font-family: "PPNeueMachina", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  box-sizing: border-box;
}

:root {
  --bg: #060406;
  --text-main: #f0edf2;
  --text-dim: rgba(240, 237, 242, 0.48);
  --text-mid: rgba(240, 237, 242, 0.7);
  --rect-bg: linear-gradient(180deg, rgba(23, 24, 26, 0.84) 0%, rgba(23, 24, 26, 0.72) 100%);
  --rect-bg-strong: linear-gradient(180deg, rgba(23, 24, 26, 0.9) 0%, rgba(23, 24, 26, 0.78) 100%);
  --rect-border: rgba(253, 246, 252, 0.1);
  --rect-inset: inset 0 0 0 1px rgba(253, 246, 252, 0.03);
}

body.dashboard-page {
  margin: 0;
  color: var(--text-main);
  background: transparent !important;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.camera-logo {
  position: fixed;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%, -50%);
  width: 420px;
  max-width: 44vw;
  opacity: 0.09;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: logoFloat 7s ease-in-out infinite;
}

.header {
  background-color: transparent;
  padding: 14px 0 0;
  z-index: 20;
}

.header-shell {
  width: 100%;
  min-height: 74px;
  padding: 12px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 16, 18, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.logo {
  text-decoration: none;
  margin-right: 8px;
  line-height: 1;
}

.logo img {
  max-height: 24px;
  width: auto;
}

.logo h1 {
  margin: 0 0 0 10px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #fff;
}

.logo .logo-main,
.logo .logo-dev {
  font-weight: 400;
}

.logo .logo-main {
  color: #fff;
}

.logo .logo-dev {
  color: #d7a8cd;
}

.navmenu {
  margin: 0 auto;
  flex: 1;
  display: flex;
  justify-content: center;
}

.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.navmenu a,
.navmenu a:focus {
  padding: 8px 6px;
  border-radius: 10px;
  color: #f8f5fb;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.15;
  text-decoration: none;
}

.navmenu li:hover > a {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-icon {
  margin-right: 6px;
  font-size: 12px;
  line-height: 1;
}

.header-actions {
  margin-left: 14px;
  gap: 10px;
}

.header-btn {
  height: 40px;
  padding: 0 16px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #f5f0f8;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: 0.25s ease;
  text-decoration: none;
}

.header-btn-login {
  background: linear-gradient(90deg, rgba(239, 97, 121, 0.05) 0%, rgba(23, 24, 26, 0.05) 100%);
  border-color: rgba(255, 255, 255, 0.01);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.01);
  min-width: 112px;
}

.header-btn-register {
  background: linear-gradient(90deg, #EFA9E0 0%, #896180 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-clip: padding-box;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  min-width: 112px;
  position: relative;
  overflow: hidden;
}

.header-btn:hover,
.header-btn:focus {
  color: #fff;
}

.header-btn-register::before,
.header-btn-register::after {
  content: none !important;
  display: none !important;
}

.dashboard-main {
  position: relative;
  z-index: 1;
  max-width: 1095px;
  width: 100%;
  margin: 0 auto;
  padding-top: 143px;
  padding-bottom: 48px;
  flex: 1 0 auto;
}

body.dashboard-page > .footer.footer-global {
  margin-top: auto !important;
}

.hero-head h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.02;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: -0.02em;
  font-weight: 500;
}

.hero-head p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.2;
  color: var(--text-dim);
}

.dashboard-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 17px;
  align-items: start;
}

.panel {
  border: 1px solid var(--rect-border);
  background: var(--rect-bg);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--rect-inset);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.panel-user {
  position: relative;
  min-height: 400px;
  padding: 26px 26px 82px;
  overflow: visible;
}

.user-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar-shell {
  position: relative;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  z-index: 5;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.avatar-plus {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(253, 246, 252, 0.28);
  border-radius: 50%;
  background: linear-gradient(180deg, #ef6179 0%, #ed4561 100%);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity .18s ease, transform .18s ease;
}

.avatar-shell:hover .avatar-plus,
.avatar-shell.menu-open .avatar-plus {
  opacity: 1;
  transform: scale(1);
}

.avatar-popup {
  position: absolute;
  top: 72px;
  left: 0;
  z-index: 15;
  width: 180px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(253, 246, 252, 0.14);
  background: rgba(20, 16, 20, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top left;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.avatar-shell.menu-open .avatar-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.avatar-popup-btn {
  width: 100%;
  height: 34px;
  border: 1px solid rgba(253, 246, 252, 0.24);
  border-radius: 8px;
  background: rgba(253, 246, 252, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fdf6fc;
  font-size: 13px;
  margin-bottom: 7px;
  cursor: pointer;
}

.avatar-popup-btn:last-of-type {
  margin-bottom: 4px;
}

.avatar-popup .action-result {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.2;
  min-height: 0;
}

.user-name {
  font-size: 20px;
  line-height: 1.12;
  color: #fdf6fc;
}

.uid-inline {
  color: #ef6179;
  font-size: 16px;
}

.user-role {
  margin-top: 2px;
  color: #ef6179;
  font-size: 13px;
  line-height: 1.2;
}

.user-list {
  margin-top: 26px;
  display: grid;
  gap: 11px;
}

.row-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.2;
}

.row-item strong {
  margin-left: 0;
  text-align: right;
  color: #fdf6fc;
  font-weight: 500;
  max-width: 58%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.inline-link {
  position: static;
  color: #ef6179;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
}

.panel-user-bottom-actions {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.inline-link-reset.secondButton,
.inline-link-logout.btn-global {
  min-height: 40px !important;
  height: 40px !important;
  padding: 0 16px !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  line-height: 1 !important;
}

.inline-link-logout.btn-global {
  flex-direction: row-reverse;
  gap: 8px !important;
}

.inline-link-reset.secondButton:hover,
.inline-link-reset.secondButton:focus,
.inline-link-reset.secondButton:active,
.inline-link-logout.btn-global:hover,
.inline-link-logout.btn-global:focus,
.inline-link-logout.btn-global:active {
  transform: none !important;
  filter: none !important;
}

.inline-link-reset.secondButton:hover,
.inline-link-reset.secondButton:focus,
.inline-link-reset.secondButton:active {
  background: linear-gradient(180deg, rgba(239, 97, 121, 0.05) 0%, rgba(23, 24, 26, 0.05) 100%) !important;
  border: 1px solid rgba(253, 246, 252, 0.1) !important;
  color: rgba(253, 246, 252, 0.5) !important;
}

.inline-link-logout.btn-global:hover,
.inline-link-logout.btn-global:focus,
.inline-link-logout.btn-global:active {
  background: linear-gradient(180deg, #ef6179 0%, #ed4561 100%) !important;
  border: 1px solid rgba(253, 246, 252, 0.24) !important;
  border-bottom: 0 !important;
  color: #fff !important;
}

.panel-right {
  border: none;
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: 14px;
}

.quick-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid var(--rect-border);
  background: var(--rect-bg);
  border-radius: 18px;
  box-shadow: var(--rect-inset);
  padding: 12px;
}

.quick-item {
  min-height: 50px;
  border: 1px solid rgba(253, 246, 252, 0.1);
  background: var(--rect-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  box-shadow: var(--rect-inset);
  color: rgba(253, 246, 252, 0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 0 20px;
  transition: none;
  text-align: center;
  line-height: 1.15;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  cursor: pointer;
}

.quick-item.tab-toggle {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.quick-item.tab-toggle.is-active {
  color: #fff;
  border-color: rgba(253, 246, 252, 0.24) !important;
  border-bottom: 0 !important;
  background: linear-gradient(180deg, #ef6179 0%, #ed4561 100%);
  box-shadow: none !important;
}

.quick-item:hover {
  color: rgba(253, 246, 252, 0.5);
  border-color: rgba(253, 246, 252, 0.1);
  background: var(--rect-bg);
}

.quick-item-link {
  color: rgba(253, 246, 252, 0.9);
}

.quick-item-logout {
  border-color: rgba(253, 246, 252, 0.24) !important;
  border-bottom: 0 !important;
  background: linear-gradient(180deg, #ef6179 0%, #ed4561 100%);
  color: #fff !important;
}

.quick-item-logout:hover {
  border-color: rgba(253, 246, 252, 0.24);
  color: #fff;
  background: linear-gradient(180deg, #ef6179 0%, #ed4561 100%);
}

.launcher-card {
  height: 89px;
  border: 1px solid var(--rect-border);
  background: var(--rect-bg);
  border-radius: 9px;
  box-shadow: var(--rect-inset);
  color: #d99ccf;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0 26px;
  font-size: 15px;
  line-height: 1;
  transition: none;
  cursor: pointer;
}

.launcher-card:hover {
  color: #d99ccf;
  border-color: var(--rect-border);
  box-shadow: var(--rect-inset);
}

.quick-item i,
.launcher-card i {
  font-size: 14px;
  line-height: 1;
}

.dashboard-actions {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.action-panel {
  padding: 18px;
  width: 100%;
  margin: 0;
  border: 1px solid var(--rect-border) !important;
  border-radius: 12px;
  outline: 0 !important;
  box-shadow: var(--rect-inset) !important;
  background: var(--rect-bg);
  overflow: hidden;
  transform: translateY(0);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: none;
}

.action-panel:hover {
  transform: none;
  border-color: var(--rect-border) !important;
  box-shadow: var(--rect-inset) !important;
}

.action-panel::before,
.action-panel::after {
  display: none !important;
  content: none !important;
}

.action-panel h3 {
  margin: 0 0 12px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.86);
}

.action-form {
  display: grid;
  gap: 10px;
  width: 100%;
}

.action-input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 8, 12, 0.62);
  border-radius: 10px;
  padding: 0 12px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.action-input:focus {
  border-color: rgba(239, 97, 121, 0.45);
}

.action-btn {
  height: 42px;
  width: 100%;
  border: 1px solid rgba(253, 246, 252, 0.24);
  border-bottom: 0;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  background: linear-gradient(180deg, #ef6179 0%, #ed4561 100%);
  transition: none;
  cursor: pointer;
}

.action-btn:hover {
  transform: none;
  filter: none;
  background: linear-gradient(180deg, #ef6179 0%, #ed4561 100%);
  border-color: rgba(253, 246, 252, 0.24);
}

.dashboard-tab-stage {
  position: relative;
  margin-top: 12px;
}

.dashboard-tab-stage .tab-panel {
  margin-top: 0;
}

.quick-tabs {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.quick-tabs-switch-rail {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  height: 50px;
  pointer-events: none;
  z-index: 0;
}

.quick-tabs-switch-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: calc((100% - 10px) / 2);
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(253, 246, 252, 0.24);
  background: linear-gradient(180deg, #ef6179 0%, #ed4561 100%);
  box-shadow:
    0 18px 38px rgba(228, 123, 210, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms ease,
    filter 280ms ease,
    opacity 280ms ease !important;
}

.quick-tabs-switch-thumb::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 56%);
  opacity: 0.9;
}

.quick-tabs-switch-thumb::after {
  content: "";
  position: absolute;
  top: -8%;
  left: 14%;
  width: 40%;
  height: 116%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 72%);
  filter: blur(10px);
  opacity: 0.75;
}

.quick-tabs[data-active-tab="user"] .quick-tabs-switch-thumb {
  transform: translateX(0);
  animation: quickTabThumbPulseLeft 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quick-tabs[data-active-tab="launcher"] .quick-tabs-switch-thumb {
  transform: translateX(calc(100% + 10px));
  animation: quickTabThumbPulseRight 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quick-tabs .quick-item {
  position: relative;
  z-index: 1;
  transition:
    color 280ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 280ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 280ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.quick-tabs .quick-item.tab-toggle {
  overflow: hidden;
  border-color: rgba(253, 246, 252, 0.08) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.quick-tabs .quick-item.tab-toggle::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 58%);
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1) !important;
  pointer-events: none;
}

.quick-tabs .quick-item.tab-toggle i {
  transition:
    color 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 280ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.quick-tabs .quick-item.tab-toggle.is-active,
.quick-tabs .quick-item.tab-toggle.is-active:hover,
.quick-tabs .quick-item.tab-toggle.is-active:focus-visible,
.quick-tabs .quick-item.tab-toggle.is-active:active {
  color: #fff !important;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  transform: translateY(0) scale(1) !important;
}

.quick-tabs .quick-item.tab-toggle.is-active::before {
  opacity: 0.9;
  transform: translateY(0) scale(1);
}

.quick-tabs .quick-item.tab-toggle.is-active i {
  color: #fff !important;
  transform: scale(1.08);
  filter: drop-shadow(0 6px 14px rgba(255, 255, 255, 0.18));
}

.dashboard-tab-stage .tab-panel-enter {
  transform-origin: top center;
  animation: dashboardTabPanelReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.dashboard-tab-stage .dashboard-actions.tab-panel-enter .action-panel {
  opacity: 0;
  animation: dashboardTabCardLift 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.dashboard-tab-stage .dashboard-actions.tab-panel-enter .action-panel:nth-child(1) {
  animation-delay: 90ms;
}

.dashboard-tab-stage .dashboard-actions.tab-panel-enter .action-panel:nth-child(2) {
  animation-delay: 150ms;
}

.dashboard-tab-stage .launcher-card.tab-panel-enter {
  position: relative;
  overflow: hidden;
}

.dashboard-tab-stage .launcher-card.tab-panel-enter::after {
  content: "";
  position: absolute;
  top: -14%;
  bottom: -14%;
  left: -40%;
  width: 34%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: skewX(-18deg) translateX(0);
  animation: launcherCardSweep 760ms cubic-bezier(0.22, 1, 0.36, 1) 60ms both;
  pointer-events: none;
}

.tab-panel {
  opacity: 1;
  transform: translateY(0);
}

.animate-in {
  animation: fadeUpIn 0.42s ease both;
}

.hero-head {
  animation: fadeUpIn 0.5s ease both;
}

.panel-user {
  animation: fadeUpIn 0.56s ease both;
}

.panel-right {
  animation: fadeUpIn 0.64s ease both;
}

.quick-tabs {
  animation: fadeUpIn 0.74s ease both;
}

.launcher-card {
  animation: fadeUpIn 0.84s ease both;
}

.action-result {
  min-height: 0;
  margin: 8px 0 0;
  font-size: 13px;
}

.action-result:empty {
  display: none;
}

.action-result.ok {
  color: #b9f5c7;
}

.action-result.error {
  color: #ffb7b7;
}

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

@keyframes quickTabThumbPulseLeft {
  0% {
    transform: translateX(14px) scale(0.94);
    box-shadow: 0 10px 24px rgba(228, 123, 210, 0.16);
  }
  58% {
    transform: translateX(-4px) scale(1.03);
    box-shadow: 0 22px 46px rgba(228, 123, 210, 0.3);
  }
  100% {
    transform: translateX(0) scale(1);
    box-shadow: 0 18px 38px rgba(228, 123, 210, 0.24);
  }
}

@keyframes quickTabThumbPulseRight {
  0% {
    transform: translateX(calc(100% - 4px)) scale(0.94);
    box-shadow: 0 10px 24px rgba(228, 123, 210, 0.16);
  }
  58% {
    transform: translateX(calc(100% + 16px)) scale(1.03);
    box-shadow: 0 22px 46px rgba(228, 123, 210, 0.3);
  }
  100% {
    transform: translateX(calc(100% + 10px)) scale(1);
    box-shadow: 0 18px 38px rgba(228, 123, 210, 0.24);
  }
}

@keyframes dashboardTabPanelReveal {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(18px) scale(0.985);
  }
  58% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes dashboardTabCardLift {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes launcherCardSweep {
  0% {
    transform: skewX(-18deg) translateX(0);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    transform: skewX(-18deg) translateX(420%);
    opacity: 0;
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translate(-50%, -50%);
    opacity: 0.09;
  }
  50% {
    transform: translate(-50%, -51.2%);
    opacity: 0.11;
  }
}

@media (max-width: 1199px) {
  body.dashboard-page {
    background-attachment: scroll;
    background-position: center -340px;
    background-size: 1900px auto;
  }

  .camera-logo {
    width: 360px;
    max-width: 72vw;
  }

  .header {
    padding-top: 8px;
  }

  .header-shell {
    min-height: 58px;
    padding: 7px 12px;
    border-radius: 16px;
  }

  .navmenu {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    margin-right: 6px;
  }

  .header-btn {
    height: 36px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 13px;
  }

  .logo h1 {
    font-size: 14px;
  }

  .dashboard-main {
    max-width: 100%;
    padding-top: 132px;
  }

  .hero-head h2 {
    font-size: 34px;
  }

  .hero-head p {
    font-size: 20px;
  }

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

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

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

  .panel-user {
    min-height: auto;
    padding-bottom: 126px;
  }

  .panel-user::after {
    width: 180px;
    height: 132px;
    right: 8px;
    bottom: 50px;
  }

  .user-name {
    font-size: 28px;
  }

  .uid-inline {
    font-size: 25px;
  }

  .user-role {
    font-size: 22px;
  }

  .row-item {
    font-size: 20px;
  }

  .panel-user-bottom-actions {
    left: 18px;
    right: 18px;
    bottom: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .inline-link-reset.secondButton,
  .inline-link-logout.btn-global {
    width: 100%;
    justify-content: center !important;
    font-size: 16px !important;
  }

  .quick-item,
  .launcher-card {
    font-size: 16px;
  }
}

:root {
  --bg: #17181a;
  --text-main: #f4efef;
  --text-dim: rgba(244, 239, 239, 0.54);
  --text-mid: rgba(244, 239, 239, 0.72);
  --rect-bg: linear-gradient(180deg, rgba(36, 18, 18, 0.88) 0%, rgba(17, 18, 20, 0.82) 100%);
  --rect-bg-strong: linear-gradient(180deg, rgba(44, 20, 20, 0.92) 0%, rgba(30, 14, 14, 0.86) 100%);
  --rect-border: rgba(255, 214, 214, 0.12);
  --rect-inset: inset 0 0 0 1px rgba(255, 230, 230, 0.03);
}

.header-shell {
  background: rgba(23, 24, 26, 0.84) !important;
}

.logo .logo-dev {
  color: #ed4561 !important;
}

.avatar-plus,
.quick-item.tab-toggle.is-active,
.quick-item-logout,
.quick-item-logout:hover,
.action-btn,
.action-btn:hover,
.inline-link-logout.btn-global:hover,
.inline-link-logout.btn-global:focus,
.inline-link-logout.btn-global:active,
.quick-tabs-switch-thumb {
  background: linear-gradient(180deg, #ed4561 0%, #ef6179 100%) !important;
  border-color: rgba(255, 214, 214, 0.24) !important;
}

.inline-link,
.uid-inline,
.user-role,
.launcher-card,
.launcher-card:hover {
  color: #ff8a8a !important;
}

.panel,
.quick-tabs,
.launcher-card,
.action-panel,
.quick-item,
.avatar-popup,
.avatar-popup-btn,
.action-input {
  background: var(--rect-bg) !important;
  border-color: var(--rect-border) !important;
  box-shadow: var(--rect-inset) !important;
}

.panel-right {
  background: transparent !important;
}

.action-input {
  color: #fff3f3 !important;
}

.action-input:focus {
  border-color: rgba(237, 69, 97, 0.42) !important;
}

.quick-tabs .quick-item.tab-toggle {
  border-color: rgba(255, 214, 214, 0.08) !important;
}

.quick-tabs .quick-item.tab-toggle.is-active,
.quick-tabs .quick-item.tab-toggle.is-active:hover,
.quick-tabs .quick-item.tab-toggle.is-active:focus-visible,
.quick-tabs .quick-item.tab-toggle.is-active:active {
  color: #ffffff !important;
}

body.dashboard-page .panel,
body.dashboard-page .quick-tabs,
body.dashboard-page .quick-item,
body.dashboard-page .launcher-card,
body.dashboard-page .action-panel,
body.dashboard-page .avatar-popup,
body.dashboard-page .avatar-popup-btn,
body.dashboard-page .action-input {
  background: linear-gradient(180deg, rgba(34, 16, 16, 0.96) 0%, rgba(17, 18, 20, 0.9) 100%) !important;
  border-color: rgba(255, 214, 214, 0.16) !important;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 230, 230, 0.04) !important;
}

body.dashboard-page .panel-user,
body.dashboard-page .panel-right {
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 230, 230, 0.04) !important;
}

body.dashboard-page .user-name,
body.dashboard-page .row-item strong,
body.dashboard-page .avatar-popup-btn,
body.dashboard-page .launcher-card,
body.dashboard-page .launcher-card:hover {
  color: #fff4f4 !important;
}

body.dashboard-page .row-item,
body.dashboard-page .hero-head p,
body.dashboard-page .quick-item,
body.dashboard-page .quick-item:hover,
body.dashboard-page .quick-item:focus-visible,
body.dashboard-page .quick-item:active {
  color: rgba(255, 236, 236, 0.78) !important;
}

body.dashboard-page .uid-inline,
body.dashboard-page .user-role,
body.dashboard-page .inline-link {
  color: #ff8a8a !important;
}

body.dashboard-page .quick-item-link {
  color: rgba(255, 244, 244, 0.96) !important;
}

body.dashboard-page .quick-tabs .quick-item.tab-toggle {
  background: rgba(237, 69, 97, 0.05) !important;
  border-color: rgba(255, 214, 214, 0.16) !important;
}

body.dashboard-page .quick-tabs .quick-item.tab-toggle.is-active,
body.dashboard-page .quick-tabs .quick-item.tab-toggle.is-active:hover,
body.dashboard-page .quick-tabs .quick-item.tab-toggle.is-active:focus-visible,
body.dashboard-page .quick-tabs .quick-item.tab-toggle.is-active:active,
body.dashboard-page .action-btn,
body.dashboard-page .action-btn:hover {
  color: #ffffff !important;
  border-color: rgba(255, 214, 214, 0.24) !important;
  background: linear-gradient(180deg, #ed4561 0%, #ef6179 100%) !important;
  box-shadow: 0 14px 32px rgba(237, 69, 97, 0.18) !important;
}

body.dashboard-page .quick-tabs-switch-thumb {
  border-color: rgba(255, 214, 214, 0.24) !important;
}

body.dashboard-page .action-panel h3 {
  color: rgba(255, 244, 244, 0.88) !important;
}

body.dashboard-page .action-input {
  color: #fff4f4 !important;
}

body.dashboard-page .action-input::placeholder {
  color: rgba(255, 228, 228, 0.48) !important;
}
