:root {
  --pp-bg: #07090c;
  --pp-panel: #0f141c;
  --pp-line: rgba(255, 255, 255, 0.08);
  --pp-text: #eaf0ff;
  --pp-muted: #9aa3ad;
  --pp-gk: #00ff9d;
  --pp-gk-dim: rgba(0, 255, 157, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--pp-bg);
  color: var(--pp-text);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.pp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--pp-line);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.pp-logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.pp-logo__gkz {
  color: var(--pp-gk);
}

.pp-logo__id {
  color: #fff;
}

.pp-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pp-nav a {
  color: var(--pp-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.pp-nav a:hover {
  color: var(--pp-gk);
}

.pp-nav__cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--pp-gk-dim);
  border: 1px solid rgba(0, 255, 157, 0.35);
  color: var(--pp-gk) !important;
}

.pp-main {
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.pp-banner {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.pp-banner--warn {
  background: rgba(255, 180, 80, 0.12);
  border: 1px solid rgba(255, 180, 80, 0.35);
  color: #ffd4a8;
}

.is-hidden {
  display: none !important;
}

.pp-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .pp-hero {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

.pp-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.pp-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 255, 157, 0.45);
  box-shadow: 0 0 32px rgba(0, 255, 157, 0.2);
  background: var(--pp-panel);
}

.pp-avatar-upload {
  display: block;
  margin-top: 0.5rem;
  text-align: center;
}

.pp-avatar-upload__btn {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pp-gk);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pp-name {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.pp-meta {
  margin: 0;
  color: var(--pp-muted);
  font-size: 0.95rem;
}

.pp-meta--dim {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.pp-panel {
  background: var(--pp-panel);
  border: 1px solid var(--pp-line);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  margin-bottom: 1.25rem;
}

.pp-panel--soft {
  background: rgba(15, 20, 28, 0.6);
}

.pp-heading {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pp-lead {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--pp-muted);
  line-height: 1.55;
}

.pp-dl {
  margin: 0;
}

.pp-dl-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--pp-line);
}

@media (min-width: 520px) {
  .pp-dl-row {
    grid-template-columns: 10rem 1fr;
    align-items: baseline;
  }
}

.pp-dl-row:last-child {
  border-bottom: none;
}

.pp-dl dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pp-muted);
}

.pp-dl dd {
  margin: 0;
  font-size: 0.9375rem;
  word-break: break-word;
}

.pp-mono {
  font-family: ui-monospace, monospace;
  font-size: 0.9375rem;
  color: var(--pp-gk);
}

.pp-mono--sm {
  font-size: 0.75rem;
  color: var(--pp-muted);
}

.pp-settings {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.pp-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--pp-line);
}

.pp-setting:last-of-type {
  border-bottom: none;
}

.pp-setting__label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}

.pp-setting__hint {
  display: block;
  font-size: 0.75rem;
  color: var(--pp-muted);
  margin-top: 0.2rem;
}

.pp-toggle {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  flex-shrink: 0;
}

.pp-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pp-toggle__ui {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--pp-line);
  transition: background 0.2s ease;
  position: relative;
}

.pp-toggle__ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.pp-toggle input:checked + .pp-toggle__ui {
  background: rgba(0, 255, 157, 0.35);
  border-color: rgba(0, 255, 157, 0.5);
}

.pp-toggle input:checked + .pp-toggle__ui::after {
  transform: translateX(20px);
}

.pp-toggle__ui--disabled {
  opacity: 0.45;
  pointer-events: none;
}

.pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pp-btn--primary {
  background: var(--pp-gk);
  color: #050608;
  box-shadow: 0 4px 20px rgba(0, 255, 157, 0.2);
}

.pp-btn--primary:hover:not(:disabled) {
  transform: translateY(-1px);
}

.pp-btn--ghost {
  background: transparent;
  color: var(--pp-gk);
  border: 1px solid rgba(0, 255, 157, 0.4);
}

.pp-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pp-plan-badge {
  font-size: 0.875rem;
  color: var(--pp-muted);
  margin: 0 0 1.25rem;
}

.pp-tiers {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pp-tiers {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.pp-tier {
  position: relative;
  border: 1px solid var(--pp-line);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.2);
}

.pp-tier--featured {
  border-color: rgba(0, 255, 157, 0.45);
  box-shadow: 0 0 0 1px rgba(0, 255, 157, 0.12);
}

.pp-tier__ribbon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pp-bg);
  background: var(--pp-gk);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.pp-tier__name {
  font-family: "Syne", sans-serif;
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.pp-tier__price {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: #fff;
}

.pp-tier__price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pp-muted);
}

.pp-tier__feats {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--pp-muted);
  flex: 1;
}

.pp-tier__feats li {
  margin-bottom: 0.35rem;
}

.pp-checkout {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px dashed rgba(0, 255, 157, 0.35);
  background: rgba(0, 255, 157, 0.04);
}

.pp-checkout__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.pp-checkout__note {
  font-size: 0.8125rem;
  color: var(--pp-muted);
  margin: 0 0 1rem;
  line-height: 1.55;
}

.pp-payform__disabled {
  font-size: 0.75rem;
  color: var(--pp-muted);
  margin: 0 0 0.75rem;
}

.pp-field {
  margin-bottom: 0.75rem;
}

.pp-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pp-muted);
  margin-bottom: 0.35rem;
}

.pp-field input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--pp-line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--pp-text);
  font-size: 1rem;
}

.pp-field input:disabled {
  opacity: 0.5;
}

.pp-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.media-reel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.media-item {
  min-width: 140px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.media-item:hover {
  transform: scale(1.03);
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pp-footer {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  border-top: 1px solid var(--pp-line);
  font-size: 0.875rem;
}

.pp-footer__extras {
  text-align: center;
}

.pp-footer a {
  color: var(--pp-muted);
  text-decoration: none;
}

.pp-footer a:hover {
  color: var(--pp-gk);
}

/* —— GKZiD card spotlight —— */
.pp-panel--spotlight .pp-lead a {
  color: var(--pp-gk);
  font-weight: 600;
}

.pp-spotlight-empty a {
  color: var(--pp-gk);
  font-weight: 600;
}

.pp-spotlight {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 560px) {
  .pp-spotlight {
    flex-direction: row;
    align-items: stretch;
  }
}

.pp-spotlight__media {
  flex: 0 0 auto;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--pp-line);
  background: #050708;
}

.pp-spotlight__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.pp-spotlight__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pp-spotlight__name {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pp-spotlight__sport {
  margin: 0;
  color: var(--pp-muted);
  font-weight: 600;
  font-size: 0.9375rem;
}

.pp-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}
