:root {
  --pg-bg-main: #f8fafc;
  --pg-bg-soft: #f1f5f9;
  --pg-bg-card: rgba(255, 255, 255, 0.72);
  --pg-bg-card-strong: rgba(255, 255, 255, 0.92);

  --pg-text-main: #0f172a;
  --pg-text-soft: #334155;
  --pg-text-muted: #64748b;
  --pg-text-faint: #94a3b8;

  --pg-border-soft: rgba(15, 23, 42, 0.08);
  --pg-border-strong: rgba(15, 23, 42, 0.14);

  --pg-cyan: #00cfe8;
  --pg-blue: #3b82f6;
  --pg-violet: #8b5cf6;

  --pg-glass-bg: rgba(255, 255, 255, 0.72);
  --pg-glass-bg-hover: rgba(255, 255, 255, 0.96);
  --pg-glass-blur: 30px;

  --pg-shadow-soft: 0 20px 40px -15px rgba(15, 23, 42, 0.10);
  --pg-shadow-hover: 0 30px 60px -20px rgba(15, 23, 42, 0.16);

  --pg-radius-md: 16px;
  --pg-radius-lg: 22px;
  --pg-radius-xl: 28px;

  --pg-font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --pg-font-ui: "Inter", system-ui, sans-serif;
  --pg-font-serif: "Lora", Georgia, serif;
}

body {
  margin: 0;
  font-family: var(--pg-font-ui);
  background-color: var(--pg-bg-main);
  color: var(--pg-text-main);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.font-display {
  font-family: var(--pg-font-display);
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0;
  color: var(--pg-text-main);
}

.pg-article-content {
  font-family: var(--pg-font-serif);
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--pg-text-soft);
}

.pg-article-content h1,
.pg-article-content h2,
.pg-article-content h3,
.pg-article-content h4,
.pg-article-content h5,
.pg-article-content h6 {
  font-family: var(--pg-font-display);
  color: var(--pg-text-main);
  margin-top: 2em;
  margin-bottom: 0.75em;
  line-height: 1.3;
}

.pg-article-content p {
  margin-bottom: 1.5em;
}

/* Typography Utilities */
.font-display { font-family: var(--pg-font-display); }
.font-ui { font-family: var(--pg-font-ui); }
.font-serif { font-family: var(--pg-font-serif); }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

a {
  color: var(--pg-blue);
  text-decoration: none;
}

a:hover {
  color: var(--pg-cyan);
}

.pg-container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.pg-container-wide {
  width: min(100% - 48px, 1360px);
  margin-inline: auto;
}

/* Gradients and Animations */
.text-gradient,
.text-animated-gradient {
  background: linear-gradient(to right, var(--pg-cyan), var(--pg-blue), var(--pg-violet), var(--pg-cyan));
  background-size: 200% auto;
  animation: flowGradient 3s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes flowGradient {
  to { background-position: 200% center; }
}

.pg-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pg-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pg-site-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 207, 232, 0.18), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(139, 92, 246, 0.16), transparent 30%),
    radial-gradient(circle at 50% 86%, rgba(59, 130, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.pg-bg-stars {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    radial-gradient(circle, rgba(15, 23, 42, 0.12) 1px, transparent 1.4px),
    radial-gradient(circle, rgba(15, 23, 42, 0.08) 1px, transparent 1.2px);
  background-size: 120px 120px, 220px 220px;
  background-position: 0 0, 60px 80px;
}

.pg-bg-nebula {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 207, 232, 0.16), transparent 34%),
    radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.14), transparent 32%);
  filter: blur(80px);
  opacity: 0.9;
}

/* Page Layouts */
.pg-single-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-block: 60px;
}

.pg-single-layout.has-sidebar {
  grid-template-columns: 8fr 4fr;
}

.pg-sidebar .glass-card {
  padding: 32px;
}

.page-header {
  text-align: center;
  padding-block: 60px;
  margin-bottom: 40px;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* 404 Page Styles */
.pg-404-page {
  position: relative;
  overflow: hidden;
}

.pg-404-hero {
  position: relative;
  min-height: calc(100vh - var(--pg-header-height, 80px));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 20px 64px;
}

.pg-404-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: auto;
}

.pg-404-code {
  margin: 0 0 16px;
  font-size: clamp(7rem, 22vw, 14rem);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: transparent;
  background: linear-gradient(to bottom, #ffffff, rgba(255,255,255,0.04));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.08));
  user-select: none;
}

.pg-404-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(161, 54, 255, 0.22);
  background: rgba(161, 54, 255, 0.10);
  color: var(--pg-violet);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 22px rgba(161, 54, 255, 0.18);
}

.pg-404-title {
  margin: 0 0 18px;
  color: var(--pg-text-main);
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.pg-404-description {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--pg-text-muted);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 500;
}

.pg-404-search {
  position: relative;
  display: flex;
  gap: 10px;
  max-width: 620px;
  margin: 0 auto 28px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(20px);
}

.pg-404-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 12px 18px;
  font-size: 0.95rem;
}

.pg-404-search button {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  background: linear-gradient(to right, var(--pg-cyan), var(--pg-blue), var(--pg-violet));
  color: #010204;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.pg-404-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pg-404-aura {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(58vw, 420px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(161, 54, 255, 0.20);
  filter: blur(100px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.pg-404-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.035);
  pointer-events: none;
}

.pg-404-orbit--sm {
  width: min(72vw, 500px);
  aspect-ratio: 1;
}

.pg-404-orbit--lg {
  width: min(95vw, 760px);
  aspect-ratio: 1;
}

.pg-404-suggestions {
  padding: 24px 20px 88px;
}

@media (max-width: 768px) {
  .pg-404-hero {
    min-height: auto;
    padding-top: 72px;
  }

  .pg-404-search {
    border-radius: 24px;
    flex-direction: column;
    padding: 10px;
  }

  .pg-404-search button,
  .pg-404-actions .pg-btn {
    width: 100%;
    min-height: 44px;
  }

  .pg-404-badge {
    letter-spacing: 0.18em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pg-404-aura,
  .pg-404-orbit {
    animation: none !important;
  }
}

/* Header Styles */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  height: 80px;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--pg-border-soft);
}
.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.site-branding .site-title-link {
  font-size: 1.5rem;
  font-family: var(--pg-font-display);
  font-weight: 900;
  letter-spacing: -0.05em;
  font-style: italic;
  background: linear-gradient(to right, var(--pg-cyan), var(--pg-blue), var(--pg-violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}
.main-navigation ul {
  display: none;
}
@media (min-width: 1024px) {
  .main-navigation ul {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pg-text-soft);
  }
  .main-navigation a {
    color: inherit;
    text-decoration: none;
    padding: 16px 0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .main-navigation a:hover {
    color: var(--pg-cyan);
    transform: translateY(-2px);
  }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pg-auth-btn {
  display: none;
}
@media (min-width: 768px) {
  .pg-auth-btn {
    display: flex;
    padding: 10px 32px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
    transition: transform 0.3s;
  }
  .pg-auth-btn:hover {
    transform: scale(1.05);
  }
}
.menu-toggle {
  background: var(--pg-bg-soft);
  border: 1px solid var(--pg-border-soft);
  color: var(--pg-text-soft);
  padding: 8px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  transition: all 0.3s;
}
.menu-toggle:hover {
  background: rgba(15, 23, 42, 0.08);
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

/* Progress Bar */
#pg-progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0,0,0,0.05);
  display: none;
}
.single-post #pg-progress-container {
  display: block;
}
#pg-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, var(--pg-cyan), var(--pg-violet));
  transition: width 0.1s;
}

/* Mobile Drawer */
.pg-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: flex;
  pointer-events: none;
}
.pg-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.pg-drawer-panel {
  position: relative;
  margin-left: auto;
  width: 85%;
  max-width: 384px;
  height: 100%;
  background: #fff;
  border-left: 1px solid var(--pg-border-soft);
  display: flex;
  flex-direction: column;
  padding: 32px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
  box-shadow: -20px 0 50px rgba(0,0,0,0.1);
}
.pg-mobile-drawer[aria-hidden="false"] {
  pointer-events: auto;
}
.pg-mobile-drawer[aria-hidden="false"] .pg-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}
.pg-mobile-drawer[aria-hidden="false"] .pg-drawer-panel {
  transform: translateX(0);
}
.pg-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--pg-bg-soft);
}
.pg-drawer-logo {
  font-size: 1.5rem;
  font-family: var(--pg-font-display);
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(to right, var(--pg-cyan), var(--pg-blue), var(--pg-violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}
.pg-drawer-close {
  background: var(--pg-bg-main);
  border: none;
  color: var(--pg-text-faint);
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.pg-drawer-close:hover {
  color: var(--pg-text-main);
  transform: rotate(90deg);
}
.pg-drawer-nav {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pg-drawer-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pg-text-faint);
  margin: 0 0 8px 16px;
}
.pg-drawer-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.pg-drawer-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  color: var(--pg-text-soft);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.pg-drawer-menu a:hover {
  background: var(--pg-bg-main);
  color: var(--pg-text-main);
  transform: scale(1.02);
}
.pg-drawer-footer {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--pg-bg-soft);
}
.pg-drawer-cta {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
}

/* Footer Styles */
.site-footer {
  position: relative;
  margin-top: 80px;
  background: var(--pg-bg-soft);
  border-top: 1px solid var(--pg-border-soft);
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 40px;
}
.pg-footer-nebula {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 400px;
  background: rgba(161, 54, 255, 0.1);
  filter: blur(180px);
  border-radius: 50%;
  pointer-events: none;
}
.pg-footer-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .pg-footer-grid {
    grid-template-columns: 4fr 2fr 2fr 4fr;
    gap: 32px;
  }
}
.pg-footer-logo {
  font-size: 2.25rem;
  font-family: var(--pg-font-display);
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(to right, var(--pg-cyan), var(--pg-blue), var(--pg-violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 24px;
  text-decoration: none;
}
.pg-footer-desc {
  color: var(--pg-text-soft);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.625;
  margin-bottom: 32px;
}
.pg-footer-social {
  display: flex;
  gap: 16px;
}
.pg-footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--pg-border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pg-text-faint);
  transition: all 0.3s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.pg-footer-social-link:hover {
  transform: translateY(-4px);
}
.pg-social-facebook:hover { color: var(--pg-blue); border-color: rgba(59, 130, 246, 0.5); background: rgba(59, 130, 246, 0.05); }
.pg-social-youtube:hover { color: #ef4444; border-color: rgba(239, 68, 68, 0.5); background: rgba(239, 68, 68, 0.05); }
.pg-social-tiktok:hover { color: var(--pg-text-main); border-color: rgba(15, 23, 42, 0.5); background: rgba(15, 23, 42, 0.05); }

.pg-footer-col-title {
  color: var(--pg-text-main);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.pg-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pg-footer-links a {
  color: var(--pg-text-soft);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
.pg-footer-links a:hover {
  color: var(--pg-cyan);
}
.pg-footer-newsletter-desc {
  color: var(--pg-text-soft);
  font-size: 0.875rem;
  margin-bottom: 24px;
}
.pg-footer-newsletter-form {
  display: flex;
  position: relative;
}
.pg-footer-email-input {
  width: 100%;
  padding: 16px 48px 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--pg-border-soft);
  background: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.3s;
}
.pg-footer-email-input:focus {
  border-color: var(--pg-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}
.pg-footer-send-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--pg-bg-main);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pg-text-main);
  cursor: pointer;
  transition: all 0.3s;
}
.pg-footer-send-btn:hover {
  background: var(--pg-cyan);
  color: #fff;
}

.pg-footer-bottom {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--pg-border-soft);
}
@media (min-width: 768px) {
  .pg-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.pg-footer-copyright {
  color: var(--pg-text-faint);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pg-footer-legal {
  display: flex;
  gap: 24px;
}
.pg-footer-legal a {
  color: var(--pg-text-faint);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.3s;
}
.pg-footer-legal a:hover {
  color: var(--pg-text-main);
}

/* Auth Chatbox */
.pg-auth-chatbox {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 420px;
  max-width: calc(100vw - 40px);
  height: 550px;
  z-index: 1100;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.95);
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--pg-border-soft);
  border-radius: var(--pg-radius-xl);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  overflow: hidden;
}
.pg-auth-chatbox.active {
  display: flex;
}
@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.pg-chatbox-header {
  padding: 24px;
  border-bottom: 1px solid var(--pg-bg-soft);
  background: rgba(248, 250, 252, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pg-chatbox-agent {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pg-chatbox-agent-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 207, 232, 0.1);
  border: 1px solid rgba(0, 207, 232, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pg-cyan);
  position: relative;
  background-color: #fff;
}
.pg-chatbox-online-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: pulse 2s infinite;
}
.pg-chatbox-agent-name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pg-cyan);
  letter-spacing: 0.1em;
  margin: 0;
}
.pg-chatbox-agent-status {
  font-size: 9px;
  font-weight: 700;
  color: var(--pg-text-muted);
  margin: 0;
}
.pg-chatbox-close {
  background: none;
  border: none;
  color: var(--pg-text-faint);
  cursor: pointer;
  transition: all 0.3s;
}
.pg-chatbox-close:hover {
  color: var(--pg-text-main);
  transform: rotate(90deg);
}
.pg-chatbox-body {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.pg-chatbox-message {
  padding: 16px;
  background: var(--pg-bg-main);
  border: 1px solid var(--pg-bg-soft);
  border-radius: 16px;
  border-top-left-radius: 0;
  font-size: 0.875rem;
  color: var(--pg-text-soft);
  font-weight: 500;
  line-height: 1.6;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
  animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.pg-chatbox-footer {
  padding: 32px;
  border-top: 1px solid var(--pg-bg-soft);
  background: rgba(248, 250, 252, 0.8);
}
.pg-chatbox-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.pg-chatbox-btn {
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--pg-border-soft);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pg-text-soft);
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.pg-chatbox-btn:first-child:hover {
  border-color: var(--pg-cyan);
  color: var(--pg-cyan);
  background: rgba(0, 207, 232, 0.05);
}
.pg-chatbox-btn:last-child:hover {
  border-color: var(--pg-violet);
  color: var(--pg-violet);
  background: rgba(139, 92, 246, 0.05);
}
.pg-chatbox-btn:active {
  transform: scale(0.95);
}
.pg-chatbox-input-wrap {
  position: relative;
}
.pg-chatbox-email-input {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--pg-border-strong);
  background: rgba(0, 0, 0, 0.03);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pg-text-main);
  outline: none;
  transition: all 0.3s;
}
.pg-chatbox-email-input:focus {
  background: #fff;
  border-color: var(--pg-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}
@media (max-width: 768px) {
  .pg-auth-chatbox {
    bottom: 20px;
    right: 20px;
  }
}

