html[data-songroom-platform="web"] .desktop-app-titlebar,
html[data-songroom-platform="web"] .desktop-app-menu {
  display: none !important;
}

.web-experience-bar {
  position: sticky;
  z-index: 120;
  top: 0;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 18px;
  border-bottom: 1px solid var(--app-line);
  background: color-mix(in srgb, var(--app-panel) 92%, var(--app-accent-soft));
  color: var(--app-text);
  backdrop-filter: blur(18px);
}

.web-experience-bar__copy,
.web-experience-bar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.web-experience-bar__copy strong {
  color: var(--app-accent);
  font-size: 13px;
}

.web-experience-bar__copy span {
  color: var(--app-muted);
  font-size: 12px;
}

.web-experience-bar__actions button,
.web-experience-bar__actions a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--app-panel-2);
  color: var(--app-text);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.web-experience-bar__actions a {
  border-color: color-mix(in srgb, var(--app-accent) 55%, var(--app-line));
  background: var(--app-accent);
  color: var(--app-accent-ink);
}

.web-experience-bar__actions .web-experience-home {
  border-color: var(--app-line);
  background: var(--app-panel-2);
  color: var(--app-text);
}

.web-desktop-required-body {
  display: grid;
  gap: 18px;
}

.web-desktop-required-body > p {
  margin: 0;
  color: var(--app-muted);
  font-size: 15px;
  line-height: 1.75;
}

.web-desktop-required-note {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid var(--app-line);
  border-radius: 10px;
  background: var(--app-panel-2);
}

.web-desktop-required-note strong {
  color: var(--status-success-text);
}

.web-desktop-required-note span {
  color: var(--app-muted);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .web-experience-bar {
    align-items: flex-start;
    padding: 8px 10px;
  }

  .web-experience-bar__copy {
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .web-experience-bar__copy span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .web-experience-reset {
    display: none !important;
  }

  .web-experience-bar__actions a {
    white-space: nowrap;
  }
}
