/* PinkMoon Gaming dashboard layer - safe frontend only */

.dashboard-wrap {
  display: grid;
  gap: 28px;
}

.dash-card,
.mini-card,
.stat-card,
.pm-panel-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.025));
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow:
    0 0 28px rgba(0, 217, 255, 0.10),
    0 18px 55px rgba(0,0,0,0.34);
  border-radius: 22px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.dash-card.wide {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.dash-head h2 {
  margin: 0;
}

.dash-grid {
  display: grid;
  gap: 18px;
}

.dash-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dash-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.dash-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 20px 0;
}

.stat-card span {
  display: block;
  opacity: 0.72;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #00d9ff;
  font-weight: 900;
}

.stat-card strong {
  display: block;
  font-size: 1.35rem;
  color: #fff;
  word-break: break-word;
}

.notice-box {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  margin: 14px 0;
}

.notice-box.warning {
  border-color: rgba(249, 115, 22, 0.45);
  background: rgba(249, 115, 22, 0.08);
}

.muted {
  opacity: 0.75;
}

.link-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
  margin-top: 18px;
}

.link-form label {
  display: grid;
  gap: 8px;
}

.link-form input {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: white;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}

.dashboard-list {
  margin-top: 20px;
}

.locked-panel {
  opacity: 0.96;
}

.pm-dashboard-grid {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  padding: 50px 0 80px;
}

.pm-big-status {
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 10px 0;
  color: #00d9ff;
  text-shadow:
    0 0 16px rgba(0,217,255,0.75),
    0 0 42px rgba(139,92,246,0.45);
  font-weight: 900;
}

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

.pm-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

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

.pm-table th {
  color: #00d9ff;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
}

.pm-table td {
  color: #f5f7ff;
}

.pm-note {
  color: #cbd5e1;
  margin-top: 10px;
}

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

@media (max-width: 900px) {
  .dash-grid.two,
  .dash-grid.three,
  .dash-grid.four,
  .link-form {
    grid-template-columns: 1fr;
  }

  .dash-head {
    align-items: flex-start;
  }
}