/* Movies on Comics — Newsletter widget */
.moc-nl-card {
  max-width: 720px;
  margin: 40px auto;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(245,197,24,0.08), rgba(226,54,54,0.06));
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 14px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  text-align: center;
}
[data-theme="dark"] .moc-nl-card {
  background: linear-gradient(135deg, rgba(245,197,24,0.06), rgba(226,54,54,0.05));
  border-color: rgba(245,197,24,0.18);
}
.moc-nl-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #f5c518;
  margin-bottom: 8px;
}
.moc-nl-heading {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--text, #1a1a1a);
  letter-spacing: -0.01em;
}
[data-theme="dark"] .moc-nl-heading { color: #f0f0ff; }
.moc-nl-sub {
  margin: 0 0 20px;
  font-size: 0.92rem;
  color: var(--text2, #666);
  line-height: 1.55;
}
.moc-nl-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 540px) {
  .moc-nl-form { flex-direction: column; }
  .moc-nl-card { padding: 22px 18px; }
}
.moc-nl-input {
  flex: 1;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border, #ddd);
  border-radius: 8px;
  background: var(--input-bg, #fff);
  color: var(--text, #1a1a1a);
  box-sizing: border-box;
  transition: border-color 0.15s;
}
[data-theme="dark"] .moc-nl-input {
  background: rgba(0,0,0,0.3);
  color: #f0f0ff;
  border-color: rgba(255,255,255,0.15);
}
.moc-nl-input:focus {
  outline: none;
  border-color: #f5c518;
}
.moc-nl-submit {
  padding: 12px 24px;
  background: #f5c518;
  color: #1a1a1a;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}
.moc-nl-submit:hover { background: #ffd028; }
.moc-nl-submit:active { transform: translateY(1px); }
.moc-nl-submit:disabled { opacity: 0.6; cursor: wait; }
.moc-nl-honey {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none;
}
.moc-nl-status {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--text2, #666);
  min-height: 1.2em;
}
.moc-nl-status.moc-nl-ok { color: #1a8a3a; font-weight: 600; }
.moc-nl-status.moc-nl-err { color: #c43b3b; }

/* Social share buttons */
.moc-share-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin: 24px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border, #eee);
  border-bottom: 1px solid var(--border, #eee);
}
[data-theme="dark"] .moc-share-bar {
  border-color: rgba(255,255,255,0.08);
}
.moc-share-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text2, #888);
  margin-right: 6px;
}
.moc-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border: 0;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  font-family: inherit;
}
.moc-share-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.moc-share-btn:active { transform: translateY(0); }
.moc-share-x        { background: #000000; }
.moc-share-fb       { background: #1877f2; }
.moc-share-reddit   { background: #ff4500; }
.moc-share-li       { background: #0a66c2; }
.moc-share-wa       { background: #25d366; }
.moc-share-email    { background: #555; }
.moc-share-copy     { background: #888; }
.moc-share-icon     { font-size: 1rem; line-height: 1; }
