.panel-title {
  text-align: center;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 1.5rem;
}

/* Layout */
.key-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.key-item {
  display: flex;
  align-items: center;
  gap: 1rem;

  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #444;

  transition: 0.3s;
}

/* Hover effect 🔥 */
.key-item:hover {
  border-color: #ffcc00;
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.3);
  transform: translateY(-2px);
}

/* Image */
.key-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

/* Text */
.key-info h3 {
  color: #ffcc00;
  margin: 0;
}

.action-text {
  margin-top: 5px;
  font-size: 14px;
  font-style: italic;
  color: #ccc;
}