
/* --- THEME CUSTOM: SORCIERE --- */
.witch-section {
  background: rgba(15, 30, 20, 0.4);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 16px;
}
.witch-section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: var(--font-header, "Acme", sans-serif);
  color: #fff;
}
.witch-section-title {
  flex: 1;
  font-size: 1.1rem;
}
.witch-section-badge {
  font-size: 0.8rem;
  padding: 4px 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.witch-victim-card {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.4);
  border: 1px solid #444;
  color: #ccc;
  border-radius: 6px;
  padding: 12px 16px;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s;
  gap: 12px;
}
.witch-victim-name { flex: 1; text-align: left; font-weight: bold; }
.witch-victim-action { font-size: 0.9rem; opacity: 0.7; }

.witch-victim-card:hover { background: rgba(46, 204, 113, 0.1); border-color: rgba(46, 204, 113, 0.4); }
.witch-victim-card.is-selected {
  background: rgba(46, 204, 113, 0.2);
  border-color: #2ecc71;
  color: #fff;
  box-shadow: inset 0 0 10px rgba(46, 204, 113, 0.2);
}

/* Potion de mort target grid */
[data-action-type="witch"] .action-target-card.is-selected {
  background: rgba(184, 167, 245, 0.3);
  border-color: #b8a7f5;
  box-shadow: inset 0 0 10px rgba(184, 167, 245, 0.5), 0 0 10px rgba(184, 167, 245, 0.3);
}
.witch-victim-skull {
  font-style: normal;
  margin-left: 3px;
}
[data-action-type="witch"] .action-target-card.is-selected .action-target-avatar {
  background: #b8a7f5 !important;
  color: #fff !important;
  box-shadow: 0 0 10px #b8a7f5;
}

/* --- Sélecteur de potions V3 --- */
.witch-potion-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.witch-potion-card {
  background: var(--hybrid-bg-panel-soft);
  border: 1px solid var(--hybrid-border);
  border-radius: var(--hybrid-radius-md);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--hybrid-ink);
  font-family: var(--hybrid-font-body);
}

.witch-potion-card:hover:not(:disabled) {
  background: var(--hybrid-bg-panel-hover);
  transform: translateY(-2px);
}

.witch-potion-card:disabled {
  opacity: 0.4;
  cursor: default;
}

.witch-potion-card.is-active[data-potion="heal"] {
  border-color: #5cda89;
  background: rgba(92, 218, 137, 0.1);
  box-shadow: 0 0 14px rgba(92, 218, 137, 0.2);
}

.witch-potion-card.is-active[data-potion="poison"] {
  border-color: #b8a7f5;
  background: rgba(184, 167, 245, 0.1);
  box-shadow: 0 0 14px rgba(184, 167, 245, 0.2);
}

.witch-potion-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.witch-potion-card.is-active[data-potion="heal"] .witch-potion-title { color: #5cda89; }
.witch-potion-card.is-active[data-potion="poison"] .witch-potion-title { color: #b8a7f5; }

.witch-potion-status {
  font-size: 0.75rem;
  color: var(--hybrid-muted);
}

/* Zone de ciblage */
.witch-target-area {
  background: var(--hybrid-bg-panel-soft);
  border: 1px dashed var(--hybrid-border);
  border-radius: var(--hybrid-radius-md);
  padding: 14px;
  min-height: 60px;
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.25s;
  margin-bottom: 12px;
}

.witch-target-area.is-active {
  opacity: 1;
  pointer-events: auto;
}

.witch-target-hint {
  text-align: center;
  color: var(--hybrid-muted);
  font-size: 0.85rem;
  margin: 0 0 12px 0;
}

.witch-hint-color-heal { color: #5cda89; }
.witch-hint-color-poison { color: #b8a7f5; }
