:root {
  --bg: #b8805f;
  --bg-deep: #8b5e3c;
  --bg-panel: #c4956a;
  --text: #fff8f0;
  --text-secondary: #f5e6d8;
  --text-muted: #d4b89a;
  --gold: #fbbf24;
  --orange: #ff6b2b;
  --cyan: #27a99a;
  --cyan-bright: #00ced1;
  --brown-dark: #5c3d28;
  --border: rgba(255, 248, 240, 0.12);
  --font: "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-display: "Fredoka", "Inter", 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(800px 500px at 80% -10%, rgba(39, 169, 154, 0.18), transparent 60%),
    radial-gradient(700px 450px at -10% 30%, rgba(251, 191, 36, 0.1), transparent 55%),
    linear-gradient(180deg, #c4956a 0%, #8b5e3c 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: 2px solid rgba(39, 169, 154, 0.3);
  background: rgba(92, 61, 40, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
}

.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 4px 14px rgba(39, 169, 154, 0.4);
  border: 2px solid rgba(255, 248, 240, 0.15);
}

.pp-logo-name {
  background: linear-gradient(135deg, #fde68a, #fbbf24 50%, #27a99a);
  -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-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 28px;
  background: linear-gradient(135deg, #fde68a, #fbbf24 45%, #27a99a);
  -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: 4px solid var(--cyan-bright);
  background: rgba(39, 169, 154, 0.12);
  border-radius: 0 14px 14px 0;
}

.pp-main h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  margin: 52px 0 18px;
  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;
}

.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: 2px solid rgba(39, 169, 154, 0.25);
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 24px 60px;
  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; }
}
