:root {
  --bg: #f8fafb;
  --surface: #ffffff;
  --surface-strong: #f0fbfd;
  --ink: #10141f;
  --muted: #596474;
  --muted-2: #7d8794;
  --line: #dbe3ea;
  --line-strong: #bfd3dc;
  --teal: #007d93;
  --teal-dark: #005f72;
  --green: #22a85a;
  --warm: #ffb444;
  --danger: #ef4444;
  --shadow: 0 18px 45px rgba(12, 25, 37, 0.08);
  --radius: 8px;
  --radius-sm: 6px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(0, 125, 147, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 125, 147, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px;
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

section[id] {
  scroll-margin-top: 92px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.motion-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal-on-scroll.is-visible,
.motion-reduced .reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 40px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand,
.github-link,
.main-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 23px;
  font-weight: 800;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border: 1px solid #182434;
  border-radius: var(--radius-sm);
  background: #060b12;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 18px rgba(12, 25, 37, 0.16);
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #182434;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #10141f, #263142);
  color: #f8fafb;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(12, 25, 37, 0.16);
}

.main-nav {
  justify-content: center;
  gap: 38px;
  color: #202838;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a,
.github-link {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover,
.github-link:hover {
  color: var(--teal);
}

.github-link {
  gap: 9px;
  color: #384253;
  font-size: 14px;
  font-weight: 700;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(360px, 0.9fr);
  gap: 56px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 66px 40px 28px;
}

.hero-copy {
  padding-top: 18px;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--teal);
}

.hero-copy p {
  max-width: 585px;
  margin: 28px 0 0;
  color: #3e4858;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #078da3, var(--teal-dark));
  color: white;
  box-shadow: 0 14px 28px rgba(0, 125, 147, 0.24);
}

.button-secondary {
  border-color: #aeb9c5;
  background: var(--surface);
  color: #253044;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  margin: 30px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  list-style: none;
  box-shadow: 0 10px 24px rgba(12, 25, 37, 0.04);
}

.trust-strip li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  color: #3d4757;
  font-size: 13px;
  font-weight: 650;
}

.trust-strip li:last-child {
  border-right: 0;
}

.trust-strip svg {
  color: var(--teal);
}

.directory-panel,
.featured-tool,
.build-notes,
.tool-card,
.project-card,
.game-studio-section,
.game-card,
.about-section,
.sponsor-card,
.monetization-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.directory-panel {
  align-self: start;
  margin-top: 10px;
  overflow: hidden;
}

.hero-ad {
  display: none;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.panel-heading h2 {
  margin: 0;
  font-size: 15px;
}

.panel-heading a,
.more-link,
.build-notes > a {
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
}

.directory-list {
  display: grid;
}

.directory-item,
.tool-card,
.project-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.directory-item {
  min-height: 56px;
  padding: 9px 18px;
  border-bottom: 1px solid var(--line);
}

.directory-item:hover,
.tool-card:hover,
.project-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.mini-icon,
.tool-icon,
.tool-icon-large,
.sponsor-icon {
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
}

.mini-icon {
  width: 33px;
  height: 33px;
  border: 1px solid var(--line);
  background: #f8fbfc;
  color: var(--teal);
  font-weight: 900;
}

.directory-item h3,
.tool-card h3,
.project-card h3 {
  margin: 0;
  font-size: 14px;
}

.directory-item p,
.tool-card p,
.project-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.status-pill {
  border-radius: 999px;
  background: var(--teal);
  color: white;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 850;
}

.more-link {
  display: block;
  padding: 14px 18px 16px;
  text-align: center;
}

.ad-rail {
  align-self: start;
  margin-top: 8px;
}

.ad-kicker {
  display: flex;
  justify-content: space-between;
  margin: 0 0 12px;
  color: #121826;
  font-size: 15px;
  font-weight: 850;
}

.ad-kicker::after {
  content: "Sponsorship";
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 650;
}

.sponsor-card {
  padding: 26px;
  border-color: #f1cc8e;
  background: linear-gradient(135deg, #fff 0%, #fff9ed 100%);
}

.sponsor-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  background: #10141f;
  color: white;
  font-size: 31px;
}

.sponsor-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.13;
}

.sponsor-card p {
  margin: 16px 0 22px;
  color: #394352;
  line-height: 1.45;
}

.sponsor-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: var(--radius-sm);
  background: #10141f;
  color: white;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 850;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px 36px;
}

.primary-column {
  display: grid;
  gap: 22px;
}

.featured-tool {
  display: grid;
  grid-template-columns: auto minmax(420px, 1fr) minmax(300px, 350px);
  gap: 32px;
  align-items: center;
  padding: 28px;
  border-color: #b9dce5;
  background: linear-gradient(135deg, #f4fcfe 0%, #ffffff 72%);
}

.tool-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(180deg, #0793a8, #00697c);
  color: white;
  font-size: 58px;
}

.section-label {
  margin: 0 0 2px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-copy h2,
.tool-directory h2,
.project-section h2,
.game-studio-section h2,
.about-section h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
}

.featured-copy > p:not(.section-label) {
  max-width: 660px;
  margin: 10px 0 0;
  color: #4a5565;
  line-height: 1.5;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 10px 22px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.capability-list li {
  position: relative;
  padding-left: 22px;
  color: #435060;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.capability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.extractor-preview-link {
  display: grid;
  min-height: 168px;
  place-items: center;
  align-content: center;
  border: 1px solid #b9dce5;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(0, 125, 147, 0.13), transparent 32%),
    rgba(255, 255, 255, 0.86);
  color: inherit;
  padding: 22px;
  text-align: center;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.extractor-preview-link:hover,
.extractor-preview-link:focus-visible {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.extractor-preview-link:focus-visible {
  outline: 3px solid rgba(0, 125, 147, 0.22);
  outline-offset: 3px;
}

.file-stack {
  display: flex;
  align-items: end;
  justify-content: center;
  margin-bottom: 15px;
}

.file-stack span {
  display: grid;
  width: 46px;
  height: 54px;
  place-items: center;
  margin-left: -8px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: white;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(10, 31, 42, 0.08);
}

.file-stack span:first-child {
  margin-left: 0;
  color: white;
  background: var(--danger);
}

.file-stack span:nth-child(2) {
  color: white;
  background: #1c7ed6;
}

.file-stack span:nth-child(3) {
  color: white;
  background: var(--green);
}

.file-stack span:nth-child(4) {
  color: white;
  background: #f97316;
}

.extractor-preview-link strong {
  font-size: 20px;
}

.extractor-preview-link p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.preview-link-cta {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-top: 16px;
  border-radius: 999px;
  background: #e8f7f9;
  color: var(--teal-dark);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.build-notes {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 16px 22px;
}

.build-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.build-title h2 {
  margin: 0;
  font-size: 17px;
}

.build-title svg {
  color: var(--teal);
  font-size: 26px;
}

.note-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.note-item {
  min-height: 44px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.note-item time {
  display: block;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
}

.note-item strong {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

.note-item p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
}

.section-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
}

.filter-button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: #2f3949;
  padding: 0 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}

.tool-grid,
.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.tools-preview-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 26px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.tool-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.tool-preview-card {
  display: grid;
  min-height: 154px;
  align-content: end;
  gap: 8px;
  overflow: hidden;
  border: 1px solid #cfe2e8;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 125, 147, 0.16), transparent 34%),
    linear-gradient(135deg, #fff, #f4fcfe);
  padding: 18px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.tool-preview-card:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.tool-preview-card span {
  width: fit-content;
  border-radius: 999px;
  background: #e8f7f9;
  color: var(--teal-dark);
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
}

.blog-preview-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 180, 68, 0.13), transparent 30%),
    rgba(255, 255, 255, 0.92);
  padding: 26px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.blog-preview-card {
  display: grid;
  min-height: 188px;
  align-content: start;
  gap: 10px;
  border: 1px solid #d9e4eb;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f8fbfc);
  padding: 18px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.blog-preview-card:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.blog-preview-card span,
.blog-post-meta span {
  width: fit-content;
  border-radius: 999px;
  background: #fff4de;
  color: #815011;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
}

.blog-preview-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.12;
}

.blog-preview-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.blog-preview-card time {
  align-self: end;
  margin-top: auto;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 850;
}

.web-games-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  overflow: hidden;
  border: 1px solid #cfe2e8;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 125, 147, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 252, 254, 0.9));
  padding: 28px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.web-games-copy p:not(.section-label) {
  max-width: 760px;
  margin: 12px 0 0;
  color: #465365;
  line-height: 1.6;
}

.web-game-grid,
.web-game-directory {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.web-game-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 112px;
  border: 1px solid #d9e4eb;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.web-game-card:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.web-game-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid #cfe2e8;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, #10141f, #007d93);
  background-size: 14px 14px, 14px 14px, auto;
  color: white;
  font-size: 18px;
  font-weight: 950;
}

.web-game-copy strong,
.web-game-copy small {
  display: block;
}

.web-game-copy strong {
  font-size: 19px;
}

.web-game-copy small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.web-game-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.web-game-meta span,
.web-games-tags span {
  border-radius: 999px;
  background: #e8f7f9;
  color: var(--teal-dark);
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 900;
}

.web-games-panel,
.web-games-hero-panel,
.web-games-side-panel,
.web-game-build-card {
  border: 1px solid #d9e4eb;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
}

.web-games-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px;
}

.web-games-panel span,
.web-games-hero-panel span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.web-games-panel strong {
  color: #10141f;
  font-size: 28px;
  line-height: 1.1;
}

.web-games-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.web-games-panel a {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.tool-preview-card h3 {
  margin: 0;
  font-size: 20px;
}

.tool-preview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.tools-page {
  width: min(100% - 80px, 1380px);
  max-width: 1380px;
  margin: 0 auto;
  padding: 42px 0 54px;
}

.tools-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #cfe2e8;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 10%, rgba(0, 125, 147, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff, #f3fbfd);
  padding: 34px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.tools-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
}

.tools-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #3e4858;
  font-size: 18px;
  line-height: 1.6;
}

.tools-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.tools-summary span {
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  padding: 18px;
  font-size: 13px;
  font-weight: 850;
}

.tools-summary strong {
  color: var(--teal-dark);
  font-size: 34px;
  line-height: 1;
}

.tools-page-directory {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.tools-page-directory .section-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 16px;
}

.tools-page-directory .filter-bar {
  justify-content: start;
}

.tools-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.tools-feature-strip a {
  display: grid;
  min-height: 132px;
  align-content: end;
  gap: 8px;
  overflow: hidden;
  border: 1px solid #cfe2e8;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 10%, rgba(0, 125, 147, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff, #f3fbfd);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(12, 25, 37, 0.05);
}

.tools-feature-strip a:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.tools-feature-strip span {
  width: fit-content;
  border-radius: 999px;
  background: #e8f7f9;
  color: var(--teal-dark);
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tools-feature-strip strong {
  max-width: 320px;
  color: #10141f;
  font-size: 18px;
  line-height: 1.25;
}

.compact-tool-grid {
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 18px;
}

.tools-page .tool-card {
  position: relative;
  grid-template-columns: 54px minmax(0, 1fr) 22px;
  min-height: 148px;
  align-items: start;
  gap: 16px;
  overflow: hidden;
  border-color: #cfe0e8;
  background:
    radial-gradient(circle at 96% 0%, rgba(0, 125, 147, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(247, 252, 253, 0.98));
  padding: 20px;
}

.tools-page .tool-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 72px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--teal);
  opacity: 0;
  transform: translateY(3px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.tools-page .tool-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.tools-page .tool-card-copy {
  min-width: 0;
}

.tools-page .tool-category {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 9px;
  border-radius: 999px;
  background: #e8f7f9;
  color: var(--teal-dark);
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.tools-page .tool-card h3 {
  max-width: 220px;
  font-size: 18px;
  line-height: 1.14;
}

.tools-page .tool-card p {
  max-width: 245px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.tools-page .tool-icon {
  width: 54px;
  height: 54px;
  margin-top: 30px;
  background:
    radial-gradient(circle at 70% 20%, rgba(0, 125, 147, 0.14), transparent 38%),
    #f8fbfc;
}

.tools-page .tool-arrow {
  align-self: center;
  color: var(--teal-dark);
  font-size: 22px;
}

.tool-collections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.tool-collection {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.tool-collection > div:first-child span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tool-collection h2 {
  margin: 4px 0 0;
  font-size: 24px;
}

.collection-tool-list {
  display: grid;
  gap: 10px;
}

.collection-tool {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 10px;
}

.collection-tool:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.collection-tool strong,
.collection-tool small {
  display: block;
}

.collection-tool small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.35;
}

.tool-card,
.project-card {
  min-height: 72px;
  padding: 14px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.tool-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #f8fbfc;
  color: var(--teal);
  font-size: 22px;
  font-weight: 900;
}

.tool-arrow {
  color: #394454;
  font-size: 20px;
}

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

.project-card {
  grid-template-columns: 1fr auto;
}

.project-card .project-status {
  border-radius: 999px;
  background: #e8f7f9;
  color: var(--teal-dark);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
}

.game-studio-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  overflow: hidden;
  padding: 28px;
  border-color: rgba(210, 82, 171, 0.38);
  background:
    radial-gradient(circle at 84% 28%, rgba(189, 64, 166, 0.32), transparent 32%),
    linear-gradient(135deg, rgba(9, 11, 18, 0.97), rgba(39, 20, 51, 0.95)),
    #181520;
  color: white;
}

.game-studio-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.35;
  pointer-events: none;
}

.game-studio-copy,
.chaos-teaser-art,
.game-project-grid,
.studio-teaser-grid,
.game-studio-actions {
  position: relative;
}

.game-studio-copy .section-label {
  color: #f2b6d4;
}

.game-studio-copy p:not(.section-label) {
  max-width: 760px;
  margin: 12px 0 0;
  color: #d8d4df;
  font-size: 16px;
  line-height: 1.6;
}

.game-studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.game-studio-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.chaos-teaser-art {
  display: block;
  align-self: stretch;
  min-height: 216px;
  overflow: hidden;
  border: 1px solid rgba(210, 82, 171, 0.34);
  border-radius: var(--radius);
  background: #03060b;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.chaos-teaser-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.game-project-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.studio-teaser-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.studio-teaser-grid span {
  display: grid;
  min-height: 74px;
  align-content: center;
  border: 1px solid rgba(242, 182, 212, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #d8d4df;
  padding: 14px;
  font-size: 13px;
  font-weight: 850;
}

.studio-teaser-grid strong {
  display: block;
  color: #f6c15f;
  font-size: 24px;
  line-height: 1;
}

.game-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 318px;
  overflow: hidden;
  padding: 0;
  border-color: rgba(242, 182, 212, 0.24);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: none;
}

.game-card:hover {
  transform: translateY(-1px);
  border-color: rgba(242, 182, 212, 0.52);
  background: rgba(255, 255, 255, 0.11);
}

.game-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 136px;
  border-bottom: 1px solid rgba(242, 182, 212, 0.18);
  background: #080a10;
}

.game-card-media img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

.game-card:hover .game-card-media img {
  opacity: 1;
  transform: scale(1.025);
}

.game-card-icon {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(12, 10, 18, 0.86);
  color: #f6c15f;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.game-card-body {
  display: grid;
  gap: 8px;
  padding: 0 16px;
}

.game-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}

.game-card p {
  margin: 0;
  color: #d8d4df;
  font-size: 13px;
  line-height: 1.45;
}

.game-card-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 16px;
}

.game-card-detail-row span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #ede7f1;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 900;
}

.game-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding: 0 16px 16px;
}

.game-tag {
  border-radius: 999px;
  background: rgba(242, 182, 212, 0.16);
  color: #ffd9eb;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 900;
}

.about-section {
  padding: 26px;
}

.about-section p {
  max-width: 840px;
  margin: 12px 0 0;
  color: #485465;
  font-size: 16px;
  line-height: 1.65;
}

.blog-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 40px 70px;
}

.web-games-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 40px 70px;
}

.web-games-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  overflow: hidden;
  border: 1px solid #cfe2e8;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 16%, rgba(0, 125, 147, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff, #f4fcfe);
  padding: 34px;
  box-shadow: var(--shadow);
}

.web-games-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.95;
}

.web-games-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #3e4858;
  font-size: 18px;
  line-height: 1.6;
}

.web-games-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.web-games-hero-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 240px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #10141f, #005f72);
  background-size: 28px 28px, 28px 28px, auto;
  color: white;
  padding: 24px;
}

.web-games-hero-panel span {
  color: var(--warm);
}

.web-games-hero-panel strong {
  font-size: 30px;
  line-height: 1.1;
}

.web-games-hero-panel p {
  margin: 0;
  color: #d8dce3;
  font-size: 14px;
}

.web-games-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  margin-top: 28px;
}

.web-games-list,
.web-games-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.web-game-build-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.web-game-screen {
  display: grid;
  min-height: 190px;
  place-items: end start;
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 180, 68, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #10141f, #007d93);
  background-size: auto, 24px 24px, 24px 24px, auto;
  padding: 16px;
}

.web-game-screen span {
  border-radius: var(--radius-sm);
  background: rgba(16, 20, 31, 0.86);
  color: white;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 950;
}

.web-game-build-card h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
}

.web-game-build-card p:not(.section-label),
.web-games-side-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.web-game-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.web-game-checklist li {
  border-left: 3px solid var(--teal);
  padding-left: 10px;
  color: #354052;
  font-weight: 800;
}

.web-games-side-panel {
  padding: 22px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.web-games-side-panel h2 {
  margin: 0;
  font-size: 24px;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  overflow: hidden;
  border: 1px solid #d6e3ea;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 125, 147, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 252, 254, 0.94));
  padding: 34px;
  box-shadow: var(--shadow);
}

.blog-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.95;
}

.blog-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #3e4858;
  font-size: 18px;
  line-height: 1.6;
}

.blog-topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.blog-topic-strip span {
  border: 1px solid #cfe2e8;
  border-radius: 999px;
  background: white;
  color: var(--teal-dark);
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 900;
}

.blog-hero-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 240px;
  border: 1px solid #cfe2e8;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #10141f, #263142);
  background-size: 32px 32px, 32px 32px, auto;
  color: white;
  padding: 24px;
}

.blog-hero-panel span {
  color: var(--warm);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-hero-panel strong {
  font-size: 28px;
  line-height: 1.1;
}

.blog-hero-panel p {
  margin: 0;
  color: #d8dce3;
  font-size: 14px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  margin-top: 28px;
}

.blog-post-list,
.blog-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.blog-post-card,
.blog-side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.blog-post-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
}

.featured-blog-post {
  grid-template-columns: 260px minmax(0, 1fr);
}

.blog-post-visual {
  display: grid;
  min-height: 168px;
  place-items: end start;
  overflow: hidden;
  border-radius: var(--radius-sm);
  padding: 16px;
  color: white;
}

.blog-post-visual span {
  border-radius: var(--radius-sm);
  background: rgba(16, 20, 31, 0.86);
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 950;
}

.blog-visual-studio {
  background:
    radial-gradient(circle at 72% 20%, rgba(0, 125, 147, 0.46), transparent 34%),
    linear-gradient(135deg, #10141f, #263142);
}

.blog-visual-printing {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, #293341, #007d93);
  background-size: 24px 24px, 24px 24px, auto;
}

.blog-visual-games {
  background:
    radial-gradient(circle at 70% 20%, rgba(242, 182, 212, 0.48), transparent 36%),
    linear-gradient(135deg, #17131f, #4b2554);
}

.blog-visual-code {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #0e1726, #005f72);
}

.blog-visual-gaming {
  background:
    radial-gradient(circle at 26% 28%, rgba(255, 180, 68, 0.45), transparent 34%),
    linear-gradient(135deg, #111827, #3b2c13);
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.blog-post-meta time {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 850;
}

.blog-post-card h3 {
  margin: 12px 0 0;
  font-size: 28px;
  line-height: 1.1;
}

.blog-post-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.blog-post-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.blog-side-panel {
  padding: 22px;
}

.blog-side-panel h2 {
  margin: 0;
  font-size: 24px;
}

.blog-category-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.blog-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f8fbfc;
  padding: 11px 12px;
  color: #263142;
  font-size: 14px;
  font-weight: 850;
}

.blog-category-list span {
  color: var(--teal-dark);
  font-size: 12px;
}

.blog-idea-list {
  display: grid;
  gap: 11px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.blog-idea-list li {
  border-left: 3px solid var(--warm);
  padding-left: 12px;
  color: #465365;
  line-height: 1.45;
}

.sidebar-ads {
  display: grid;
  align-content: start;
  gap: 28px;
}

.ad-slot {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid #d2dee6;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 14%, rgba(0, 125, 147, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.76);
  color: var(--muted);
  padding: 22px;
  text-align: center;
}

.ad-slot span {
  display: block;
  color: #10141f;
  font-size: 24px;
  font-weight: 950;
}

.ad-slot strong {
  display: block;
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 900;
}

.ad-slot small {
  max-width: 220px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.ad-rectangle {
  min-height: 250px;
}

.ad-skyscraper {
  min-height: 600px;
}

.monetization-note {
  padding: 20px;
}

.monetization-note h2 {
  margin: 0;
  font-size: 18px;
}

.monetization-note p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.legal-page {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
  padding: 62px 40px 72px;
}

.legal-hero,
.legal-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.legal-hero {
  padding: 42px;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: 0;
}

.legal-hero p:not(.section-label) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.legal-panel {
  padding: 28px;
}

.legal-panel h2 {
  margin: 0;
  font-size: 22px;
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.legal-panel p {
  margin: 12px 0 0;
}

.legal-panel ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-panel a {
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 30px 40px 42px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  gap: 20px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .hero-section,
  .content-grid,
  .blog-layout,
  .web-games-layout {
    grid-template-columns: 1fr;
  }

  .hero-ad,
  .sidebar-ads,
  .blog-sidebar,
  .web-games-sidebar {
    display: none;
  }

  .featured-tool {
    grid-template-columns: auto 1fr;
  }

  .extractor-preview-link {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .main-nav {
    display: none;
  }

  .hero-section,
  .content-grid,
  .tools-page,
  .blog-page,
  .web-games-page,
  .legal-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tools-page,
  .blog-page,
  .web-games-page,
  .legal-page {
    width: 100%;
    padding-top: 24px;
    padding-bottom: 36px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .legal-hero,
  .legal-panel {
    padding: 24px;
  }

  .legal-hero h1 {
    font-size: 34px;
  }

  .featured-tool {
    grid-template-columns: 1fr;
  }

  .tool-icon-large {
    width: 82px;
    height: 82px;
    font-size: 46px;
  }

  .capability-list,
  .note-list,
    .tool-grid,
    .tool-preview-grid,
    .blog-preview-grid,
    .tools-feature-strip,
    .project-list,
    .game-project-grid,
    .capability-list,
  .studio-teaser-grid,
  .tools-hero,
  .compact-tool-grid,
  .tool-collections {
    grid-template-columns: 1fr;
  }

  .game-studio-section {
    grid-template-columns: 1fr;
  }

  .web-games-section,
  .web-games-hero,
  .web-game-build-card {
    grid-template-columns: 1fr;
  }

  .blog-hero,
  .blog-post-card,
  .featured-blog-post {
    grid-template-columns: 1fr;
  }

  .blog-post-visual {
    min-height: 190px;
  }

  .chaos-teaser-art {
    min-height: 280px;
    max-height: 420px;
  }

  .build-notes {
    grid-template-columns: 1fr;
  }

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

  .filter-bar {
    justify-content: start;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 18px;
  }

  .github-link {
    font-size: 0;
  }

  .github-link span {
    font-size: 16px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .hero-section {
    padding-top: 36px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .blog-hero {
    padding: 26px;
  }

  .web-games-section,
  .web-games-hero {
    padding: 26px;
  }

  .blog-hero h1 {
    font-size: 42px;
  }

  .web-games-hero h1 {
    font-size: 42px;
  }

  .blog-hero p {
    font-size: 16px;
  }

  .web-games-hero p {
    font-size: 16px;
  }

  .web-game-checklist {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-strip {
    width: 100%;
  }

  .trust-strip li {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip li:last-child {
    border-bottom: 0;
  }
}
