:root {
  --px-bg: #0c0f14;
  --px-bg-elevated: #141a22;
  --px-surface: #1a222d;
  --px-border: rgba(212, 165, 116, 0.22);
  --px-text: #f2ebe3;
  --px-text-muted: #a8b0bc;
  --px-accent: #d4a574;
  --px-accent-alt: #e8c49a;
  --px-coral: #c96b52;
  --px-nav: #10151c;
  --px-topbar: #060a12;
  --px-font: "Manrope", system-ui, sans-serif;
  --px-display: "Cormorant Garamond", Georgia, serif;
  --px-radius: 10px;
  --px-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --px-bg-white: #ffffff;
  --px-heading-on-light: #12171f;
  --px-text-on-light: #2e3640;
  --px-text-muted-on-light: #5a6370;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--px-font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--px-text);
  background: var(--px-bg) !important;
  background-image:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(201, 107, 82, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 10%, rgba(212, 165, 116, 0.07), transparent 50%) !important;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.px-surface-light h1,
.px-surface-light h2,
.px-surface-light h3,
.px-surface-light .px-page-title,
.px-surface-light .px-section-title,
.px-surface-light .px-listing-title,
.px-surface-light .px-feature-title,
.px-surface-light .px-footer-rg-title,
.px-surface-light .px-gate-title,
.px-surface-light .px-cookie-title {
  color: var(--px-heading-on-light);
}

#root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  background-color: var(--px-bg);
}

a {
  color: var(--px-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--px-accent-alt);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.px-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .px-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
