
:root {
  --bg: #f6f8fb;
  --bg-soft: #ffffff;
  --ink: #0f1728;
  --muted: #586174;
  --line: rgba(15, 23, 40, 0.10);
  --dark: #101318;
  --blue: #1d9bf0;
  --green: #19c37d;
  --pink: #ff5ea8;
  --yellow: #ffd65b;
  --shadow: 0 24px 60px rgba(16, 19, 24, 0.10);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 14% 20%, rgba(50, 191, 255, 0.18), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(167, 99, 255, 0.17), transparent 26%),
    radial-gradient(circle at 86% 72%, rgba(255, 112, 168, 0.14), transparent 22%),
    linear-gradient(180deg, #020617 0%, #040a18 42%, #02040d 100%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.top-bar {
  display: none;
}

.header-shell {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  flex: 0 0 auto;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.80) 12%, transparent 12% 88%, rgba(255,255,255,0.80) 88%) center/14px 14px,
    linear-gradient(0deg, rgba(255,255,255,0.80) 12%, transparent 12% 88%, rgba(255,255,255,0.80) 88%) center/14px 14px,
    linear-gradient(135deg, var(--dark), var(--blue), var(--pink));
  box-shadow: 0 12px 28px rgba(16, 19, 24, 0.18);
}

.brand-text {
  min-width: 0;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a,
.small-button,
.ghost-button,
.cta-button {
  text-decoration: none;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a[aria-current="page"],
.main-nav a:hover {
  color: var(--ink);
  background: rgba(15, 23, 40, 0.06);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--dark);
  color: white;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(16, 19, 24, 0.18);
  cursor: pointer;
  font: inherit;
}

.cta-button.large {
  padding: 15px 22px;
}

.ghost-button,
.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  color: var(--ink);
  border: 1px solid var(--line);
  font-weight: 800;
}

.small-button {
  padding: 10px 14px;
}

.hero,
.page-shell,
.notice-strip,
.board-section,
.mini-grid,
.site-footer {
  width: min(1220px, calc(100% - 28px));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr;
  gap: 28px;
  align-items: center;
  padding: 38px 0 18px;
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 12px;
}

.hero h1,
.page-intro h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.hero-text,
.page-intro p {
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 760px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.80);
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.hero-card,
.panel,
.notice-strip,
.mini-card {
  background: rgba(255,255,255,0.90);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 16px;
  display: grid;
  gap: 14px;
}

.hero-stat {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(29, 155, 240, 0.10), rgba(255, 94, 168, 0.08));
  border: 1px solid rgba(15, 23, 40, 0.06);
}

.hero-stat strong {
  font-size: 32px;
  letter-spacing: -0.06em;
}

.hero-stat span {
  color: var(--muted);
  font-weight: 800;
}

.notice-strip {
  margin-top: 14px;
  margin-bottom: 18px;
  padding: 14px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.notice-strip strong {
  color: var(--ink);
}

.board-section {
  margin-top: 0;
  margin-bottom: 36px;
}

.board-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 14px;
}

.board-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.05em;
}

.board-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.board-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.pixel-board {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to right, rgba(15,23,40,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,40,0.05) 1px, transparent 1px),
    linear-gradient(to right, rgba(15,23,40,0.11) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,40,0.11) 1px, transparent 1px);
  background-size: 1% 1%, 1% 1%, 10% 10%, 10% 10%;
}

.pixel-ad {
  position: absolute;
  display: block;
  border: 1px solid rgba(0,0,0,0.14);
}

.pixel-ad:hover {
  outline: 3px solid var(--blue);
  z-index: 10;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 54px;
}

.mini-card {
  padding: 22px;
}

.mini-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-shell {
  padding: 34px 0 54px;
}

.page-shell.narrow {
  max-width: 820px;
}

.page-intro {
  margin-bottom: 24px;
}

.form-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.panel {
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 900;
  color: var(--ink);
}

input,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29, 155, 240, 0.12);
}

.field-help {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.preview-card {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 4px 0 20px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
}

.colour-preview {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #000000;
  border: 1px solid var(--line);
  flex: 0 0 auto;
}

.preview-meta strong,
.preview-meta span {
  display: block;
}

.preview-meta span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.price-box {
  margin: 8px 0 20px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--dark), var(--blue), var(--pink));
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.price-box span {
  color: rgba(255,255,255,0.76);
  font-weight: 800;
}

.price-box strong {
  font-size: 34px;
  letter-spacing: -0.06em;
}

.check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  line-height: 1.5;
  color: var(--ink);
}

.check input {
  width: auto;
  margin-top: 2px;
}

.submit-button {
  width: 100%;
  margin-top: 8px;
}

.side-panel h2,
.legal-page h2 {
  margin: 0 0 12px;
  letter-spacing: -0.04em;
}

.side-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.side-note {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(29, 155, 240, 0.08);
  border: 1px solid rgba(29, 155, 240, 0.14);
}

.side-note.soft {
  background: rgba(255, 94, 168, 0.08);
  border-color: rgba(255, 94, 168, 0.14);
}

.side-note strong {
  display: block;
  margin-bottom: 8px;
}

.side-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.accordion {
  padding: 12px;
}

.accordion details {
  margin: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: white;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(29, 155, 240, 0.10);
  color: var(--blue);
  font-weight: 900;
}

.accordion details[open] summary::after {
  content: "–";
  color: white;
  background: var(--ink);
}

.accordion p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.table-wrap {
  overflow-x: auto;
}

.pixel-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.pixel-table th,
.pixel-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.pixel-table th {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.empty-table {
  text-align: center !important;
  color: var(--muted);
}

.inline-colour {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 6px;
  border: 1px solid var(--line);
  vertical-align: -3px;
}

.legal-page p {
  color: var(--muted);
  line-height: 1.7;
}

.company-list {
  margin: 0;
}

.company-list dt {
  margin-top: 18px;
  font-weight: 900;
}

.company-list dt:first-child {
  margin-top: 0;
}

.company-list dd {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  min-width: 0;
}

.footer-left strong {
  color: var(--ink);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
}

.footer-links a {
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}

@media (max-width: 980px) {
  .header-shell,
  .hero,
  .form-layout,
  .mini-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .header-shell {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .main-nav {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
  }

  .hero {
    display: grid;
  }

  .mini-grid {
    display: grid;
  }

  .form-layout {
    display: grid;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {

  .hero {
    padding-top: 24px;
  }

  .hero-text,
  .page-intro p {
    font-size: 16px;
  }

  .board-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .preview-card,
  .hero-stat,
  .price-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-box strong {
    font-size: 30px;
  }

  .main-nav a {
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .header-shell,
  .hero,
  .page-shell,
  .notice-strip,
  .board-section,
  .mini-grid,
  .site-footer {
    width: min(100% - 18px, 1220px);
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 11px;
  }

  .cta-button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-points {
    flex-direction: column;
  }

  .hero-points span {
    width: 100%;
    justify-content: center;
  }

  .panel {
    padding: 18px;
  }

  .accordion {
    padding: 6px;
  }

  .accordion details {
    margin: 8px;
  }

  .pixel-table {
    min-width: 640px;
  }
}

.wall-summary {
  width: min(1220px, calc(100% - 28px));
  margin: 14px auto 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.wall-summary strong {
  color: var(--ink);
  font-weight: 900;
}

.wall-summary span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-left: 1px solid var(--line);
  padding-left: 10px;
}

.wall-summary b {
  color: var(--ink);
}

.board-section.wall-first {
  margin-top: 0;
}

.board-heading.compact {
  margin-bottom: 10px;
}

.board-heading.compact h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.board-heading.compact p {
  margin-top: 6px;
}

@media (max-width: 720px) {
  .wall-summary {
    margin-top: 10px;
    font-size: 12px;
    gap: 7px;
  }

  .wall-summary span {
    border-left: 0;
    padding-left: 0;
  }

  .board-heading.compact {
    gap: 10px;
  }
}

.form-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.location-fieldset {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 18px 4px;
  margin: 0 0 20px;
}

.location-fieldset legend {
  padding: 0 8px;
  font-weight: 900;
  color: var(--ink);
}

.mini-wall-picker {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.mini-wall {
  position: relative;
  width: 150px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(15,23,40,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,40,0.08) 1px, transparent 1px),
    #ffffff;
  background-size: 10% 10%;
}

.mini-selection {
  position: absolute;
  min-width: 2px;
  min-height: 2px;
  background: #000000;
  border: 1px solid var(--ink);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.8);
}

.mini-selection.overlap {
  outline: 2px solid var(--red, #f4212e);
}

.mini-wall-help strong,
.mini-wall-help span {
  display: block;
}

.mini-wall-help strong {
  font-weight: 900;
  color: var(--ink);
}

.mini-wall-help strong.selection-warning {
  color: var(--red, #f4212e);
}

.mini-wall-help span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 720px) {
  .form-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-wall-picker {
    grid-template-columns: 1fr;
  }

  .mini-wall {
    width: 100%;
    max-width: 240px;
  }
}

@media (max-width: 420px) {
  .form-grid.four {
    grid-template-columns: 1fr;
  }
}

/* millionpixels.space theme */
:root {
  --bg: #070915;
  --bg-soft: #11172c;
  --ink: #f7fbff;
  --muted: #aeb9d8;
  --line: rgba(255, 255, 255, 0.13);
  --dark: #050711;
  --blue: #56d7ff;
  --green: #7cf7d4;
  --pink: #b86cff;
  --yellow: #ffe66d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(86, 215, 255, 0.23), transparent 28%),
    radial-gradient(circle at 86% 6%, rgba(184, 108, 255, 0.24), transparent 26%),
    radial-gradient(circle at 72% 78%, rgba(124, 247, 212, 0.16), transparent 30%),
    radial-gradient(circle at 20% 84%, rgba(255, 230, 109, 0.08), transparent 24%),
    linear-gradient(180deg, #050711 0%, #080b1a 46%, #0d1024 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.90) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(86,215,255,0.85) 0 1px, transparent 1.5px),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 90px 90px, 130px 130px, 32px 32px, 32px 32px;
  background-position: 14px 18px, 55px 70px, 0 0, 0 0;
  z-index: -1;
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 17, 0.78);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.top-bar {
  color: #ffffff;
  background: linear-gradient(90deg, #050711, #17265d 34%, #6536b8 70%, #050711);
}

.brand-mark {
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 28%, #ffffff 0 3px, transparent 3.5px),
    radial-gradient(circle at 68% 64%, #7cf7d4 0 3px, transparent 3.5px),
    linear-gradient(90deg, rgba(255,255,255,0.20) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.20) 1px, transparent 1px),
    linear-gradient(135deg, #050711, #152662, #5d2cae, #1ec8d8);
  background-size: auto, auto, 12px 12px, 12px 12px, auto;
  box-shadow: 0 0 24px rgba(86, 215, 255, 0.30), 0 18px 34px rgba(0, 0, 0, 0.36);
}

.brand strong {
  color: #ffffff;
  letter-spacing: -0.05em;
}

.brand small,
.board-heading p,
.hero-text,
.page-intro p,
.field-help,
.side-panel ul,
.side-note p,
.accordion p,
.legal-page p,
.company-list dd,
.footer-left,
.wall-summary,
.empty-table,
.preview-meta span,
.mini-card p,
.hero-stat span {
  color: var(--muted);
}

.main-nav a {
  color: #c2cbea;
}

.main-nav a[aria-current="page"],
.main-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
}

.cta-button {
  background: linear-gradient(135deg, #56d7ff, #8d6cff 48%, #7cf7d4);
  color: #050711;
  box-shadow: 0 16px 36px rgba(86, 215, 255, 0.22), 0 10px 28px rgba(0, 0, 0, 0.35);
}

.ghost-button,
.small-button {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border-color: var(--line);
}

.hero-card,
.panel,
.notice-strip,
.mini-card,
.preview-card {
  background: linear-gradient(180deg, rgba(17, 23, 44, 0.92), rgba(10, 14, 30, 0.92));
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
}

.hero-stat,
.side-note {
  background: linear-gradient(135deg, rgba(86, 215, 255, 0.12), rgba(184, 108, 255, 0.10));
  border-color: rgba(86, 215, 255, 0.20);
}

.side-note.soft {
  background: linear-gradient(135deg, rgba(184, 108, 255, 0.13), rgba(124, 247, 212, 0.08));
  border-color: rgba(184, 108, 255, 0.20);
}

.board-frame {
  background: #050711;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(86, 215, 255, 0.08), 0 28px 90px rgba(0, 0, 0, 0.58);
}

.pixel-board {
  background:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to right, rgba(86,215,255,0.13) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(86,215,255,0.13) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(86,215,255,0.10), transparent 18%),
    radial-gradient(circle at 76% 62%, rgba(184,108,255,0.11), transparent 20%),
    #050711;
  /* Exact wall scale: 1000 columns × 1000 rows = 1,000,000 pixel positions.
     Fine grid = every 1/1000 of the board. Major grid = every 100 pixels. */
  background-size: 0.1% 0.1%, 0.1% 0.1%, 10% 10%, 10% 10%, auto, auto, auto;
}

.pixel-ad {
  border-color: rgba(255,255,255,0.28);
}

.pixel-ad:hover {
  outline-color: var(--green);
}

input,
textarea {
  color: var(--ink);
  background: rgba(5, 7, 17, 0.76);
  border-color: rgba(255, 255, 255, 0.16);
}

input::placeholder,
textarea::placeholder {
  color: rgba(174, 185, 216, 0.70);
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(86, 215, 255, 0.16);
}

.price-box {
  background: linear-gradient(135deg, #17265d, #6536b8 50%, #1ec8d8);
  color: #ffffff;
}

.accordion details {
  background: rgba(5, 7, 17, 0.66);
  border-color: rgba(255, 255, 255, 0.13);
}

.accordion summary::after {
  background: rgba(86, 215, 255, 0.14);
  color: var(--blue);
}

.accordion details[open] summary::after {
  color: #050711;
  background: var(--green);
}

.pixel-table th,
.pixel-table td {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.footer-left strong,
.footer-links a,
.wall-summary strong,
.wall-summary b,
.location-fieldset legend,
.mini-wall-help strong,
.side-note strong,
.preview-meta strong,
.mini-card h3,
.side-panel h2,
.legal-page h2,
.company-list dt,
.check,
label {
  color: var(--ink);
}

.site-footer {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.wall-summary span {
  border-left-color: rgba(255, 255, 255, 0.14);
}

.mini-wall {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(to right, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.07) 1px, transparent 1px),
    radial-gradient(circle at 25% 20%, rgba(86,215,255,0.10), transparent 24%),
    #050711;
  background-size: 10% 10%, 10% 10%, auto, auto;
}

.mini-selection {
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 2px rgba(86,215,255,0.45), 0 0 18px rgba(86,215,255,0.35);
}

.inline-colour,
.colour-preview {
  border-color: rgba(255, 255, 255, 0.22);
}

code {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 7px;
  padding: 1px 5px;
}

body {
  position: relative;
}

body::before {
  z-index: 0;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}


.footer-left span {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .footer-left span {
    white-space: normal;
  }
}

/* Custom contact subject dropdown in the same dark space style. */
.select-wrap {
  position: relative;
  display: block;
  margin-top: 8px;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(205, 231, 255, 0.9);
  border-bottom: 2px solid rgba(205, 231, 255, 0.9);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.subject-select {
  width: 100%;
  min-height: 56px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0 52px 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    radial-gradient(circle at 10% 12%, rgba(86, 215, 255, 0.14), transparent 35%),
    rgba(5, 7, 17, 0.88);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(120, 175, 255, 0.03);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  cursor: pointer;
}

.subject-select:hover {
  border-color: rgba(86, 215, 255, 0.55);
}

.subject-select:focus {
  outline: none;
  border-color: rgba(86, 215, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(86, 215, 255, 0.12);
}

.subject-select option {
  background: #0a1022;
  color: #e8f2ff;
}


/* Decorative outer-space background outside the pixel wall */
body {
  position: relative;
  overflow-x: hidden;
}

main,
.page-shell,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.space-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.space-decor::before,
.space-decor::after {
  content: "";
  position: absolute;
  inset: 0;
}

.space-decor::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(46, 180, 255, 0.12), transparent 30%),
    radial-gradient(circle at 76% 22%, rgba(143, 88, 255, 0.16), transparent 28%),
    radial-gradient(circle at 84% 66%, rgba(255, 110, 150, 0.12), transparent 22%),
    linear-gradient(90deg, rgba(19, 52, 95, 0.18) 0, rgba(19, 52, 95, 0.02) 14%, rgba(19, 52, 95, 0.02) 86%, rgba(95, 38, 110, 0.16) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: auto, auto, auto, auto, 64px 64px, 64px 64px;
  opacity: 0.92;
}

.space-decor::after {
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.05), transparent 18%),
    radial-gradient(circle at 8% 76%, rgba(62, 201, 255, 0.10), transparent 18%),
    radial-gradient(circle at 94% 78%, rgba(255, 148, 107, 0.10), transparent 16%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.decor-stars {
  position: absolute;
  inset: 0;
}

.decor-stars-a::before,
.decor-stars-b::before,
.decor-stars-a::after,
.decor-stars-b::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    4vw 12vh 0 rgba(255,255,255,0.75),
    12vw 30vh 0 rgba(255,255,255,0.55),
    20vw 8vh 0 rgba(255,255,255,0.85),
    28vw 18vh 0 rgba(134, 219, 255, 0.75),
    38vw 7vh 0 rgba(255,255,255,0.55),
    52vw 14vh 0 rgba(255,255,255,0.80),
    68vw 10vh 0 rgba(255,255,255,0.75),
    82vw 16vh 0 rgba(255,255,255,0.82),
    92vw 8vh 0 rgba(255,255,255,0.65),
    8vw 55vh 0 rgba(255,255,255,0.82),
    22vw 48vh 0 rgba(255,255,255,0.58),
    36vw 60vh 0 rgba(255,255,255,0.80),
    46vw 38vh 0 rgba(134, 219, 255, 0.72),
    62vw 52vh 0 rgba(255,255,255,0.55),
    72vw 42vh 0 rgba(255,255,255,0.86),
    88vw 58vh 0 rgba(255,255,255,0.60),
    14vw 82vh 0 rgba(255,255,255,0.82),
    34vw 88vh 0 rgba(255,255,255,0.56),
    58vw 78vh 0 rgba(255,255,255,0.70),
    74vw 86vh 0 rgba(255,255,255,0.82),
    90vw 74vh 0 rgba(134, 219, 255, 0.68);
}

.decor-stars-a::before {
  top: 0;
  left: 0;
}

.decor-stars-a::after {
  top: 4vh;
  left: 6vw;
  width: 2px;
  height: 2px;
  opacity: 0.8;
}

.decor-stars-b::before {
  top: 10vh;
  left: 3vw;
  width: 2px;
  height: 2px;
  opacity: 0.65;
}

.decor-stars-b::after {
  top: 0;
  left: 10vw;
  width: 3px;
  height: 3px;
  opacity: 0.7;
}

.planet,
.rocket,
.satellite {
  position: absolute;
  opacity: 0.95;
}

.planet {
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(9, 14, 28, 0.18);
  filter: saturate(0.95);
}

.planet-a {
  top: 220px;
  left: -168px;
  width: 270px;
  height: 270px;
  background:
    radial-gradient(circle at 34% 30%, rgba(255,255,255,0.85), rgba(255,255,255,0.08) 16%, transparent 18%),
    radial-gradient(circle at 65% 72%, rgba(0,0,0,0.16), transparent 40%),
    linear-gradient(145deg, rgba(79, 213, 255, 0.88), rgba(120, 104, 255, 0.90));
}

.planet-a::after {
  content: "";
  position: absolute;
  inset: 40% -10% -8% -10%;
  border-radius: 50%;
  border: 10px solid rgba(255, 221, 130, 0.34);
  transform: rotate(-16deg);
}

.planet-b {
  bottom: 42px;
  right: -92px;
  width: 208px;
  height: 208px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.90), rgba(255,255,255,0.10) 16%, transparent 18%),
    radial-gradient(circle at 70% 76%, rgba(0,0,0,0.18), transparent 42%),
    linear-gradient(145deg, rgba(255, 115, 169, 0.86), rgba(255, 187, 93, 0.94));
}

.planet-c {
  bottom: 56px;
  left: 1.8%;
  width: 72px;
  height: 72px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.85), rgba(255,255,255,0.10) 16%, transparent 18%),
    radial-gradient(circle at 72% 76%, rgba(0,0,0,0.18), transparent 42%),
    linear-gradient(145deg, rgba(133, 247, 190, 0.86), rgba(62, 162, 244, 0.92));
}

.rocket {
  top: 382px;
  right: 1.2%;
  width: 44px;
  height: 102px;
  transform: rotate(14deg);
  border-radius: 28px 28px 16px 16px;
  background:
    radial-gradient(circle at 50% 26%, rgba(134, 219, 255, 0.95) 0 9px, rgba(17, 33, 63, 0.95) 10px 16px, transparent 17px),
    linear-gradient(180deg, rgba(255,255,255,0.98) 0 54%, rgba(210, 220, 255, 0.95) 54% 100%);
  border: 2px solid rgba(24, 33, 66, 0.16);
  box-shadow: 0 16px 34px rgba(7, 12, 24, 0.18);
}

.rocket::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 28px solid rgba(255,255,255,0.98);
  transform: translateX(-50%);
}

.rocket::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: -20px;
  height: 42px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 242, 153, 0.95), rgba(255, 176, 63, 0.92) 38%, rgba(255, 94, 71, 0.0) 70%),
    linear-gradient(90deg, transparent 0 18%, rgba(255, 81, 117, 0.95) 18% 36%, transparent 36% 64%, rgba(255, 81, 117, 0.95) 64% 82%, transparent 82% 100%);
  filter: blur(1px);
  opacity: 0.95;
}

.satellite {
  width: 84px;
  height: 34px;
}

.satellite::before,
.satellite::after {
  content: "";
  position: absolute;
}

.satellite::before {
  left: 30px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(226, 231, 245, 0.98), rgba(165, 176, 201, 0.98));
  box-shadow: inset 0 0 0 2px rgba(28, 38, 72, 0.08);
}

.satellite::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(90, 158, 255, 0.95) 0 24px, transparent 24px 30px, rgba(238,242,255,0.98) 30px 54px, transparent 54px 60px, rgba(90, 158, 255, 0.95) 60px 84px),
    linear-gradient(0deg, transparent 0 15px, rgba(238,242,255,0.98) 15px 19px, transparent 19px 100%);
  border-radius: 8px;
}

.satellite-a {
  top: 128px;
  right: 16%;
  transform: rotate(-8deg) scale(0.72);
}

.satellite-b {
  bottom: 274px;
  right: 2.2%;
  transform: rotate(10deg) scale(0.60);
}

@media (max-width: 980px) {
  .planet-a {
    top: 212px;
    width: 220px;
    height: 220px;
    left: -136px;
  }

  .planet-b {
    bottom: 30px;
    right: -88px;
    width: 186px;
    height: 186px;
  }

  .planet-c {
    width: 64px;
    height: 64px;
    bottom: 46px;
    left: 1%;
  }

  .rocket {
    right: -6px;
    top: 410px;
    transform: rotate(14deg) scale(0.68);
  }

  .satellite-a {
    top: 122px;
    right: 8%;
    transform: rotate(-8deg) scale(0.64);
  }

  .satellite-b {
    right: 1%;
    bottom: 294px;
    transform: rotate(10deg) scale(0.52);
  }
}

@media (max-width: 720px) {
  .planet-b,
  .satellite-b,
  .astronaut {
    display: none;
  }

  .planet-a {
    top: 184px;
    width: 172px;
    height: 172px;
    left: -112px;
  }

  .planet-c {
    width: 56px;
    height: 56px;
    bottom: 16px;
    left: -8px;
  }

  .rocket {
    top: 388px;
    right: -14px;
    transform: rotate(12deg) scale(0.52);
  }

  .satellite-a {
    top: 118px;
    right: -12px;
    transform: rotate(-8deg) scale(0.50);
  }
}


/* Lighter fun space characters */
.astronaut {
  bottom: 118px;
  left: 0.4%;
  width: 70px;
  height: 104px;
  transform: rotate(-6deg);
  transform-origin: center center;
  animation: astronaut-float 6.6s ease-in-out infinite;
  z-index: 1;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
}

.astronaut::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 38%, rgba(148, 223, 255, 0.95) 0 11px, rgba(80, 122, 187, 0.80) 12px 16px, rgba(255,255,255,0.98) 17px 100%);
  box-shadow: 0 14px 30px rgba(8, 16, 34, 0.14);
}

.astronaut::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 19px;
  width: 32px;
  height: 40px;
  border-radius: 18px 18px 16px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(222, 231, 247, 0.98));
  box-shadow: inset 0 -8px 0 rgba(168, 187, 219, 0.32);
}

.astronaut-pack {
  position: absolute;
  top: 40px;
  left: 9px;
  width: 14px;
  height: 24px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(196, 208, 230, 0.98), rgba(147, 164, 192, 0.98));
}

.astronaut-arm,
.astronaut-leg {
  position: absolute;
  display: block;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(224, 232, 247, 0.98));
  border-radius: 999px;
}

.astronaut-arm-left {
  top: 40px;
  left: 7px;
  width: 9px;
  height: 30px;
  transform: rotate(32deg);
}

.astronaut-arm-right {
  top: 34px;
  right: 5px;
  width: 9px;
  height: 34px;
  transform: rotate(-56deg);
  transform-origin: top center;
  animation: astronaut-wave 2.2s ease-in-out infinite;
}

.astronaut-leg-left {
  top: 68px;
  left: 22px;
  width: 9px;
  height: 24px;
  transform: rotate(18deg);
}

.astronaut-leg-right {
  top: 68px;
  left: 36px;
  width: 9px;
  height: 26px;
  transform: rotate(-10deg);
}


@keyframes astronaut-wave {
  0%, 100% { transform: rotate(-56deg); }
  50% { transform: rotate(-10deg); }
}

@keyframes astronaut-float {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-8px); }
}

@media (max-width: 980px) {
  .astronaut {
    bottom: 104px;
    left: -4px;
    transform: scale(0.74) rotate(-6deg);
  }
}

@media (max-width: 720px) {
  .astronaut {
    display: none;
  }

}


.pixel-ad {
  cursor: pointer;
  transition: transform 140ms ease, outline-color 140ms ease, box-shadow 140ms ease;
}

.pixel-ad:hover,
.pixel-ad:focus-visible {
  transform: scale(1.04);
  box-shadow: 0 0 0 5px rgba(25, 195, 125, 0.18), 0 12px 30px rgba(0, 0, 0, 0.28);
}

.pixel-ad:focus-visible {
  outline: 3px solid var(--green);
  z-index: 11;
}

