/* GGWP Creators - Main Theme CSS */

/* ---- Typography ---- */
.ggwp-page-content h1,
.ggwp-page-content h2,
.ggwp-page-content h3 { color: #e2e8f0; }

.ggwp-page-content a { color: #a855f7; }
.ggwp-page-content a:hover { color: #22d3ee; }

/* ---- WP admin bar override ---- */
.ggwp-creator-view #wpadminbar { display: none !important; }
.ggwp-creator-view html { margin-top: 0 !important; }

/* ---- 404 / error pages ---- */
.ggwp-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: #08080f;
}
.ggwp-404 h1 { font-size: 96px; font-weight: 800; margin: 0; line-height: 1; color: #7c3aed; }
.ggwp-404 p  { color: #94a3b8; font-size: 18px; margin: 12px 0 24px; }
.ggwp-404 a  {
  display: inline-block;
  padding: 10px 24px;
  background: #7c3aed;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.15s;
}
.ggwp-404 a:hover { background: #a855f7; color: #fff; }
