.pot-form-wrap {
  background: rgba(10, 21, 34, 0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 24px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.pot-form-note {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #f5f7fb;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.pot-field { margin-bottom: 20px; }
.pot-field label { display:block; font-weight:700; margin-bottom: 8px; color:#fff; }
.pot-optional { opacity: 0.75; font-weight: 400; }
.pot-submission-form input[type="text"],
.pot-submission-form input[type="email"],
.pot-submission-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 14px 16px;
  box-sizing: border-box;
}
.pot-submission-form textarea { min-height: 220px; resize: vertical; }
.pot-submission-form input::placeholder,
.pot-submission-form textarea::placeholder { color: rgba(255,255,255,0.6); }
.pot-helper {
  font-size: 0.93rem;
  line-height: 1.5;
  margin-top: 8px;
  color: rgba(255,255,255,0.78);
}
.pot-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.pot-category-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: all 0.18s ease;
  color: #fff;
  box-shadow: inset 0 0 0 1px transparent;
}
.pot-category-pill:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--pot-accent) 55%, white 20%);
}
.pot-category-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pot-category-pill .pot-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pot-accent);
  flex: 0 0 28px;
}
.pot-category-pill input:checked + .pot-pill-icon,
.pot-category-pill:has(input:checked) .pot-pill-icon {
  box-shadow: 0 0 0 4px rgba(255,255,255,0.12);
}
.pot-category-pill:has(input:checked) {
  background: color-mix(in srgb, var(--pot-accent) 18%, rgba(255,255,255,0.05));
  border-color: var(--pot-accent);
  box-shadow: inset 0 0 0 1px var(--pot-accent), 0 10px 25px rgba(0,0,0,0.18);
}
.pot-checkbox {
  display:flex !important;
  align-items:flex-start;
  gap: 12px;
  font-weight: 400 !important;
}
.pot-checkbox input { margin-top: 4px; }
.pot-actions { margin-top: 24px; }
.pot-submit-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8f3d, #ff5f8f);
  color: #fff;
  padding: 14px 24px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(255,95,143,0.25);
}
.pot-submit-btn:hover { transform: translateY(-1px); }
.pot-alert {
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.pot-alert.success {
  background: rgba(98, 201, 113, 0.18);
  border: 1px solid rgba(98, 201, 113, 0.42);
  color: #e8ffe8;
}
.pot-alert.error {
  background: rgba(214, 63, 63, 0.15);
  border: 1px solid rgba(214, 63, 63, 0.4);
  color: #ffecec;
}
@media (max-width: 640px) {
  .pot-form-wrap { padding: 18px; border-radius: 18px; }
  .pot-category-grid { grid-template-columns: 1fr; }
  .pot-category-pill { border-radius: 18px; }
}

.pot-honeypot{position:absolute !important;left:-10000px !important;top:auto !important;width:1px !important;height:1px !important;overflow:hidden !important;opacity:0 !important;pointer-events:none !important;}
.pot-submit-button{appearance:none;border:0;border-radius:999px;background:linear-gradient(135deg,#ff8f3d,#ff5f8f);color:#fff;padding:14px 24px;font-weight:700;cursor:pointer;box-shadow:0 14px 30px rgba(255,95,143,0.25);}
.pot-submit-button:hover{transform:translateY(-1px);}
