/* Owner command center — server owner dashboard */

.owner-command {
  padding: 0 16px 32px;
  max-width: 640px;
  margin: 0 auto;
}

.owner-command__hero {
  text-align: center;
  padding: 8px 0 20px;
}

.owner-command__hero img {
  margin: 0 auto 12px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 212, 238, 0.15);
}

.owner-command__title {
  font-family: var(--font-changa);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
}

.owner-command__subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.owner-command__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.owner-command__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
}

.owner-command__status--pending .owner-command__status-dot { background: #f59e0b; box-shadow: 0 0 8px rgba(245, 158, 11, 0.5); }
.owner-command__status--reviewing .owner-command__status-dot { background: #3b82f6; box-shadow: 0 0 8px rgba(59, 130, 246, 0.5); }
.owner-command__status--live .owner-command__status-dot { background: #22c55e; box-shadow: 0 0 8px rgba(34, 197, 94, 0.5); }

.owner-command__section {
  margin-top: 20px;
}

.owner-command__section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px 4px;
}

.owner-command__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.owner-command__tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  color: inherit;
  font: inherit;
  width: 100%;
}

.owner-command__tile:hover {
  border-color: rgba(0, 212, 238, 0.35);
  background: linear-gradient(165deg, rgba(0, 212, 238, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  transform: translateY(-1px);
}

.owner-command__tile:active {
  transform: translateY(0);
}

.owner-command__tile-icon {
  font-size: 22px;
  line-height: 1;
}

.owner-command__tile strong {
  font-size: 14px;
  font-weight: 700;
}

.owner-command__tile span:last-child {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.35;
}

.owner-command__tile--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.owner-command__tile--wide .owner-command__tile-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.owner-command__tile--accent {
  border-color: rgba(0, 212, 238, 0.25);
  background: linear-gradient(135deg, rgba(0, 212, 238, 0.1) 0%, rgba(168, 85, 247, 0.06) 100%);
}

.owner-command__empty {
  text-align: center;
  padding: 32px 16px;
}

.owner-command__empty p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 20px;
}

.owner-command__demo {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .owner-command__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .owner-command__tile--wide {
    grid-column: span 2;
  }
}
