:root {
  color-scheme: light;
  --bg: #fbfbfd;
  --surface: #ffffff;
  --surface-soft: #f2f5f8;
  --text: #171a21;
  --muted: #626b78;
  --line: #dfe5ec;
  --brand: #d92c2c;
  --brand-dark: #981e25;
  --ink: #101522;
  --blue: #195a82;
  --green: #557a46;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(16, 21, 34, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nav-panel {
  display: flex;
  min-width: 0;
  align-items: center;
}

.nav-toggle-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle span:not(.sr-only) + span:not(.sr-only) {
  margin-top: 5px;
}

.nav-toggle-checkbox:focus-visible + .nav-toggle {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: var(--brand-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.header-inner,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 148px;
  height: auto;
}

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

.main-nav a {
  padding: 10px 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--surface-soft);
  color: var(--brand-dark);
}

.nav-cta {
  background: var(--brand);
  color: #fff !important;
}

.header-tools {
  display: none;
}

.search-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.search-icon::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 7px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.hero {
  min-height: min(720px, calc(100vh - 76px));
  color: #fff;
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 11, 18, 0.82), rgba(8, 11, 18, 0.48) 52%, rgba(8, 11, 18, 0.2));
  z-index: -1;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-content {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #ffe0df;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: 0;
  color: var(--ink);
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 20px;
  color: #fff;
  font-size: 5.2rem;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: var(--brand-dark);
  color: #fff;
}

.button.secondary {
  background: var(--surface);
  color: var(--brand-dark);
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.home-page .header-inner {
  position: relative;
  width: min(940px, calc(100% - 48px));
  min-height: 126px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  padding-top: 24px;
}

.home-page .brand img {
  width: 132px;
}

.home-page .main-nav {
  justify-content: center;
  gap: 20px;
}

.home-page .main-nav a {
  position: relative;
  padding: 6px 0 10px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-page .main-nav a:hover,
.home-page .main-nav a[aria-current="page"] {
  background: transparent;
  color: #fff;
}

.home-page .main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #fff;
}

.home-page .main-nav .nav-cta {
  min-height: 36px;
  padding: 8px 26px;
  border-radius: 999px;
  background: #9e55ee;
  color: #fff !important;
}

.home-page .main-nav .nav-cta::after {
  display: none;
}

.home-page .header-tools {
  position: fixed;
  top: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  z-index: 25;
}

.home-page .header-tools a {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.home-page .header-tools .search-icon {
  margin-left: 14px;
}

.home-page .hero {
  min-height: 658px;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.home-page .hero::before {
  background: rgba(8, 11, 18, 0.38);
}

.home-page .hero > img {
  object-position: center top;
}

.home-page .hero-content {
  width: min(1140px, calc(100% - 32px));
  padding: 170px 0 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-40px);
}

.home-page .hero .eyebrow {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 500;
  text-transform: none;
}

.home-page .hero h1 {
  width: 100%;
  max-width: 1140px;
  margin-bottom: 24px;
  font-size: 5rem;
  line-height: 1.1;
  text-align: center;
}

.home-page .hero p {
  margin: 0;
}

.home-page .hero .button {
  min-width: 270px;
  min-height: 40px;
  padding: 8px 34px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.home-page .hero .button:hover {
  border-color: #9e55ee;
  background: #9e55ee;
}

.home-page .home-services {
  position: relative;
  z-index: 2;
  padding: 0 0 74px;
  background: #fff;
}

.home-page .home-services .section-inner {
  width: min(1170px, calc(100% - 32px));
}

.home-page .home-services-grid {
  gap: 0;
}

.home-page .service-card {
  overflow: visible;
  background: transparent;
  border: 0;
}

.home-page .service-card img {
  position: relative;
  z-index: 3;
  width: 163px;
  height: 163px;
  margin: -85px auto 28px;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  aspect-ratio: 1;
  object-fit: cover;
}

.home-page .service-card .card-body {
  padding: 0 4px;
}

.home-page .service-card h2 {
  margin-bottom: 2px;
  color: #575757;
  font-size: 1.05rem;
  font-weight: 700;
}

.home-page .service-card .meta {
  display: block;
  margin: 0 0 18px;
  color: #c2c2c2;
  font-size: 0.9rem;
}

.home-page .service-card p {
  color: #a7a7a7;
  font-size: 0.94rem;
}

.home-page .service-card a {
  color: #9e55ee;
  font-weight: 700;
  text-decoration: none;
}

.home-est {
  padding: 72px 0;
  background: #f8f8f8;
}

.home-est-inner {
  display: grid;
  width: min(1170px, calc(100% - 32px));
  margin: 0 auto;
  grid-template-columns: 1fr 2fr;
}

.home-est-title,
.home-est-copy {
  min-width: 0;
  padding: 0 15px;
}

.home-est-title p {
  margin: 0 0 8px;
  color: #bbb;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

.home-est-title h2 {
  margin: 0;
  color: #262626;
  font-size: 40px;
  line-height: 46px;
  font-weight: 500;
  text-transform: uppercase;
}

.home-est-copy p {
  margin: 0 0 35px;
  color: #737373;
  font-size: 16px;
  line-height: 29px;
}

.home-est-copy p:last-child {
  margin-bottom: 0;
}

.home-welcome {
  position: relative;
  overflow: hidden;
  padding: 40px 0 72px;
  background: #1b1b1b url("/assets/uploads/2023/11/welcome-to-meliorgames.jpeg") center / cover no-repeat;
  color: #fff;
  isolation: isolate;
}

.home-welcome::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(20, 22, 25, 0.3);
}

.home-welcome-inner {
  width: min(1170px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 15px;
}

.home-welcome-head {
  margin: 0 0 72px;
  text-align: center;
}

.home-welcome-head h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 40px;
  line-height: 46px;
  font-weight: 500;
}

.home-welcome-head p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}

.home-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.home-work-step {
  position: relative;
  min-width: 0;
  padding-left: 65px;
}

.home-work-step span {
  position: absolute;
  top: 0;
  left: -2px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 100px;
  line-height: 50px;
  font-weight: 700;
}

.home-work-step h3 {
  position: relative;
  margin: 0 0 32px;
  color: #fff;
  font-size: 37px;
  line-height: 45px;
  font-weight: 500;
}

.home-work-step p {
  position: relative;
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
  line-height: 29px;
}

.home-work-step a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.home-work-step a:hover {
  color: #c58cff;
}

.section {
  padding: 76px 0;
}

.section.tight {
  padding: 48px 0;
}

.section.muted {
  background: var(--surface-soft);
}

.section.dark {
  background: var(--ink);
  color: #fff;
}

.section.dark h2,
.section.dark h3 {
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head h1,
.section-head h2 {
  margin: 0 0 14px;
  font-size: 3.2rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

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

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-body {
  padding: 22px;
}

.card h2,
.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.card p {
  color: var(--muted);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-soft);
}

.service-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f7e7e8;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.content-wrap {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 56px);
}

.content :first-child {
  margin-top: 0;
}

.content h2 {
  margin-top: 2.2em;
  font-size: 2.1rem;
}

.content h3 {
  margin-top: 1.8em;
  font-size: 1.32rem;
}

.content p,
.content li {
  color: #303744;
}

.content figure,
.content img {
  margin: 28px auto;
  border-radius: var(--radius);
}

.content blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--brand);
  background: var(--surface-soft);
  color: var(--ink);
}

.project-hero,
.page-hero {
  padding: 88px 0 46px;
  background: var(--surface-soft);
}

.article-hero {
  padding: 68px 0 34px;
  background: var(--surface-soft);
}

.article-hero .section-head,
.page-hero .section-head,
.project-hero .section-head {
  margin-bottom: 0;
}

.featured-image {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto -44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.home-portfolio {
  background: #f8f8f8;
  padding: 40px 0 24px;
  text-align: center;
}

.home-portfolio-head {
  margin: 0 auto 34px;
  width: min(1140px, calc(100% - 32px));
}

.home-portfolio-head h2 {
  margin: 0;
  color: #22252b;
  font-size: 2.65rem;
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
}

.home-portfolio-head p {
  margin: 16px 0 0;
  color: #b5b5b5;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
}

.home-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  background: #fff;
}

.home-project-card {
  min-width: 0;
  background: #fff;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.home-project-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 4 / 3;
  text-decoration: none;
}

.home-project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 22, 28, 0.48);
  opacity: 0;
  transition: opacity 180ms ease;
}

.home-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.home-project-meta {
  display: flex;
  min-height: 90px;
  padding: 18px 20px 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #22252b;
  text-decoration: none;
}

.home-project-meta h3 {
  margin: 0;
  color: #22252b;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 400;
}

.home-project-meta p {
  margin: 2px 0 0;
  color: #b7b7b7;
  font-size: 0.94rem;
  line-height: 1.35;
  font-weight: 300;
}

.home-project-card:hover .home-project-image::after {
  opacity: 1;
}

.home-project-card:hover .home-project-image img {
  transform: scale(1.035);
}

.home-portfolio-actions {
  margin: 20px 0 0;
}

.home-portfolio-actions .button {
  min-width: 265px;
  min-height: 38px;
  padding: 9px 34px;
  border: 0;
  border-radius: 999px;
  background: #9d4fe8;
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(75, 40, 130, 0.16);
}

.home-clients {
  background: #f8f8f8;
  padding: 72px 0;
}

.home-clients-inner {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.home-clients h2 {
  margin: 0;
  color: #22252b;
  font-size: 2.65rem;
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
}

.home-clients-window {
  margin-top: 72px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.home-clients-window::-webkit-scrollbar {
  display: none;
}

.home-clients-track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.home-clients-track li {
  flex: 0 0 228px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-clients-track img {
  max-width: 178px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.home-blog {
  background: #f8f8f8;
  padding: 40px 0 54px;
  text-align: center;
}

.home-blog-head {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto 34px;
}

.home-blog-head h2 {
  margin: 0;
  color: #22252b;
  font-size: 2.65rem;
  line-height: 1.1;
  font-weight: 400;
}

.home-blog-head p {
  margin: 14px 0 0;
  color: #b5b5b5;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
}

.home-blog-window {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.home-blog-window::-webkit-scrollbar {
  display: none;
}

.home-blog-track {
  display: flex;
  gap: 20px;
  width: max-content;
  min-width: 100%;
  padding: 0;
}

.home-blog-card {
  flex: 0 0 402px;
  min-width: 0;
  text-align: center;
}

.home-blog-image {
  display: block;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 4 / 3;
  text-decoration: none;
}

.home-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.home-blog-card:hover .home-blog-image img {
  transform: scale(1.035);
}

.home-blog-meta {
  padding: 18px 10px 0;
}

.home-blog-meta p {
  margin: 0 0 10px;
  color: #8f3fd4;
  font-size: 0.72rem;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-blog-meta h3 {
  margin: 0;
  color: #1f2229;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 800;
}

.home-blog-meta h3 a {
  color: inherit;
  text-decoration: none;
}

.home-blog-actions {
  margin: 38px 0 0;
}

.home-blog-actions .button {
  min-width: 255px;
  min-height: 38px;
  padding: 9px 34px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  background: transparent;
  color: #1f2229;
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.careers-page {
  background: #f8f8f8;
}

.careers-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.careers-page .header-inner {
  width: min(100%, calc(100% - 36px));
  min-height: 64px;
}

.careers-page .brand img {
  width: 162px;
}

.careers-page .main-nav {
  gap: 10px;
}

.careers-page .main-nav a {
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.careers-page .main-nav a:hover,
.careers-page .main-nav a[aria-current="page"] {
  background: transparent;
  color: #fff;
}

.careers-page .main-nav .nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: #9d4fe8;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(69, 35, 125, 0.22);
}

.careers-page .header-tools {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #fff;
}

.careers-page .header-tools a {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.careers-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: #181a20;
}

.careers-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 15, 0.38);
}

.careers-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.careers-hero-content {
  position: relative;
  z-index: 1;
  width: min(1110px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 0;
}

.careers-hero-content h1 {
  margin: 0;
  padding: 16px 0;
  color: #fff;
  font-size: clamp(4rem, 6.25vw, 4.95rem);
  line-height: 1.13;
  font-weight: 700;
}

.careers-hero-content p {
  margin: 0;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.55;
}

.careers-breadcrumbs {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  transform: translateX(-50%);
}

.careers-breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.careers-inner {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.careers-intro {
  background: #f8f8f8;
  padding: 72px 0;
}

.careers-intro p {
  margin: 0;
  color: #737373;
  font-size: 1rem;
  line-height: 1.82;
}

.careers-open-head {
  background: #f8f8f8;
  padding: 0 0 10px;
  text-align: center;
}

.careers-open-head h2 {
  margin: 0;
  color: #262626;
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 500;
}

.careers-positions {
  background: #f8f8f8;
  padding: 72px 0;
}

.careers-positions-grid {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.career-position-card {
  min-width: 0;
}

.career-position-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #20232b;
  text-decoration: none;
}

.career-position-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.career-position-card:hover .career-position-image img {
  transform: scale(1.025);
}

.career-position-body {
  min-height: 370px;
  padding: 78px;
  color: #9a9a9a;
}

.career-position-location {
  margin: 0 0 16px;
  color: #9a9a9a;
  font-size: 0.69rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.career-position-body h3 {
  margin: 0 0 13px;
  color: #262626;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
}

.career-position-summary {
  margin: 24px 0 0;
  color: #9a9a9a;
  font-size: 1rem;
  line-height: 1.82;
}

.career-position-button {
  display: inline-flex;
  min-width: 194px;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 52px;
  background: #964ae2;
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.career-position-button:hover {
  background: #8340c8;
  color: #fff;
}

.career-detail-content {
  background: #fff;
  padding: 72px 0;
}

.career-detail-inner {
  width: min(975px, calc(100% - 32px));
  margin: 0 auto;
}

.career-detail-article {
  padding: 0 15px;
  color: #737373;
  font-size: 1rem;
  line-height: 1.82;
}

.career-detail-article p {
  margin: 0 0 35px;
}

.career-detail-article ul,
.career-detail-article ol {
  margin: 0 0 20px 20px;
  padding-left: 20px;
}

.career-detail-article li {
  margin: 0;
}

.career-detail-article strong {
  color: inherit;
  font-weight: 700;
}

.career-detail-article a {
  color: #964ae2;
  text-decoration: none;
}

.career-detail-article a:hover {
  color: #8340c8;
}

.career-detail-article figure {
  margin: 0 0 35px;
}

.career-detail-article figure img {
  width: 100%;
  height: auto;
}

.team-page {
  background: #f8f8f8;
}

.team-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.team-page .header-inner {
  width: min(100%, calc(100% - 36px));
  min-height: 64px;
}

.team-page .brand img {
  width: 162px;
}

.team-page .main-nav {
  gap: 10px;
}

.team-page .main-nav a {
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.team-page .main-nav a:hover,
.team-page .main-nav a[aria-current="page"] {
  background: transparent;
  color: #fff;
}

.team-page .main-nav .nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: #9d4fe8;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(69, 35, 125, 0.22);
}

.team-page .header-tools {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #fff;
}

.team-page .header-tools a {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.team-section {
  background: #f8f8f8;
  padding: 72px 0;
}

.team-breadcrumbs {
  bottom: 24px;
  font-size: 15px;
  line-height: 30px;
}

.team-grid {
  width: min(1170px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 0;
}

.team-member-card {
  min-height: 304px;
  min-width: 0;
  padding: 0 15px;
  color: #737373;
  text-align: center;
}

.team-member-card.has-social {
  min-height: 351px;
}

.team-member-image {
  width: 100%;
  min-height: 184px;
  margin: 0 0 24px;
  line-height: 0;
  text-align: center;
}

.team-member-image img {
  display: inline-block;
  width: 172px;
  height: 172px;
  margin-bottom: 12px;
  border-radius: 50%;
  object-fit: cover;
}

.team-member-title {
  margin-top: 30px;
}

.team-member-title h2 {
  margin: 0;
  color: #262626;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 500;
}

.team-member-title p {
  margin: 0;
  color: #737373;
  font-size: 1rem;
  line-height: 1.82;
}

.team-member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.team-member-social a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.team-member-social a:hover {
  color: #964ae2;
}

.game-art-page {
  background: #f8f8f8;
  color: #737373;
  font-family: Roboto, arial, sans-serif;
  line-height: 29px;
}

.game-art-page h1,
.game-art-page h2,
.game-art-page h3,
.game-art-page h4,
.game-art-page h5,
.game-art-page h6,
.game-art-page .main-nav a {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
}

.game-art-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.game-art-page .header-inner {
  width: min(100%, calc(100% - 36px));
  min-height: 64px;
}

.game-art-page .brand img {
  width: 162px;
}

.game-art-page .main-nav {
  gap: 10px;
}

.game-art-page .main-nav a {
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.game-art-page .main-nav a:hover,
.game-art-page .main-nav a[aria-current="page"] {
  background: transparent;
  color: #fff;
}

.game-art-page .main-nav .nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: #9d4fe8;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(69, 35, 125, 0.22);
}

.game-art-page .header-tools {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #fff;
}

.game-art-page .header-tools a {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.game-art-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: #181a20;
}

.game-art-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 15, 0.38);
}

.game-art-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.game-art-hero-content {
  position: relative;
  z-index: 1;
  width: min(1110px, calc(100% - 32px));
  margin: 0 auto;
}

.game-art-hero-content h1 {
  margin: 0;
  padding: 16px 0;
  color: #fff;
  font-size: clamp(4rem, 6.25vw, 4.95rem);
  line-height: 1.13;
  font-weight: 700;
}

.game-art-hero-content p {
  margin: 0;
  color: #fff;
  font-family: Poppins, "Droid Serif", serif;
  font-size: 1.125rem;
  line-height: 28px;
}

.game-art-breadcrumbs {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 29px;
}

.game-art-breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.game-art-breadcrumbs a::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.75);
}

.game-art-content {
  background: #f8f8f8;
}

.game-art-section {
  padding: 72px 0 0;
  background: #f8f8f8;
}

.game-art-section:last-child {
  padding-bottom: 72px;
}

.game-art-section-inner {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.game-art-section.has-image .game-art-section-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.game-art-section.image-first .game-art-image {
  order: -1;
}

.game-art-copy {
  min-width: 0;
}

.game-art-section:not(.has-image) .game-art-copy h2 {
  text-align: center;
}

.game-art-copy h2 {
  margin: 0 0 24px;
  color: #262626;
  font-size: 2.488rem;
  line-height: 1.2;
  font-weight: 500;
}

.game-art-copy p {
  margin: 0;
  color: #737373;
  font-size: 1rem;
  line-height: 29px;
}

.game-art-image {
  min-width: 0;
  margin: 0;
}

.game-art-image img {
  width: 100%;
  height: auto;
}

.service-page {
  background: #f8f8f8;
  color: #737373;
  font-family: Roboto, arial, sans-serif;
  line-height: 29px;
}

.service-page h1,
.service-page h2,
.service-page h3,
.service-page h4,
.service-page h5,
.service-page h6,
.service-page .main-nav a {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
}

.service-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.service-page .header-inner {
  width: min(100%, calc(100% - 36px));
  min-height: 64px;
}

.service-page .brand img {
  width: 162px;
}

.service-page .main-nav {
  gap: 10px;
}

.service-page .main-nav a {
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-page .main-nav a:hover,
.service-page .main-nav a[aria-current="page"] {
  background: transparent;
  color: #fff;
}

.service-page .main-nav .nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: #9d4fe8;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(69, 35, 125, 0.22);
}

.service-page .header-tools {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #fff;
}

.service-page .header-tools a {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.service-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: #181a20;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 15, 0.38);
}

.service-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.service-hero-content {
  position: relative;
  z-index: 1;
  width: min(1110px, calc(100% - 32px));
  margin: 0 auto;
}

.service-hero-content h1 {
  margin: 0;
  padding: 16px 0;
  color: #fff;
  font-size: clamp(4rem, 6.25vw, 4.95rem);
  line-height: 1.13;
  font-weight: 700;
}

.service-hero-content p {
  margin: 0;
  color: #fff;
  font-family: Poppins, "Droid Serif", serif;
  font-size: 1.125rem;
  line-height: 28px;
}

.service-breadcrumbs {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 29px;
}

.service-breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.service-breadcrumbs a::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.75);
}

.service-content {
  background: #f8f8f8;
}

.service-section {
  padding: 72px 0;
  background: #f8f8f8;
}

.service-section:first-child {
  padding-bottom: 0;
}

.service-section-inner {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.service-section.has-image .service-section-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.service-section.image-first .service-image {
  order: -1;
}

.service-copy {
  min-width: 0;
}

.service-section:not(.has-image) .service-copy h2 {
  text-align: center;
}

.service-copy h2 {
  margin: 0 0 24px;
  color: #262626;
  font-size: 2.488rem;
  line-height: 1.2;
  font-weight: 500;
}

.service-copy p {
  margin: 0;
  color: #737373;
  font-size: 1rem;
  line-height: 29px;
}

.service-image {
  min-width: 0;
  margin: 0;
}

.service-image img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.gambling-page .service-section,
.blockchain-page .service-section {
  padding: 72px 0 0;
}

.gambling-page .service-section:last-child,
.blockchain-page .service-section:last-child {
  padding-bottom: 72px;
}

.gambling-page .service-image img,
.blockchain-page .service-image img {
  width: 100%;
}

.blog-archive-page {
  background: #fff;
}

.blog-archive-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.blog-archive-page .header-inner {
  width: min(100%, calc(100% - 36px));
  min-height: 64px;
}

.blog-archive-page .brand img {
  width: 162px;
}

.blog-archive-page .main-nav {
  gap: 10px;
}

.blog-archive-page .main-nav a {
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.blog-archive-page .main-nav a:hover,
.blog-archive-page .main-nav a[aria-current="page"] {
  background: transparent;
  color: #fff;
}

.blog-archive-page .main-nav .nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: #9d4fe8;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(69, 35, 125, 0.22);
}

.blog-archive-page .header-tools {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #fff;
}

.blog-archive-page .header-tools a {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.single-post-page {
  background: #fff;
  color: #737373;
  font-family: Roboto, arial, sans-serif;
  line-height: 29px;
}

.single-post-page h1,
.single-post-page h2,
.single-post-page h3,
.single-post-page h4,
.single-post-page h5,
.single-post-page h6,
.single-post-page .main-nav a {
  font-family: Montserrat, Arial, Helvetica, sans-serif;
}

.single-post-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.single-post-page .header-inner {
  width: min(100%, calc(100% - 36px));
  min-height: 64px;
}

.single-post-page .brand img {
  width: 162px;
}

.single-post-page .main-nav {
  gap: 10px;
}

.single-post-page .main-nav a {
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.single-post-page .main-nav a:hover,
.single-post-page .main-nav a[aria-current="page"] {
  background: transparent;
  color: #fff;
}

.single-post-page .main-nav .nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: #9d4fe8;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(69, 35, 125, 0.22);
}

.single-post-page .header-tools {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #fff;
}

.single-post-page .header-tools a {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.blog-archive-hero-content p {
  color: rgba(255, 255, 255, 0.7);
}

.blog-archive-breadcrumbs {
  bottom: 24px;
  font-size: 15px;
  line-height: 30px;
}

.blog-archive-content {
  background: #fff;
}

.blog-archive-inner {
  width: min(1170px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 75%) minmax(0, 25%);
}

.blog-main-column {
  min-width: 0;
  padding: 90px 15px 107px;
}

.blog-post-card {
  display: flex;
  width: 100%;
  max-width: 823px;
  margin: 0 0 64px;
  color: #737373;
}

.blog-post-meta {
  flex: 0 0 150px;
  margin-right: 30px;
  color: #aaa;
  font-size: 0.81rem;
  line-height: 1.6;
  text-align: right;
}

.blog-post-date {
  display: block;
  margin: 0 0 20px;
  padding: 0 0 20px;
  color: #0f0f0f;
  text-decoration: none;
}

.blog-post-day {
  display: block;
  margin-right: -3px;
  color: #0f0f0f;
  font-size: 3.75rem;
  line-height: 50px;
  font-weight: 700;
}

.blog-post-month {
  display: block;
  color: #0f0f0f;
  font-size: 0.88rem;
  line-height: 29px;
}

.blog-post-byline {
  margin: 8px 0 16px;
  padding: 0;
  color: #aaa;
  font-size: 0.81rem;
  line-height: 20.8px;
}

.blog-post-byline span {
  display: block;
  margin-bottom: 6px;
}

.blog-post-byline a {
  color: #262626;
  text-decoration: none;
}

.blog-post-body {
  width: 643px;
  min-width: 0;
  padding: 0 0 15px;
}

.blog-post-body h2 {
  margin: 0 0 24px;
  color: #262626;
  font-size: 1.728rem;
  line-height: 1.2;
  font-weight: 500;
}

.blog-post-body h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-post-body h2 a:hover,
.blog-post-byline a:hover,
.blog-categories a:hover,
.blog-trending-title:hover,
.blog-post-read a:hover {
  color: #964ae2;
}

.blog-post-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 643 / 359;
  margin: 0 0 16px;
  line-height: 0;
}

.blog-post-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category-page .blog-post-image {
  aspect-ratio: auto;
}

.blog-category-page .blog-post-image img {
  height: auto;
  object-fit: initial;
}

.blog-category-page .blog-pagination {
  width: 92px;
  margin-left: 365px;
}

.blog-post-body p {
  margin: 0 0 12px;
  color: #737373;
  font-size: 1rem;
  line-height: 29px;
}

.blog-post-read {
  min-height: 32px;
  overflow: hidden;
  line-height: 32px;
}

.blog-post-read a {
  display: inline-block;
  color: #964ae2;
  font-size: 0.88rem;
  line-height: 14px;
  text-decoration: none;
}

.blog-pagination {
  position: relative;
  top: 8px;
  width: 184px;
  margin: 8px 0 0 319px;
}

.blog-pagination ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-pagination a {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 7px;
  border: 2px solid #ddd;
  background: #fff;
  color: #262626;
  font-size: 0.75rem;
  line-height: 28px;
  font-weight: 300;
  text-align: center;
  text-decoration: none;
}

.blog-pagination a.is-active,
.blog-pagination a:hover {
  border-color: #0f0f0f;
  background: #0f0f0f;
  color: #fff;
}

.blog-sidebar {
  min-width: 0;
  padding: 90px 0 0;
}

.blog-widget {
  width: 293px;
  margin: 0 0 70px;
  padding-left: 30px;
}

.blog-widget h2 {
  margin: 0 0 30px;
  color: #262626;
  font-size: 0.75rem;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
}

.blog-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-categories li {
  min-height: 42px;
  color: #737373;
  font-size: 0.88rem;
  line-height: 40px;
}

.blog-categories a {
  color: #767676;
  text-decoration: none;
}

.blog-trending li {
  display: grid;
  min-height: 75px;
  grid-template-columns: 75px minmax(0, 1fr);
  column-gap: 10px;
  margin: 0 0 10px;
  color: #737373;
  font-size: 0.88rem;
  line-height: 29px;
}

.blog-trending li:last-child {
  margin-bottom: 0;
}

.blog-trending-image {
  display: block;
  width: 75px;
  height: 75px;
  line-height: 0;
}

.blog-trending-image img {
  width: 75px;
  height: 75px;
  object-fit: cover;
}

.blog-trending-title {
  display: block;
  color: #964ae2;
  font-size: 0.88rem;
  line-height: 29px;
  text-decoration: none;
}

.single-post-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: #181a20;
}

.single-post-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 15, 0.38);
}

.single-post-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  object-fit: cover;
  object-position: center top;
}

.single-post-hero-content {
  position: relative;
  z-index: 1;
  width: min(1110px, calc(100% - 32px));
  margin: 0 auto;
}

.single-post-hero-content h1 {
  margin: 0;
  padding: 16px 0;
  color: #fff;
  font-size: clamp(4rem, 6.25vw, 4.95rem);
  line-height: 1.13;
  font-weight: 700;
}

.single-post-breadcrumbs {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 1;
  width: 100%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 29px;
  transform: translateX(-50%);
}

.single-post-breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.single-post-breadcrumbs span,
.single-post-breadcrumbs a {
  margin: 0 8px;
}

.single-post-content {
  background: #fff;
}

.single-post-inner {
  width: min(1170px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 75%) minmax(0, 25%);
}

.single-post-main {
  min-width: 0;
  padding: 90px 15px 0;
}

.single-post-article {
  width: 100%;
  max-width: 823px;
  color: #737373;
  font-size: 1rem;
  line-height: 29px;
}

.single-post-featured {
  width: 100%;
  max-width: 823px;
  margin: 0 0 16px;
}

.single-post-body {
  color: #737373;
}

.single-post-body > :first-child {
  margin-top: 0;
}

.single-post-body p {
  margin: 0 0 35px;
  color: #737373;
  font-size: 1rem;
  line-height: 29px;
}

.single-post-body h2 {
  margin: 0 0 24px;
  color: #262626;
  font-size: 2.488rem;
  line-height: 1.2;
  font-weight: 500;
}

.single-post-body h3 {
  margin: 0 0 18px;
  color: #262626;
  font-size: 1.728rem;
  line-height: 1.2;
  font-weight: 500;
}

.single-post-body ul,
.single-post-body ol {
  margin: 0 0 20px;
  padding-left: 20px;
  color: #737373;
}

.single-post-body li {
  color: #737373;
  font-size: 1rem;
  line-height: 29px;
}

.single-post-body a {
  color: #964ae2;
}

.single-post-body img,
.single-post-body figure {
  margin: 0 0 16px;
}

.single-post-footer {
  margin-top: 0;
  padding-top: 47px;
  padding-bottom: 90px;
}

.single-post-author {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  min-height: 93px;
  margin: 0 0 30px;
  color: #aaa;
}

.single-post-author figure {
  flex: 0 0 70px;
  margin: 0;
}

.single-post-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.single-post-author-summary {
  width: 253px;
  color: #aaa;
  font-size: 0.88rem;
  line-height: 1.4;
}

.single-post-author-name {
  display: inline-block;
  margin: 0 0 10px;
  padding-top: 5px;
  color: #262626;
  font-size: 1.12rem;
  line-height: 1.4;
  text-decoration: none;
}

.single-post-author-summary p {
  margin: 0;
  padding: 10px 0;
  color: #aaa;
}

.single-post-author-summary a {
  color: #964ae2;
  text-decoration: none;
}

.single-post-actions {
  min-height: 86px;
  padding-bottom: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.single-post-like {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 73px;
  height: 38px;
  border: 1.6px solid rgba(35, 35, 35, 0.1);
  border-radius: 30px;
  color: #aaa;
  font-size: 0.88rem;
  line-height: 34px;
  text-decoration: none;
}

.single-post-share {
  display: flex;
  align-items: center;
  width: 430px;
  height: 38px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-post-share li {
  margin: 0 0 0 14px;
}

.single-post-share a {
  display: block;
  min-width: 74px;
  height: 38px;
  padding: 0 18px;
  border: 1.6px solid currentColor;
  border-radius: 30px;
  background: transparent;
  font-size: 0.75rem;
  line-height: 36px;
  text-align: center;
  text-decoration: none;
}

.single-post-share .share-facebook {
  color: #6a75c8;
}

.single-post-share .share-twitter {
  color: #6abaf7;
}

.single-post-share .share-google {
  color: #f05660;
}

.single-post-share .share-linkedin {
  color: #2e82d9;
}

.single-post-share .share-pinterest {
  color: #f00;
}

.portfolio-archive-page {
  background: #fff;
}

.portfolio-archive-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.portfolio-archive-page .header-inner {
  width: min(100%, calc(100% - 36px));
  min-height: 64px;
}

.portfolio-archive-page .brand img {
  width: 162px;
}

.portfolio-archive-page .main-nav {
  gap: 10px;
}

.portfolio-archive-page .main-nav a {
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portfolio-archive-page .main-nav a:hover,
.portfolio-archive-page .main-nav a[aria-current="page"] {
  background: transparent;
  color: #fff;
}

.portfolio-archive-page .main-nav .nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: #9d4fe8;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(69, 35, 125, 0.22);
}

.portfolio-archive-page .header-tools {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #fff;
}

.portfolio-archive-page .header-tools a {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.portfolio-archive-hero-content p {
  color: rgba(255, 255, 255, 0.7);
}

.portfolio-archive-hero > img {
  object-position: center top;
}

.portfolio-archive-breadcrumbs {
  bottom: 24px;
  font-size: 15px;
  line-height: 30px;
}

.portfolio-archive-projects {
  overflow: hidden;
  background: #fff;
}

.portfolio-archive-filters {
  display: flex;
  min-height: 95px;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 24px 0 40px;
  list-style: none;
}

.portfolio-filter-button {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: #262626;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  line-height: 31px;
  opacity: 0.5;
  text-align: center;
}

.portfolio-filter-button.is-active,
.portfolio-filter-button:hover {
  opacity: 1;
}

.portfolio-archive-grid {
  position: relative;
  width: calc(100% + 29px);
  min-height: 240px;
  margin: 2px 0 0 -15px;
}

.portfolio-archive-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #151515;
}

.portfolio-archive-card[hidden] {
  display: none;
}

.portfolio-archive-link {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  line-height: 0;
  text-decoration: none;
}

.portfolio-archive-link img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 260ms ease;
}

.portfolio-archive-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(12, 12, 12, 0.52);
  color: #fff;
  line-height: 1.3;
  opacity: 0;
  text-align: center;
  transition: opacity 220ms ease;
}

.portfolio-archive-link:hover img,
.portfolio-archive-link:focus-visible img {
  transform: scale(1.045);
}

.portfolio-archive-link:hover .portfolio-archive-overlay,
.portfolio-archive-link:focus-visible .portfolio-archive-overlay {
  opacity: 1;
}

.portfolio-archive-title {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
}

.portfolio-archive-category {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.portfolio-detail-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.portfolio-detail-page .header-inner {
  width: min(100%, calc(100% - 36px));
  min-height: 64px;
}

.portfolio-detail-page .brand img {
  width: 162px;
}

.portfolio-detail-page .main-nav {
  gap: 10px;
}

.portfolio-detail-page .main-nav a {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
  border-radius: 0;
  background: transparent;
}

.portfolio-detail-page .main-nav a:hover,
.portfolio-detail-page .main-nav a[aria-current="page"] {
  color: #fff;
  background: transparent;
}

.portfolio-detail-page .main-nav .nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: #9d4fe8;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(69, 35, 125, 0.22);
}

.portfolio-detail-page .header-tools {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #fff;
}

.portfolio-detail-page .header-tools a {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.portfolio-title-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: #1b1d22;
}

.portfolio-title-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 18, 0.34);
}

.portfolio-title-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}

.portfolio-title-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 64px;
}

.portfolio-title-content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 7vw, 5.05rem);
  line-height: 1.03;
  font-weight: 900;
}

.portfolio-breadcrumbs {
  margin-top: 58px;
  display: flex;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.portfolio-breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.portfolio-overview {
  background: #f7f7f7;
  padding: 84px 0 94px;
}

.portfolio-overview-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) minmax(300px, 1.72fr) minmax(150px, 0.85fr);
  gap: 78px;
  align-items: start;
}

.portfolio-overview h2 {
  margin: 0;
  color: #20232a;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 900;
}

.portfolio-facts ul,
.portfolio-tech ul {
  list-style: none;
  padding: 0;
  margin: 52px 0 0;
  color: #6f737b;
  line-height: 1.85;
}

.portfolio-copy p {
  margin: 0 0 31px;
  color: #6f737b;
  line-height: 1.86;
}

.portfolio-copy p:last-child {
  margin-bottom: 0;
}

.portfolio-gallery-section {
  background: #fff;
}

.portfolio-gallery {
  width: 100%;
  column-count: 3;
  column-gap: 6px;
}

.portfolio-gallery a {
  display: block;
  margin: 0 0 6px;
  break-inside: avoid;
  overflow: hidden;
  background: #f2f2f2;
  text-decoration: none;
}

.portfolio-gallery img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0;
}

.portfolio-project-nav {
  background: #fff;
  padding: 48px 0;
}

.portfolio-project-nav-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.project-nav-link {
  color: var(--ink);
  text-decoration: none;
}

.project-nav-link span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-nav-link strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.4rem;
}

.project-nav-next {
  text-align: right;
}

.index-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.archive-toolbar {
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.center-actions {
  margin-top: 28px;
  text-align: center;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 52px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--brand);
  font-size: 1.8rem;
  font-weight: 900;
}

.quote-request-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: #1b1b1b url("/assets/uploads/2018/05/online-gambling-game-development-1.jpg") center / cover no-repeat;
  color: #fefefe;
  font-family: Roboto, arial, sans-serif;
  line-height: 29px;
  isolation: isolate;
}

.quote-request-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(20, 22, 25, 0.3);
}

.quote-request-inner {
  position: relative;
  z-index: 1;
  width: min(1170px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 15px;
}

.quote-request-head {
  margin: 0 0 72px;
  text-align: center;
}

.quote-request-head h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 40px;
  line-height: 46px;
  font-weight: 500;
}

.quote-request-head p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}

.quote-request-form {
  width: 100%;
  margin: 0;
  color: #fefefe;
}

.quote-request-form p {
  margin: 0;
}

.quote-field-row {
  display: grid;
  grid-template-columns: calc(50% - 23px) minmax(0, 1fr);
  column-gap: 23px;
  margin: 0 0 13px;
}

.quote-request-form input,
.quote-request-form textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  color: #fefefe;
  font: inherit;
  font-size: 14px;
  line-height: 20px;
  outline: 0;
}

.quote-request-form input {
  height: 56px;
  padding: 7px 15px;
}

.quote-request-form textarea {
  height: 110px;
  margin: 0 0 13px;
  padding: 12px 15px 7px;
  resize: vertical;
}

.quote-request-form input::placeholder,
.quote-request-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.88);
}

.quote-request-form input:focus,
.quote-request-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.34);
}

.quote-request-form input:disabled {
  cursor: wait;
  opacity: 0.72;
}

.quote-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quote-recaptcha-note {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 29px;
}

.quote-recaptcha-note a {
  color: #fff;
}

.quote-request-form .quote-submit-wrap {
  width: calc(50% - 23px);
  margin: 44px 0 0;
}

.quote-request-form input[type="submit"] {
  padding: 0;
  border-color: #964ae2;
  background: #964ae2;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  line-height: 56px;
  font-weight: 400;
  text-align: center;
}

.quote-request-form input[type="submit"]:hover {
  border-color: #8440ca;
  background: #8440ca;
}

.quote-response-output {
  height: 0;
  margin: 32px 0 0;
  overflow: hidden;
  visibility: hidden;
}

.quote-response-output.is-visible {
  height: auto;
  min-height: 56px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  visibility: visible;
}

.quote-response-output.is-success {
  border-color: rgba(114, 214, 156, 0.62);
}

.quote-response-output.is-error {
  border-color: rgba(255, 116, 116, 0.68);
}

.site-footer {
  background: #151a24;
  color: rgba(255, 255, 255, 0.76);
  padding: 56px 0 28px;
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-title {
  color: #fff;
  font-weight: 900;
  margin: 0 0 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-clutch {
  min-width: 0;
}

.clutch-widget-wrap {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.clutch-widget {
  max-width: 100%;
}

.copyright {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .section-head h1,
  .section-head h2 {
    font-size: 2.45rem;
  }

  .content h2 {
    font-size: 1.8rem;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quote-field-row {
    grid-template-columns: 1fr;
    row-gap: 13px;
  }

  .quote-request-form .quote-submit-wrap {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .featured-image {
    aspect-ratio: 4 / 3;
  }

  .portfolio-detail-page .header-inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 92px;
    padding: 14px 0;
  }

  .portfolio-detail-page .main-nav {
    width: auto;
    justify-content: flex-end;
    gap: 7px;
  }

  .portfolio-detail-page .header-tools {
    display: none;
  }

  .portfolio-archive-page .header-inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 92px;
    padding: 14px 0;
  }

  .portfolio-archive-page .main-nav {
    width: auto;
    justify-content: flex-end;
    gap: 7px;
  }

  .portfolio-archive-page .header-tools {
    display: none;
  }

  .blog-archive-page .header-inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 92px;
    padding: 14px 0;
  }

  .blog-archive-page .main-nav {
    width: auto;
    justify-content: flex-end;
    gap: 7px;
  }

  .blog-archive-page .header-tools {
    display: none;
  }

  .single-post-page .header-inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 92px;
    padding: 14px 0;
  }

  .single-post-page .main-nav {
    width: auto;
    justify-content: flex-end;
    gap: 7px;
  }

  .single-post-page .header-tools {
    display: none;
  }

  .game-art-page .header-inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 92px;
    padding: 14px 0;
  }

  .game-art-page .main-nav {
    width: auto;
    justify-content: flex-end;
    gap: 7px;
  }

  .game-art-page .header-tools {
    display: none;
  }

  .game-art-section {
    padding-top: 40px;
  }

  .game-art-section:last-child {
    padding-bottom: 40px;
  }

  .game-art-section.has-image .game-art-section-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-page .header-inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 92px;
    padding: 14px 0;
  }

  .service-page .main-nav {
    width: auto;
    justify-content: flex-end;
    gap: 7px;
  }

  .service-page .header-tools {
    display: none;
  }

  .service-section {
    padding: 40px 0;
  }

  .service-section:first-child {
    padding-bottom: 0;
  }

  .service-section.has-image .service-section-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gambling-page .service-section,
  .blockchain-page .service-section {
    padding: 40px 0 0;
  }

  .gambling-page .service-section:last-child,
  .blockchain-page .service-section:last-child {
    padding-bottom: 40px;
  }

  .careers-page .header-inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 92px;
    padding: 14px 0;
  }

  .careers-page .main-nav {
    width: auto;
    justify-content: flex-end;
    gap: 7px;
  }

  .careers-page .header-tools {
    display: none;
  }

  .team-page .header-inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 92px;
    padding: 14px 0;
  }

  .team-page .main-nav {
    width: auto;
    justify-content: flex-end;
    gap: 7px;
  }

  .team-page .header-tools {
    display: none;
  }

  .careers-positions-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .career-position-body {
    min-height: 0;
  }

  .portfolio-overview-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .portfolio-facts ul,
  .portfolio-tech ul {
    margin-top: 16px;
  }

  .portfolio-gallery {
    column-count: 2;
  }

  .blog-archive-inner {
    display: block;
  }

  .blog-main-column {
    width: min(823px, calc(100% - 32px));
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }

  .blog-sidebar {
    display: none;
  }

  .single-post-inner {
    display: block;
  }

  .single-post-main {
    width: min(823px, calc(100% - 32px));
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }

  .single-post-sidebar {
    display: none;
  }

  .blog-pagination {
    margin-right: auto;
    margin-left: auto;
  }

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

  .home-clients-track li {
    flex-basis: 190px;
  }

  .home-blog-card {
    flex-basis: 402px;
  }

  .home-page .header-inner {
    align-items: center;
    min-height: 138px;
    padding-top: 18px;
  }

  .home-page .main-nav {
    gap: 12px;
  }

  .home-page .header-tools {
    display: none;
  }

  .home-page .hero {
    min-height: 600px;
  }

  .home-page .hero-content {
    padding: 190px 0 74px;
    transform: none;
  }

  .home-page .hero h1 {
    font-size: 3.1rem;
  }

  .home-est-inner {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .home-est-title h2 {
    max-width: 520px;
  }

  .home-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 30px;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .hero-content,
  .content-wrap,
  .featured-image {
    width: min(100% - 22px, 1180px);
  }

  .portfolio-detail-page .header-inner {
    width: min(100% - 22px, 1180px);
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 168px;
  }

  .portfolio-detail-page .brand img {
    width: 132px;
  }

  .portfolio-detail-page .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px 10px;
  }

  .portfolio-detail-page .main-nav a {
    padding: 8px 4px;
    font-size: 0.72rem;
  }

  .portfolio-detail-page .main-nav .nav-cta {
    min-height: 40px;
    padding: 8px 10px;
  }

  .portfolio-archive-page .header-inner {
    width: min(100% - 22px, 1180px);
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 168px;
  }

  .portfolio-archive-page .brand img {
    width: 132px;
  }

  .portfolio-archive-page .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px 10px;
  }

  .portfolio-archive-page .main-nav a {
    padding: 8px 4px;
    font-size: 0.72rem;
  }

  .portfolio-archive-page .main-nav .nav-cta {
    min-height: 40px;
    padding: 8px 10px;
  }

  .blog-archive-page .header-inner {
    width: min(100% - 22px, 1180px);
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 168px;
  }

  .blog-archive-page .brand img {
    width: 132px;
  }

  .blog-archive-page .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px 10px;
  }

  .blog-archive-page .main-nav a {
    padding: 8px 4px;
    font-size: 0.72rem;
  }

  .blog-archive-page .main-nav .nav-cta {
    min-height: 40px;
    padding: 8px 10px;
  }

  .single-post-page .header-inner {
    width: min(100% - 22px, 1180px);
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 168px;
  }

  .single-post-page .brand img {
    width: 132px;
  }

  .single-post-page .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px 10px;
  }

  .single-post-page .main-nav a {
    padding: 8px 4px;
    font-size: 0.72rem;
  }

  .single-post-page .main-nav .nav-cta {
    min-height: 40px;
    padding: 8px 10px;
  }

  .game-art-page .header-inner {
    width: min(100% - 22px, 1180px);
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 168px;
  }

  .game-art-page .brand img {
    width: 132px;
  }

  .game-art-page .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px 10px;
  }

  .game-art-page .main-nav a {
    padding: 8px 4px;
    font-size: 0.72rem;
  }

  .game-art-page .main-nav .nav-cta {
    min-height: 40px;
    padding: 8px 10px;
  }

  .game-art-hero {
    min-height: 400px;
  }

  .game-art-hero-content {
    width: min(1110px, calc(100% - 140px));
  }

  .game-art-hero-content h1 {
    padding: 16px 0;
    font-size: 1.75rem;
    line-height: 1.28;
  }

  .game-art-hero-content p {
    font-size: 0.94rem;
    line-height: 20px;
  }

  .game-art-breadcrumbs {
    bottom: 24px;
    font-size: 1rem;
    line-height: 29px;
  }

  .game-art-section-inner {
    width: min(265px, calc(100% - 22px));
  }

  .game-art-copy h2 {
    font-size: 1.728rem;
    line-height: 1.2;
  }

  .service-page .header-inner {
    width: min(100% - 22px, 1180px);
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 168px;
  }

  .service-page .brand img {
    width: 132px;
  }

  .service-page .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px 10px;
  }

  .service-page .main-nav a {
    padding: 8px 4px;
    font-size: 0.72rem;
  }

  .service-page .main-nav .nav-cta {
    min-height: 40px;
    padding: 8px 10px;
  }

  .service-hero {
    min-height: 400px;
  }

  .service-hero-content {
    width: min(1110px, calc(100% - 140px));
  }

  .service-hero-content h1 {
    padding: 16px 0;
    font-size: 1.75rem;
    line-height: 1.28;
  }

  .service-hero-content p {
    font-size: 0.94rem;
    line-height: 20px;
  }

  .service-breadcrumbs {
    bottom: 24px;
    font-size: 1rem;
    line-height: 29px;
  }

  .service-section-inner {
    width: min(265px, calc(100% - 22px));
  }

  .service-copy h2 {
    font-size: 1.728rem;
    line-height: 1.2;
  }

  .careers-page .header-inner {
    width: min(100% - 22px, 1180px);
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 168px;
  }

  .careers-page .brand img {
    width: 132px;
  }

  .careers-page .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px 10px;
  }

  .careers-page .main-nav a {
    padding: 8px 4px;
    font-size: 0.72rem;
  }

  .careers-page .main-nav .nav-cta {
    min-height: 40px;
    padding: 8px 10px;
  }

  .team-page .header-inner {
    width: min(100% - 22px, 1180px);
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 168px;
  }

  .team-page .brand img {
    width: 132px;
  }

  .team-page .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px 10px;
  }

  .team-page .main-nav a {
    padding: 8px 4px;
    font-size: 0.72rem;
  }

  .team-page .main-nav .nav-cta {
    min-height: 40px;
    padding: 8px 10px;
  }

  .careers-hero {
    min-height: 560px;
  }

  .careers-hero-content {
    padding-top: 150px;
  }

  .careers-hero-content h1 {
    font-size: 3rem;
  }

  .careers-hero-content p {
    font-size: 1rem;
  }

  .careers-breadcrumbs {
    bottom: 24px;
  }

  .portfolio-archive-hero {
    min-height: 400px;
  }

  .portfolio-archive-hero-content {
    width: min(1110px, calc(100% - 140px));
    padding-top: 0;
  }

  .portfolio-archive-hero-content h1 {
    padding: 16px 0;
    font-size: 1.75rem;
    line-height: 1.28;
  }

  .portfolio-archive-hero-content p {
    max-width: 210px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.94rem;
    line-height: 1.27;
  }

  .portfolio-archive-filters {
    display: none;
  }

  .portfolio-archive-grid {
    width: min(100% - 22px, 345px);
    min-height: 0;
    margin: 40px auto 0;
  }

  .portfolio-archive-card {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    margin-bottom: 6px;
  }

  .blog-archive-hero {
    min-height: 400px;
  }

  .blog-archive-hero-content {
    width: min(1110px, calc(100% - 140px));
    padding-top: 0;
  }

  .blog-archive-hero-content h1 {
    padding: 16px 0;
    font-size: 1.75rem;
    line-height: 1.28;
  }

  .blog-archive-hero-content p {
    font-size: 0.94rem;
    line-height: 1.27;
  }

  .blog-archive-content {
    padding: 0;
  }

  .blog-archive-inner {
    width: 100%;
  }

  .blog-main-column {
    width: 265px;
    padding: 30px 0 54px;
  }

  .blog-post-card {
    display: block;
    width: 265px;
    max-width: 265px;
    margin-bottom: 64px;
  }

  .blog-post-meta {
    display: none;
  }

  .blog-post-body {
    width: 265px;
    padding: 0 0 16px;
  }

  .blog-post-body h2 {
    font-size: 1.44rem;
    line-height: 1.2;
  }

  .blog-post-card.has-long-title .blog-post-body h2 {
    min-height: 111px;
  }

  .blog-post-body p {
    min-height: 116px;
  }

  .single-post-hero {
    min-height: 400px;
  }

  .single-post-hero > img {
    min-height: 400px;
  }

  .single-post-hero-content {
    width: min(1110px, calc(100% - 140px));
  }

  .single-post-hero-content h1 {
    padding: 16px 0;
    font-size: 1.75rem;
    line-height: 1.28;
  }

  .single-post-breadcrumbs {
    bottom: 24px;
    font-size: 1rem;
    line-height: 29px;
  }

  .single-post-content {
    padding: 0;
  }

  .single-post-inner {
    width: 100%;
  }

  .single-post-main {
    width: 265px;
    padding: 30px 15px 0;
  }

  .single-post-article {
    max-width: 235px;
  }

  .single-post-featured {
    width: 235px;
  }

  .single-post-body h2 {
    font-size: 1.728rem;
    line-height: 1.2;
  }

  .single-post-author {
    gap: 16px;
  }

  .single-post-author-summary {
    width: 149px;
  }

  .single-post-actions {
    display: block;
    min-height: 218px;
  }

  .single-post-like {
    margin-bottom: 22px;
  }

  .single-post-share {
    width: 235px;
    height: auto;
    flex-wrap: wrap;
    gap: 9px 14px;
  }

  .single-post-share li {
    margin: 0;
  }

  .blog-pagination {
    width: 184px;
    margin-right: auto;
    margin-left: auto;
  }

  .blog-category-page .blog-pagination {
    width: 92px;
    margin-right: auto;
    margin-left: auto;
  }

  .team-hero {
    min-height: 400px;
  }

  .team-hero-content {
    width: min(1110px, calc(100% - 140px));
    padding-top: 0;
  }

  .team-hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.28;
  }

  .team-section {
    padding: 40px 0;
  }

  .team-grid {
    width: min(265px, calc(100% - 22px));
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-member-card {
    min-height: 264px;
    padding: 0;
  }

  .team-member-card.has-social {
    min-height: 353px;
  }

  .careers-intro,
  .careers-positions {
    padding: 54px 0;
  }

  .career-detail-content {
    padding: 54px 0;
  }

  .career-detail-inner {
    width: min(100% - 22px, 975px);
  }

  .career-detail-article {
    padding: 0;
  }

  .careers-open-head h2 {
    font-size: 2.15rem;
  }

  .career-position-body {
    padding: 42px 28px 48px;
  }

  .career-position-body h3 {
    font-size: 1.35rem;
  }

  .portfolio-title-hero {
    min-height: 420px;
  }

  .portfolio-title-content {
    padding-top: 166px;
  }

  .portfolio-title-content h1 {
    font-size: 2.55rem;
  }

  .portfolio-breadcrumbs {
    margin-top: 34px;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .portfolio-overview {
    padding: 56px 0 62px;
  }

  .portfolio-gallery {
    column-count: 1;
    column-gap: 0;
  }

  .portfolio-gallery a {
    margin-bottom: 6px;
  }

  .portfolio-project-nav-inner {
    grid-template-columns: 1fr;
  }

  .project-nav-next {
    text-align: left;
  }

  .home-portfolio {
    padding: 56px 0 62px;
  }

  .home-portfolio-head {
    margin-bottom: 34px;
  }

  .home-portfolio-head h2 {
    font-size: 2.15rem;
  }

  .home-portfolio-head p {
    font-size: 0.95rem;
  }

  .home-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .home-project-meta {
    min-height: 82px;
  }

  .home-clients {
    padding: 56px 0;
  }

  .home-clients h2 {
    font-size: 2.15rem;
  }

  .home-clients-window {
    margin-top: 40px;
  }

  .home-clients-track li {
    flex-basis: 165px;
  }

  .home-clients-track img {
    max-width: 138px;
  }

  .home-blog {
    padding: 56px 0 58px;
  }

  .home-blog-head {
    margin-bottom: 34px;
  }

  .home-blog-head h2 {
    font-size: 2.15rem;
  }

  .home-blog-head p {
    font-size: 0.95rem;
  }

  .home-blog-track {
    gap: 12px;
    padding: 0 11px;
  }

  .home-blog-card {
    flex-basis: min(343px, calc(100vw - 22px));
  }

  .home-blog-actions {
    margin-top: 34px;
  }

  .main-nav a {
    min-width: 0;
    padding: 8px 9px;
    font-size: 0.86rem;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-head h1,
  .section-head h2 {
    font-size: 2rem;
  }

  .content h2 {
    font-size: 1.55rem;
  }

  .section {
    padding: 54px 0;
  }

  .content {
    padding: 20px;
  }

  .home-page .header-inner {
    width: min(100% - 22px, 1180px);
    min-height: 170px;
  }

  .home-page .brand img {
    width: 132px;
  }

  .home-page .main-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .home-page .main-nav a {
    padding: 8px 4px;
    font-size: 0.82rem;
  }

  .home-page .main-nav .nav-cta {
    min-height: 40px;
    padding: 8px 10px;
  }

  .home-page .hero {
    min-height: 690px;
  }

  .home-page .hero-content {
    padding: 238px 0 66px;
  }

  .home-page .hero .eyebrow {
    font-size: 1rem;
  }

  .home-page .hero h1 {
    font-size: 2.35rem;
  }

  .home-page .hero .button {
    min-width: 0;
    width: 100%;
    max-width: 270px;
  }

  .home-page .service-card img {
    margin: 32px auto 20px;
  }

  .home-est {
    padding: 56px 0;
  }

  .home-est-inner,
  .home-welcome-inner {
    width: min(100% - 22px, 1170px);
  }

  .home-est-title,
  .home-est-copy,
  .home-welcome-inner {
    padding-right: 0;
    padding-left: 0;
  }

  .home-est-title h2,
  .home-welcome-head h2 {
    font-size: 2.15rem;
    line-height: 1.18;
  }

  .home-welcome {
    padding: 38px 0 58px;
  }

  .home-welcome-head {
    margin-bottom: 48px;
  }

  .home-work-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .home-work-step {
    min-height: 0;
    padding-left: 64px;
  }

  .home-work-step h3 {
    margin-bottom: 22px;
    font-size: 2rem;
    line-height: 1.18;
  }

  .quote-request-section {
    padding: 40px 0;
  }

  .quote-request-inner {
    width: min(265px, calc(100% - 22px));
    padding-right: 0;
    padding-left: 0;
  }

  .quote-request-head {
    margin-bottom: 32px;
  }

  .quote-request-head h2 {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 22px;
  }

  .quote-request-head p {
    font-size: 13px;
    line-height: 20px;
  }

  .quote-request-form input {
    height: 35px;
  }

  .quote-request-form input[type="submit"] {
    height: 56px;
  }

  .quote-request-form textarea {
    height: 50px;
  }
}

.home-page .site-header,
.careers-page .site-header,
.team-page .site-header,
.game-art-page .site-header,
.service-page .site-header,
.blog-archive-page .site-header,
.single-post-page .site-header,
.portfolio-archive-page .site-header,
.portfolio-detail-page .site-header,
.generic-page .site-header,
.archive-list-page .site-header,
.not-found-page .site-header {
  --sticky-header-overlap: 64px;
  position: sticky;
  inset: auto;
  top: 0;
  z-index: 100;
  width: 100%;
  margin-bottom: calc((var(--sticky-header-overlap) + 2px) * -1);
  background: rgba(13, 14, 18, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition: background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.home-page .site-header {
  --sticky-header-overlap: 126px;
}

.generic-page .site-header,
.archive-list-page .site-header,
.not-found-page .site-header {
  --sticky-header-overlap: 76px;
}

@media (max-width: 900px) {
  .careers-page .site-header,
  .team-page .site-header,
  .game-art-page .site-header,
  .service-page .site-header,
  .blog-archive-page .site-header,
  .single-post-page .site-header,
  .portfolio-archive-page .site-header,
  .portfolio-detail-page .site-header,
  .generic-page .site-header,
  .archive-list-page .site-header,
  .not-found-page .site-header {
    --sticky-header-overlap: 92px;
  }

  .home-page .site-header {
    --sticky-header-overlap: 138px;
  }
}

@media (min-width: 761px) {
  html:not(.header-scrolled) .site-header {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
  }
}

@media (max-width: 760px) {
  .home-page .site-header,
  .careers-page .site-header,
  .team-page .site-header,
  .game-art-page .site-header,
  .service-page .site-header,
  .blog-archive-page .site-header,
  .single-post-page .site-header,
  .portfolio-archive-page .site-header,
  .portfolio-detail-page .site-header,
  .generic-page .site-header,
  .archive-list-page .site-header,
  .not-found-page .site-header {
    --sticky-header-overlap: 64px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 14, 18, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
  }

  .site-header .header-inner {
    position: relative;
    width: min(100% - 22px, 1180px);
    min-height: 64px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
  }

  .site-header .brand {
    flex: 0 0 auto;
  }

  .site-header .brand img {
    width: 132px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    margin-left: auto;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(13, 14, 18, 0.98);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
  }

  .nav-toggle-checkbox:checked ~ .nav-panel {
    display: block;
  }

  .site-header .main-nav,
  .home-page .main-nav,
  .portfolio-detail-page .main-nav,
  .portfolio-archive-page .main-nav,
  .blog-archive-page .main-nav,
  .single-post-page .main-nav,
  .game-art-page .main-nav,
  .service-page .main-nav,
  .careers-page .main-nav,
  .team-page .main-nav {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 6px;
    justify-content: stretch;
  }

  .site-header .main-nav a,
  .home-page .main-nav a,
  .portfolio-detail-page .main-nav a,
  .portfolio-archive-page .main-nav a,
  .blog-archive-page .main-nav a,
  .single-post-page .main-nav a,
  .game-art-page .main-nav a,
  .service-page .main-nav a,
  .careers-page .main-nav a,
  .team-page .main-nav a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.82rem;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
  }

  .site-header .main-nav a:hover,
  .site-header .main-nav a[aria-current="page"],
  .home-page .main-nav a:hover,
  .home-page .main-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
  }

  .home-page .main-nav a[aria-current="page"]::after {
    display: none;
  }

  .site-header .main-nav .nav-cta,
  .home-page .main-nav .nav-cta,
  .portfolio-detail-page .main-nav .nav-cta,
  .portfolio-archive-page .main-nav .nav-cta,
  .blog-archive-page .main-nav .nav-cta,
  .single-post-page .main-nav .nav-cta,
  .game-art-page .main-nav .nav-cta,
  .service-page .main-nav .nav-cta,
  .careers-page .main-nav .nav-cta,
  .team-page .main-nav .nav-cta {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 6px;
    background: #9d4fe8;
  }

  .site-header .header-tools,
  .home-page .header-tools,
  .portfolio-detail-page .header-tools,
  .portfolio-archive-page .header-tools,
  .blog-archive-page .header-tools,
  .single-post-page .header-tools,
  .game-art-page .header-tools,
  .service-page .header-tools,
  .careers-page .header-tools,
  .team-page .header-tools {
    display: none;
  }
}
