.secondary-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2.1rem;
  padding: 0 2rem;
}
.option-btn {
  width: 100%;
  background: rgb(26, 32, 44);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 1.0rem 2.1rem;
  font-weight: 600;
  font-size: 1.07rem;
  line-height: 1.45;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 18px -4px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.option-btn .material-icons-outlined {
  font-size: 1.95rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.option-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.option-btn:hover .material-icons-outlined {
  transform: translateX(4px);
}
.option-btn:active {
  transform: translateY(0);
}
