.wizard-steps, .reg-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.wizard-step-dot, .reg-step-dot {
  flex: 1;
  min-width: 60px;
  text-align: center;
  font-size: 11px;
  color: var(--muted-fg, #888);
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255,255,255,0.15);
}
.wizard-step-dot.active, .reg-step-dot.active {
  color: var(--gold, #c9a227);
  border-bottom-color: var(--gold, #c9a227);
  font-weight: 600;
}
.wizard-step-dot.done, .reg-step-dot.done {
  border-bottom-color: rgba(201, 162, 39, 0.5);
}
.wizard-panel, .reg-panel { display: none; }
.wizard-panel.active, .reg-panel.active { display: block; }
.wizard-nav, .reg-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 5;
}
.wizard-nav .btn-secondary, .reg-nav .btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: inherit;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
}
.wizard-review dl, .reg-review dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 6px 12px;
  font-size: 14px;
  margin: 0;
}
.wizard-review dt, .reg-review dt { color: rgba(255,255,255,0.55); margin: 0; }
.wizard-review dd, .reg-review dd { margin: 0; }
.reg-roadmap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 12px 0 16px;
}
.reg-roadmap-title { font-weight: 600; margin: 0 0 8px; font-size: 14px; }
.reg-roadmap-list {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.muted { opacity: 0.65; }
.field-hint { margin-top: 4px; font-size: 12px; }
.league-options { display: flex; flex-direction: column; gap: 10px; }
.league-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
}
.league-option input { margin-top: 3px; flex-shrink: 0; }
.venue-preview { margin: 12px 0; }
.venue-preview-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.venue-preview-img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.venue-preview-badges { margin-bottom: 4px; }
.venue-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}
.venue-badge-hb { background: rgba(201,162,39,0.25); color: #e8c547; }
.venue-badge-new { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.venue-preview-league { font-size: 13px; margin: 4px 0 0; color: rgba(255,255,255,0.7); }
.venue-preview-warn { color: #f0a060; font-size: 13px; margin: 0; }
.venue-select { width: 100%; cursor: pointer; }
.postcode-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.postcode-row .form-group { flex: 1; margin-bottom: 0; }
.postcode-field { position: relative; }
.postcode-venue-picker {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  max-height: 240px;
  overflow-y: auto;
  background: rgba(18, 18, 22, 0.98);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
.postcode-venue-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.postcode-venue-option:hover,
.postcode-venue-option:focus {
  background: rgba(201, 162, 39, 0.12);
  outline: none;
}
.postcode-venue-option + .postcode-venue-option {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.postcode-venue-option-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
}
.postcode-venue-option-body {
  min-width: 0;
  flex: 1;
}
.postcode-venue-option-body strong {
  display: block;
  font-size: 14px;
}
.postcode-venue-option-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}
.postcode-venue-picker-empty {
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.checkbox-row input { width: auto; }
.form-check-legal label { line-height: 1.5; }
.legal-link {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--gold, #c9a227);
  text-decoration: underline;
  cursor: pointer;
}
.legal-link:hover { color: #e8c547; }
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.legal-modal.hidden { display: none !important; }
.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.legal-modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(85vh, 720px);
  display: flex;
  flex-direction: column;
  background: #1a1a1f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-modal-header h2 {
  margin: 0;
  font-size: 1.125rem;
}
.legal-modal-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  padding: 4px 8px;
}
.legal-modal-close:hover { opacity: 1; }
.legal-modal-body {
  overflow-y: auto;
  padding: 20px;
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}
.legal-modal-body .legal-content h1 { display: none; }
.legal-modal-body .legal-content h2 {
  font-size: 1rem;
  margin: 1.25em 0 0.5em;
}
.legal-modal-body .legal-content p,
.legal-modal-body .legal-content ul {
  margin: 0 0 0.75em;
  color: rgba(255, 255, 255, 0.85);
}
.legal-modal-body .legal-updated {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 1em;
}
.legal-modal-body a { color: var(--gold, #c9a227); }
.legal-modal-footer {
  padding: 12px 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: right;
}
.hidden { display: none !important; }

.date-input,
.time-input {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  font: inherit;
  box-sizing: border-box;
}

.time-input-wrap {
  position: relative;
}

.time-input-wrap::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  pointer-events: none;
  opacity: 0.85;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8c547' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.time-input {
  padding-right: 44px;
  cursor: pointer;
}

.date-input::-webkit-calendar-picker-indicator,
.time-input::-webkit-calendar-picker-indicator {
  filter: invert(78%) sepia(48%) saturate(560%) hue-rotate(5deg) brightness(98%);
  opacity: 1;
  cursor: pointer;
  width: 22px;
  height: 22px;
  margin-left: 4px;
}

.date-input:focus,
.time-input:focus {
  outline: none;
  border-color: var(--gold, #c9a227);
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.25);
}
