:root {
  --bg: #0a0518;
  --bg-deep: #050210;
  --bg-panel: #15102a;
  --text: #ffffff;
  --text-secondary: #b9b3d6;
  --text-muted: #7a7596;
  --gold: #ffd24a;
  --neon: #ff3df0;
  --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(255, 61, 240, 0.16), transparent 60%),
    radial-gradient(800px 500px at -10% 20%, rgba(41, 231, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #0a0518 0%, #050210 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(8, 4, 22, 0.6);
  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;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.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(255, 61, 240, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pp-logo-name {
  background: linear-gradient(135deg, #ffe27a, #ffb53d 50%, #ff6bd6);
  -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;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffe27a, #ff8a00 50%, #ff3da3);
  -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(--gold);
  background: rgba(255, 210, 74, 0.06);
  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;
  text-transform: uppercase;
}

.pp-main h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, var(--gold), var(--neon));
  border-radius: 2px;
  margin-right: 12px;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(255, 210, 74, 0.6);
}

.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;
  }
}
