:root {
  --theme-detail-accent-primary: var(--theme-accent-primary-data);
  --theme-detail-accent-primary-soft: rgb(var(--theme-accent-primary-data-rgb) / 0.16);
  --theme-detail-accent-highlight: var(--theme-accent-highlight-data);
  --theme-detail-accent-highlight-soft: rgb(var(--theme-accent-highlight-data-rgb) / 0.15);
  --theme-detail-accent-secondary: var(--theme-accent-secondary-data);
  --theme-detail-accent-secondary-soft: rgb(var(--theme-accent-secondary-data-rgb) / 0.14);
}

.theme-model-detail {
  min-height: calc(100vh - var(--theme-header-height));
  padding: 72px 0 104px;
  background:
    radial-gradient(circle at 10% 0%, rgb(var(--theme-border-rgb) / 0.09), transparent 34rem),
    radial-gradient(circle at 90% 18%, rgb(var(--theme-accent-highlight-data-rgb) / 0.045), transparent 28rem),
    radial-gradient(circle at 40% 74%, rgb(var(--theme-accent-secondary-data-rgb) / 0.035), transparent 32rem),
    var(--theme-section-1);
}

.theme-model-detail-shell {
  padding-inline: 34px;
}

.theme-model-hero,
.theme-analytics-section,
.theme-analytics-card {
  border: 1px solid rgb(var(--theme-muted-rgb) / 0.2);
  background:
    linear-gradient(
      145deg,
      rgb(var(--theme-panel-alt-rgb) / 0.97),
      rgb(var(--theme-section-3-rgb) / 0.98)
    );
  box-shadow:
    inset 0 1px 0 rgb(var(--theme-text-rgb) / 0.025),
    0 20px 48px rgb(var(--theme-background-deep-rgb) / 0.12);
}

.theme-model-hero {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(240px, 310px);
  gap: 46px;
  align-items: center;
  padding: 32px;
  border-radius: 18px;
}

.theme-model-hero.has-image {
  grid-template-columns:
    minmax(220px, 330px)
    minmax(0, 1fr)
    minmax(240px, 310px);
}

.theme-model-hero-image {
  position: relative;
  align-self: start;
  overflow: hidden;
  border: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.34);
  border-radius: 15px;
}

.theme-model-hero-image > img {
  display: block;
  width: 100%;
  height: auto;
}

.theme-live-badge,
.theme-viewer-badge {
  position: absolute;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.theme-live-badge {
  top: 16px;
  color: var(--theme-text);
  border: 1px solid rgb(var(--theme-accent-primary-data-rgb) / 0.42);
  background: rgb(var(--theme-border-soft-rgb) / 0.88);
}

.theme-viewer-badge {
  top: 56px;
  color: var(--theme-text);
  border: 1px solid rgb(var(--theme-accent-primary-data-rgb) / 0.24);
  background: rgb(var(--theme-background-soft-rgb) / 0.68);
}

.theme-model-avatar-small {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 68px;
  height: 68px;
  padding: 3px;
  border: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.58);
  border-radius: 999px;
  background: var(--theme-background-soft);
}

.theme-model-avatar-small img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.theme-model-hero-content {
  min-width: 0;
}

.theme-model-eyebrow,
.theme-section-heading p,
.theme-card-heading p {
  margin: 0 0 8px;
  color: var(--theme-detail-accent-highlight);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.theme-model-hero-content h1 {
  margin: 0;
  color: var(--theme-text);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.05;
}

.theme-model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.theme-model-tags span {
  padding: 7px 10px;
  border: 1px solid rgb(var(--theme-muted-rgb) / 0.24);
  border-radius: 7px;
  color: var(--theme-text-soft);
  background: rgb(var(--theme-text-rgb) / 0.025);
  font-size: 12px;
}

.theme-model-meta-row {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 17px;
}

.theme-model-meta-row strong {
  color: var(--theme-text);
  font-size: 16px;
}

.theme-model-meta-row span {
  color: var(--theme-muted);
  font-size: 12px;
}

.theme-model-live-panel {
  max-width: 500px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgb(var(--theme-muted-deep-rgb) / 0.28);
  border-radius: 11px;
  background: rgb(var(--theme-text-rgb) / 0.018);
}

.theme-model-live-panel.is-live {
  border-color: rgb(var(--theme-border-rgb) / 0.35);
  background:
    linear-gradient(
      135deg,
      rgb(var(--theme-border-rgb) / 0.08),
      rgb(var(--theme-text-rgb) / 0.015)
    );
}

.theme-model-live-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.theme-model-live-line strong {
  color: var(--theme-detail-accent-primary);
  font-size: 14px;
}

.theme-model-live-panel.is-offline .theme-model-live-line strong {
  color: var(--theme-text-dim);
}

.theme-model-live-line span,
.theme-model-live-panel p {
  color: var(--theme-text-soft);
  font-size: 12px;
}

.theme-model-live-panel p {
  margin: 9px 0 0;
}

.theme-model-external-link {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  border-radius: 7px;
  color: var(--theme-text);
  background:
    linear-gradient(
      90deg,
      var(--theme-accent-primary-deep),
      var(--theme-border)
    );
  font-size: 13px;
  font-weight: 800;
}

.theme-vr-note {
  display: block;
  margin-top: 11px;
  color: var(--theme-detail-accent-highlight);
  font-size: 11px;
}

.theme-model-about {
  padding: 22px;
  border: 1px solid rgb(var(--theme-muted-rgb) / 0.2);
  border-radius: 12px;
  background:
    linear-gradient(
      145deg,
      rgb(var(--theme-accent-highlight-data-rgb) / 0.035),
      rgb(var(--theme-text-rgb) / 0.012)
    );
}

.theme-model-about > span {
  color: var(--theme-text);
  font-size: 11px;
  font-weight: 800;
}

.theme-model-about p {
  margin: 18px 0 24px;
  color: var(--theme-text-dim);
  font-size: 12px;
  line-height: 1.9;
}

.theme-model-updated {
  padding-top: 16px;
  border-top: 1px solid rgb(var(--theme-text-rgb) / 0.07);
}

.theme-model-updated small,
.theme-model-updated strong {
  display: block;
}

.theme-model-updated small {
  color: var(--theme-muted-deep);
  font-size: 10px;
}

.theme-model-updated strong {
  margin-top: 5px;
  color: var(--theme-text-soft);
  font-size: 12px;
}

.theme-analytics-section,
.theme-analytics-card {
  border-radius: 14px;
}

.theme-summary-section,
.theme-status-section,
.theme-recent-section,
.theme-daily-data-section {
  margin-top: 32px;
  padding: 28px;
}

.theme-major-card {
  margin-top: 32px;
  padding: 28px;
}

.theme-section-heading,
.theme-card-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.theme-section-heading h2,
.theme-card-heading h2 {
  margin: 0;
  color: var(--theme-text);
  font-size: 20px;
  line-height: 1.3;
}

.theme-section-heading > span,
.theme-card-heading > span {
  color: var(--theme-muted-deep);
  font-size: 10px;
}

.theme-kpi-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.theme-kpi-grid article {
  min-width: 0;
  padding: 21px 14px;
  border: 1px solid rgb(var(--theme-muted-rgb) / 0.18);
  border-top: 2px solid var(--theme-kpi-accent, var(--theme-detail-accent-primary));
  border-radius: 10px;
  text-align: center;
  background:
    linear-gradient(
      180deg,
      var(--theme-kpi-glow, rgb(var(--theme-accent-primary-data-rgb) / 0.06)),
      rgb(var(--theme-background-soft-rgb) / 0.9)
    );
}

.theme-kpi-grid article.is-primary {
  --theme-kpi-accent: var(--theme-detail-accent-primary);
  --theme-kpi-glow: var(--theme-detail-accent-primary-soft);
}

.theme-kpi-grid article.is-cyan {
  --theme-kpi-accent: var(--theme-detail-accent-primary);
  --theme-kpi-glow: var(--theme-detail-accent-primary-soft);
}

.theme-kpi-grid article.is-highlight {
  --theme-kpi-accent: var(--theme-detail-accent-highlight);
  --theme-kpi-glow: var(--theme-detail-accent-highlight-soft);
}

.theme-kpi-grid article.is-secondary {
  --theme-kpi-accent: var(--theme-detail-accent-secondary);
  --theme-kpi-glow: var(--theme-detail-accent-secondary-soft);
}

.theme-kpi-grid article > span,
.theme-kpi-grid article > em {
  display: block;
}

.theme-kpi-grid article > span {
  color: var(--theme-text-dim);
  font-size: 11px;
  font-weight: 700;
}

.theme-kpi-grid article > strong {
  display: block;
  margin-top: 10px;
  color: var(--theme-text);
  font-size: clamp(25px, 2.2vw, 37px);
  font-weight: 700;
  line-height: 1;
}

.theme-kpi-grid article > strong small {
  margin-left: 3px;
  font-size: 12px;
  font-weight: 600;
}

.theme-kpi-grid article > em {
  margin-top: 10px;
  color: var(--theme-muted-deep);
  font-size: 9px;
  font-style: normal;
}

.theme-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.theme-chart-legend span {
  position: relative;
  padding-left: 14px;
  color: var(--theme-muted);
  font-size: 10px;
}

.theme-chart-legend span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  content: "";
  transform: translateY(-50%);
}

.theme-chart-legend .is-average::before {
  background: var(--theme-detail-accent-primary);
}

.theme-chart-legend .is-max::before {
  background: var(--theme-detail-accent-highlight);
}

.theme-axis-chart {
  position: relative;
  margin-top: 24px;
  padding-left: 28px;
}

.theme-axis-y-title {
  color: var(--theme-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.theme-axis-chart > .theme-axis-y-title {
  position: absolute;
  top: 50%;
  left: -28px;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: center;
}

.theme-axis-x-title {
  margin-top: 10px;
  color: var(--theme-muted-deep);
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}

.theme-axis-caption {
  margin-top: 6px;
  color: var(--theme-muted-deep);
  text-align: center;
  font-size: 9px;
}

.theme-line-chart {
  overflow: hidden;
  border: 1px solid rgb(var(--theme-accent-primary-data-rgb) / 0.08);
  border-radius: 10px;
  background:
    linear-gradient(rgb(var(--theme-text-rgb) / 0.015), rgb(var(--theme-text-rgb) / 0.015)),
    var(--theme-background-soft);
}

.theme-line-chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.theme-chart-grid-lines line {
  stroke: rgb(var(--theme-muted-rgb) / 0.13);
  stroke-width: 1;
  stroke-dasharray: 4 5;
}

.theme-svg-axis-label,
.theme-svg-date-label {
  fill: var(--theme-muted-deep);
  font-size: 10px;
}

.theme-line {
  fill: none;
  stroke-width: 2.7;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.theme-line--average {
  stroke: var(--theme-detail-accent-primary);
  filter:
    drop-shadow(
      0 0 5px rgb(var(--theme-accent-primary-data-rgb) / 0.18)
    );
}

.theme-line--max {
  stroke: var(--theme-detail-accent-highlight);
}

.theme-usual-time-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.35fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 24px;
}

.theme-estimate-badge {
  padding: 5px 9px;
  border: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.34);
  border-radius: 999px;
  color: var(--theme-detail-accent-highlight) !important;
}

.theme-primary-time-window {
  padding: 24px;
  border: 1px solid rgb(var(--theme-accent-primary-data-rgb) / 0.24);
  border-radius: 12px;
  background:
    radial-gradient(
      circle at 0 0,
      rgb(var(--theme-accent-primary-data-rgb) / 0.095),
      transparent 18rem
    );
}

.theme-primary-time-window > span,
.theme-time-window-ranking > span {
  color: var(--theme-muted-deep);
  font-size: 10px;
}

.theme-primary-time-window > strong {
  display: flex;
  align-items: baseline;
  gap: 11px;
  margin-top: 10px;
  color: var(--theme-detail-accent-primary);
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1;
}

.theme-primary-time-window > strong i {
  color: var(--theme-muted-deep);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
}

.theme-primary-time-window p {
  margin: 14px 0 0;
  color: var(--theme-text-dim);
  font-size: 12px;
  line-height: 1.75;
}

.theme-primary-time-window p b {
  color: var(--theme-detail-accent-highlight);
}

.theme-time-window-ranking {
  margin-top: 24px;
}

.theme-time-window-ranking > div {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--theme-text-dim);
  font-size: 11px;
}

.theme-time-window-ranking b {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--theme-on-primary);
  background: var(--theme-detail-accent-primary);
  font-size: 9px;
}

.theme-time-window-ranking em {
  color: var(--theme-detail-accent-highlight);
  font-style: normal;
}

.theme-hour-chart-panel {
  min-width: 0;
  padding: 20px 20px 12px;
  border: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.12);
  border-radius: 12px;
  background: rgb(var(--theme-background-soft-rgb) / 0.66);
}

.theme-hour-bars,
.theme-daily-bars {
  display: grid;
  align-items: end;
  gap: 4px;
}

.theme-hour-bars {
  grid-template-columns:
    repeat(24, minmax(3px, 1fr));
  height: 190px;
  margin-top: 18px;
}

.theme-hour-bar,
.theme-daily-bars > span,
.theme-weekday-chart i {
  display: block;
  height: max(2px, var(--theme-bar-height));
  border-radius: 4px 4px 1px 1px;
  background:
    linear-gradient(
      180deg,
      var(--theme-detail-accent-primary),
      rgb(var(--theme-accent-primary-deep-rgb) / 0.72)
    );
}

.theme-hour-bars--activity .theme-hour-bar {
  background:
    linear-gradient(
      180deg,
      var(--theme-detail-accent-primary),
      rgb(var(--theme-accent-primary-deep-rgb) / 0.58)
    );
}

.theme-hour-bars--viewers .theme-hour-bar {
  background:
    linear-gradient(
      180deg,
      var(--theme-detail-accent-secondary),
      rgb(var(--theme-accent-secondary-deep-rgb) / 0.62)
    );
}

.theme-hour-labels,
.theme-chart-date-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 9px;
  color: var(--theme-muted-deep);
  font-size: 9px;
}

.theme-analytics-grid {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

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

.theme-secondary-row .theme-analytics-card {
  padding: 26px;
}

.theme-bar-chart-with-axis {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.theme-bar-y-scale {
  display: flex;
  height: 190px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--theme-muted-deep);
  text-align: right;
  font-size: 9px;
}

.theme-daily-bars {
  grid-template-columns:
    repeat(30, minmax(2px, 1fr));
  height: 190px;
  border-bottom: 1px solid rgb(var(--theme-text-rgb) / 0.07);
  background:
    repeating-linear-gradient(
      to top,
      transparent 0,
      transparent calc(50% - 1px),
      rgb(var(--theme-text-rgb) / 0.045) 50%,
      transparent calc(50% + 1px)
    );
}

.theme-daily-bars > span {
  background:
    linear-gradient(
      180deg,
      var(--theme-detail-accent-highlight),
      rgb(var(--theme-accent-highlight-deep-rgb) / 0.65)
    );
}

.theme-daily-bars--count > span {
  background:
    linear-gradient(
      180deg,
      var(--theme-detail-accent-secondary),
      rgb(var(--theme-accent-secondary-deep-rgb) / 0.62)
    );
}

.theme-weekday-card {
  overflow: hidden;
}

.theme-weekday-axis-label {
  margin-top: 24px;
  color: var(--theme-muted-deep);
  font-size: 10px;
  font-weight: 700;
}

.theme-weekday-chart {
  display: grid;
  grid-template-columns:
    repeat(7, minmax(0, 1fr));
  gap: 18px;
  height: 230px;
  margin-top: 16px;
  padding: 18px 16px 0;
  border-bottom: 1px solid rgb(var(--theme-text-rgb) / 0.07);
  background:
    linear-gradient(
      180deg,
      rgb(var(--theme-accent-primary-data-rgb) / 0.025),
      transparent
    );
}

.theme-weekday-chart > div {
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: end;
  text-align: center;
}

.theme-weekday-chart i {
  align-self: end;
  width: 60%;
  max-width: 44px;
  margin-inline: auto;
  background:
    linear-gradient(
      180deg,
      var(--theme-detail-accent-primary),
      rgb(var(--theme-accent-primary-deep-rgb) / 0.62)
    );
}

.theme-weekday-chart strong {
  margin-top: 8px;
  color: var(--theme-text-dim);
  font-size: 10px;
}

.theme-weekday-chart span {
  margin: 8px 0 10px;
  color: var(--theme-muted);
  font-size: 11px;
}

.theme-status-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.theme-status-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgb(var(--theme-muted-rgb) / 0.18);
  border-radius: 11px;
  background: rgb(var(--theme-text-rgb) / 0.015);
}

.theme-status-grid article:nth-child(1) {
  border-top: 2px solid var(--theme-detail-accent-primary);
}

.theme-status-grid article:nth-child(2) {
  border-top: 2px solid var(--theme-detail-accent-highlight);
}

.theme-status-grid article:nth-child(3) {
  border-top: 2px solid var(--theme-detail-accent-secondary);
}

.theme-status-grid h3 {
  margin: 0;
  color: var(--theme-text);
  font-size: 13px;
}

.theme-status-grid h3 small {
  color: var(--theme-detail-accent-highlight);
  font-size: 9px;
  font-weight: 600;
}

.theme-status-share-body {
  display: grid;
  grid-template-columns:
    136px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  margin-top: 22px;
}

.theme-status-donut {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: var(--theme-donut);
  -webkit-mask:
    radial-gradient(
      circle,
      transparent 0 45%,
      var(--theme-background-deep) 46%
    );
  mask:
    radial-gradient(
      circle,
      transparent 0 45%,
      var(--theme-background-deep) 46%
    );
}

.theme-status-legend > div,
.theme-status-duration-list > div {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgb(var(--theme-text-rgb) / 0.05);
}

.theme-status-legend span,
.theme-status-duration-list span {
  position: relative;
  padding-left: 14px;
  color: var(--theme-text-dim);
  font-size: 10px;
  font-weight: 700;
}

.theme-status-legend span::before,
.theme-status-duration-list span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme-status-color);
  content: "";
  transform: translateY(-50%);
}

.theme-status-legend strong,
.theme-status-duration-list strong {
  color: var(--theme-text);
  font-size: 11px;
}

.theme-status-duration-list {
  margin-top: 16px;
}

.theme-status-explain {
  margin: 16px 0 0;
  color: var(--theme-muted-deep);
  font-size: 9px;
  line-height: 1.7;
}

.theme-status-session-summary {
  display: grid;
  grid-template-columns:
    auto minmax(260px, 1fr) minmax(260px, 0.8fr);
  gap: 22px;
  align-items: center;
  margin-top: 20px;
  padding: 20px 22px;
  border: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.1);
  border-radius: 10px;
  background: rgb(var(--theme-accent-primary-data-rgb) / 0.025);
}

.theme-status-session-summary > div:first-child span,
.theme-status-session-summary > div:first-child strong {
  display: block;
}

.theme-status-session-summary > div:first-child span {
  color: var(--theme-muted-deep);
  font-size: 10px;
}

.theme-status-session-summary > div:first-child strong {
  margin-top: 4px;
  color: var(--theme-text);
  font-size: 18px;
}

.theme-status-session-summary p {
  margin: 0;
  color: var(--theme-muted-deep);
  font-size: 9px;
  line-height: 1.65;
}

.theme-status-stack {
  display: flex;
  overflow: hidden;
  height: 28px;
  border-radius: 6px;
  background: var(--theme-panel-raised);
}

.theme-status-stack span {
  width: var(--theme-share);
  background: var(--theme-status-color);
}

.theme-card-description {
  margin: 16px 0 0;
  color: var(--theme-muted-deep);
  font-size: 10px;
  line-height: 1.7;
}

.theme-activity-calendar {
  display: grid;
  grid-template-columns:
    repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.theme-activity-day {
  display: flex;
  min-height: 54px;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
  border: 1px solid rgb(var(--theme-muted-deep-rgb) / 0.15);
  border-radius: 7px;
  background: var(--theme-panel-alt);
}

.theme-activity-day strong {
  color: var(--theme-text-soft);
  font-size: 10px;
}

.theme-activity-day span {
  color: rgb(var(--theme-text-soft-rgb) / 0.55);
  font-size: 8px;
  text-transform: uppercase;
}

.theme-activity-day.is-level-0,
.theme-activity-scale .is-level-0 {
  background: var(--theme-panel-alt);
}

.theme-activity-day.is-level-1,
.theme-activity-scale .is-level-1 {
  background: var(--theme-border-soft);
}

.theme-activity-day.is-level-2,
.theme-activity-scale .is-level-2 {
  background: var(--theme-border-soft);
}

.theme-activity-day.is-level-3,
.theme-activity-scale .is-level-3 {
  background: var(--theme-border-soft);
}

.theme-activity-day.is-level-4,
.theme-activity-scale .is-level-4 {
  background: var(--theme-border);
}

.theme-activity-day.is-level-5,
.theme-activity-scale .is-level-5 {
  background: var(--theme-accent-primary-data);
}

.theme-activity-day.is-level-4 strong,
.theme-activity-day.is-level-5 strong,
.theme-activity-day.is-level-4 span,
.theme-activity-day.is-level-5 span {
  color: var(--theme-section-4);
}

.theme-activity-scale {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 14px;
  color: var(--theme-muted-deep);
  font-size: 9px;
}

.theme-activity-scale i {
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid rgb(var(--theme-muted-deep-rgb) / 0.15);
  border-radius: 3px;
}

.theme-recent-session-grid {
  display: grid;
  grid-template-columns:
    repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.theme-recent-session-grid article {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgb(var(--theme-muted-rgb) / 0.18);
  border-top: 2px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.55);
  border-radius: 10px;
  background:
    linear-gradient(
      180deg,
      rgb(var(--theme-accent-highlight-data-rgb) / 0.03),
      rgb(var(--theme-text-rgb) / 0.012)
    );
}

.theme-session-time {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
}

.theme-session-time strong {
  color: var(--theme-text);
  font-size: 12px;
}

.theme-session-time span {
  color: var(--theme-muted);
  font-size: 10px;
}

.theme-session-duration {
  display: block;
  margin-top: 8px;
  color: var(--theme-detail-accent-highlight);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.theme-recent-session-grid dl {
  margin: 16px 0 0;
}

.theme-recent-session-grid dl > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 7px;
}

.theme-recent-session-grid dt {
  color: var(--theme-muted-deep);
  font-size: 9px;
}

.theme-recent-session-grid dd {
  margin: 0;
  color: var(--theme-text-soft);
  font-size: 10px;
  font-weight: 700;
}

.theme-session-status-flow {
  margin: 16px 0 0;
  color: var(--theme-detail-accent-primary);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
}

.theme-session-vr {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 6px;
  border: 1px solid rgb(var(--theme-accent-highlight-data-rgb) / 0.28);
  border-radius: 4px;
  color: var(--theme-detail-accent-highlight);
  font-size: 8px;
}

.theme-daily-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid rgb(var(--theme-muted-rgb) / 0.14);
  border-radius: 10px;
}

.theme-daily-table {
  width: 100%;
  border-collapse: collapse;
}

.theme-daily-table th,
.theme-daily-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgb(var(--theme-text-rgb) / 0.05);
  text-align: right;
  white-space: nowrap;
}

.theme-daily-table th:first-child,
.theme-daily-table td:first-child {
  text-align: left;
}

.theme-daily-table th {
  color: var(--theme-muted);
  background: rgb(var(--theme-text-rgb) / 0.018);
  font-size: 10px;
  font-weight: 700;
}

.theme-daily-table td {
  color: var(--theme-text-soft);
  font-size: 11px;
}

.theme-daily-table tbody tr:hover {
  background: rgb(var(--theme-accent-primary-data-rgb) / 0.025);
}

.theme-empty-data,
.theme-no-history p {
  color: var(--theme-muted-deep);
  font-size: 11px;
  line-height: 1.8;
}

.theme-no-history {
  margin-top: 32px;
  padding: 30px;
}

.theme-no-history h2 {
  margin: 0;
  color: var(--theme-text);
  font-size: 18px;
}

.theme-no-history p {
  margin: 12px 0 0;
}

.theme-data-note {
  max-width: 960px;
  margin: 34px auto 0;
  color: var(--theme-muted-deep);
  text-align: center;
  font-size: 9px;
  line-height: 1.75;
}

@media (max-width: 1180px) {
  .theme-model-hero.has-image {
    grid-template-columns:
      minmax(230px, 300px)
      minmax(0, 1fr);
  }

  .theme-model-hero.has-image .theme-model-about {
    grid-column: 1 / -1;
  }

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

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

  .theme-status-grid article:last-child {
    grid-column: 1 / -1;
  }

  .theme-status-session-summary {
    grid-template-columns:
      1fr 1.6fr;
  }

  .theme-status-session-summary p {
    grid-column: 1 / -1;
  }

  .theme-recent-session-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .theme-model-detail {
    padding: 38px 0 70px;
  }

  .theme-model-detail-shell {
    padding-inline: 16px;
  }

  .theme-model-hero,
  .theme-model-hero.has-image {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 20px;
  }

  .theme-model-hero-image {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .theme-model-hero-content {
    text-align: left;
  }

  .theme-usual-time-layout,
  .theme-analytics-grid--half,
  .theme-status-grid {
    grid-template-columns: 1fr;
  }

  .theme-status-grid article:last-child {
    grid-column: auto;
  }

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

  .theme-summary-section,
  .theme-status-section,
  .theme-recent-section,
  .theme-daily-data-section,
  .theme-major-card,
  .theme-secondary-row .theme-analytics-card {
    padding: 20px;
  }

  .theme-summary-section,
  .theme-status-section,
  .theme-recent-section,
  .theme-daily-data-section,
  .theme-major-card,
  .theme-analytics-grid {
    margin-top: 24px;
  }

  .theme-section-heading,
  .theme-card-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .theme-axis-chart {
    padding-left: 10px;
  }

  .theme-axis-chart > .theme-axis-y-title {
    position: static;
    margin-bottom: 8px;
    transform: none;
  }

  .theme-status-session-summary {
    grid-template-columns: 1fr;
  }

  .theme-status-session-summary p {
    grid-column: auto;
  }

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

  .theme-activity-calendar {
    grid-template-columns:
      repeat(5, minmax(0, 1fr));
  }

  .theme-weekday-chart {
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .theme-model-detail-shell {
    padding-inline: 12px;
  }

  .theme-model-hero {
    padding: 16px;
    border-radius: 14px;
  }

  .theme-model-hero-image {
    border-radius: 11px;
  }

  .theme-model-hero-content h1 {
    font-size: 31px;
  }

  .theme-kpi-grid {
    gap: 10px;
  }

  .theme-kpi-grid article {
    padding: 17px 9px;
  }

  .theme-kpi-grid article > strong {
    font-size: 25px;
  }

  .theme-usual-time-layout {
    gap: 18px;
  }

  .theme-primary-time-window {
    padding: 18px;
  }

  .theme-primary-time-window > strong {
    font-size: 31px;
  }

  .theme-hour-chart-panel {
    padding-inline: 12px;
  }

  .theme-hour-bars {
    height: 150px;
    gap: 2px;
  }

  .theme-bar-chart-with-axis {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 7px;
  }

  .theme-daily-bars,
  .theme-bar-y-scale {
    height: 150px;
  }

  .theme-daily-bars {
    gap: 2px;
  }

  .theme-chart-date-row {
    font-size: 8px;
  }

  .theme-weekday-chart {
    height: 190px;
    padding-inline: 4px;
  }

  .theme-weekday-chart strong {
    font-size: 8px;
  }

  .theme-status-share-body {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
  }

  .theme-status-donut {
    width: 112px;
    height: 112px;
  }

  .theme-activity-calendar {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

  .theme-activity-day {
    min-height: 48px;
  }

  .theme-recent-session-grid {
    grid-template-columns: 1fr;
  }

  .theme-daily-table-wrap {
    border: 0;
    overflow: visible;
  }

  .theme-daily-table,
  .theme-daily-table tbody,
  .theme-daily-table tr,
  .theme-daily-table td {
    display: block;
    width: 100%;
  }

  .theme-daily-table thead {
    display: none;
  }

  .theme-daily-table tr {
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid rgb(var(--theme-muted-rgb) / 0.15);
    border-radius: 9px;
    background: rgb(var(--theme-text-rgb) / 0.012);
  }

  .theme-daily-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgb(var(--theme-text-rgb) / 0.045);
    text-align: right;
    white-space: normal;
  }

  .theme-daily-table td:last-child {
    border-bottom: 0;
  }

  .theme-daily-table td::before {
    color: var(--theme-muted-deep);
    content: attr(data-label);
    font-size: 9px;
    font-weight: 700;
  }

  .theme-daily-table td:first-child {
    text-align: right;
  }
}

.theme-live-badge, .theme-viewer-badge { gap: 6px; }
.theme-live-badge .theme-icon--status-live { width: 8px; height: 8px; vertical-align: 0; }
.theme-viewer-badge .theme-icon--viewers { width: 14px; height: 14px; }
.theme-model-tags .theme-model-gender-tag { display: inline-flex; min-width: 34px; align-items: center; justify-content: center; }
.theme-model-gender-tag .theme-icon { width: 17px; height: 17px; }
.theme-model-meta-row strong .theme-icon--heart { width: 15px; height: 15px; color: var(--theme-detail-accent-secondary); }
.theme-model-live-line strong .theme-icon--status-live { width: 8px; height: 8px; vertical-align: 0; }
.theme-model-external-link .theme-icon { width: 14px; height: 14px; }


.theme-model-hero-content h1 { font-size: clamp(30px, 2.8vw, 42px); line-height: 1.2; }
.theme-primary-time-window > strong { font-size: clamp(30px, 3vw, 44px); }
.theme-model-eyebrow,
.theme-section-heading p,
.theme-card-heading p,
.theme-model-updated small,
.theme-section-heading > span,
.theme-card-heading > span,
.theme-chart-legend span,
.theme-card-description,
.theme-data-note { font-size: 11px; line-height: 1.55; }
.theme-kpi-grid article > em,
.theme-time-window-ranking b,
.theme-status-grid h3 small,
.theme-status-explain,
.theme-status-session-summary p,
.theme-recent-session-grid dt,
.theme-session-status-flow,
.theme-session-vr { font-size: 10px; }
@media (max-width: 680px) {
    .theme-model-hero-content h1 { font-size: 32px; }
    .theme-primary-time-window > strong { font-size: 34px; }
}

@media (min-width: 961px) {
    .theme-model-hero-content h1 { font-size: clamp(32px, 2.8vw, 44px); }
    .theme-primary-time-window > strong { font-size: clamp(32px, 3vw, 46px); }
    .theme-model-eyebrow,
    .theme-section-heading p,
    .theme-card-heading p,
    .theme-model-updated small,
    .theme-section-heading > span,
    .theme-card-heading > span,
    .theme-chart-legend span,
    .theme-card-description,
    .theme-data-note { font-size: 12px; }
}
