:root {
  --bg: #070707;
  --panel: #101010;
  --stroke: #223042;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.75);
  --accent: #e1aa21;
}

html, body {
  height: 100%;
}

body.drafts {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.drafts-frame {
  height: 100%;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drafts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(16, 16, 16, 0.8);
}

.drafts-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.drafts-brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.drafts-title {
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.3px;
  line-height: 1.1;
}

.drafts-subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.drafts-clock {
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  font-size: 16px;
  white-space: nowrap;
}

.drafts-split {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-height: 0;
}

.drafts-col {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: var(--panel);
  padding: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}

.drafts-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.drafts-logo {
  width: 64px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.drafts-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.drafts-logo-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

.drafts-meta {
  min-width: 0;
}

.drafts-name {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.2px;
}

.drafts-desc {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.drafts-price {
  font-weight: 900;
  font-size: 26px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.2px;
  color: var(--accent);
  white-space: nowrap;
}

.drafts-price-cents {
  font-size: 16px;
  vertical-align: top;
  margin-left: 1px;
}

.drafts-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 12px 16px;
  color: var(--muted);
  background: rgba(16, 16, 16, 0.8);
  font-size: 13px;
}

.drafts-version {
  color: rgba(255, 255, 255, 0.55);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

