:root {
  --bg: #2a1554;
  --bg-deep: #1a0e35;
  --bg-panel: #35206a;
  --text: #ffffff;
  --text-secondary: #c4b8e8;
  --text-muted: #8a7aad;
  --gold: #ffd231;
  --orange: #ff8a00;
  --cyan: #48b9d9;
  --magenta: #d8367d;
  --border: rgba(255, 255, 255, 0.08);
  --font: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(900px 600px at 80% -10%, rgba(216, 54, 125, 0.14), transparent 60%),
    radial-gradient(800px 500px at -10% 20%, rgba(72, 185, 217, 0.12), transparent 60%),
    linear-gradient(180deg, #2a1554 0%, #1a0e35 100%);
  background-attachment: fixed;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}

.pp-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(26, 14, 53, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pp-logo:hover { text-decoration: none; color: var(--gold); }

.pp-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 16px rgba(72, 185, 217, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pp-logo-name {
  background: linear-gradient(135deg, #ffe566, #ff8a00 50%, #48b9d9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pp-label {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.pp-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.pp-main h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 28px;
  background: linear-gradient(135deg, #ffe566, #ff8a00 45%, #48b9d9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pp-bold {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 22px;
  color: #fff;
  padding: 18px 22px;
  border-left: 3px solid var(--cyan);
  background: rgba(72, 185, 217, 0.08);
  border-radius: 0 12px 12px 0;
}

.pp-main h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 52px 0 18px;
  letter-spacing: 0.01em;
  color: #fff;
}

.pp-main h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, var(--gold), var(--cyan));
  border-radius: 2px;
  margin-right: 12px;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(255, 210, 49, 0.5);
}

.pp-main h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 32px 0 10px;
  color: var(--gold);
}

.pp-main p {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.85;
}

.pp-main hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 56px 0 24px;
}

.pp-date {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-style: italic;
}

.pp-footer-simple {
  border-top: 1px solid var(--border);
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 24px;
  text-align: center;
}

.pp-footer-simple p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.pp-footer-simple a {
  color: var(--text-secondary);
}

.pp-footer-simple a:hover {
  color: var(--gold);
  text-decoration: none;
}

@media (max-width: 600px) {
  .pp-header {
    padding: 18px 20px;
  }

  .pp-main {
    padding: 32px 20px 60px;
  }

  .pp-main h1 {
    font-size: 1.7rem;
  }

  .pp-main h2 {
    font-size: 1.2rem;
    margin-top: 40px;
  }

  .pp-bold {
    font-size: 0.98rem;
    padding: 14px 16px;
  }
}
