/* ── DMCA Modal ──────────────────────────────────────────────────── */
.dmca-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.dmca-modal-overlay.open { display: flex; }
.dmca-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}
.dmca-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.dmca-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-subtle);
  background: var(--bg-input);
  border: 1px solid var(--border);
  transition: all 0.15s;
}
.dmca-modal-close:hover { color: var(--text); background: var(--bg-hover); }
.dmca-modal-close [data-lucide] { width: 16px; height: 16px; }
.dmca-modal-header { margin-bottom: 20px; }
.dmca-modal-header h2 { font-size: 20px; font-weight: 700; color: var(--text-heading); }
.dmca-modal form { display: flex; flex-direction: column; gap: 16px; }

.dmca-field { display: flex; flex-direction: column; gap: 6px; }
.dmca-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dmca-optional {
  text-transform: none;
  font-weight: 400;
  color: var(--text-faint);
  letter-spacing: 0;
}
.dmca-field textarea {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  line-height: 1.5;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dmca-field textarea:focus {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px var(--accent-bg);
}
.dmca-field textarea::placeholder { color: var(--text-faint); }
.dmca-field input[type="email"] {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 12px;
  height: 46px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dmca-field input[type="email"]:focus {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px var(--accent-bg);
}
.dmca-field input[type="email"]::placeholder { color: var(--text-faint); }

.dmca-error {
  display: none;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(251,113,133,0.1);
  border: 1px solid rgba(251,113,133,0.25);
  color: var(--red);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.dmca-error:not(:empty) { display: block; }
.dmca-success {
  display: none;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.25);
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.dmca-success:not(:empty) { display: block; }

.dmca-submit {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.15s, transform 0.1s;
}
.dmca-submit:hover { background: var(--accent-hover); }
.dmca-submit:active { transform: scale(0.99); }
.dmca-submit:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 600px) {
  .dmca-modal { padding: 22px; border-radius: 14px; }
}
