/* Dwarf Planets Page Specific Styles — Matched to Homepage Root Theme */
:root {
  --bg-900: #03040a;
  --bg-800: #0b1020;
  --accent: #6de3ff;
  --accent-2: #9b7bff;
  --muted: #a9b2c7;
  --glass: rgba(255, 255, 255, 0.04);
  --radius: 16px;
  --max-width: 1100px;
}

.dwarf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.dwarf-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dwarf-card:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 227, 255, 0.3);
  box-shadow: 0 12px 32px rgba(109, 227, 255, 0.12);
}

.dwarf-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.dwarf-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--bg-900);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(109, 227, 255, 0.3);
}

.dwarf-title h2 {
  font-size: 1.6rem;
  color: #fff;
  margin: 0;
}

.dwarf-subtitle {
  font-size: 0.85rem;
  color: var(--accent-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dwarf-body p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.dwarf-stats-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
  border-radius: 10px;
}

.mini-stat label {
  font-size: 0.72rem;
  color: var(--muted);
  display: block;
  text-transform: uppercase;
}

.mini-stat strong {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}
