/* Herald · Plex — app tweaks. Base in glass-core.css. */

.px-connect {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 16px 10px;
}
/* Title detail card (left-aligned, not the centered connect layout). */
.px-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px;
  border-radius: var(--r-md);
  background: var(--iri), var(--frost-1);
  border: 1px solid var(--frost-border);
}
.px-item .px-h { font-size: 22px; }
.px-h {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--text-primary);
}
.px-p {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-secondary);
  max-width: 440px;
}
.px-url {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 14px rgba(82, 217, 255, 0.4);
}
.px-code {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 12px;
  color: #f3c357;
  background: linear-gradient(180deg, rgba(229, 160, 13, 0.16), rgba(229, 160, 13, 0.05));
  border: 1px solid rgba(229, 160, 13, 0.5);
  border-radius: var(--r-md);
  padding: 12px 18px 12px 30px;
  box-shadow: 0 0 26px rgba(229, 160, 13, 0.22);
}
.px-status {
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.px-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  font-size: 16px;
  font-weight: 800;
  color: #0a0c12;
  background: linear-gradient(180deg, #f3c357, #e5a00d);
  border: 0;
  border-radius: 980px;
  box-shadow: 0 10px 26px rgba(229, 160, 13, 0.3);
}
.px-btn.ghost {
  color: var(--text-secondary);
  background: var(--frost-1);
  border: 1px solid var(--frost-border);
  box-shadow: none;
  min-height: 46px;
  font-size: 14px;
}
.px-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--focus-ring), 0 12px 28px rgba(229, 160, 13, 0.36);
  transform: translateY(-1px);
}
.px-btn.ghost:focus {
  border-color: var(--focus-ring);
  color: var(--text-primary);
}
