.pc-card-root {
  --card-opacity: 1;
  --card-blur: 12px;
}
.pc-card-root:not(.pc-card-glass) {
  opacity: var(--card-opacity, 1);
}
/* ===========================
 * Canonical Profile Card (pc-)
 * Used by BOTH public + editor
 * =========================== */

 /* TODO: extract base card + layout to profile-card.base.css */

/* TODO: extract theme variants to profile-card.themes.css */

/* TODO: extract buttons + sponsors to profile-card.content.css */

 /* Theme title colours */
.pc-theme-midnight {
  --pc-title-color: #f9fafb;
}

.pc-theme-neon {
  --pc-title-color: #ffe9ff;
}

.pc-theme-soft {
  --pc-title-color: #111827;
}

.pc-theme-kick {
  --pc-title-color: #a6ffba;
}

.pc-theme-pixel {
  --pc-title-color: #fbbf24;
}


.pc-card-root {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;

  /* THEME TOKENS (defaults for Midnight) */
  --pc-card-bg: #020617;
  --pc-main-bg: radial-gradient(circle at top, #020617 0%, #020617 70%);
  --pc-avatar-bg: radial-gradient(circle at top, #f97316, #3b82f6);
  --pc-avatar-shadow:
    0 0 0 3px rgba(15, 23, 42, 0.95),
    0 0 0 5px rgba(56, 189, 248, 0.25),
    0 16px 40px rgba(15, 23, 42, 0.95),
    0 0 40px rgba(8, 47, 73, 0.55);
  --pc-social-bg: rgba(15, 23, 42, 0.85);
  --pc-social-border: rgba(148, 163, 184, 0.4);
  --pc-stats-bg: rgba(15, 23, 42, 0.95);
  --pc-stats-border: rgba(34, 197, 94, 0.7);
  --pc-stats-dot: #22c55e;
  --pc-stats-dot-ring: rgba(22, 163, 74, 0.35);
  --pc-button-bg: radial-gradient(circle at top, #0f172a 0%, #020617 80%);
  --pc-button-border: rgba(56, 189, 248, 0.6);
  --pc-button-color: #e5e7eb;

  background: var(--pc-card-bg);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
}

/* Small chip still pill-based */
.pc-button--size-sm {
  min-height: 44px;
  padding-inline: 16px;
}

/* Accent application for small buttons */
.pc-button--accent-bg {
  background-color: var(--accent-color);
  color: #020617; /* dark text on bright button */
}

.pc-button--accent-label {
  color: var(--accent-color);
}

/* Tile styles for MD/LG */
.pc-button-tile {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pc-button-tile--md {
  height: 160px;
}

.pc-button-tile--lg {
  height: 260px;
}

.pc-button-overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Accent on the button background (gradient) */
.pc-button-overlay--accent {
  background: linear-gradient(
    to top,
    var(--accent-color, rgba(15, 23, 42, 0.9)),
    transparent 60%
  );
}


.pc-button-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #f9fafb;
}

/* Accent on the label text */
.pc-button-label--accent {
  color: var(--accent-color);
}


/* ==========================================================
   PIXEL THEME – typography
   ========================================================== */

.pc-theme-pixel.pc-card-root {
  font-family: "Press Start 2P", system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "Segoe UI", sans-serif;
  letter-spacing: 0.08em;
}

/* Titles / labels look more 8-bit and less “glossy” */
.pc-theme-pixel .pc-display-name {
  font-size: 0.85rem;
  font-weight: 400;
  text-shadow: none;
}

.pc-theme-pixel .pc-username {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #9ca3af;
  text-shadow: none;
}

.pc-theme-pixel .pc-bio {
  font-size: 0.7rem;
  line-height: 1.7;
  text-shadow: none;
}

/* Social, stats, buttons – tiny, chunky labels */
.pc-theme-pixel .pc-social-pill,
.pc-theme-pixel .pc-stats-pill,
.pc-theme-pixel .pc-button {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}



/* Kick: remove the navy vignette so the card sits in pure black */
.pc-theme-kick.pc-card-root::before {
  background: none;
}


/* Hero */
.pc-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #020617;
  overflow: hidden;
  will-change: transform;
}

.pc-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transform-origin: center;
}

/* Strong fade that becomes EXACT card background (#020617) */
.pc-hero-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.0) 0%,
    rgba(0, 0, 0, 0.0) 45%,
    rgba(2, 6, 23, 0.40) 65%,
    rgba(2, 6, 23, 0.78) 80%,
    rgba(2, 6, 23, 1.00) 100%
  );
}

/* Main body */
.pc-main {
  position: relative;
  padding: 1.7rem 1.6rem 1.8rem;
  background: var(--pc-main-bg);
  z-index: 2; /* above vignette */
}


/* Avatar / identity */
.pc-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: -3.0rem;
  margin-bottom: 1rem;
  text-align: center;
}

.pc-avatar-shell {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  padding: 3px;
  background: var(--pc-avatar-bg);
  box-shadow: var(--pc-avatar-shadow);
  z-index: 3;
}


/* Softer bloom halo than before */
.pc-avatar-shell::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 20%, rgba(56, 189, 248, 0.35), transparent 60%);
  filter: blur(10px);
  opacity: 0.7;
  z-index: -1;
}

.pc-avatar {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  background: #020617;
}

.pc-avatar-placeholder {
  background: radial-gradient(circle at 30% 20%, #1f2937, #020617);
}

.pc-display-name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.7),
    0 0 16px rgba(15, 23, 42, 0.9);
}

.pc-username {
  font-size: 0.8rem;
  color: #9ca3af;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.6),
    0 0 10px rgba(15, 23, 42, 0.9);
}

/* Social icons row */
.pc-social-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.55rem 0 0.85rem;
}

.pc-social-pill {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--pc-social-bg);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--pc-social-border);
  color: #e5e7eb;
  text-decoration: none;
}


/* Stats row + pill */
.pc-stats-row {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.pc-stats-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: var(--pc-stats-bg);
  border: 1px solid var(--pc-stats-border);
  color: #bbf7d0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.85);
}

.pc-stats-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pc-stats-dot);
  box-shadow: 0 0 0 3px var(--pc-stats-dot-ring);
}


/* Bio */
.pc-bio {
  font-size: 0.82rem;
  color: #e5e7eb;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Link buttons */
.pc-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: stretch;
}

/* Row container for 2-up medium buttons */
.pc-buttons-row {
  width: 100%;
}

.pc-buttons-row-md {
  display: flex;
  gap: 0.7rem;
  width: 100%;
}

.pc-buttons-row-md .pc-button,
.pc-buttons-row-md .pc-button-tile {
  flex: 1 1 0;
  width: auto;
}


/* Base button */
.pc-button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--pc-button-border);
  background: var(--pc-button-bg);
  color: var(--pc-button-color);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
  transition:
    transform 0.12s ease-out,
    box-shadow 0.12s ease-out,
    background 0.15s ease-out,
    border-color 0.15s ease-out;
}

.pc-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.15s ease-out;
}

.pc-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.98);
}

.pc-button:hover::before {
  opacity: 1;
}

/* Shape variants */
.pc-button--shape-pill { border-radius: 999px; }
.pc-button--shape-rounded { border-radius: 1rem; }
.pc-button--shape-soft { border-radius: 0.5rem; }
.pc-button--shape-square { border-radius: 0.25rem; }

/* Size variants */
.pc-button--size-sm { padding: 0.45rem 0.8rem; font-size: 0.8rem; }
.pc-button--size-md { padding: 0.55rem 0.9rem; font-size: 0.86rem; }
.pc-button--size-lg { padding: 0.7rem 1.05rem; font-size: 0.96rem; }

/* Large featured card */
.pc-button--featured {
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  border-width: 0;
  background: transparent;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
}

.pc-button-featured-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

.pc-button-featured-overlay {
  padding: 0.75rem 0.9rem;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.98),
    rgba(30, 64, 175, 0.95)
  );
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pc-button-featured-overlay span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e5e7eb;
}


/* Shape variants */
.pc-button--shape-pill    { border-radius: 999px; }
.pc-button--shape-soft    { border-radius: 0.5rem; }
.pc-button--shape-rounded { border-radius: 1rem; }
.pc-button--shape-square  { border-radius: 0.75rem; }

/* Size variants
   Small  = current behaviour (full width pill)
   Medium = ~2x height, half width tiles
   Large  = ~3x height, full width hero CTA
*/

/* Small – default full-width pill */
.pc-button--size-sm,
.pc-button:not(.pc-button--size-md):not(.pc-button--size-lg) {
  flex: 1 1 100%;
  max-width: 100%;
  padding: 0.62rem 0.9rem;
  font-size: 0.9rem;
}

/* Medium – half width, taller */
.pc-button--size-md {
  flex: 1 1 calc(50% - 0.3rem);
  max-width: calc(50% - 0.3rem);
  min-height: 3.1rem;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  text-align: center;
}

/* Large – full width, hero CTA */
.pc-button--size-lg {
  flex: 1 1 100%;
  max-width: 100%;
  min-height: 3.6rem;
  padding: 1rem 1.1rem;
  font-size: 1rem;
  font-weight: 600;
}

/* On narrow screens, don’t cram two mediums side-by-side – stack them. */
@media (max-width: 480px) {
  .pc-button--size-md {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


/* Mobile tuning: hero height & fade */
@media (max-width: 768px) {
  .pc-card-root {
    border-radius: 0;
    max-width: 100%;
  }

  .pc-hero {
    aspect-ratio: auto;
    height: min(45vh, 85vw);
  }

  .pc-hero-fade {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.0) 0%,
      rgba(0, 0, 0, 0.0) 40%,
      rgba(2, 6, 23, 0.55) 68%,
      rgba(2, 6, 23, 0.88) 85%,
      rgba(2, 6, 23, 1.00) 100%
    );
  }

  .pc-main {
    padding: 1.25rem 1rem 1.6rem;
  }

  .pc-identity {
    margin-top: -2.4rem;
    margin-bottom: 0.75rem;
  }
}

/* ===========================
   BACKGROUND VARIANTS
   =========================== */

/* Default hero-dark */
.pc-bg-hero-dark.pc-card-root {
  --pc-card-bg: radial-gradient(circle at 50% 20%, rgba(15,15,20,0.35), #020617 75%);
  --pc-main-bg: radial-gradient(circle at top, #020617 0%, #020617 80%);
}

/* Kick Pulse */
.pc-bg-kick-pulse.pc-card-root {
  --pc-card-bg: radial-gradient(circle at 50% 20%, rgba(83,252,24,0.12), #020202 75%);
  --pc-main-bg: radial-gradient(circle, rgba(83,252,24,0.08), #000000 85%);
}

/* Kick Grid */
.pc-bg-kick-grid.pc-card-root {
  --pc-card-bg:
    repeating-linear-gradient(
      90deg,
      rgba(83,252,24,0.08) 0 2px,
      transparent 2px 8px
    ),
    #020202;
  --pc-main-bg: #020202;
}

/* Kick Energy */
.pc-bg-kick-energy.pc-card-root {
  --pc-card-bg: radial-gradient(circle at 50% 120%, rgba(83,252,24,0.22), #020202 70%);
  --pc-main-bg: radial-gradient(circle at 50% 120%, rgba(83,252,24,0.18), #020202 80%);
}

/* ===========================
   BUTTON VARIANTS
   =========================== */

/* Solid (default) */
.pc-btn-solid .pc-button {
  background: var(--pc-button-bg);
  border-color: var(--pc-button-border);
}

/* Glow */
.pc-btn-glow .pc-button {
  background: #020202;
  border-color: var(--kick-green, #53fc18);
  box-shadow:
    0 0 12px rgba(83, 252, 24, 0.5),
    0 0 28px rgba(83, 252, 24, 0.35);
}

/* Pixel */
.pc-btn-pixel .pc-button {
  background: #020202;
  border: 2px solid var(--kick-green, #53fc18);
  box-shadow: none;
  image-rendering: pixelated;
}

/* Glass */
.pc-btn-glass .pc-button {
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 4px 14px rgba(0,0,0,0.6);
}

/* ===========================
   CARD STYLE VARIANTS
   =========================== */

/* Glass */
.pc-card-glass.pc-card-root {
  backdrop-filter: blur(var(--card-blur, 12px));
  -webkit-backdrop-filter: blur(var(--card-blur, 12px));
  background: rgba(255,255,255,calc(0.02 * var(--card-opacity, 1)));
}

/* Chroma */
.pc-card-chroma.pc-card-root {
  box-shadow:
    0 0 0 2px var(--kick-green, #53fc18),
    0 0 50px var(--kick-green-soft, rgba(83,252,24,0.4));
}

/* Pixel Frame */
.pc-card-pixel.pc-card-root {
  outline: 3px solid var(--kick-green, #53fc18);
  image-rendering: pixelated;
}




/* ===========================
   THEME VARIANTS
   =========================== */

/* MIDNIGHT – uses the defaults from .pc-card-root.
   We only keep this for clarity; it doesn't need overrides. */

/* ==========================================================
   NEON RETROWAVE – synthwave frame + horizon
   ========================================================== */

.pc-theme-neon.pc-card-root {
  /* Synthwave frame with multi-color border */
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: double 3px transparent;
  background-image:
    linear-gradient(#020617, #020617),
    linear-gradient(0deg, #ffdb3b 0%, #fe53bb 25%, #8f51ea 87%);
  background-origin: border-box;
  background-clip: content-box, border-box;

  /* Card background: sky + warm horizon + corner glows */
  --pc-card-bg:
    /* subtle horizontal bands in the sky */
    repeating-linear-gradient(
      to top,
      rgba(236, 72, 153, 0.14) 0 2px,
      rgba(15, 23, 42, 0.0) 2px 6px
    ),
    /* warm horizon glow */
    radial-gradient(circle at 50% 120%, rgba(249, 115, 22, 0.8) 0, transparent 55%),
    /* cyan + magenta corners */
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.35) 0, transparent 45%),
    radial-gradient(circle at 100% 0, rgba(236, 72, 153, 0.45) 0, transparent 50%),
    #020617;

  /* Main body: baked-in neon grid over deep purple */
  --pc-main-bg:
    /* perspective-ish grid */
    repeating-linear-gradient(
      to right,
      rgba(56, 189, 248, 0.4) 0 1px,
      transparent 1px 22px
    ),
    repeating-linear-gradient(
      to top,
      rgba(236, 72, 153, 0.4) 0 1px,
      transparent 1px 18px
    ),
    radial-gradient(circle at 50% 115%, rgba(76, 29, 149, 0.95) 0, #020617 65%);

  /* Avatar: neon “sun” badge */
  --pc-avatar-bg:
    radial-gradient(circle at 50% 10%, #f97316 0, #ec4899 40%, #1d4ed8 90%);
  --pc-avatar-shadow:
    0 0 0 3px rgba(15, 23, 42, 1),
    0 0 0 6px rgba(236, 72, 153, 0.9),
    0 0 40px rgba(236, 72, 153, 1),
    0 26px 60px rgba(0, 0, 0, 0.98);

  /* Social / chips: cool purple-blue with magenta edge */
  --pc-social-bg:
    radial-gradient(circle at 0 0, rgba(30, 64, 175, 0.95), rgba(15, 23, 42, 0.98));
  --pc-social-border: rgba(236, 72, 153, 0.9);

  /* Stats: hot pink “LIVE” style */
  --pc-stats-bg:
    radial-gradient(circle at 0 0, rgba(236, 72, 153, 0.8), rgba(15, 23, 42, 0.98));
  --pc-stats-border: rgba(251, 113, 133, 1);
  --pc-stats-dot: #fb7185;
  --pc-stats-dot-ring: rgba(251, 113, 133, 0.8);

  /* Buttons: bright bar sweeping pink → purple → cyan */
  --pc-button-bg: linear-gradient(115deg, #ffdb3b, #fe53bb, #8f51ea, #22d3ee);
  --pc-button-border: rgba(236, 72, 153, 0.95);
  --pc-button-color: #020617;
}

/* Neon hero: warm orange/red grading, not a smear */
.pc-theme-neon .pc-hero-media {
  filter:
    saturate(1.35)
    contrast(1.12)
    hue-rotate(-16deg)
    brightness(0.98);
}

/* Neon hero fade: same geometry as Kick, just neon-coloured */
.pc-theme-neon .pc-hero-fade {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.0) 0%,
    rgba(0, 0, 0, 0.0) 55%,         /* keep most of hero clean */
    rgba(248, 113, 113, 0.28) 70%,  /* gentle warm band above seam */
    rgba(249, 115, 22, 0.80) 95%,   /* orange crest at seam */
    #020617 100%                    /* match main body base */
  );
}
















/* ==========================================================
   SOFT PASTEL – lofi café vibe
   ========================================================== */

.pc-theme-soft.pc-card-root {
  /* Card background: pastel blue sky + subtle warm top-right glow */
  --pc-card-bg:
    radial-gradient(circle at 95% 0%, rgba(255, 237, 180, 0.55) 0, transparent 55%),   /* warm lamp */
    radial-gradient(circle at 0% 100%, rgba(178, 242, 234, 0.45) 0, transparent 55%), /* teal tint */
    linear-gradient(
      180deg,
      #cfe3ff 0%,    /* pastel blue sky */
      #bdd7ff 28%,
      #8fb3d9 65%,   /* muted low-contrast centre */
      #0f1c33 100%   /* night anchor tone */
    );

  /* Main body: soft pastel blue panel, smooth and low contrast */
  --pc-main-bg:
    linear-gradient(
      to bottom,
      #bcd7ff 0%,
      #aac9f0 40%,
      #89a8c9 100%
    );

  /* Avatar halo: pastel yellow glow (like your example) */
  --pc-avatar-bg:
    radial-gradient(circle at 50% 0, #ffe8a8 0%, #ffd98f 35%, #fbcfe8 75%, #0f172a 100%);
  --pc-avatar-shadow:
    0 0 0 2px rgba(255, 245, 204, 0.8),
    0 8px 20px rgba(15, 23, 42, 0.75);

  /* Social icons: soft navy pill */
  --pc-social-bg: rgba(15, 23, 42, 0.85);
  --pc-social-border: rgba(203, 213, 225, 0.6);

  /* Stats pill: soft peach / latte */
  --pc-stats-bg:
    linear-gradient(
      135deg,
      rgba(255, 232, 178, 0.95),
      rgba(255, 245, 204, 0.95)
    );
  --pc-stats-border: rgba(255, 255, 255, 0.8);
  --pc-stats-dot: #f9a826;
  --pc-stats-dot-ring: rgba(255, 184, 109, 0.7);

  /* BUTTONS: pastel pink → lilac → lavender */
  --pc-button-bg:
    linear-gradient(
      90deg,
      #ffd3e8,
      #eab9ff,
      #d3c7ff
    );
  --pc-button-border: rgba(203, 213, 225, 0.8);
  --pc-button-color: #0f172a;
}

/* Soft hero: gentle brighten + slight cool tint */
.pc-theme-soft .pc-hero-media {
  filter:
    saturate(0.9)
    contrast(0.98)
    brightness(1.10)
    hue-rotate(-8deg);
}

/* Soft hero fade: very soft, almost invisible */
.pc-theme-soft .pc-hero-fade {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 60%,
    rgba(15,23,42,0.25) 80%,
    #0f1c33 100%
  );
}








/* ==========================================================
   KICK PULSE THEME – premium streamer look
   ========================================================== */

.pc-theme-kick.pc-card-root {
  /* Brand tokens */
  --kick-green: #53fc18;
  --kick-green-soft: rgba(83, 252, 24, 0.45);
  --kick-green-faint: rgba(83, 252, 24, 0.15);

  /* CARD BACKGROUND: deep black with top + bottom Kick glow */
  --pc-card-bg:
    radial-gradient(circle at 50% -20%, rgba(83,252,24,0.18) 0, transparent 55%),
    radial-gradient(circle at 50% 120%, rgba(83,252,24,0.22) 0, transparent 60%),
    #020202;

  /* MAIN BODY: subtle green haze behind content */
  --pc-main-bg:
    radial-gradient(circle at 50% 0%, rgba(83,252,24,0.10) 0, #020617 70%);

  /* AVATAR: bright badge with strong Kick halo */
  --pc-avatar-bg:
    radial-gradient(circle at 50% 25%, #53fc18 0, #14532d 55%, #020617 100%);
  --pc-avatar-shadow:
    0 0 0 2px #020617,
    0 0 0 4px rgba(83,252,24,0.9),
    0 0 30px rgba(83,252,24,0.9),
    0 20px 40px rgba(0,0,0,0.95);

  /* SOCIAL PILLS: dark chips with neon edges */
  --pc-social-bg:
    radial-gradient(circle at 50% 0, rgba(15,23,42,1) 0, #020617 70%);
  --pc-social-border: rgba(83,252,24,0.7);

  /* STATS PILL: feels like a “LIVE” indicator */
  --pc-stats-bg:
    radial-gradient(circle at 0 0, rgba(83,252,24,0.3), rgba(15,23,42,0.98));
  --pc-stats-border: rgba(83,252,24,0.9);
  --pc-stats-dot: #53fc18;
  --pc-stats-dot-ring: rgba(83,252,24,0.6);

  /* BUTTONS: Kick green CTA with depth */
  --pc-button-bg:
    radial-gradient(circle at 0 0, rgba(83,252,24,0.32), rgba(2,6,23,0.98));
  --pc-button-border: rgba(83,252,24,0.9);
  --pc-button-color: #e5ffe5;
}


@keyframes kick-pop {
  0%   { transform: scale(1); filter: brightness(1); }
  50%  { transform: scale(1.06); filter: brightness(1.5); }
  100% { transform: scale(1); filter: brightness(1); }
}

/* Kick + Pixel: hero image black & white */
.pc-theme-kick .pc-hero-media,
.pc-theme-pixel .pc-hero-media {
  filter: grayscale(1) contrast(1.1) brightness(0.9) !important;
  transform: scale(1.07) !important;
  transform-origin: center;
}

/* ==========================================================
   Pixel theme – hero scanlines + corner brackets
   ========================================================== */

.pc-theme-pixel .pc-hero::before,
.pc-theme-pixel .pc-hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  z-index: 2;
}

/* ::before = scanlines + top corners */
.pc-theme-pixel .pc-hero::before {
  background:
    /* Scanlines */
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.16) 0 1px,
      rgba(0, 0, 0, 0.0) 1px 3px
    ),
    /* top-left horizontal */
    linear-gradient(to right, #53fc18 0 18px, transparent 18px) top left,
    /* top-left vertical */
    linear-gradient(to bottom, #53fc18 0 18px, transparent 18px) top left,
    /* top-right horizontal */
    linear-gradient(to left, #53fc18 0 18px, transparent 18px) top right,
    /* top-right vertical */
    linear-gradient(to bottom, #53fc18 0 18px, transparent 18px) top right;

  background-size:
    auto,
    36px 3px, 3px 36px,
    36px 3px, 3px 36px;

  background-repeat:
    repeat,
    no-repeat, no-repeat,
    no-repeat, no-repeat;

  background-position:
    top left,
    top 0 left 0,
    top 0 left 0,
    top 0 right 0,
    top 0 right 0;

  mix-blend-mode: soft-light;
  opacity: 0.7;
}

/* ::after = bottom corners */
.pc-theme-pixel .pc-hero::after {
  background:
    /* bottom-left horizontal */
    linear-gradient(to right, #53fc18 0 18px, transparent 18px) bottom left,
    /* bottom-left vertical */
    linear-gradient(to top, #53fc18 0 18px, transparent 18px) bottom left,
    /* bottom-right horizontal */
    linear-gradient(to left, #53fc18 0 18px, transparent 18px) bottom right,
    /* bottom-right vertical */
    linear-gradient(to top, #53fc18 0 18px, transparent 18px) bottom right;

  background-size:
    36px 3px, 3px 36px,
    36px 3px, 3px 36px;

  background-repeat: no-repeat;
  background-position:
    bottom 0 left 0,
    bottom 0 left 0,
    bottom 0 right 0,
    bottom 0 right 0;
}

/* Ensure the fade sits under the scanlines */
.pc-theme-pixel .pc-hero-fade {
  z-index: 0;
}


/* Pixel: force pixelated sampling on the hero image */
.pc-theme-pixel .pc-hero-media {
  image-rendering: pixelated;
}




.pc-theme-kick.pc-card-root {
  /* …keep your existing vars/shadows here… */

  background:
    radial-gradient(circle at 50% -40%, rgba(83,252,24,0.18) 0, transparent 55%),
    radial-gradient(circle at 50% 120%, rgba(83,252,24,0.26) 0, transparent 65%),
    #000000; /* fully black base */
}




/* Kick: push the green crest down towards the hero/card seam */
.pc-theme-kick .pc-hero-fade {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.0) 0%,
    rgba(0, 0, 0, 0.0) 55%,        /* keep most of the hero clean */
    rgba(0, 0, 0, 0.35) 70%,       /* start darkening just above seam */
    rgba(6, 95, 32, 0.90) 95%,     /* bright Kick green right at the bottom */
    #000000 100%
  );
}


/* ==========================================================
   Kick / Pixel Theme – Hero HUD Corner Brackets
   ========================================================== */

.pc-theme-kick .pc-hero::before,
.pc-theme-pixel .pc-hero::before,
.pc-theme-kick .pc-hero::after,
.pc-theme-pixel .pc-hero::after {
  content: "";
  position: absolute;
  inset: 20px;
  pointer-events: none;
  z-index: 2;
}

/* TOP-LEFT + TOP-RIGHT corners */
.pc-theme-kick .pc-hero::before,
.pc-theme-pixel .pc-hero::before {
  background:
    /* top-left horizontal */
    linear-gradient(to right, #53fc18 0 18px, transparent 18px) top left,
    /* top-left vertical */
    linear-gradient(to bottom, #53fc18 0 18px, transparent 18px) top left,

    /* top-right horizontal */
    linear-gradient(to left, #53fc18 0 18px, transparent 18px) top right,
    /* top-right vertical */
    linear-gradient(to bottom, #53fc18 0 18px, transparent 18px) top right;

  background-size:
    38px 4px,   /* TL horizontal */
    4px 38px,   /* TL vertical */
    38px 4px,   /* TR horizontal */
    4px 38px;   /* TR vertical */

  background-repeat: no-repeat;
  background-position:
    top 0 left 0,
    top 0 left 0,
    top 0 right 0,
    top 0 right 0;
}

/* BOTTOM-LEFT + BOTTOM-RIGHT corners */
.pc-theme-kick .pc-hero::after,
.pc-theme-pixel .pc-hero::after {
  background:
    /* bottom-left horizontal */
    linear-gradient(to right, #53fc18 0 18px, transparent 18px) bottom left,
    /* bottom-left vertical */
    linear-gradient(to top, #53fc18 0 18px, transparent 18px) bottom left,

    /* bottom-right horizontal */
    linear-gradient(to left, #53fc18 0 18px, transparent 18px) bottom right,
    /* bottom-right vertical */
    linear-gradient(to top, #53fc18 0 18px, transparent 18px) bottom right;

  background-size:
    38px 4px,   /* BL horizontal */
    4px 38px,   /* BL vertical */
    38px 4px,   /* BR horizontal */
    4px 38px;   /* BR vertical */

  background-repeat: no-repeat;
  background-position:
    bottom 0 left 0,
    bottom 0 left 0,
    bottom 0 right 0,
    bottom 0 right 0;
}




/* BOTTOM-LEFT + BOTTOM-RIGHT corners */
.pc-theme-kick .pc-hero::after,
.pc-theme-pixel .pc-hero::after {
  background:
    /* bottom-left horizontal */
    linear-gradient(to right, #53fc18 0 18px, transparent 18px) bottom left,
    /* bottom-left vertical */
    linear-gradient(to top, #53fc18 0 18px, transparent 18px) bottom left,

    /* bottom-right horizontal */
    linear-gradient(to left, #53fc18 0 18px, transparent 18px) bottom right,
    /* bottom-right vertical */
    linear-gradient(to top, #53fc18 0 18px, transparent 18px) bottom right;

  background-size:
    38px 4px,   /* BL horizontal */
    4px 38px,   /* BL vertical */
    38px 4px,   /* BR horizontal */
    4px 38px;   /* BR vertical */

  background-repeat: no-repeat;
  background-position:
    bottom 0 left 0,
    bottom 0 left 0,
    bottom 0 right 0,
    bottom 0 right 0;
}


/* BOTTOM-LEFT + BOTTOM-RIGHT corners */
.pc-theme-kick .pc-hero::after {
  background:
    /* bottom-left horizontal */
    linear-gradient(to right, #53fc18 0 18px, transparent 18px) bottom left,
    /* bottom-left vertical */
    linear-gradient(to top, #53fc18 0 18px, transparent 18px) bottom left,

    /* bottom-right horizontal */
    linear-gradient(to left, #53fc18 0 18px, transparent 18px) bottom right,
    /* bottom-right vertical */
    linear-gradient(to top, #53fc18 0 18px, transparent 18px) bottom right;

  background-size:
    38px 4px,   /* BL horizontal */
    4px 38px,   /* BL vertical */
    38px 4px,   /* BR horizontal */
    4px 38px;   /* BR vertical */

  background-repeat: no-repeat;
  background-position:
    bottom 0 left 0,
    bottom 0 left 0,
    bottom 0 right 0,
    bottom 0 right 0;
}

/* ==========================================================
   Pixel theme – no rounded pills, everything has corners
   ========================================================== */

/* Card itself slightly squarer than default */
.pc-theme-pixel.pc-card-root {
  border-radius: 12px;
}

/* Avatar shell + avatar: square badge, square halo */
.pc-theme-pixel .pc-avatar-shell {
  width: 82px;
  height: 82px;
  border-radius: 8px;
  padding: 4px;
  background: linear-gradient(135deg, #020617, #111827);
  box-shadow:
    0 0 0 2px #020617,
    0 0 0 4px rgba(83,252,24,1),
    0 0 32px rgba(83,252,24,0.9),
    0 22px 46px rgba(0, 0, 0, 0.98);
}

.pc-theme-pixel .pc-avatar-shell::after {
  border-radius: 6px;
  filter: none;
  opacity: 1;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(83,252,24,0.45) 0 2px,
      transparent 2px 4px
    );
}

.pc-theme-pixel .pc-avatar,
.pc-theme-pixel .pc-avatar-placeholder {
  border-radius: 4px;
}

/* Social + stats “pills” become hard-edged chips */
.pc-theme-pixel .pc-social-pill,
.pc-theme-pixel .pc-stats-pill {
  border-radius: 0;
  box-shadow: 0 0 0 2px var(--pc-social-border, rgba(83,252,24,0.7));
}

/* Stats dot becomes a little square LED */
.pc-theme-pixel .pc-stats-dot {
  width: 6px;
  height: 6px;
  border-radius: 0;
  box-shadow: 0 0 0 2px var(--pc-stats-dot-ring);
}

/* Buttons: all shapes flattened */
.pc-theme-pixel .pc-button {
  border-radius: 0;
  box-shadow: none;
  border-width: 2px;
}

.pc-theme-pixel .pc-button--shape-pill,
.pc-theme-pixel .pc-button--shape-rounded,
.pc-theme-pixel .pc-button--shape-square {
  border-radius: 0 !important;
}


/* Kick: card body over pure black with green haze */
.pc-theme-kick .pc-main {
  background:
    radial-gradient(circle at 50% -10%, rgba(83,252,24,0.20), transparent 60%),
    radial-gradient(circle at 50% 130%, rgba(83,252,24,0.24), transparent 65%),
    #000000; /* base */
}

/* Kick + Pixel: perfect seam — lower green crest + longer dark fade */
.pc-theme-kick .pc-hero-fade,
.pc-theme-pixel .pc-hero-fade {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.0) 0%,      /* top stays clean */
    rgba(0, 0, 0, 0.0) 60%,     /* keep hero clean until deep into image */
    rgba(0, 0, 0, 0.40) 78%,    /* darker fade just above the seam */
    rgba(6, 95, 32, 0.95) 98%,  /* Kick green crest right AT the seam */
    #000000 100%                /* perfect black at seam */
  );
}


/* ==========================================================
   KICK PIXEL THEME – hard 8-bit variant of Kick
   ========================================================== */

.pc-theme-pixel.pc-card-root {
  /* Reuse Kick brand tokens */
  --kick-green: #53fc18;
  --kick-green-soft: rgba(83, 252, 24, 0.55);
  --kick-green-faint: rgba(83, 252, 24, 0.22);

  /* CARD BACKGROUND: visible pixel grid + Kick glow */
  --pc-card-bg:
    repeating-linear-gradient(
      90deg,
      #020202 0 2px,
      #020202 2px 3px,
      #050505 3px 5px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(83,252,24,0.18) 0 1px,
      transparent 1px 3px
    ),
    radial-gradient(circle at 50% -25%, rgba(83,252,24,0.26) 0, transparent 55%),
    radial-gradient(circle at 50% 125%, rgba(83,252,24,0.30) 0, transparent 65%),
    #000000;

  /* MAIN BODY: harsher CRT pattern under the content */
  --pc-main-bg:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.0) 0 2px,
      rgba(0,0,0,0.55) 2px 3px
    ),
    radial-gradient(circle at 50% 120%, rgba(83,252,24,0.28), #000000 70%);

  /* AVATAR: blocky badge + neon halo */
  --pc-avatar-bg:
    radial-gradient(circle at 50% 25%, #53fc18 0, #14532d 45%, #020617 100%);
  --pc-avatar-shadow:
    0 0 0 2px #020617,
    0 0 0 5px rgba(83,252,24,1),
    0 0 36px rgba(83,252,24,1),
    0 22px 46px rgba(0,0,0,0.98);

  /* SOCIAL / STATS: more “LED panel” than glass */
  --pc-social-bg:
    radial-gradient(circle at 0 0, rgba(15,23,42,0.95), #020617 80%);
  --pc-social-border: rgba(83,252,24,0.9);

  --pc-stats-bg:
    radial-gradient(circle at 0 0, rgba(83,252,24,0.5), rgba(15, 23, 42, 0.98));
  --pc-stats-border: rgba(83,252,24,1);
  --pc-stats-dot: #53fc18;
  --pc-stats-dot-ring: rgba(83,252,24,0.85);

  /* CTA buttons: flat, chunky, high-contrast */
  --pc-button-bg:
    linear-gradient(to bottom, #020617, #000000);
  --pc-button-border: rgba(83,252,24,1);
  --pc-button-color: #eaffea;

  /* Shape + shadow: much squarer, more “UI window” than card */
  border-radius: 18px;
  box-shadow:
    0 0 0 2px rgba(83,252,24,0.9),
    0 0 32px rgba(83,252,24,0.55);
}

/* Pixel theme: aggressively pixelate key surfaces */
.pc-theme-pixel .pc-main,
.pc-theme-pixel .pc-hero-media,
.pc-theme-pixel .pc-avatar,
.pc-theme-pixel .pc-button {
  image-rendering: pixelated;
}

/* Pixel theme: square up a few elements so it reads 8-bit immediately */
.pc-theme-pixel .pc-avatar {
  border-radius: 12px;
}

.pc-theme-pixel .pc-button {
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* If you want the frame itself to feel 8-bit when Pixel is active */
.pc-theme-pixel.pc-card-root.pc-card-pixel {
  outline: 3px solid var(--kick-green, #53fc18);

  /* Ensure column spacing in editor preview matches public profile */
.pc-buttons-column {
  display: flex;
  flex-direction: column;
  gap: 12px; /* matches public layout */
  width: 100%;
}

}

/* Unified button tiles (MD / LG with images) */
.pc-button-tile {
    display: block;
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* MD and LG shared heights */
.pc-button-tile--md {
    height: 140px;
}

.pc-button-tile--lg {
    height: 220px;
}

.pc-button-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.pc-button-label {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

/* ===========================
   ACCENT COLOUR OVERRIDES
   =========================== */

/* Accent on BUTTON: tweak border colour for pills and tiles */
.pc-button[data-accent-target="button"],
.pc-button-tile[data-accent-target="button"] {
  border-color: var(--pc-button-accent);
}

/* Accent on LABEL/TITLE: tint the text */
.pc-button[data-accent-target="label"] {
  color: var(--pc-button-accent);
}

.pc-button-tile[data-accent-target="label"] .pc-button-label {
  color: var(--pc-button-accent);
}


/* Fix LG featured image tiles – match editor preview radius */
.pc-button--featured.pc-button--shape-pill {
  border-radius: 16px; /* same as .pc-button-tile */
}

/* ===========================================
   Button accent (data-accent-target + var)
   =========================================== */

/* Accent on TITLE / LABEL */
.pc-button[data-accent-target="label"] {
  color: var(--accent-color);
}

/* Tiles: label inside overlay */
.pc-button-tile[data-accent-target="label"] .pc-button-label {
  color: var(--accent-color);
}

/* Accent on BUTTON background for pills */
.pc-button[data-accent-target="button"] {
  background-color: var(--accent-color);
  color: #020617; /* dark text on bright accent */
}

/* Accent on BUTTON for image tiles: tint the overlay band */
.pc-button-tile[data-accent-target="button"] .pc-button-overlay {
  background: linear-gradient(
    to top,
    var(--accent-color),
    transparent 60%
  );
}

/* Editor-only styling for the "+" add-button tile on the card */
.pe-preview-root .pc-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pe-preview-root .pc-button--add {
  border: 1px dashed rgba(148, 163, 184, 0.7); /* slate-400-ish */
  background: transparent;
  color: rgba(148, 163, 184, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-size: 0.875rem;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    color 0.15s ease,
    background-color 0.15s ease,
    transform 0.08s ease;
}

.pe-preview-root .pc-button--add:hover {
  border-color: rgba(52, 211, 153, 0.9); /* emerald-ish */
  color: #a7f3d0;
  background: rgba(15, 23, 42, 0.7);
  transform: translateY(-1px);
}

.pe-preview-root .pc-button-add-icon {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.pe-preview-root .pc-button-add-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Stats breakdown flip */
.pc-stats-row {
  position: relative;
}

/* Hint text on the pill */
.pc-stats-pill-hint {
  margin-left: auto;
  font-size: 0.7rem;
  opacity: 0.7;
}

/* Breakdown base styling (always visible in editor preview, see JS) */
.pc-stats-breakdown {
  margin-top: 0.5rem;
  padding: 0.6rem 0.8rem;
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.9);        /* slate-900ish */
  border: 1px solid rgba(148, 163, 184, .35); /* slate-400/35 */
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Only rows tagged as "has-breakdown" participate in the flip */
.pc-stats-row.pc-stats-row--has-breakdown .pc-stats-breakdown {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-4px);
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    max-height 0.18s ease,
    transform 0.16s ease;
}

.pc-stats-row.pc-stats-row--has-breakdown.pc-stats-row--open .pc-stats-breakdown {
  opacity: 1;
  max-height: 240px;
  transform: translateY(0);
  pointer-events: auto;
}

.pc-stats-breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.pc-stats-breakdown-label {
  color: #cbd5f5; /* slate-200/blue-200 */
}

.pc-stats-breakdown-value {
  font-variant-numeric: tabular-nums;
}

.pc-stats-breakdown-pct {
  opacity: 0.7;
  margin-left: 0.25rem;
}


/* Center the stats pill horizontally on the card */
.pc-stats-row {
  display: flex;
  justify-content: center;
}

/* Make sure nothing weird is pushing it left/right */
.pc-stats-pill {
  margin-inline: 0;
}

/* --- STATS LAYOUT OVERRIDE --- */

/* The row is a vertical stack: pill, then (optional) breakdown */
.pc-stats-row {
  display: flex;
  flex-direction: column;
  align-items: center;    /* horizontally centre the pill */
  margin-bottom: 0.75rem;
}

/* Make sure the pill itself is centred and not stretched weirdly */
.pc-stats-pill,
.pc-stats-pill-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

/* Give a little gap between pill and breakdown when open */
.pc-stats-row .pc-stats-breakdown {
  width: 100%;
  max-width: 260px;      /* keeps it neat under the pill */
  margin-top: 0.5rem;
}

/* Flip behaviour (unchanged, but based on new layout) */
.pc-stats-row.pc-stats-row--has-breakdown .pc-stats-breakdown {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-4px);
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    max-height 0.18s ease,
    transform 0.16s ease;
}

.pc-stats-row.pc-stats-row--has-breakdown.pc-stats-row--open .pc-stats-breakdown {
  opacity: 1;
  max-height: 240px;
  transform: translateY(0);
  pointer-events: auto;
}

/* ============================
 * Sponsors strip (shared)
 * ============================ */

.pc-sponsors {
  margin-top: 1.5rem;
}

.pc-sponsors-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pc-title-color, rgba(255, 255, 255, 0.9));
  opacity: 0.95;
  margin-bottom: 0.5rem;
}


/* Stack sponsors vertically */
.pc-sponsors-strip {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Base sponsor tile */
.pc-sponsor-pill {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.75);
}

/* Shared logo base */
.pc-sponsor-logo {
  display: block;
  width: 100%;
  object-fit: cover;
}

/* Logo heights per size */
.pc-sponsor-logo-sm {
  height: 140px;
}

.pc-sponsor-logo-md {
  height: 190px;
}

.pc-sponsor-logo-lg {
  height: 240px;
}

@media (min-width: 480px) {
  .pc-sponsor-logo-sm {
    height: 160px;
  }
  .pc-sponsor-logo-md {
    height: 210px;
  }
  .pc-sponsor-logo-lg {
    height: 260px;
  }
}

/* Sponsor name overlay */
.pc-sponsor-name {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* ============================
 * Tip Jar
 * ============================ */

.pc-tipjar {
  margin-top: 1.5rem;
}

.pc-tipjar-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pc-title-color, #fff);
  margin-bottom: 0.75rem;
}

/* Stack buttons and make them truly full width */
.pc-tipjar-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pc-tipjar-buttons > a.pc-button {
  display: block;        /* override inline-flex from .pc-button */
  width: 100%;
  max-width: none;       /* kill any 50% max-width nonsense */
  text-align: center;
}

/* ============================
 * Contact block
 * ============================ */

.pc-contact {
  margin-top: 1.5rem;
}

.pc-contact-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pc-title-color, #fff);
  margin-bottom: 0.35rem;
}

.pc-contact-text {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.75rem;
}

.pc-contact-form {
  display: flex;
  gap: 0.5rem;
}

.pc-contact-input {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}

.pc-contact-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.pc-contact-button {
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  background: var(--pc-button-bg, rgba(255, 255, 255, 0.12));
  color: var(--pc-button-color, #fff);
}

.pc-contact-feedback {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(144, 238, 144, 0.92);
}














