/* Giveaway module — minimal overrides on top of dashboard.css */

.giveaway-bar { /* same chrome bar as console — visual marker via title only */ }

.giveaway-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.giveaway-status--draft     { background:#e5e7eb; color:#374151; }
.giveaway-status--committed { background:#dbeafe; color:#1e40af; }
.giveaway-status--collected { background:#fef3c7; color:#92400e; }
.giveaway-status--drawn     { background:#d1fae5; color:#065f46; }
.giveaway-status--archived  { background:#f3f4f6; color:#6b7280; }

.giveaway-tier-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-left: 4px;
}
.giveaway-tier-badge--anon  { background:#fef3c7; color:#92400e; }
.giveaway-tier-badge--login { background:#dbeafe; color:#1e40af; }
.giveaway-tier-badge--pro   { background:#ede9fe; color:#5b21b6; }

.giveaway-card {
  border: 1px solid var(--ui-color-border, #e5e7eb);
  border-radius: 12px;
  padding: 18px 20px;
  background: var(--ui-bg-surface, #fff);
  margin-bottom: 14px;
}
.giveaway-card h3 { margin: 0 0 6px; font-size: 16px; }
.giveaway-card .meta { color: var(--ui-color-muted, #6b7280); font-size: 13px; }

.giveaway-winner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--ui-color-border, #e5e7eb);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin-bottom: 10px;
  background: var(--ui-bg-surface, #fff);
}
.giveaway-winner .rank {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #10b981; color: #fff;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.giveaway-winner .handle { font-weight: 600; }
.giveaway-winner .text { color: var(--ui-color-muted, #6b7280); font-size: 14px; margin-top: 2px; }

.giveaway-verify-box {
  background: var(--ui-bg-muted, #f9fafb);
  border: 1px solid var(--ui-color-border, #e5e7eb);
  border-radius: 10px;
  padding: 16px 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  line-height: 1.6;
  word-break: break-all;
}
.giveaway-verify-box .row { margin-bottom: 8px; }
.giveaway-verify-box .label { color: var(--ui-color-muted, #6b7280); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; }

.giveaway-watermark {
  text-align: center;
  margin-top: 32px;
  color: var(--ui-color-muted, #6b7280);
  font-size: 13px;
}
.giveaway-watermark a { color: inherit; text-decoration: underline; }

.dashboard-content.is-public {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 24px;
}

.is-public-mode .dashboard-sidebar { display: none; }
