.action-buttons-professional {
  margin-top: 20px;
}

.buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.btn-professional {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(0, 255, 140, 0.3);
  border-radius: 12px;
  text-decoration: none;
  color: #e2e8f0;
  font-family: "JetBrains Mono", monospace;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 64px;
}

.btn-professional.primary {
  border-color: var(--accent);
  background: rgba(0, 255, 140, 0.05);
}

.btn-professional.primary:hover {
  background: rgba(0, 255, 140, 0.15);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 140, 0.3);
  color: var(--accent);
}

.btn-professional.secondary {
  border-color: #00ffff;
  background: rgba(0, 255, 255, 0.05);
}

.btn-professional.secondary:hover {
  background: rgba(0, 255, 255, 0.15);
  border-color: #00ffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
  color: #00ffff;
}

.btn-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.btn-icon {
  font-size: 1.2rem;
}

.btn-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.btn-label {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.btn-sublabel {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 400;
  line-height: 1;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-professional:hover .btn-glow {
  left: 100%;
}

.deployment-status-professional {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 140, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
}

.status-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #28ca42;
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

.status-text {
  font-family: "JetBrains Mono", monospace;
  color: #28ca42;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-stack {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
}

.tech-item {
  color: var(--accent);
  font-weight: 500;
}

.tech-separator {
  color: rgba(0, 255, 140, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .buttons-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn-professional {
    padding: 14px 16px;
    min-height: 56px;
  }

  .btn-icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .btn-label {
    font-size: 0.85rem;
  }

  .btn-sublabel {
    font-size: 0.7rem;
  }

  .status-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .tech-stack {
    font-size: 0.75rem;
  }
}
