:root {
  color-scheme: dark;
  font-family: "Rajdhani", "Inter", system-ui, sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 55%),
    #0b0b0d;
}

.hero-panel {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 55%),
    #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 2px solid #f8fafc;
  border-radius: 12px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

.brand-mark-sub {
  position: absolute;
  bottom: 4px;
  right: 8px;
  font-size: 0.55rem;
  opacity: 0.6;
}

.panel-card {
  background: rgba(17, 17, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.panel-list {
  padding: 0 1.25rem 1.25rem;
}

.server-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(12, 12, 14, 0.9);
  margin-bottom: 1rem;
}

.server-card h3 {
  margin-bottom: 0.25rem;
}

.server-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.targets-list {
  margin-top: 0.5rem;
}

.targets-list .tag {
  margin-right: 0.35rem;
  margin-bottom: 0.35rem;
}

.category-sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.category-card {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 13, 16, 0.95);
}

.promo-card {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.12), transparent 65%),
    rgba(17, 17, 20, 0.95);
}

.active-servers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.active-server-item {
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 12, 14, 0.85);
}

.active-server-item p {
  margin-bottom: 0.25rem;
}

.notification {
  background: rgba(15, 15, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

.notification.is-success {
  border-color: rgba(74, 222, 128, 0.6);
}

.notification.is-danger {
  border-color: rgba(248, 113, 113, 0.7);
}

.modal-card {
  background: #0f0f12;
  color: #f8fafc;
}

.modal-card-head,
.modal-card-foot {
  background: #0b0b0d;
  border-color: rgba(255, 255, 255, 0.08);
}

.input,
.select select,
.textarea {
  background: #0f0f12;
  border-color: rgba(255, 255, 255, 0.15);
  color: #f8fafc;
}

.label,
.modal-card-title {
  color: #f8fafc;
}

.tag.is-light {
  background: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
}

.embed-layout {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.embed-layout-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 13, 16, 0.85);
}

.embed-layout-actions {
  display: flex;
  gap: 0.4rem;
}

.embed-layout .button.is-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: transparent;
  color: #f8fafc;
}

@media (max-width: 768px) {
  .navbar-end {
    margin-top: 0.75rem;
  }
}
