:root {
  color-scheme: dark;
  --bg: #07090c;
  --panel: #0c1117;
  --panel-2: #111821;
  --text: #f3f7fb;
  --muted: #8f9daa;
  --line: #26323f;
  --accent: #ffcd00;
  --accent-2: #ffd740;
  --warn: #ff9100;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 205, 0, 0.08), transparent 42%), var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}

.account-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.account-panel {
  width: min(620px, 100%);
  background: var(--panel);
  border: 1px solid rgba(255, 205, 0, 0.42);
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.info-panel {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
}

.status {
  min-height: 24px;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.45;
}

.status.good {
  color: #9be7b1;
}

.status.warn {
  color: var(--warn);
}

.promo-banner {
  margin: 0 0 22px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 205, 0, 0.55);
  border-radius: 4px;
  background: rgba(255, 205, 0, 0.09);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.promo-banner strong {
  color: var(--accent);
}

.entitlement-note {
  margin: -10px 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.session-note {
  margin: -12px 0 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.signin-form {
  display: grid;
  gap: 8px;
}

label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.inline-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input {
  width: 100%;
  min-height: 44px;
  background: #080d12;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  font: inherit;
  padding: 0 12px;
}

button,
a {
  min-height: 44px;
  border-radius: 4px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #071016;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 0 16px;
  text-decoration: none;
}

button.secondary,
.footer-actions a {
  background: var(--panel-2);
  border-color: var(--line);
  color: var(--text);
}

button:hover,
a:hover {
  background: var(--accent-2);
}

button.secondary:hover,
.footer-actions a:hover {
  border-color: var(--accent);
  background: rgba(255, 205, 0, 0.12);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.details {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px 18px;
  margin: 24px 0 0;
  padding: 16px;
  background: #080d12;
  border: 1px solid var(--line);
  border-radius: 4px;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.info-list {
  grid-template-columns: max-content 1fr;
}

.info-list a,
.policy-copy a {
  min-height: 0;
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  text-decoration: underline;
}

.policy-copy {
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.policy-copy h2 {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 16px;
}

.policy-copy p {
  margin: 0;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 620px) {
  .inline-row,
  .details {
    grid-template-columns: 1fr;
  }

  .actions,
  .footer-actions {
    display: grid;
  }
}
