/* PinkMoon Phase 2 Dashboard Styling */
.pm-dashboard-grid {
  width: min(1150px, 92%);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.pm-panel-card {
  background: rgba(19, 10, 32, 0.82);
  border: 1px solid rgba(255, 105, 180, 0.35);
  box-shadow: 0 0 28px rgba(255, 79, 195, 0.16);
  border-radius: 22px;
  padding: 24px;
  color: #fff;
  backdrop-filter: blur(10px);
}

.pm-panel-card h2 {
  margin-top: 0;
  color: #ff79d6;
  font-family: 'Cinzel', serif;
}

.pm-panel-card p {
  line-height: 1.65;
}

.pm-big-status {
  font-size: 1.65rem;
  font-weight: 800;
}

.pm-table-wrap {
  overflow-x: auto;
}

.pm-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
}

.pm-table th,
.pm-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.pm-table th {
  color: #ffb3e8;
  font-weight: 700;
}

.pm-form-row {
  display: grid;
  gap: 12px;
}

.pm-form-row input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 105, 180, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  outline: none;
}

.pm-note {
  color: #ffb3e8;
  font-size: .95rem;
}

/* =========================
   PinkMoon Footer
========================= */

.pinkmoon-footer {
  width: 100%;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  z-index: 5;

  background:
    linear-gradient(
      to top,
      rgba(255, 105, 180, 0.10),
      rgba(0, 0, 0, 0)
    );

  border-top: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(8px);
}

.pinkmoon-footer p {
  margin: 4px 0;
  font-family: 'Poppins', sans-serif;
  color: rgba(255,255,255,0.78);
  letter-spacing: 1px;
}

.footer-logo {
  color: #ff77c8;
  font-weight: 700;

  text-shadow:
    0 0 10px rgba(255,119,200,0.7),
    0 0 20px rgba(255,119,200,0.45);
}

.footer-credit {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-link {
  color: #ffd6f1;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.25s ease;

  text-shadow:
    0 0 8px rgba(255,255,255,0.35),
    0 0 18px rgba(255,119,200,0.5);
}

.footer-link:hover {
  color: #ff77c8;

  text-shadow:
    0 0 12px rgba(255,119,200,0.95),
    0 0 28px rgba(255,119,200,0.75);

  letter-spacing: 1px;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;

  width: 0%;
  height: 2px;

  background: #ff77c8;
  transition: width 0.25s ease;
}

.footer-link:hover::after {
  width: 100%;
}