/* Dashboard — simple, clear layout */
.dashboard-page {
  cursor: auto;
  background: var(--bg);
}

.dashboard-page .custom-cursor,
.dashboard-page .cursor-glow {
  display: none;
}

.dash-simple {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.dash-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 6px;
}

.dash-summary-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.dash-summary h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.dash-email {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.dash-status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.dash-status-badge.active {
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.dash-status-badge.pending {
  background: rgba(245, 158, 11, 0.12);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.dash-summary-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.dash-big-card,
.dash-info-card {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.dash-big-card {
  border-color: rgba(232, 33, 39, 0.35);
  background: linear-gradient(145deg, rgba(232, 33, 39, 0.08), rgba(0, 0, 0, 0.3));
}

/* Grand prize card */
.dash-prize-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  border-color: rgba(232, 33, 39, 0.22);
  background: linear-gradient(160deg, rgba(232, 33, 39, 0.06) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(0, 0, 0, 0.2) 100%);
}

.dash-prize-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(232, 33, 39, 0.12), transparent 70%);
  pointer-events: none;
}

.dash-prize-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.dash-prize-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border-radius: 12px;
  background: rgba(232, 33, 39, 0.12);
  border: 1px solid rgba(232, 33, 39, 0.25);
}

.dash-prize-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.dash-prize-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.dash-prize-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, background 0.2s;
}

.dash-prize-option--primary {
  border-color: rgba(232, 33, 39, 0.3);
  background: rgba(232, 33, 39, 0.08);
}

.dash-prize-option-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.dash-prize-option-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.dash-prize-or {
  align-self: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  padding: 0 4px;
}

.dash-draw-deadline {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px dashed rgba(232, 33, 39, 0.28);
  background: rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.dash-draw-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 2px;
}

.dash-draw-copy {
  flex: 1;
  min-width: 0;
}

.dash-draw-copy .dash-label {
  margin-bottom: 4px;
}

.dash-date {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.dash-draw-sub {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tesla-red);
}

.dash-big-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--tesla-red);
  line-height: 1;
  margin: 4px 0 10px;
}

.dash-help {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.dash-notice {
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.dash-notice strong {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
}

.dash-notice p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.dash-notice.warn {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.08);
}

.dash-notice.win {
  border-color: rgba(232, 33, 39, 0.45);
  background: rgba(232, 33, 39, 0.08);
}

.dash-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.dash-block-intro {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.dash-block-intro strong {
  color: #fff;
}

.dash-block-muted {
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.dash-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-link-card {
  display: block;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}

.dash-link-card:hover {
  border-color: rgba(232, 33, 39, 0.45);
}

.dash-link-title {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.dash-link-desc {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.dash-steps-simple {
  margin: 0 0 16px 20px;
  color: #ccc;
  font-size: 14px;
  line-height: 1.75;
}

.dash-steps-simple li {
  margin-bottom: 8px;
}

.dash-legal {
  font-size: 12px;
  color: var(--muted);
}

.dash-ref-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dash-ref-row input {
  flex: 1;
  min-width: 180px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #ccc;
  font-size: 13px;
}

.dash-msg {
  margin-top: 10px;
  font-size: 13px;
  display: none;
}

.dash-msg.show.ok { display: block; color: var(--success); }
.dash-msg.show.err { display: block; color: var(--tesla-red); }

.dash-notifications-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.dash-notifications-head h2 {
  margin: 0;
}

.dash-notif-count {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--tesla-red);
  padding: 4px 8px;
  border-radius: 999px;
}

.dash-notifications {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-notif-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
}

.dash-notif-item.unread {
  border-color: rgba(232, 33, 39, 0.45);
  background: rgba(232, 33, 39, 0.08);
}

.dash-notif-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.dash-notif-item p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

.dash-notif-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}

.dash-notif-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dash-notif-actions .btn {
  padding: 6px 12px;
  font-size: 12px;
}

@media (max-width: 600px) {
  .dash-summary-cards {
    grid-template-columns: 1fr;
  }

  .dash-ref-row {
    flex-direction: column;
  }

  .dash-ref-row .btn {
    width: 100%;
  }
}
