.command-list-header {
  position: relative;
  background: linear-gradient(135deg, #1a1f2c 0%, #0d1117 100%);
  color: #fff;
  padding: 4rem 0;
  margin-bottom: 3rem;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid rgba(13, 182, 251, 0.3);
}

.command-list-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(13, 182, 251, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(13, 182, 251, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.category-card {
  background: rgba(26, 31, 44, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(13, 182, 251, 0.2);
  margin-bottom: 2rem;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 182, 251, 0.4);
  box-shadow: 0 12px 40px rgba(13, 182, 251, 0.15);
}

.category-header {
  background: rgba(13, 182, 251, 0.1);
  padding: 1.5rem;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid rgba(13, 182, 251, 0.2);
}

.category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.category-icon {
  font-size: 1.75rem;
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(13, 182, 251, 0.3));
}

.category-badge {
  background: rgba(13, 182, 251, 0.15);
  color: var(--accent);
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  margin-left: auto;
  border: 1px solid rgba(13, 182, 251, 0.3);
  box-shadow: 0 2px 8px rgba(13, 182, 251, 0.1);
}

.category-body {
  padding: 1rem;
}

.commands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.command-item {
  background: rgba(13, 182, 251, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(13, 182, 251, 0.15);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.command-item:hover {
  background: rgba(13, 182, 251, 0.1);
  border-color: rgba(13, 182, 251, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(13, 182, 251, 0.1);
}

.command-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.command-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.badge-required {
  background: rgba(220, 53, 69, 0.15);
  color: #ff4d6d;
  border: 1px solid rgba(220, 53, 69, 0.3);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 20px;
  font-weight: 500;
}

.badge-optional {
  background: rgba(13, 182, 251, 0.1);
  color: var(--accent);
  border: 1px solid rgba(13, 182, 251, 0.3);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 20px;
  font-weight: 500;
}

.command-options {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-top: auto;
}

.command-option-name {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.95rem;
}

.command-options ul li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(13, 182, 251, 0.1);
}

.command-options ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.permissions-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 182, 251, 0.1);
}

.no-commands {
  text-align: center;
  padding: 3rem;
  color: rgba(255, 255, 255, 0.6);
  grid-column: 1 / -1;
}

.no-commands i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-card {
  animation: fadeIn 0.6s ease-out forwards;
}

.category-card:nth-child(2n) {
  animation-delay: 0.2s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .commands-grid {
    grid-template-columns: 1fr;
  }
  
  .command-list-header {
    padding: 3rem 0;
  }
  
  .category-card {
    margin-bottom: 1.5rem;
  }
  
  .command-item {
    padding: 1rem;
  }
  
  .category-title {
    font-size: 1.25rem;
  }
  
  .command-name {
    font-size: 1rem;
  }
} 