:root {
  color-scheme: dark;
  --bg: #07101f;
  --bg-soft: #0c1729;
  --panel: #111f36;
  --panel-2: #152640;
  --line: #274061;
  --line-soft: rgba(125, 164, 230, .18);
  --text: #f6f8ff;
  --muted: #9fb0ce;
  --accent: #5c96ff;
  --accent-2: #7c5cff;
  --ok: #44d087;
  --danger: #ff6575;
  --shadow: 0 24px 80px rgba(0, 0, 0, .34);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(92, 150, 255, .28), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(124, 92, 255, .18), transparent 28%),
    linear-gradient(180deg, rgba(18, 32, 56, .92), #060b14 520px),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 68%);
}

a {
  color: inherit;
}

.vypr-page,
.vypr-dashboard {
  position: relative;
  z-index: 1;
}

.vypr-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.vypr-login-card {
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(17, 31, 54, .96), rgba(10, 18, 32, .92));
  box-shadow: var(--shadow);
}

.vypr-kicker {
  color: #91b9ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.vypr-login-card h1 {
  margin-top: 10px;
  font-size: 60px;
  line-height: .95;
  letter-spacing: 0;
}

.vypr-login-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
}

.vypr-links {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.vypr-links a,
.vypr-link-disabled {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 850;
  background: rgba(92, 150, 255, .16);
}

.vypr-link-disabled {
  color: color-mix(in srgb, var(--muted) 72%, transparent);
  border-style: dashed;
  background: rgba(255, 255, 255, .04);
  cursor: not-allowed;
}

.vypr-remember {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.vypr-remember input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.vypr-login-form,
.vypr-local-auth-tools,
.vypr-local-auth-tools form,
.vypr-passkey-actions {
  display: grid;
  gap: 14px;
}

.vypr-login-form {
  margin-top: 24px;
}

.vypr-login-form label:not(.vypr-remember),
.vypr-local-auth-tools label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

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

.vypr-login-form input:not([type="checkbox"]),
.vypr-local-auth-tools input,
.vypr-profile-form select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, .06);
  outline: none;
}

.vypr-local-auth-tools input[readonly],
.vypr-profile-form input[readonly] {
  color: color-mix(in srgb, var(--text) 70%, transparent);
  background: rgba(255, 255, 255, .035);
  cursor: default;
}

.vypr-login-form button,
.vypr-local-auth-tools button {
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  padding: 0 16px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
  cursor: pointer;
}

.vypr-login-form button[type="button"],
.vypr-passkey-actions button {
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--line);
}

.vypr-login-form small,
.vypr-local-auth-tools small {
  min-height: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.vypr-profile-tabs-shell,
.vypr-profile-subpanes,
.vypr-profile-subpane {
  display: grid;
  gap: 18px;
}

.vypr-profile-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vypr-profile-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, .06);
  font-weight: 900;
  cursor: pointer;
}

.vypr-profile-tabs button.is-active {
  border-color: rgba(115, 169, 255, .72);
  background: rgba(92, 150, 255, .18);
}

.vypr-profile-subpane {
  display: none;
}

.vypr-profile-subpane.is-active {
  display: grid;
}

.vypr-compact-form {
  margin-top: 14px;
}

.vypr-security-pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.vypr-security-pager button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.vypr-security-pager button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.vypr-security-pager span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.vypr-admin-migrate-result {
  min-height: 0;
  max-height: 220px;
  overflow: auto;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  color: var(--muted);
  background: rgba(0, 0, 0, .18);
  font-size: 12px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.vypr-panel-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .vypr-form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.vypr-dashboard {
  width: min(1480px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 42px;
}

.vypr-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.vypr-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.vypr-brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(144, 184, 255, .32);
  border-radius: 14px;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 42px rgba(92, 150, 255, .26);
}

.vypr-brand strong,
.vypr-brand em {
  display: block;
}

.vypr-brand strong {
  font-size: 22px;
  line-height: 1;
}

.vypr-brand em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vypr-top-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.vypr-top-actions a,
.vypr-top-actions button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  font-family: inherit;
  background: rgba(17, 31, 54, .82);
  cursor: pointer;
}

.vypr-top-actions .icon-only {
  width: 42px;
  padding: 0;
}

.vypr-top-actions .danger {
  color: #ffd3d8;
}

.vypr-hero-dashboard {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.vypr-profile-card,
.vypr-hero-copy,
.vypr-panel,
.vypr-module {
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(19, 35, 61, .9), rgba(9, 18, 33, .86));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
}

.vypr-profile-card,
.vypr-hero-copy {
  min-height: 190px;
  border-radius: 24px;
}

.vypr-profile-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
}

.vypr-avatar {
  display: grid;
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(144, 184, 255, .25);
  border-radius: 24px;
  color: #bdd4ff;
  font-size: 34px;
  background: rgba(92, 150, 255, .13);
}

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

.vypr-profile-card h1 {
  margin-top: 7px;
  font-size: 42px;
  line-height: 1;
}

.vypr-provider-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.vypr-provider-row span,
.vypr-status-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #cfe0ff;
  font-size: 12px;
  font-weight: 850;
  background: rgba(92, 150, 255, .1);
}

.vypr-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background:
    linear-gradient(110deg, rgba(17, 31, 54, .94), rgba(24, 55, 104, .78)),
    radial-gradient(circle at 88% 24%, rgba(92, 150, 255, .26), transparent 30%);
}

.vypr-hero-copy h2 {
  margin-top: 10px;
  font-size: 52px;
  line-height: 1.02;
}

.vypr-hero-copy p {
  max-width: 720px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

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

.vypr-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 0 0 14px;
  padding: 4px 0 8px;
  scrollbar-width: thin;
}

.vypr-tab {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #cfe0ff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  background: rgba(17, 31, 54, .78);
  cursor: pointer;
}

.vypr-tab.is-active {
  border-color: rgba(92, 150, 255, .62);
  color: #fff;
  background: rgba(92, 150, 255, .2);
  box-shadow: 0 12px 30px rgba(92, 150, 255, .12);
}

.vypr-tab:focus-visible {
  outline: 2px solid rgba(145, 185, 255, .82);
  outline-offset: 2px;
}

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

.vypr-module {
  position: relative;
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  padding: 18px;
  border-radius: 18px;
  text-decoration: none;
}

article.vypr-module {
  color: inherit;
}

.vypr-module::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}

.vypr-module > i {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: rgba(92, 150, 255, .2);
}

.vypr-module strong,
.vypr-module em {
  display: block;
}

.vypr-module strong {
  font-size: 17px;
}

.vypr-module em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 750;
}

.vypr-module b {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: #88adf1;
  font-size: 12px;
}

.vypr-module.w2g > i {
  background: linear-gradient(135deg, #4c91ff, #7f5cff);
}

.vypr-module.pokemon > i {
  background: linear-gradient(135deg, #e61d25, #ff8b45);
}

.vypr-module.tools > i {
  background: linear-gradient(135deg, #14b8a6, #5c96ff);
}

.vypr-single-hero {
  grid-template-columns: 1fr;
  margin-bottom: 22px;
}

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

.vypr-tools-launcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.vypr-tool-card {
  position: relative;
  display: grid;
  min-height: 240px;
  align-content: start;
  gap: 14px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  color: var(--text);
  text-decoration: none;
  background:
    radial-gradient(circle at 92% 12%, rgba(92, 150, 255, .2), transparent 26%),
    linear-gradient(180deg, rgba(19, 35, 61, .9), rgba(9, 18, 33, .86));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
}

.vypr-tool-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -62px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}

.vypr-tool-card > i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-size: 22px;
  background: linear-gradient(135deg, #14b8a6, #5c96ff);
}

.vypr-tool-card .vypr-status-pill {
  position: absolute;
  top: 24px;
  right: 24px;
}

.vypr-tool-card strong {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.1;
}

.vypr-tool-card p {
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.vypr-tool-card em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 8px;
  color: #9fc0ff;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.vypr-tool-page {
  width: min(1560px, calc(100% - 28px));
}

.vypr-tool-head {
  margin: 0 0 16px;
  padding: 24px 28px;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: linear-gradient(110deg, rgba(17, 31, 54, .94), rgba(24, 55, 104, .72));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
}

.vypr-tool-head h1 {
  margin-top: 8px;
  font-size: 42px;
  line-height: 1.05;
}

.vypr-tool-head p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}

.vypr-tool-stage {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: #f9f9f9;
  box-shadow: var(--shadow);
}

.vypr-tool-stage .simfact-wrap {
  border-radius: 22px;
}

.vypr-tool-stage-full {
  background: #f6f8fb;
}

.vypr-tool-stage-full .ribgen-wrap,
.vypr-tool-stage-full .ribgen-wrap .app,
.vypr-tool-stage-full .ribgen-wrap .sidebar {
  min-height: auto;
}

.vypr-module.jellyfin > i {
  background: linear-gradient(135deg, #31c7ff, #735cff);
}

.vypr-insights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 0 0 16px;
}

.vypr-insight {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 96px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  color: var(--text);
  text-decoration: none;
  background: rgba(12, 23, 41, .72);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .18);
}

.vypr-insight > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(144, 184, 255, .18);
  border-radius: 13px;
  color: #cfe0ff;
  background: rgba(92, 150, 255, .13);
}

.vypr-insight em,
.vypr-insight strong,
.vypr-insight small {
  display: block;
  min-width: 0;
}

.vypr-insight em {
  color: #91b9ff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.vypr-insight strong {
  overflow: hidden;
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-insight small {
  overflow: hidden;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 16px;
}

.vypr-tab-panes {
  display: block;
}

.vypr-tab-pane {
  display: grid;
  gap: 16px;
}

.vypr-console-pane {
  gap: 22px;
}

.vypr-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.vypr-wide-panel {
  grid-column: 1 / -1;
}

.vypr-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.vypr-panel-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #f7fbff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  background: rgba(92, 150, 255, .13);
}

.vypr-tools-launcher-compact .vypr-tool-card {
  min-height: 210px;
}

.vypr-panel {
  min-width: 0;
  border-radius: 20px;
  padding: 20px;
}

.vypr-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.vypr-panel-link {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 0 10px;
  border: 1px solid rgba(164, 190, 230, .22);
  border-radius: 8px;
  color: #dce7f6;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, .045);
  cursor: pointer;
}

.vypr-panel-link:hover {
  border-color: rgba(53, 208, 162, .42);
  color: #f8fbff;
  background: rgba(53, 208, 162, .11);
}

.vypr-panel-link i {
  font-size: 11px;
}

.vypr-panel-title > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: #cfe0ff;
  background: rgba(92, 150, 255, .14);
}

.vypr-panel-title h3 {
  font-size: 18px;
}

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

.vypr-stat-grid div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(92, 150, 255, .08);
}

.vypr-stat-grid strong,
.vypr-stat-grid span {
  display: block;
}

.vypr-stat-grid strong {
  font-size: 36px;
  line-height: 1;
}

.vypr-stat-grid span {
  margin-top: 12px;
  color: #99b8ed;
  font-size: 13px;
  font-weight: 850;
}

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

.vypr-activity li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(92, 150, 255, .10), rgba(34, 211, 238, .035)),
    rgba(8, 18, 33, .72);
}

.vypr-activity li > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  color: #cfe0ff;
  background: rgba(92, 150, 255, .18);
}

.vypr-activity strong,
.vypr-activity em {
  display: block;
  min-width: 0;
}

.vypr-activity strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-activity em,
.vypr-activity time {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.vypr-activity a {
  justify-self: end;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(93, 156, 255, .45);
  border-radius: 8px;
  color: #eaf2ff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  background: rgba(93, 156, 255, .16);
}

.vypr-activity a:hover {
  border-color: rgba(34, 211, 238, .55);
  background: rgba(34, 211, 238, .16);
}

.vypr-activity-empty {
  grid-template-columns: 42px 1fr;
}

.vypr-activity-empty em {
  max-width: 520px;
  line-height: 1.45;
  white-space: normal;
}

.vypr-panel-title-wrap {
  flex-wrap: wrap;
}

.vypr-activity-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}

.vypr-activity-filters,
.vypr-activity-clear {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.vypr-activity-clear span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.vypr-activity-filters button,
.vypr-activity-clear button,
.vypr-load-more {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: #dceaff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.vypr-activity-filters button.is-active {
  border-color: rgba(53, 208, 162, .48);
  color: #dffcf0;
  background: rgba(53, 208, 162, .14);
}

.vypr-activity-clear button {
  color: #ffd3d8;
}

.vypr-load-more {
  width: 100%;
  margin-top: 12px;
}

.vypr-load-more[hidden] {
  display: none;
}

.vypr-karix-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.vypr-karix-pagination span {
  color: var(--console-muted);
  font-size: 12px;
  font-weight: 850;
}

.vypr-karix-pagination div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vypr-karix-pagination button {
  min-width: 34px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  color: #dce9ff;
  background: rgba(13, 29, 53, .74);
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.vypr-karix-pagination button.is-active {
  border-color: rgba(53, 208, 162, .62);
  color: #dffdf4;
  background: rgba(53, 208, 162, .16);
}

.vypr-inline-state {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.vypr-inline-state[data-state="error"] {
  color: #ffb4c0;
}

.vypr-xp-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.vypr-xp-head strong,
.vypr-xp-head em {
  display: block;
}

.vypr-xp-head strong {
  font-size: 28px;
  line-height: 1;
}

.vypr-xp-head em {
  margin-top: 6px;
  color: #9eb9eb;
  font-style: normal;
  font-weight: 800;
}

.vypr-xp-head b {
  min-width: 74px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #cfe0ff;
  text-align: center;
  font-size: 12px;
  background: rgba(92, 150, 255, .12);
}

.vypr-xp-meter {
  height: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 13, 28, .7);
}

.vypr-xp-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5c96ff, #8c6cff);
  box-shadow: 0 0 18px rgba(92, 150, 255, .35);
}

.vypr-xp-panel p,
.vypr-alarms-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.vypr-notif-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(92, 150, 255, .06);
}

.vypr-notif-box button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #f7fbff;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  background: rgba(5, 13, 28, .72);
  cursor: pointer;
}

.vypr-notif-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.vypr-notif-box button.is-on {
  border-color: rgba(68, 208, 135, .55);
  color: #d8ffe9;
  background: rgba(68, 208, 135, .14);
}

.vypr-notif-box span[data-state="ok"] {
  color: #9df2c3;
}

.vypr-notif-box span[data-state="error"] {
  color: #ffb4bd;
}

.vypr-notif-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.vypr-notification-banner {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-color: rgba(68, 208, 208, .34);
  background: linear-gradient(135deg, rgba(68, 208, 208, .12), rgba(92, 150, 255, .07));
}

.vypr-notification-banner > i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: #07111f;
  background: #44d0d0;
}

.vypr-notification-banner span,
.vypr-notification-banner small,
.vypr-notification-banner strong,
.vypr-notification-banner em {
  display: block;
  min-width: 0;
}

.vypr-notification-banner strong {
  color: #f7fbff;
  font-size: 18px;
  font-weight: 950;
}

.vypr-notification-banner em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.vypr-notification-banner small {
  margin-top: 5px;
  color: #a8d5ff;
  font-size: 12px;
  font-weight: 850;
}

.vypr-notification-banner small[data-state="ok"] {
  color: #9df2c3;
}

.vypr-notification-banner small[data-state="error"] {
  color: #ffb4bd;
}

.vypr-notification-banner > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.vypr-notification-banner button,
.vypr-alarm-reminder-box button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #eaf4ff;
  background: rgba(5, 13, 28, .72);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.vypr-notification-banner button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
}

.vypr-reminder-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 118px;
  justify-content: center;
  white-space: nowrap;
}

.vypr-reminder-toggle .vypr-reminder-state-label {
  font-size: 12px;
  font-weight: 850;
  color: inherit;
}

.vypr-reminder-toggle.is-on {
  border-color: rgba(68, 208, 135, .55);
  color: #d8ffe9;
  background: rgba(68, 208, 135, .14);
}

.vypr-reminder-select {
  appearance: none;
  -webkit-appearance: none;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(5, 13, 28, .72);
  color: #f7fbff;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.vypr-reminder-select::-webkit-inner-spin-button,
.vypr-reminder-select::-webkit-outer-spin-button {
  display: none;
}

.vypr-reminder-select:focus {
  outline: none;
  border-color: rgba(92, 150, 255, .5);
}

.vypr-time-combo {
  display: inline-grid;
  grid-template-columns: 58px auto 58px;
  align-items: center;
  gap: 5px;
}

.vypr-time-combo span {
  color: #cfe0ff;
  font-size: 14px;
  font-weight: 950;
}

.vypr-time-combo .vypr-reminder-select {
  min-width: 0;
  text-align: center;
}

.vypr-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.vypr-mini-stats span {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(92, 150, 255, .07);
}

.vypr-mini-stats strong,
.vypr-mini-stats em {
  display: block;
}

.vypr-mini-stats strong {
  font-size: 20px;
}

.vypr-mini-stats em {
  margin-top: 4px;
  color: #9eb9eb;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.vypr-role-panel {
  display: grid;
  gap: 18px;
}

.vypr-role-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vypr-role-metrics span:last-child {
  grid-column: 1 / -1;
}

.vypr-role-metrics span {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(92, 150, 255, .08);
}

.vypr-role-metrics strong,
.vypr-role-metrics em {
  display: block;
}

.vypr-role-metrics strong {
  overflow: hidden;
  color: #f7fbff;
  font-size: 17px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-role-metrics em,
.vypr-role-panel h4,
.vypr-role-pills em,
.vypr-role-list em {
  color: #9eb9eb;
  font-style: normal;
  font-weight: 850;
}

.vypr-role-metrics em {
  margin-top: 6px;
  font-size: 11px;
}

.vypr-role-panel h4 {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
}

.vypr-role-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vypr-role-pills span {
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(93, 156, 255, .34);
  border-radius: 999px;
  color: #eaf2ff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(93, 156, 255, .13);
}

.vypr-role-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vypr-role-list li {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(5, 13, 28, .38);
}

.vypr-role-list span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.vypr-role-list i {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--role-color, #35d0a2);
}

.vypr-role-list strong {
  overflow: hidden;
  color: #f7fbff;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-role-list em,
.vypr-role-pills em {
  font-size: 12px;
}

.vypr-xp-breakdown {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(155, 184, 228, .16);
}

.vypr-xp-breakdown div {
  display: grid;
  grid-template-columns: 92px 92px 1fr;
  align-items: center;
  gap: 10px;
  color: #cfe0ff;
  font-size: 12px;
  font-weight: 850;
}

.vypr-xp-breakdown strong {
  color: #f7fbff;
  font-size: 12px;
  text-align: right;
}

.vypr-xp-breakdown i {
  display: block;
  height: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 13, 28, .68);
}

.vypr-xp-breakdown b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5c96ff, #8c6cff);
}

.vypr-xp-help {
  margin: 14px 0 0;
  color: #a9c0e8;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.vypr-karix-cogs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.vypr-karix-cogs span {
  padding: 7px 10px;
  border: 1px solid rgba(92, 150, 255, .34);
  border-radius: 999px;
  background: rgba(92, 150, 255, .1);
  color: #dce8ff;
  font-size: 12px;
  font-weight: 850;
}

.vypr-karix-search input {
  min-width: 240px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(5, 13, 28, .62);
  color: #f7fbff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.vypr-karix-toolbar {
  grid-template-columns: minmax(0, 1fr) minmax(220px, .35fr);
  align-items: start;
}

.vypr-karix-advanced-filters {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 8px;
  width: 100%;
}

.vypr-karix-advanced-filters input {
  min-width: 0;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(5, 13, 28, .62);
  color: #f7fbff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.vypr-karix-action-form {
  display: grid;
  gap: 12px;
}

.vypr-karix-merged-controls {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--console-line);
}

.vypr-karix-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.vypr-karix-action-grid button,
.vypr-karix-action-grid label {
  min-width: 0;
  border: 1px solid var(--console-line);
  border-radius: 12px;
  background: rgba(5, 13, 28, .48);
}

.vypr-karix-action-grid button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 10px;
  color: var(--console-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.vypr-karix-action-grid button:hover {
  border-color: rgba(34, 211, 238, .45);
  background: rgba(34, 211, 238, .08);
}

.vypr-karix-action-grid button:disabled {
  opacity: .6;
  cursor: wait;
}

.vypr-karix-action-grid button > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: #06101e;
  background: var(--console-cyan);
}

.vypr-karix-action-grid strong,
.vypr-karix-action-grid em,
.vypr-karix-action-grid label span {
  display: block;
}

.vypr-karix-action-grid strong {
  font-size: 13px;
}

.vypr-karix-action-grid em,
.vypr-karix-action-grid label span,
.vypr-karix-action-form > small {
  color: var(--console-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.vypr-karix-action-grid label {
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 72px;
  padding: 10px;
}

.vypr-karix-action-grid select {
  min-width: 0;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--console-line);
  border-radius: 9px;
  color: var(--console-text);
  background: rgba(3, 9, 20, .72);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
}

.vypr-xp-rankline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  align-items: center;
  margin-top: 16px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(92, 150, 255, .06);
}

.vypr-xp-rankline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cfe0ff;
  font-size: 13px;
  font-weight: 900;
}

.vypr-xp-rankline strong {
  color: #f7fbff;
  font-size: 13px;
}

.vypr-xp-rankline em {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.vypr-discord-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 14px;
}

.vypr-discord-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 18px;
  align-items: stretch;
  grid-column: 1 / -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(111, 140, 255, .2), transparent 34%),
    linear-gradient(135deg, rgba(111, 140, 255, .12), rgba(68, 208, 208, .06)),
    var(--console-panel);
}

.vypr-discord-hero-main {
  min-width: 0;
}

.vypr-discord-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vypr-discord-score-grid span {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(111, 140, 255, .24);
  border-radius: 14px;
  background: rgba(5, 13, 28, .42);
}

.vypr-discord-score-grid strong,
.vypr-discord-score-grid em {
  display: block;
}

  .vypr-discord-score-grid strong {
  color: #f7fbff;
  font-size: 22px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.vypr-discord-score-grid em {
  margin-top: 6px;
  color: #a9c0e8;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.vypr-discord-breakdown .vypr-xp-breakdown {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.vypr-discord-leaderboard {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.vypr-discord-leaderboard-note {
  margin: 0 0 12px;
  color: #9eb9eb;
  font-size: 12px;
  font-weight: 850;
}

.vypr-discord-leaderboard li {
  display: grid;
  grid-template-columns: 46px 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(5, 13, 28, .38);
}

.vypr-discord-leaderboard li.is-me {
  border-color: rgba(68, 208, 208, .5);
  background: rgba(68, 208, 208, .1);
}

.vypr-discord-leaderboard b {
  display: grid;
  min-width: 38px;
  min-height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #dfeaff;
  background: rgba(111, 140, 255, .18);
}

.vypr-discord-rank-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  color: #07111f;
  background: #6f8cff;
}

.vypr-discord-rank-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vypr-discord-leaderboard span,
.vypr-discord-leaderboard strong,
.vypr-discord-leaderboard em {
  display: block;
  min-width: 0;
}

.vypr-discord-leaderboard strong {
  overflow: hidden;
  color: #f7fbff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-discord-leaderboard em,
.vypr-discord-leaderboard small {
  color: #a9c0e8;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.vypr-discord-leaderboard small {
  max-width: 280px;
  text-align: right;
}

.vypr-discord-ops {
  grid-column: auto;
}

.vypr-alarm-days {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.vypr-alarm-row {
  display: grid;
  grid-template-columns: minmax(132px, auto) minmax(180px, 1fr) 36px 36px;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(92, 150, 255, .06);
}

.vypr-alarm-row.is-today {
  border-color: rgba(255, 197, 92, .5);
  background:
    linear-gradient(90deg, rgba(255, 197, 92, .14), transparent 58%),
    rgba(92, 150, 255, .075);
}

.vypr-alarm-row.is-dirty {
  border-color: rgba(255, 76, 96, .72);
  animation: vypr-dirty-pulse 1.25s ease-in-out infinite;
}

.vypr-alarm-row.is-dirty input {
  border-color: rgba(255, 76, 96, .72);
}

@keyframes vypr-dirty-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 76, 96, .18);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(255, 76, 96, .12);
  }
}

.vypr-alarm-row > strong {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: #cfe0ff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.vypr-alarm-row > strong span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.vypr-alarm-row > strong em {
  flex: 0 0 auto;
  padding: 4px 7px;
  border: 1px solid rgba(255, 197, 92, .42);
  border-radius: 999px;
  color: #ffe6a8;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
  background: rgba(255, 197, 92, .13);
}

.vypr-alarm-row label {
  display: block;
  min-width: 0;
}

.vypr-alarm-row input,
.vypr-alarm-row button {
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #f7fbff;
  background: rgba(5, 13, 28, .72);
}

.vypr-alarm-row input {
  width: 100%;
  min-width: 0;
  padding: 0 10px;
  color-scheme: dark;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.vypr-alarm-row button {
  display: grid;
  place-items: center;
  cursor: pointer;
}

.vypr-alarm-row button:disabled {
  opacity: .55;
  cursor: wait;
}

.vypr-alarm-row button:hover {
  border-color: rgba(92, 150, 255, .72);
  background: rgba(92, 150, 255, .18);
}

.vypr-reminders-panel {
  display: grid;
  align-content: start;
  gap: 14px;
}

.vypr-reminder-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 176px auto;
  gap: 8px;
  align-items: end;
}

.vypr-reminder-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.vypr-reminder-form label:first-child {
  grid-column: 1 / -1;
}

.vypr-reminder-form .vypr-time-combo {
  width: 100%;
  grid-template-columns: minmax(64px, 1fr) auto minmax(64px, 1fr);
}

.vypr-reminder-form .vypr-time-combo .vypr-reminder-select {
  min-height: 40px;
  border-radius: 12px;
}

.vypr-reminder-form span,
.vypr-reminder-form small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.vypr-reminder-form input,
.vypr-reminder-form button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #f7fbff;
  background: rgba(5, 13, 28, .72);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.vypr-reminder-form input {
  width: 100%;
  min-width: 0;
  padding: 0 12px;
  color-scheme: dark;
}

.vypr-reminder-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 112px;
  padding: 0 16px;
  border-color: rgba(255, 159, 90, .5);
  background: rgba(255, 159, 90, .16);
  cursor: pointer;
}

.vypr-reminder-form button:disabled {
  opacity: .6;
  cursor: wait;
}

.vypr-reminder-form small {
  grid-column: 1 / -1;
}

.vypr-reminder-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vypr-reminder-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 159, 90, .24);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 159, 90, .10), rgba(92, 150, 255, .06));
}

.vypr-reminder-row > i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #07111f;
  background: #ff9f5a;
}

.vypr-reminder-row span {
  min-width: 0;
}

.vypr-reminder-row strong,
.vypr-reminder-row em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-reminder-row strong {
  color: #f7fbff;
  font-size: 14px;
  font-weight: 950;
}

.vypr-reminder-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.vypr-reminder-row button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #ffc0ca;
  background: rgba(5, 13, 28, .72);
  cursor: pointer;
}

.vypr-reminder-row button:hover {
  border-color: rgba(255, 76, 96, .58);
  background: rgba(255, 76, 96, .14);
}

.vypr-alarm-push-settings {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.vypr-alarm-reminder-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.vypr-alarm-reminder-text {
  color: #cfe0ff;
  font-size: 13px;
  font-weight: 850;
}

.vypr-alarm-reminder-box > span[data-alarm-reminder-state] {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.vypr-alarm-push-settings > strong {
  color: #cfe0ff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.vypr-notif-box-compact {
  margin: 0;
}

.vypr-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  max-width: min(360px, calc(100vw - 32px));
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(68, 208, 135, .42);
  border-radius: 16px;
  color: #eaf7ff;
  font-size: 13px;
  font-weight: 850;
  background: rgba(13, 28, 47, .96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .34), 0 0 0 1px rgba(255, 255, 255, .03) inset;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.vypr-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vypr-toast.is-error {
  border-color: rgba(255, 99, 118, .45);
}

.vypr-toast i {
  color: #9df2c3;
}

.vypr-toast.is-error i {
  color: #ffb4bd;
}

#alarmes {
  scroll-margin-top: 18px;
}

@media (max-width: 1020px) {
  .vypr-dashboard {
    width: min(100% - 24px, 760px);
  }

  .vypr-top,
  .vypr-hero-dashboard {
    grid-template-columns: 1fr;
  }

  .vypr-top {
    display: grid;
  }

  .vypr-top-actions {
    justify-content: flex-start;
  }

  .vypr-modules,
  .vypr-insights,
  .vypr-grid,
  .vypr-tools-launcher {
    grid-template-columns: 1fr;
  }

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

  .vypr-mini-stats {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .vypr-dashboard {
    width: calc(100% - 18px);
    padding-top: 12px;
  }

  .vypr-profile-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .vypr-login-card h1 {
    font-size: 42px;
  }

  .vypr-profile-card h1,
  .vypr-hero-copy h2 {
    font-size: 34px;
  }

  .vypr-stat-grid strong {
    font-size: 30px;
  }

  .vypr-stat-grid {
    grid-template-columns: 1fr;
  }

  .vypr-twitch-form-inline {
    grid-template-columns: 1fr;
  }

  .vypr-twitch-form button {
    width: 100%;
  }

  .vypr-twitch-list li {
    grid-template-columns: 46px minmax(0, 1fr) auto auto;
  }

  .vypr-twitch-list small {
    grid-column: 2 / -1;
  }

  .vypr-twitch-list a {
    grid-column: 2;
    min-width: 0;
  }

  .vypr-alarm-row {
    grid-template-columns: 1fr 1fr 36px 36px;
  }

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

  .vypr-reminder-form button {
    width: 100%;
  }

  .vypr-notification-banner {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .vypr-notification-banner > div {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .vypr-karix-action-grid {
    grid-template-columns: 1fr;
  }

  .vypr-karix-side-list li {
    grid-template-columns: 1fr;
  }

  .vypr-activity li {
    grid-template-columns: 42px 1fr;
  }

  .vypr-activity time {
    grid-column: 2;
  }

  .vypr-activity a {
    grid-column: 2;
    justify-self: start;
  }
}

.vypr-console {
  --console-bg: rgba(6, 12, 23, .78);
  --console-card: rgba(12, 23, 40, .92);
  --console-card-2: rgba(17, 32, 54, .9);
  --console-line: rgba(164, 190, 230, .18);
  --console-text: #f7fbff;
  --console-muted: #9fb0c8;
  --console-blue: #66a3ff;
  --console-cyan: #4bd4d8;
  --console-green: #4ed18f;
  --console-pink: #ff7aa7;
  width: min(1540px, calc(100% - 36px));
}

body:has(.vypr-console) {
  background:
    linear-gradient(180deg, rgba(6, 13, 25, .2), rgba(6, 13, 25, .92) 560px),
    radial-gradient(circle at 10% 0%, rgba(75, 212, 216, .18), transparent 31%),
    radial-gradient(circle at 82% 8%, rgba(255, 122, 167, .13), transparent 28%),
    #050913;
}

.vypr-console-top {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-bottom: 18px;
  padding: 10px 0;
  backdrop-filter: blur(18px);
}

.vypr-console .vypr-brand-mark {
  border-radius: 12px;
  background: linear-gradient(135deg, #1b74ff, #31c6b8);
}

.vypr-console .vypr-top-actions a,
.vypr-console .vypr-top-actions button {
  border-color: var(--console-line);
  border-radius: 10px;
  background: rgba(9, 18, 32, .76);
}

.vypr-console .vypr-top-actions a:hover,
.vypr-console .vypr-top-actions button:hover {
  border-color: rgba(102, 163, 255, .58);
  background: rgba(102, 163, 255, .14);
}

.vypr-console-hero {
  display: grid;
  grid-template-columns: minmax(310px, 480px) 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.vypr-console-profile,
.vypr-console-status,
.vypr-console-card,
.vypr-console-app {
  border: 1px solid var(--console-line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--console-card-2), var(--console-card));
  box-shadow: 0 18px 54px rgba(0, 0, 0, .25);
}

.vypr-console-profile {
  display: flex;
  min-height: 168px;
  align-items: center;
  gap: 18px;
  padding: 20px;
}

.vypr-console-avatar {
  display: grid;
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(102, 163, 255, .45);
  border-radius: 8px;
  color: #fff;
  font-size: 34px;
  font-weight: 950;
  background: linear-gradient(135deg, #1b74ff, #31c6b8);
}

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

.vypr-console-profile h1 {
  margin-top: 8px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: .95;
}

.vypr-console-status {
  min-height: 168px;
  padding: 22px;
}

.vypr-console-status h2 {
  margin-top: 8px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: .92;
}

.vypr-console-status p {
  max-width: 720px;
  margin-top: 12px;
  color: var(--console-muted);
  font-size: 15px;
  line-height: 1.55;
}

.vypr-console-status > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.vypr-console-status > div span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--console-line);
  border-radius: 8px;
  color: #cfe0ff;
  font-size: 12px;
  font-weight: 850;
  background: rgba(255, 255, 255, .035);
}

.vypr-console .vypr-tabs {
  position: sticky;
  top: 72px;
  z-index: 19;
  margin: 0 0 14px;
  padding: 8px;
  border: 1px solid var(--console-line);
  border-radius: 8px;
  background: rgba(6, 12, 23, .84);
  backdrop-filter: blur(18px);
}

.vypr-console .vypr-tab {
  border-radius: 6px;
}

.vypr-console-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.45fr) minmax(240px, .78fr) minmax(240px, .82fr);
  gap: 14px;
  margin-bottom: 0;
}

.vypr-console-card {
  min-height: 212px;
  padding: 18px;
}

.vypr-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #cfe0ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.vypr-card-head i {
  color: var(--console-cyan);
}

.vypr-console-card h2 {
  margin-top: 18px;
  font-size: clamp(42px, 5vw, 78px);
  line-height: .9;
}

.vypr-console-card > strong {
  display: block;
  margin-top: 20px;
  color: var(--console-text);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.05;
}

.vypr-console-card p {
  margin-top: 12px;
  color: var(--console-muted);
  font-size: 14px;
  line-height: 1.5;
}

.vypr-console-card button,
.vypr-console-card a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0 12px;
  border: 1px solid rgba(102, 163, 255, .44);
  border-radius: 8px;
  color: var(--console-text);
  text-decoration: none;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  background: rgba(102, 163, 255, .13);
  cursor: pointer;
}

.vypr-console-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.vypr-console-metrics span {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--console-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}

.vypr-console-metrics strong,
.vypr-console-metrics em {
  display: block;
}

.vypr-console-metrics strong {
  overflow: hidden;
  color: var(--console-text);
  font-size: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-console-metrics em {
  margin-top: 4px;
  color: var(--console-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.vypr-console-apps {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}

.vypr-console-apps-modules {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.vypr-console-app {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 48px;
  min-height: 92px;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid var(--console-line);
  border-radius: 8px;
  padding: 14px;
  color: var(--console-text);
  appearance: none;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.vypr-console-app-soon {
  cursor: default;
  opacity: .82;
}

.vypr-console-app-soon:hover {
  border-color: var(--console-line);
  transform: none;
}

.vypr-console-app > i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: #06101e;
  background: var(--console-cyan);
}

.vypr-console-app-main > i {
  background: var(--console-green);
}

.vypr-console-app strong,
.vypr-console-app em {
  display: block;
  min-width: 0;
}

.vypr-console-app span {
  min-width: 0;
}

.vypr-console-app strong {
  font-size: 16px;
}

.vypr-console-app em {
  margin-top: 4px;
  overflow: hidden;
  color: var(--console-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
}

.vypr-console-app b {
  justify-self: end;
  min-width: 44px;
  color: #cfe0ff;
  font-size: 12px;
  text-align: right;
  white-space: nowrap;
}

.vypr-console-bottom {
  align-items: stretch;
  gap: 22px;
}

.vypr-empty-state {
  display: grid;
  min-height: 210px;
  align-content: center;
  justify-items: start;
  gap: 10px;
  padding: 18px;
  border: 1px dashed rgba(164, 190, 230, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
}

.vypr-empty-state-compact {
  min-height: 124px;
  margin-top: 14px;
}

.vypr-empty-state-inline {
  min-height: 104px;
  align-content: start;
}

.vypr-empty-state-inline p {
  max-width: 760px;
}

.vypr-empty-state i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #06101e;
  background: var(--console-cyan);
}

.vypr-empty-state strong {
  color: var(--console-text);
  font-size: 18px;
}

.vypr-empty-state p {
  max-width: 520px;
  color: var(--console-muted);
  font-size: 14px;
  line-height: 1.5;
}

.vypr-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.vypr-action-grid button {
  min-height: 54px;
  border: 1px solid var(--console-line);
  border-radius: 8px;
  color: var(--console-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, .035);
  cursor: not-allowed;
}

.vypr-action-grid i {
  margin-right: 8px;
}

.vypr-mod-action-form {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.vypr-mod-action-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--console-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.vypr-mod-action-head strong,
.vypr-mod-action-head em,
.vypr-mod-action-head small {
  display: block;
}

.vypr-mod-action-head strong {
  color: var(--console-text);
  font-size: 24px;
}

.vypr-mod-action-head em,
.vypr-mod-action-head small {
  color: var(--console-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.vypr-mod-action-help {
  padding: 12px 14px;
  border: 1px solid rgba(92, 150, 255, .28);
  border-radius: 12px;
  background: rgba(92, 150, 255, .08);
  color: #cfe0ff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.vypr-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr) minmax(110px, .55fr);
  gap: 10px;
}

.vypr-mod-action-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.vypr-mod-action-form label span {
  color: var(--console-muted);
  font-size: 12px;
  font-weight: 900;
}

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

.vypr-twitch-form-inline {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
}

.vypr-twitch-form label {
  display: grid;
  gap: 7px;
}

.vypr-twitch-form span,
.vypr-twitch-form small {
  color: var(--console-muted);
  font-size: 12px;
  font-weight: 900;
}

.vypr-twitch-form input {
  min-height: 44px;
  border: 1px solid var(--console-line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--console-text);
  font: inherit;
  font-weight: 850;
  background: rgba(4, 11, 22, .45);
}

.vypr-twitch-form button {
  min-height: 42px;
  min-width: 132px;
  border: 1px solid rgba(169, 112, 255, .42);
  border-radius: 8px;
  color: #f8fbff;
  font: inherit;
  font-weight: 950;
  background: rgba(169, 112, 255, .18);
  cursor: pointer;
}

.vypr-twitch-form-inline small {
  grid-column: 1 / -1;
  padding: 8px 10px;
  border: 1px solid rgba(169, 112, 255, .18);
  border-radius: 8px;
  background: rgba(169, 112, 255, .06);
}

.vypr-twitch-control-panel {
  border-color: rgba(169, 112, 255, .26);
  background:
    linear-gradient(135deg, rgba(169, 112, 255, .08), transparent 46%),
    var(--console-panel);
}

.vypr-twitch-form button:disabled,
.vypr-twitch-list button:disabled {
  opacity: .55;
  cursor: progress;
}

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

.vypr-twitch-group {
  display: grid;
  gap: 10px;
}

.vypr-twitch-group + .vypr-twitch-group {
  margin-top: 18px;
}

.vypr-twitch-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--console-muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.vypr-twitch-group-title b {
  min-width: 28px;
  padding: 4px 8px;
  border: 1px solid rgba(164, 190, 230, .18);
  border-radius: 999px;
  color: #d9e6fb;
  text-align: center;
  background: rgba(255, 255, 255, .04);
}

.vypr-twitch-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto minmax(150px, .5fr) auto auto auto;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 12px;
  border: 1px solid rgba(169, 112, 255, .24);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(169, 112, 255, .1), transparent 48%),
    rgba(4, 11, 22, .32);
}

.vypr-twitch-list li.is-live-row {
  border-color: rgba(169, 112, 255, .34);
  background:
    linear-gradient(135deg, rgba(169, 112, 255, .16), transparent 46%),
    rgba(11, 20, 38, .78);
}

.vypr-twitch-list li.is-offline-row {
  opacity: .82;
}

.vypr-youtube-list li,
.vypr-youtube-list li.is-live-row {
  border-color: rgba(255, 77, 77, .34);
  background:
    linear-gradient(135deg, rgba(255, 77, 77, .14), transparent 48%),
    rgba(11, 20, 38, .78);
}

.vypr-youtube-list li.is-offline-row {
  border-color: rgba(255, 77, 77, .2);
  background:
    linear-gradient(135deg, rgba(255, 77, 77, .08), transparent 48%),
    rgba(4, 11, 22, .32);
}

.vypr-twitch-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
  color: #06101e;
  background: #a970ff;
}

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

.vypr-youtube-list .vypr-twitch-avatar {
  background: #ff4d4d;
}

.vypr-twitch-list strong,
.vypr-twitch-list em {
  display: block;
}

.vypr-twitch-list strong {
  overflow: hidden;
  color: #f8fbff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-twitch-identity {
  min-width: 0;
}

.vypr-twitch-list em,
.vypr-twitch-list small {
  color: var(--console-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.vypr-twitch-list b {
  min-width: 70px;
  padding: 7px 10px;
  border: 1px solid rgba(164, 190, 230, .18);
  border-radius: 999px;
  color: #b8c4d5;
  font-size: 12px;
  text-align: center;
  background: rgba(255, 255, 255, .035);
}

.vypr-twitch-list b.is-live {
  border-color: rgba(53, 208, 162, .44);
  color: #dffcf0;
  background: rgba(53, 208, 162, .14);
}

.vypr-youtube-list b.is-live {
  border-color: rgba(255, 77, 77, .5);
  color: #ffecec;
  background: rgba(255, 77, 77, .16);
}

.vypr-youtube-list .vypr-youtube-spacer {
  visibility: hidden;
}

.vypr-twitch-list a,
.vypr-twitch-list button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(164, 190, 230, .18);
  border-radius: 8px;
  color: #eaf2ff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  background: rgba(255, 255, 255, .045);
}

.vypr-twitch-list a {
  min-width: 86px;
}

.vypr-youtube-list a {
  min-width: 96px;
  border-color: rgba(255, 77, 77, .34);
  color: #fff3f3;
  background: rgba(255, 77, 77, .12);
}

[data-youtube-form] button {
  border-color: rgba(255, 77, 77, .46);
  background: rgba(255, 77, 77, .16);
}

[data-youtube-form] button:hover {
  border-color: rgba(255, 77, 77, .68);
  background: rgba(255, 77, 77, .22);
}

[data-youtube-form].vypr-twitch-form-inline small {
  border-color: rgba(255, 77, 77, .2);
  background: rgba(255, 77, 77, .06);
}

.vypr-twitch-list button {
  width: 36px;
  color: #ffd7df;
  cursor: pointer;
}

.vypr-twitch-list .vypr-twitch-notify {
  color: #aab8cf;
}

.vypr-twitch-list .vypr-twitch-notify:not(.is-on) {
  border-color: rgba(164, 190, 230, .14);
  color: #8796ad;
  background: rgba(255, 255, 255, .025);
}

.vypr-twitch-list .vypr-twitch-notify.is-on {
  border-color: rgba(169, 112, 255, .48);
  color: #f3ecff;
  background: rgba(169, 112, 255, .18);
}

.vypr-youtube-list .vypr-twitch-notify.is-on {
  border-color: rgba(255, 77, 77, .52);
  color: #ffecec;
  background: rgba(255, 77, 77, .18);
}

[data-twitch-streamers].is-refreshing,
[data-youtube-channels].is-refreshing {
  opacity: .72;
  transition: opacity .16s ease;
}

.vypr-mod-action-form input,
.vypr-mod-action-form select,
.vypr-mod-action-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--console-line);
  border-radius: 8px;
  color: var(--console-text);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  background: rgba(5, 12, 24, .52);
}

.vypr-mod-action-form input,
.vypr-mod-action-form select {
  height: 44px;
  padding: 0 12px;
}

.vypr-mod-action-form textarea {
  resize: vertical;
  min-height: 78px;
  padding: 10px 12px;
}

.vypr-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vypr-form-actions button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #06101e;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  background: var(--console-cyan);
  cursor: pointer;
}

.vypr-form-actions button:disabled {
  opacity: .55;
  cursor: wait;
}

.vypr-form-actions span {
  color: var(--console-muted);
  font-size: 12px;
  font-weight: 800;
}

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

.vypr-stat-grid-compact div {
  min-height: 82px;
  padding: 14px;
}

.vypr-stat-grid-compact strong {
  font-size: 28px;
}

.vypr-discord-events {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vypr-karix-panel .vypr-stat-grid + .vypr-discord-events,
.vypr-karix-panel .vypr-stat-grid + .vypr-empty-state {
  margin-top: 14px;
}

.vypr-discord-events li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) max-content;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 11px;
  border: 1px solid var(--console-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.vypr-discord-events li > span {
  min-width: 0;
}

.vypr-discord-events li[data-detail-open] {
  cursor: pointer;
}

.vypr-discord-events li[data-detail-open]:hover {
  border-color: rgba(75, 212, 216, .45);
  background: rgba(75, 212, 216, .07);
}

.vypr-discord-events li[data-detail-open]:focus-visible {
  outline: 2px solid rgba(75, 212, 216, .8);
  outline-offset: 2px;
}

.vypr-discord-events i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #06101e;
  background: var(--console-cyan);
}

.vypr-discord-events strong,
.vypr-discord-events em {
  display: block;
  min-width: 0;
}

.vypr-discord-events strong {
  overflow: hidden;
  color: var(--console-text);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-discord-events em {
  overflow: hidden;
  margin-top: 3px;
  color: var(--console-muted);
  font-size: 12px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-discord-events time {
  color: var(--console-muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.vypr-detail-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.vypr-detail-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 5, 14, .72);
  backdrop-filter: blur(8px);
}

.vypr-detail-modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(680px, 100%);
  max-height: min(720px, calc(100vh - 36px));
  gap: 10px;
  overflow: auto;
  padding: 20px;
  border: 1px solid rgba(75, 212, 216, .28);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(14, 28, 50, .98), rgba(8, 16, 30, .98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

.vypr-detail-modal-card > span {
  color: var(--console-cyan);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vypr-detail-modal-card h3 {
  margin: 0;
  color: var(--console-text);
  font-size: 22px;
  line-height: 1.15;
}

.vypr-detail-modal-card em {
  color: var(--console-muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.vypr-detail-modal-card pre {
  overflow: auto;
  min-height: 130px;
  max-height: 420px;
  margin: 6px 0 0;
  padding: 14px;
  border: 1px solid var(--console-line);
  border-radius: 10px;
  color: #dce8ff;
  white-space: pre-wrap;
  word-break: break-word;
  background: rgba(2, 8, 18, .72);
}

.vypr-detail-kv {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
}

.vypr-detail-kv div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--console-line);
  border-radius: 10px;
  background: rgba(2, 8, 18, .5);
}

.vypr-detail-kv dt {
  color: var(--console-muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.vypr-detail-kv dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--console-text);
  font-size: 14px;
  font-weight: 850;
}

.vypr-health-modal-card {
  width: min(760px, 100%);
}

.vypr-health-modal-list,
.vypr-security-history {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.vypr-health-row,
.vypr-security-history li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) max-content;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--console-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.vypr-security-history li[hidden] {
  display: none !important;
}

.vypr-health-row {
  grid-template-columns: 40px minmax(0, 1fr);
}

.vypr-health-row > i,
.vypr-security-history li > i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  color: #06101e;
  background: var(--console-cyan);
}

.vypr-health-row[data-health-status="ok"] > i {
  background: #35d0a2;
}

.vypr-health-row[data-health-status="warn"] > i {
  background: #f6c857;
}

.vypr-health-row[data-health-status="error"] > i {
  background: #ff7aa7;
}

.vypr-health-row strong,
.vypr-health-row em,
.vypr-security-history strong,
.vypr-security-history em {
  display: block;
  min-width: 0;
}

.vypr-health-row strong,
.vypr-security-history strong {
  color: var(--console-text);
  font-size: 14px;
}

.vypr-health-row em,
.vypr-security-history em,
.vypr-security-history time {
  overflow: hidden;
  color: var(--console-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-security-history time {
  white-space: nowrap;
}

@media (max-width: 620px) {
  .vypr-security-history li {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .vypr-security-history time {
    grid-column: 2;
  }
}

.vypr-detail-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--console-line);
  border-radius: 10px;
  color: var(--console-text);
  background: rgba(255, 255, 255, .055);
  cursor: pointer;
}

body.is-detail-modal-open {
  overflow: hidden;
}

.vypr-karix-side-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.vypr-karix-side-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--console-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.vypr-karix-side-list strong,
.vypr-karix-side-list em {
  display: block;
  min-width: 0;
}

.vypr-karix-side-list strong {
  color: var(--console-text);
  font-size: 13px;
}

.vypr-karix-side-list em,
.vypr-karix-side-list time {
  overflow: hidden;
  color: var(--console-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-member-lookup {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px 12px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid rgba(92, 150, 255, .24);
  border-radius: 12px;
  background: rgba(5, 13, 28, .38);
}

.vypr-member-lookup-avatar,
.vypr-member-lookup-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.vypr-member-lookup-avatar {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(92, 150, 255, .16);
}

.vypr-member-lookup-avatar i {
  color: #8fa8ff;
  background: transparent;
}

.vypr-member-lookup dl,
.vypr-member-lookup-roles {
  grid-column: 1 / -1;
}

.vypr-member-lookup dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 0;
}

.vypr-member-lookup dl div {
  padding: 9px 10px;
  border: 1px solid rgba(164, 190, 230, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .03);
}

.vypr-member-lookup dt,
.vypr-member-lookup dd {
  margin: 0;
}

.vypr-member-lookup dt {
  color: #9fb4d9;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.vypr-member-lookup dd {
  color: #f7fbff;
  font-size: 12px;
  font-weight: 850;
}

.vypr-member-lookup-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vypr-member-lookup-roles b {
  padding: 5px 8px;
  border: 1px solid rgba(92, 150, 255, .3);
  border-radius: 999px;
  color: #dce8ff;
  font-size: 11px;
}

.vypr-console .vypr-panel,
.vypr-console .vypr-tool-card {
  border-radius: 8px;
}

.vypr-console .vypr-stat-grid div {
  border-radius: 8px;
}

.vypr-console .vypr-panel-title > i {
  border-radius: 8px;
}

.vypr-cron-panel {
  display: grid;
  gap: 14px;
}

.vypr-cron-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--console-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.vypr-cron-head em,
.vypr-cron-head strong {
  display: block;
}

.vypr-cron-head em {
  color: var(--console-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.vypr-cron-head strong {
  margin-top: 5px;
  color: var(--console-text);
  font-size: 18px;
}

.vypr-cron-head b {
  min-width: 74px;
  padding: 8px 10px;
  border: 1px solid rgba(102, 163, 255, .38);
  border-radius: 8px;
  color: #dbe9ff;
  font-size: 12px;
  text-align: center;
  background: rgba(102, 163, 255, .12);
}

.vypr-cron-panel[data-cron-level="error"] .vypr-cron-head b,
.vypr-cron-log li[data-cron-level="error"] {
  border-color: rgba(255, 101, 117, .45);
  color: #ffd2d8;
  background: rgba(255, 101, 117, .1);
}

.vypr-cron-panel[data-cron-level="warn"] .vypr-cron-head b,
.vypr-cron-log li[data-cron-level="warn"] {
  border-color: rgba(255, 197, 94, .45);
  color: #ffe6b4;
  background: rgba(255, 197, 94, .1);
}

.vypr-cron-panel[data-cron-level="info"] .vypr-cron-head b {
  border-color: rgba(78, 209, 143, .45);
  color: #c6f7dd;
  background: rgba(78, 209, 143, .1);
}

.vypr-cron-panel p {
  color: var(--console-muted);
  font-size: 14px;
  line-height: 1.5;
}

.vypr-cron-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.vypr-cron-stats span {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--console-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.vypr-cron-stats strong,
.vypr-cron-stats em {
  display: block;
}

.vypr-cron-stats strong {
  color: var(--console-text);
  font-size: 24px;
  line-height: 1;
}

.vypr-cron-stats em {
  margin-top: 7px;
  color: var(--console-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.vypr-cron-log {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vypr-cron-log li {
  display: grid;
  grid-template-columns: minmax(150px, auto) 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--console-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
}

.vypr-cron-log span {
  color: var(--console-muted);
  font-size: 12px;
  font-weight: 800;
}

.vypr-cron-log strong {
  color: var(--console-text);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .vypr-console-hero,
  .vypr-console-grid,
  .vypr-console-apps {
    grid-template-columns: 1fr;
  }

  .vypr-console-apps-modules,
  .vypr-action-grid {
    grid-template-columns: 1fr;
  }

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

  .vypr-console .vypr-tabs {
    top: 66px;
    overflow-x: auto;
  }

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

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

@media (max-width: 620px) {
  .vypr-console {
    width: calc(100% - 18px);
  }

  .vypr-console-top,
  .vypr-console .vypr-tabs {
    position: static;
  }

  .vypr-console-profile {
    align-items: flex-start;
    flex-direction: column;
  }

  .vypr-console-status h2 {
    font-size: 40px;
  }

  .vypr-console-metrics,
  .vypr-console-app {
    grid-template-columns: 1fr;
  }

  .vypr-cron-head,
  .vypr-cron-log li,
  .vypr-discord-events li,
  .vypr-cron-stats {
    grid-template-columns: 1fr;
  }

  .vypr-console-app b {
    display: none;
  }
}

/* Rework HUB console 2026-05 : layout sidebar + surface dense */
.vypr-console {
  width: min(1680px, calc(100% - 28px));
  padding-top: 18px;
}

body:has(.vypr-console) {
  background:
    linear-gradient(90deg, rgba(7, 16, 26, .98) 0 310px, rgba(8, 13, 24, .95) 310px),
    radial-gradient(circle at 66% 0%, rgba(53, 208, 162, .12), transparent 34%),
    linear-gradient(180deg, #07101d, #050914 560px);
}

.vypr-console-shell {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.vypr-console-sidebar {
  position: sticky;
  top: 16px;
  display: grid;
  min-height: calc(100vh - 32px);
  gap: 14px;
  align-content: start;
  grid-template-rows: auto auto auto 1fr auto;
  padding: 14px;
  border: 1px solid rgba(125, 150, 178, .22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(12, 25, 40, .96), rgba(5, 12, 22, .96)),
    rgba(8, 16, 29, .88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.vypr-console-brand-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
  padding: 6px 4px 12px;
  border-bottom: 1px solid rgba(164, 190, 230, .14);
}

.vypr-sidebar-profile-row {
  grid-template-columns: minmax(0, 1fr) 42px;
}

.vypr-console-brand {
  width: 100%;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.vypr-sidebar-profile {
  display: grid;
  min-width: 0;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.vypr-sidebar-profile:hover strong,
.vypr-sidebar-profile.is-active strong {
  color: #ffffff;
}

.vypr-sidebar-profile span:last-child {
  min-width: 0;
}

.vypr-sidebar-profile strong,
.vypr-sidebar-profile em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-sidebar-profile strong {
  color: #f8fbff;
  font-size: 18px;
  line-height: 1.05;
}

.vypr-sidebar-profile em {
  margin-bottom: 4px;
  color: var(--console-muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vypr-sidebar-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(144, 184, 255, .28);
  border-radius: 8px;
  color: #06101e;
  font-size: 18px;
  font-weight: 950;
  background: #35d0a2;
}

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

.vypr-sidebar-logout {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--console-line);
  border-radius: 10px;
  color: #ffd3d8;
  text-decoration: none;
  background: rgba(255, 255, 255, .035);
}

.vypr-sidebar-logout:hover {
  border-color: rgba(255, 122, 167, .52);
  background: rgba(255, 122, 167, .12);
}

.vypr-sidebar-notif {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--console-line);
  border-radius: 10px;
  color: #cfe0ff;
  background: rgba(255, 255, 255, .035);
  cursor: pointer;
  text-decoration: none;
}

.vypr-sidebar-notif.is-on {
  border-color: rgba(68, 208, 135, .55);
  color: #d8ffe9;
  background: rgba(68, 208, 135, .14);
}

.vypr-sidebar-footer {
  align-self: end;
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(164, 190, 230, .14);
}

.vypr-sidebar-footer > div {
  display: grid;
  grid-template-columns: repeat(4, 42px);
  gap: 10px;
}

.vypr-sidebar-health {
  color: #bde9ff;
}

.vypr-sidebar-jellyfin {
  color: #c7c4ff;
}

.vypr-sidebar-notif-state {
  overflow: hidden;
  color: var(--console-muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-sidebar-notif-state[data-state="ok"] {
  color: #9ef4c0;
}

.vypr-sidebar-notif-state[data-state="error"] {
  color: #ffb4c0;
}

.vypr-console .vypr-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #35d0a2;
}

.vypr-console-profile {
  display: grid;
  min-height: 0;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(53, 208, 162, .18);
  background:
    linear-gradient(135deg, rgba(53, 208, 162, .12), transparent 58%),
    rgba(255, 255, 255, .035);
  box-shadow: none;
}

.vypr-console-avatar {
  width: 54px;
  height: 54px;
  flex-basis: 54px;
  border-radius: 8px;
  font-size: 22px;
}

.vypr-console-profile h1 {
  overflow: hidden;
  margin-top: 5px;
  font-size: 21px;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-console-profile .vypr-provider-row {
  margin-top: 8px;
  gap: 7px;
}

.vypr-console-profile .vypr-provider-icon {
  width: 34px;
  min-width: 34px;
  height: 30px;
  justify-content: center;
  padding: 0;
  font-size: 14px;
}

.vypr-weather-widget {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding: 13px;
  border: 1px solid rgba(80, 190, 215, .24);
  border-radius: 8px;
  --weather-color: #50bed7;
  --weather-rgb: 80, 190, 215;
  background:
    radial-gradient(circle at 82% 12%, rgba(var(--weather-rgb), .24), transparent 30%),
    linear-gradient(135deg, rgba(var(--weather-rgb), .13), transparent 58%),
    rgba(255, 255, 255, .035);
}

.vypr-weather-widget::after {
  content: "";
  position: absolute;
  inset: auto -24px -34px auto;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: rgba(var(--weather-rgb), .16);
  filter: blur(2px);
  pointer-events: none;
}

.vypr-weather-widget[data-weather="sun"] { --weather-color: #ffd166; --weather-rgb: 255, 209, 102; }
.vypr-weather-widget[data-weather="cloud"] { --weather-color: #9cc9ff; --weather-rgb: 156, 201, 255; }
.vypr-weather-widget[data-weather="fog"] { --weather-color: #b8c4d5; --weather-rgb: 184, 196, 213; }
.vypr-weather-widget[data-weather="rain"] { --weather-color: #4fb6ff; --weather-rgb: 79, 182, 255; }
.vypr-weather-widget[data-weather="snow"] { --weather-color: #dff6ff; --weather-rgb: 223, 246, 255; }
.vypr-weather-widget[data-weather="storm"] { --weather-color: #b28cff; --weather-rgb: 178, 140, 255; }

.vypr-weather-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vypr-weather-head span {
  min-width: 0;
  flex: 1;
}

.vypr-weather-head i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: #06101e;
  background: var(--weather-color);
  box-shadow: 0 0 22px rgba(var(--weather-rgb), .22);
}

.vypr-weather-head strong,
.vypr-weather-head em {
  display: block;
}

.vypr-weather-head strong {
  color: #f8fbff;
  font-size: 15px;
}

.vypr-weather-head em {
  margin-top: 2px;
  color: var(--console-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.vypr-weather-main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
}

.vypr-weather-main strong {
  color: #f8fbff;
  font-size: 36px;
  line-height: 1;
}

.vypr-weather-main span,
.vypr-weather-meta {
  color: var(--console-muted);
  font-size: 12px;
  font-weight: 850;
}

.vypr-weather-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.vypr-weather-meta span {
  padding: 5px 8px;
  border: 1px solid rgba(var(--weather-rgb), .2);
  border-radius: 999px;
  background: rgba(var(--weather-rgb), .07);
}

.vypr-weather-widget button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(var(--weather-rgb), .36);
  border-radius: 8px;
  color: #eafaff;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  background: rgba(var(--weather-rgb), .12);
  cursor: pointer;
}

.vypr-weather-widget > button {
  position: relative;
  z-index: 1;
}

.vypr-weather-head button {
  width: 34px;
  min-width: 34px;
  padding: 0;
}

.vypr-weather-page {
  --weather-color: #50bed7;
  --weather-rgb: 80, 190, 215;
}

.vypr-weather-page[data-weather="sun"] { --weather-color: #ffd166; --weather-rgb: 255, 209, 102; }
.vypr-weather-page[data-weather="cloud"] { --weather-color: #9cc9ff; --weather-rgb: 156, 201, 255; }
.vypr-weather-page[data-weather="fog"] { --weather-color: #b8c4d5; --weather-rgb: 184, 196, 213; }
.vypr-weather-page[data-weather="rain"] { --weather-color: #4fb6ff; --weather-rgb: 79, 182, 255; }
.vypr-weather-page[data-weather="snow"] { --weather-color: #dff6ff; --weather-rgb: 223, 246, 255; }
.vypr-weather-page[data-weather="storm"] { --weather-color: #b28cff; --weather-rgb: 178, 140, 255; }

.vypr-weather-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid rgba(var(--weather-rgb), .28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 20%, rgba(var(--weather-rgb), .24), transparent 28%),
    linear-gradient(135deg, rgba(var(--weather-rgb), .15), transparent 48%),
    rgba(4, 11, 22, .32);
}

.vypr-weather-hero em,
.vypr-weather-hero strong,
.vypr-weather-hero small,
.vypr-weather-hero b {
  display: block;
}

.vypr-weather-hero em {
  color: var(--weather-color);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}

.vypr-weather-hero strong {
  margin-top: 8px;
  color: #f8fbff;
  font-size: clamp(54px, 7vw, 86px);
  line-height: .92;
}

.vypr-weather-hero small {
  margin-top: 8px;
  color: var(--console-muted);
  font-size: 14px;
  font-weight: 850;
}

.vypr-weather-hero > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.vypr-weather-hero b {
  padding: 8px 10px;
  border: 1px solid rgba(var(--weather-rgb), .24);
  border-radius: 999px;
  color: #eafaff;
  font-size: 12px;
  background: rgba(var(--weather-rgb), .08);
}

.vypr-weather-section + .vypr-weather-section {
  margin-top: 18px;
}

.vypr-weather-section h4 {
  margin: 0 0 10px;
  color: #dce9fb;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.vypr-weather-hourly,
.vypr-weather-daily {
  display: grid;
  gap: 10px;
}

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

.vypr-weather-daily {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.vypr-weather-hourly article,
.vypr-weather-daily article {
  display: grid;
  min-height: 118px;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(var(--weather-rgb), .2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--weather-rgb), .12), transparent 48%),
    rgba(5, 12, 24, .42);
}

.vypr-weather-hourly article[data-weather="sun"],
.vypr-weather-daily article[data-weather="sun"] { --weather-rgb: 255, 209, 102; }
.vypr-weather-hourly article[data-weather="cloud"],
.vypr-weather-daily article[data-weather="cloud"] { --weather-rgb: 156, 201, 255; }
.vypr-weather-hourly article[data-weather="rain"],
.vypr-weather-daily article[data-weather="rain"] { --weather-rgb: 79, 182, 255; }
.vypr-weather-hourly article[data-weather="storm"],
.vypr-weather-daily article[data-weather="storm"] { --weather-rgb: 178, 140, 255; }

.vypr-weather-hourly strong,
.vypr-weather-daily strong,
.vypr-weather-hourly b,
.vypr-weather-daily b,
.vypr-weather-hourly em,
.vypr-weather-daily em,
.vypr-weather-hourly small,
.vypr-weather-daily small {
  display: block;
}

.vypr-weather-hourly strong,
.vypr-weather-daily strong {
  color: #aecaee;
  font-size: 12px;
  font-weight: 950;
  text-transform: capitalize;
}

.vypr-weather-hourly b,
.vypr-weather-daily b {
  color: #f8fbff;
  font-size: 25px;
}

.vypr-weather-hourly em,
.vypr-weather-daily em,
.vypr-weather-hourly small,
.vypr-weather-daily small {
  color: var(--console-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.vypr-weather-widget[data-weather="sun"] .vypr-weather-head > i {
  animation: vypr-weather-glow 3.4s ease-in-out infinite;
}

.vypr-weather-widget[data-weather="rain"]::after {
  width: 120px;
  height: 120px;
  background:
    repeating-linear-gradient(110deg, rgba(255,255,255,.18) 0 2px, transparent 2px 12px);
  filter: none;
  opacity: .35;
  animation: vypr-weather-rain 1.6s linear infinite;
}

.vypr-weather-widget[data-weather="storm"] {
  animation: vypr-weather-storm 4.5s ease-in-out infinite;
}

@keyframes vypr-weather-glow {
  0%, 100% { box-shadow: 0 0 18px rgba(var(--weather-rgb), .2); }
  50% { box-shadow: 0 0 34px rgba(var(--weather-rgb), .42); }
}

@keyframes vypr-weather-rain {
  from { transform: translateY(-12px); }
  to { transform: translateY(12px); }
}

@keyframes vypr-weather-storm {
  0%, 92%, 100% { border-color: rgba(var(--weather-rgb), .24); }
  94% { border-color: rgba(255,255,255,.45); }
}

.vypr-top-profile {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 4px 10px 4px 5px;
  border: 1px solid var(--console-line);
  border-radius: 10px;
  color: #f8fbff;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(180deg, rgba(19, 35, 58, .94), rgba(10, 22, 39, .94));
}

.vypr-top-session {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--console-line);
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(19, 35, 58, .94), rgba(10, 22, 39, .94));
}

.vypr-top-session .vypr-top-profile {
  border: 0;
  border-right: 0;
  border-radius: 0;
  background: transparent;
}

.vypr-top-session .icon-only {
  border: 0;
  border-left: 1px solid var(--console-line);
  border-radius: 0;
  background: transparent;
}

.vypr-top-avatar {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #35d0a2;
}

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

.vypr-profile-layout {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.vypr-profile-preview,
.vypr-profile-form,
.vypr-profile-provider {
  border: 1px solid rgba(125, 150, 178, .22);
  border-radius: 8px;
  background: rgba(4, 11, 22, .32);
}

.vypr-profile-preview {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-height: 170px;
  padding: 18px;
  text-align: center;
}

.vypr-profile-preview .vypr-top-avatar {
  width: 62px;
  height: 62px;
}

.vypr-profile-preview strong {
  color: #f8fbff;
  font-size: 26px;
}

.vypr-profile-preview em,
.vypr-profile-form small,
.vypr-profile-provider em {
  color: var(--console-muted);
  font-style: normal;
  font-weight: 850;
}

.vypr-profile-form {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 18px;
}

.vypr-profile-form label,
.vypr-profile-form span {
  display: grid;
  gap: 7px;
}

.vypr-profile-form span {
  color: #aecaee;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.vypr-profile-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--console-line);
  border-radius: 8px;
  color: #f8fbff;
  font: inherit;
  font-weight: 900;
  padding: 0 12px;
  background: rgba(5, 12, 24, .52);
}

.vypr-profile-form button,
.vypr-profile-provider a,
.vypr-profile-provider button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(53, 208, 162, .34);
  border-radius: 8px;
  color: #eafaff;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  background: rgba(53, 208, 162, .12);
  cursor: pointer;
}

.vypr-avatar-drop {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 18px;
  border: 1px dashed rgba(75, 212, 216, .5);
  border-radius: 10px;
  color: #dff7ff;
  text-align: center;
  background: rgba(75, 212, 216, .07);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.vypr-avatar-drop input {
  display: none;
}

.vypr-avatar-drop i {
  font-size: 22px;
  color: var(--console-cyan);
}

.vypr-avatar-drop span {
  color: var(--console-text);
  font-size: 13px;
  text-transform: none;
}

.vypr-avatar-drop em {
  color: var(--console-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.vypr-avatar-drop.is-dragover,
.vypr-avatar-drop.is-uploading {
  border-color: rgba(53, 208, 162, .72);
  background: rgba(53, 208, 162, .12);
  transform: translateY(-1px);
}

.vypr-profile-toggle {
  align-items: center;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  padding: 14px;
}

.vypr-profile-toggle input {
  accent-color: var(--accent);
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.vypr-profile-toggle span,
.vypr-profile-toggle strong,
.vypr-profile-toggle em {
  display: block;
}

.vypr-profile-toggle strong {
  color: var(--text);
}

.vypr-profile-toggle em {
  color: var(--muted);
  font-style: normal;
  margin-top: 3px;
}

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

.vypr-profile-provider {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 14px;
}

.vypr-profile-provider > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #06101e;
  background: #35d0a2;
}

.vypr-profile-provider strong {
  display: block;
  color: #f8fbff;
  font-size: 16px;
}

.vypr-profile-provider:not(.is-linked) {
  opacity: .82;
}

.vypr-profile-provider:not(.is-linked) > i {
  background: #6f8cff;
}

.vypr-console .vypr-tabs {
  position: static;
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.vypr-console .vypr-tab {
  justify-content: flex-start;
  width: 100%;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 11px;
  color: #b8c4d5;
  background: transparent;
}

.vypr-console .vypr-tab:hover,
.vypr-console .vypr-tab.is-active {
  border-color: rgba(53, 208, 162, .38);
  color: #f8fbff;
  background:
    linear-gradient(90deg, rgba(53, 208, 162, .16), rgba(53, 208, 162, .045));
}

.vypr-sidebar-status {
  display: grid;
  gap: 7px;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(164, 190, 230, .14);
}

.vypr-sidebar-status span {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  padding: 0 10px;
  border: 1px solid rgba(164, 190, 230, .16);
  border-radius: 8px;
  color: #b7c4d7;
  font-size: 12px;
  font-weight: 850;
  background: rgba(255, 255, 255, .035);
}

.vypr-sidebar-status i {
  color: #35d0a2;
}

.vypr-console-main {
  min-width: 0;
}

.vypr-console-top {
  position: sticky;
  top: 0;
  display: flex;
  z-index: 20;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(164, 190, 230, .16);
  background: rgba(8, 13, 24, .72);
  backdrop-filter: blur(18px);
}

.vypr-console-title h2 {
  margin-top: 3px;
  font-size: 34px;
  line-height: 1.05;
}

.vypr-console-title p {
  margin-top: 5px;
  color: var(--console-muted);
  font-size: 13px;
}

.vypr-console-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, .72fr) minmax(220px, .72fr);
}

.vypr-console-card {
  min-height: 158px;
  padding: 15px;
  border-color: rgba(125, 150, 178, .24);
  background:
    linear-gradient(180deg, rgba(20, 36, 59, .96), rgba(12, 23, 40, .96));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.vypr-console-primary {
  background:
    linear-gradient(135deg, rgba(53, 208, 162, .2), transparent 48%),
    linear-gradient(180deg, rgba(20, 36, 59, .97), rgba(12, 23, 40, .97));
}

.vypr-console-next {
  background:
    linear-gradient(135deg, rgba(102, 163, 255, .2), transparent 48%),
    linear-gradient(180deg, rgba(20, 36, 59, .97), rgba(12, 23, 40, .97));
}

.vypr-console-recent {
  background:
    linear-gradient(135deg, rgba(255, 197, 92, .15), transparent 50%),
    linear-gradient(180deg, rgba(20, 36, 59, .97), rgba(12, 23, 40, .97));
}

.vypr-console-card h2 {
  margin-top: 12px;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: 0;
}

.vypr-console-card > strong {
  margin-top: 14px;
  font-size: clamp(19px, 2vw, 26px);
}

.vypr-console-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 15px;
}

.vypr-console-apps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vypr-console-app {
  position: relative;
  overflow: hidden;
  grid-template-columns: 44px minmax(0, 1fr) 48px;
  min-height: 84px;
  --module-color: #35d0a2;
  --module-rgb: 53, 208, 162;
  border-color: rgba(125, 150, 178, .22);
  background:
    linear-gradient(135deg, rgba(var(--module-rgb), .13), transparent 48%),
    linear-gradient(180deg, rgba(18, 32, 52, .95), rgba(10, 20, 35, .95));
  box-shadow: none;
}

.vypr-console-app::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--module-color);
  opacity: .86;
}

.vypr-console-app > i {
  background: var(--module-color);
}

.vypr-console-app:hover {
  border-color: rgba(var(--module-rgb), .56);
  transform: translateY(-1px);
}

[data-module="w2g"] { --module-color: #35d0a2; --module-rgb: 53, 208, 162; }
[data-module="dexoria"] { --module-color: #4dd7e2; --module-rgb: 77, 215, 226; }
[data-module="teyvat"] { --module-color: #8bd36f; --module-rgb: 139, 211, 111; }
[data-module="tools"] { --module-color: #f2c15d; --module-rgb: 242, 193, 93; }
[data-module="jellyfin"] { --module-color: #8f8cff; --module-rgb: 143, 140, 255; }
[data-module="nsfw"] { --module-color: #f06b9d; --module-rgb: 240, 107, 157; }
[data-module="alarms"] { --module-color: #ff9f5a; --module-rgb: 255, 159, 90; }
[data-module="twitch"] { --module-color: #a970ff; --module-rgb: 169, 112, 255; }
[data-module="youtube"] { --module-color: #ff4d4d; --module-rgb: 255, 77, 77; }
[data-module="discord"] { --module-color: #6f8cff; --module-rgb: 111, 140, 255; }

.vypr-module-board {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.6fr);
  gap: 14px;
  margin-bottom: 14px;
}

.vypr-module-feature {
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 20px;
  border: 1px solid rgba(53, 208, 162, .34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 208, 162, .18), transparent 52%),
    rgba(12, 23, 40, .92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
}

.vypr-module-feature > i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #06101e;
  background: #35d0a2;
  font-size: 22px;
}

.vypr-module-feature em,
.vypr-module-feature strong,
.vypr-module-feature p {
  display: block;
}

.vypr-module-feature em {
  color: #8fdcbc;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.vypr-module-feature strong {
  margin-top: 8px;
  color: #f8fbff;
  font-size: 32px;
  line-height: 1;
}

.vypr-module-feature p {
  max-width: 360px;
  margin-top: 10px;
  color: var(--console-muted);
  font-size: 14px;
  line-height: 1.45;
}

.vypr-module-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vypr-module-list .vypr-console-app {
  min-height: 124px;
  align-content: center;
}

.vypr-module-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.vypr-module-summary section {
  display: grid;
  gap: 14px;
  min-width: 0;
  --module-color: #35d0a2;
  --module-rgb: 53, 208, 162;
  padding: 14px;
  border: 1px solid rgba(var(--module-rgb), .24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--module-rgb), .12), transparent 42%),
    linear-gradient(180deg, rgba(18, 34, 56, .82), rgba(10, 22, 39, .82));
}

.vypr-module-summary header {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
}

.vypr-module-summary header i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #06101e;
  background: var(--module-color);
}

.vypr-module-summary header strong,
.vypr-module-summary header em {
  display: block;
}

.vypr-module-summary header strong {
  color: #f8fbff;
  font-size: 16px;
}

.vypr-module-summary header em {
  margin-top: 2px;
  color: var(--console-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.vypr-module-summary section > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.vypr-module-summary .vypr-module-summary-compact > div {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vypr-module-summary section > div span {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(var(--module-rgb), .18);
  border-radius: 8px;
  background: rgba(4, 11, 22, .35);
}

.vypr-module-summary section > div strong,
.vypr-module-summary section > div em {
  display: block;
}

.vypr-module-summary section > div strong {
  overflow: hidden;
  color: #f8fbff;
  font-size: 24px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vypr-module-summary section > div em {
  margin-top: 6px;
  color: #aecaee;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.vypr-module-summary section[data-module="w2g"],
.vypr-activity li[data-module="w2g"] { --module-color: #35d0a2; --module-rgb: 53, 208, 162; }
.vypr-module-summary section[data-module="dexoria"],
.vypr-activity li[data-module="dexoria"] { --module-color: #4dd7e2; --module-rgb: 77, 215, 226; }
.vypr-module-summary section[data-module="teyvat"],
.vypr-activity li[data-module="teyvat"] { --module-color: #8bd36f; --module-rgb: 139, 211, 111; }
.vypr-module-summary section[data-module="discord"],
.vypr-activity li[data-module="discord"] { --module-color: #6f8cff; --module-rgb: 111, 140, 255; }
.vypr-module-summary section[data-module="nsfw"],
.vypr-activity li[data-module="nsfw"] { --module-color: #f06b9d; --module-rgb: 240, 107, 157; }
.vypr-module-summary section[data-module="twitch"],
.vypr-activity li[data-module="twitch"] { --module-color: #a970ff; --module-rgb: 169, 112, 255; }
.vypr-module-summary section[data-module="youtube"],
.vypr-activity li[data-module="youtube"] { --module-color: #ff4d4d; --module-rgb: 255, 77, 77; }
.vypr-module-summary section[data-module] {
  border-color: rgba(var(--module-rgb), .34);
  background:
    linear-gradient(135deg, rgba(var(--module-rgb), .14), transparent 42%),
    linear-gradient(180deg, rgba(18, 34, 56, .82), rgba(10, 22, 39, .82));
}

.vypr-module-summary section[data-module] header i {
  background: var(--module-color);
}

.vypr-module-summary section[data-module] > div span {
  border-color: rgba(var(--module-rgb), .2);
}

.vypr-activity li[data-module] {
  border-color: rgba(var(--module-rgb), .28);
  background:
    linear-gradient(135deg, rgba(var(--module-rgb), .10), transparent 44%),
    linear-gradient(180deg, rgba(18, 34, 56, .82), rgba(12, 25, 43, .82));
}

.vypr-activity li[data-module] > i {
  color: #06101e;
  background: var(--module-color);
}

.vypr-console .vypr-panel {
  border-color: rgba(125, 150, 178, .22);
  background:
    linear-gradient(180deg, rgba(16, 30, 50, .96), rgba(8, 18, 32, .96));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.vypr-console .vypr-panel-title {
  margin-bottom: 18px;
}

.vypr-console .vypr-panel-title > i {
  color: #dffcf0;
  background:
    linear-gradient(135deg, rgba(53, 208, 162, .88), rgba(102, 163, 255, .62));
}

.vypr-console .vypr-panel-title h3 {
  font-size: 20px;
  letter-spacing: 0;
}

.vypr-console .vypr-stat-grid div {
  min-height: 104px;
  border-color: rgba(125, 150, 178, .22);
  background:
    linear-gradient(180deg, rgba(21, 39, 64, .88), rgba(13, 27, 48, .88));
}

.vypr-console .vypr-stat-grid strong {
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: 0;
}

.vypr-console .vypr-stat-grid span {
  color: #aecaee;
  font-size: 13px;
}

.vypr-console .vypr-activity li,
.vypr-discord-events li {
  border-color: rgba(125, 150, 178, .22);
  background:
    linear-gradient(180deg, rgba(18, 34, 56, .82), rgba(12, 25, 43, .82));
}

.vypr-console .vypr-top-actions a,
.vypr-console .vypr-top-actions button {
  background:
    linear-gradient(180deg, rgba(19, 35, 58, .94), rgba(10, 22, 39, .94));
}

.vypr-console .vypr-top-session .vypr-top-profile,
.vypr-console .vypr-top-session .icon-only {
  background: transparent;
}

.vypr-mobile-menu-toggle,
.vypr-sidebar-backdrop {
  display: none;
}

@media (max-width: 1180px) {
  .vypr-console-shell,
  .vypr-module-board {
    grid-template-columns: 1fr;
  }

  .vypr-console-sidebar {
    position: static;
    min-height: 0;
  }

  .vypr-console .vypr-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .vypr-weather-hourly,
  .vypr-weather-daily,
  .vypr-profile-providers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .vypr-karix-advanced-filters {
    grid-template-columns: 1fr 1fr;
  }

  .vypr-karix-search,
  .vypr-karix-search input {
    width: 100%;
  }

  .vypr-mobile-menu-toggle {
    position: sticky;
    top: 8px;
    z-index: 60;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    margin: 0 0 10px;
    border: 1px solid rgba(53, 208, 162, .36);
    border-radius: 8px;
    color: #f8fbff;
    font: inherit;
    font-size: 14px;
    font-weight: 950;
    background:
      linear-gradient(90deg, rgba(53, 208, 162, .16), rgba(53, 208, 162, .045)),
      rgba(10, 22, 39, .96);
  }

  .vypr-sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    border: 0;
    background: rgba(1, 6, 14, .64);
  }

  body.is-sidebar-open .vypr-sidebar-backdrop {
    display: block;
  }

  .vypr-console {
    width: min(100% - 18px, 1680px);
  }

  .vypr-console-shell {
    display: block;
  }

  .vypr-console-sidebar {
    position: fixed;
    inset: 8px auto 8px 8px;
    z-index: 80;
    width: min(318px, calc(100vw - 22px));
    max-height: calc(100dvh - 16px);
    overflow: auto;
    transform: translateX(calc(-100% - 18px));
    transition: transform .18s ease;
  }

  body.is-sidebar-open .vypr-console-sidebar {
    transform: translateX(0);
  }

  .vypr-console-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .vypr-console .vypr-tabs,
  .vypr-console-grid,
  .vypr-discord-layout,
  .vypr-discord-hero,
  .vypr-module-summary,
  .vypr-module-list,
  .vypr-weather-hero,
  .vypr-weather-hourly,
  .vypr-weather-daily,
  .vypr-profile-layout,
  .vypr-profile-providers,
  .vypr-activity-toolbar,
  .vypr-profile-provider {
    grid-template-columns: 1fr;
  }

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

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

  .vypr-discord-leaderboard li {
    grid-template-columns: 40px 34px minmax(0, 1fr);
  }

  .vypr-discord-leaderboard small {
    grid-column: 3;
    max-width: none;
    text-align: left;
  }

  .vypr-discord-rank-avatar {
    width: 34px;
    height: 34px;
  }

  .vypr-console-apps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .vypr-console-app {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 64px;
    padding: 10px;
  }

  .vypr-console-app > i {
    width: 34px;
    height: 34px;
    font-size: 15px;
    border-radius: 8px;
  }

  .vypr-console-app strong {
    font-size: 13px;
    line-height: 1.1;
  }

  .vypr-console-app em {
    display: none;
  }

  .vypr-console-app b {
    display: none;
  }

  .vypr-twitch-list li {
    grid-template-columns: 48px minmax(0, 1fr) auto auto;
    gap: 10px;
    align-items: center;
    padding: 12px;
  }

  .vypr-twitch-list b {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    white-space: nowrap;
  }

  .vypr-twitch-identity {
    grid-column: 2 / -1;
  }

  .vypr-twitch-list small {
    grid-column: 3 / -1;
    grid-row: 2;
    overflow-wrap: anywhere;
    line-height: 1.35;
  }

  .vypr-twitch-list a {
    grid-column: 2;
    grid-row: 3;
    width: 100%;
    min-width: 0;
  }

  .vypr-twitch-list .vypr-twitch-notify {
    grid-column: 3;
    grid-row: 3;
  }

  .vypr-twitch-list button[data-twitch-remove] {
    grid-column: 4;
    grid-row: 3;
  }

  .vypr-youtube-list li {
    grid-template-columns: 48px minmax(0, 1fr) 36px 36px;
  }

  .vypr-youtube-list .vypr-twitch-identity {
    grid-column: 2 / -1;
    grid-row: 1;
  }

  .vypr-youtube-list b {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    width: max-content;
    max-width: 100%;
  }

  .vypr-youtube-list small {
    grid-column: 2 / -1;
    grid-row: 3;
    min-width: 0;
  }

  .vypr-youtube-list a {
    grid-column: 2;
    grid-row: 4;
    width: 100%;
  }

  .vypr-youtube-list .vypr-twitch-notify {
    grid-column: 3;
    grid-row: 4;
  }

  .vypr-youtube-list button[data-youtube-remove] {
    grid-column: 4;
    grid-row: 4;
  }

  .vypr-discord-events li {
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;
    padding: 12px;
  }

  .vypr-discord-events i {
    width: 38px;
    height: 38px;
  }

  .vypr-discord-events time {
    grid-column: 2;
    justify-self: start;
  }

  .vypr-discord-events strong,
  .vypr-discord-events em {
    max-width: 100%;
  }

  .vypr-twitch-form-inline {
    grid-template-columns: 1fr;
  }

  .vypr-twitch-form button {
    width: 100%;
  }

  .vypr-twitch-form-inline small {
    grid-column: auto;
  }

  .vypr-alarm-row {
    grid-template-columns: 1fr 92px 36px 36px;
  }

  .vypr-alarm-row > strong {
    grid-column: 1 / -1;
  }
}
