.compete-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.compete-hero {
  text-align: center;
  padding: 2rem 0 1.5rem;
}

.compete-hero h1,
.compete-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.split-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.pill.split-artist {
  border-color: var(--accent-2);
  color: var(--accent-2);
  font-weight: 700;
}

.pill.split-biz {
  border-color: var(--accent);
  color: var(--accent);
}

.compete-layout {
  display: grid;
  gap: 1.25rem;
}

.compete-panel {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.compete-panel h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.auth-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.auth-tab {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}

.auth-tab.active {
  border-color: var(--accent-2);
  color: var(--accent-2);
  font-weight: 600;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.auth-form.hidden { display: none; }

.auth-form label,
.upload-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.auth-form input,
.upload-label input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  color: var(--text);
  font-family: inherit;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.45;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tool-btn {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
}

.earnings-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.earn-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.earn-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: monospace;
}

.earn-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--millennial-yellow);
}

.drop-zone {
  border: 2px dashed var(--accent-3);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: border-color 0.15s, background 0.15s;
}

.drop-zone:hover,
.drop-zone.dragover {
  border-color: var(--accent-2);
  background: rgba(163, 230, 53, 0.06);
}

.drop-zone .icon { font-size: 2rem; margin-bottom: 0.5rem; }
.drop-zone p { color: var(--muted); font-size: 0.85rem; line-height: 1.5; }

.preview-wrap {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0610;
  max-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-wrap img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.preview-wrap.hidden { display: none; }

.submissions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sub-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.sub-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  background: #0a0610;
}

.sub-meta h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.sub-meta p { font-size: 0.75rem; color: var(--muted); }
.sub-meta .reject-note {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: #f87171;
  font-style: italic;
}

.status-pill {
  display: inline-block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
}
.status-pill.pending_review {
  background: rgba(253, 224, 71, 0.2);
  color: var(--millennial-yellow);
  border: 1px solid var(--millennial-yellow);
}
.status-pill.live {
  background: rgba(74, 222, 128, 0.15);
  color: var(--success);
  border: 1px solid var(--success);
}
.status-pill.rejected {
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
  border: 1px solid #f87171;
}

.card-compete {
  border-color: var(--accent-3);
  background: linear-gradient(160deg, rgba(192,132,252,0.1) 0%, var(--surface) 50%);
}

.compete-callout {
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}

.compete-callout-inner {
  text-align: center;
  border: 2px dashed var(--accent-2);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: linear-gradient(160deg, rgba(163,230,53,0.08) 0%, rgba(15,10,20,0.5) 60%);
}

.compete-callout h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.compete-callout p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.compete-link {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent-2), #86efac);
  color: #111;
  font-weight: 700;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.compete-tag {
  font-size: 0.65rem;
  font-family: monospace;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}