.is2-annhook-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 14px;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(7, 9, 12, 0.98), rgba(17, 12, 6, 0.98));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.is2-annhook-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.is2-annhook-kicker {
  margin-bottom: 7px;
  color: rgba(251, 191, 36, 0.76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.is2-annhook-head h3 {
  margin: 0;
  color: #f8fafc;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.is2-annhook-head p,
.is2-annhook-actions p,
.is2-annhook-panel.is-loading p {
  margin: 6px 0 0;
  color: rgba(203, 213, 225, 0.78);
  font-size: 12px;
  line-height: 1.55;
}

.is2-annhook-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.is2-annhook-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.is2-annhook-field span {
  color: rgba(226, 232, 240, 0.9);
  font-size: 12px;
  font-weight: 700;
}

.is2-annhook-field input {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 0 11px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 9px;
  background: rgba(2, 6, 23, 0.55);
  color: #f8fafc;
  font-size: 12px;
  outline: none;
  text-overflow: ellipsis;
}

.is2-annhook-field input:focus {
  border-color: rgba(56, 189, 248, 0.72);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.is2-annhook-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
}

.is2-annhook-actions > div {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.is2-annhook-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 9px;
  background: rgba(15, 23, 42, 0.78);
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.is2-annhook-btn.primary {
  border-color: rgba(56, 189, 248, 0.55);
  background: linear-gradient(135deg, #0891b2, #2563eb);
  color: white;
}

.is2-annhook-btn:hover {
  border-color: rgba(249, 115, 22, 0.72);
}

.is2-annhook-message {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
}

.is2-annhook-message.success {
  border: 1px solid rgba(34, 197, 94, 0.24);
  background: rgba(34, 197, 94, 0.11);
  color: #bbf7d0;
}

.is2-annhook-message.error {
  border: 1px solid rgba(248, 113, 113, 0.28);
  background: rgba(127, 29, 29, 0.34);
  color: #fecaca;
}

.is2-annhook-panel.is-saving {
  opacity: 0.72;
  pointer-events: none;
}

@media (max-width: 900px) {
  .is2-annhook-grid {
    grid-template-columns: 1fr;
  }

  .is2-annhook-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .is2-annhook-actions > div {
    justify-content: flex-end;
  }
}
