* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0f1014;
  color: #ffffff;
}

@font-face {
	font-family: "Norse Bold";
	src: url("assets/fonts/Norsebold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

a {
  color: inherit;
}

.site-header {
  background: #161820;
  border-bottom: 1px solid #2b2f3a;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-nav a {
  color: #d8dbe8;
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  text-decoration: underline;
}

.hero {
  padding: 90px 24px;
  background: linear-gradient(135deg, #1c2030, #0f1014);
  text-align: center;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.hero p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #c7cad6;
  font-size: 1.15rem;
  line-height: 1.6;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 12px 20px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}

.page-section h1,
.page-section h2 {
  margin-top: 0;
}

.page-intro {
  max-width: 800px;
  color: #c7cad6;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.card {
  background: #181b25;
  border: 1px solid #2b2f3a;
  border-radius: 14px;
  padding: 24px;
}

.card h3 {
  margin-top: 0;
}

.card p {
  color: #c7cad6;
  line-height: 1.6;
}

.tag {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #2a2f42;
  color: #d8dbe8;
  font-size: 0.85rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.filter-button {
  padding: 10px 16px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  border-radius: 999px;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  background: #ffffff;
  color: #111111;
}

.site-footer {
  border-top: 1px solid #2b2f3a;
  background: #161820;
  padding: 28px 24px;
  text-align: center;
  color: #aeb3c2;
}

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

  .site-nav {
    gap: 10px;
  }

  .hero {
    padding: 64px 20px;
  }
}

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

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

@media (max-width: 800px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding-top: 14px;
    border-top: 1px solid #2b2f3a;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .hero {
    padding: 64px 20px;
  }

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

  .page-section {
    padding: 44px 20px;
  }

  .card {
    padding: 20px;
  }
}

.header-logo-image {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.hero-logo {
  display: block;
  width: min(720px, 88vw);
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.75));
}

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

@media (max-width: 800px) {
  .header-logo-image {
    width: 170px;
  }

  .hero-logo {
    width: min(520px, 94vw);
    margin-bottom: 22px;
  }
}

@media (max-width: 480px) {
  .header-logo-image {
    width: 145px;
  }

  .hero-logo {
    width: 96vw;
  }
}

.home-hero {
  min-height: 78vh;
  padding: 90px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75)),
    radial-gradient(circle at center, #2b1b12 0%, #111111 55%, #050505 100%);
  text-align: center;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 10px;
  color: #ff8a24;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-tagline {
  max-width: 760px;
  margin: 0 auto 30px;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 32px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #2b2f3a;
  border-radius: 18px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65)),
    linear-gradient(135deg, #252936, #111111);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.video-placeholder p {
  margin: 12px 0 4px;
  font-size: 1.3rem;
  font-weight: 800;
}

.video-placeholder small {
  color: #c7cad6;
}

.play-symbol {
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-size: 2rem;
}

.intro-panel {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 32px;
  align-items: center;
  background: #181b25;
  border: 1px solid #2b2f3a;
  border-radius: 18px;
  padding: 36px;
}

.intro-panel h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.intro-panel p {
  color: #c7cad6;
  line-height: 1.7;
}

.mascot-placeholder {
  min-height: 320px;
  border: 1px dashed #ff8a24;
  border-radius: 16px;
  background:
    radial-gradient(circle at center, rgba(255, 138, 36, 0.15), transparent 55%),
    #101219;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: #ffb06a;
  font-weight: 800;
}

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

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

.feature-card {
  position: relative;
  background: #181b25;
  border: 1px solid #2b2f3a;
  border-radius: 18px;
  overflow: hidden;
}

.image-placeholder {
  min-height: 260px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55)),
    linear-gradient(135deg, #314054, #1b1e28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8dbe8;
  font-weight: 800;
  text-align: center;
  padding: 20px;
}

.feature-card-content {
  padding: 24px;
}

.feature-card-content h3 {
  margin-top: 0;
}

.feature-card-content p {
  color: #c7cad6;
  line-height: 1.6;
}

.status-ribbon {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: #ff8a24;
  color: #111111;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.section-button-row {
  margin-top: 28px;
  text-align: center;
}

.split-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.preview-panel {
  background: #181b25;
  border: 1px solid #2b2f3a;
  border-radius: 18px;
  padding: 28px;
}

.preview-panel p {
  color: #c7cad6;
  line-height: 1.6;
}

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

.mini-card {
  background: #101219;
  border: 1px solid #2b2f3a;
  border-radius: 14px;
  overflow: hidden;
}

.mini-card h3 {
  margin: 16px 16px 8px;
}

.mini-card p {
  margin: 0 16px 18px;
  color: #c7cad6;
  font-size: 0.95rem;
}

.small-image-placeholder {
  min-height: 150px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45)),
    linear-gradient(135deg, #3a455c, #171923);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8dbe8;
  font-weight: 800;
  text-align: center;
  padding: 16px;
}

.latest-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(255, 138, 36, 0.16), rgba(255, 138, 36, 0.03)),
    #181b25;
  border: 1px solid #2b2f3a;
  border-radius: 18px;
  padding: 32px;
}

.latest-panel h2 {
  margin-top: 0;
}

.latest-panel p {
  max-width: 760px;
  color: #c7cad6;
  line-height: 1.7;
}

.home-cta {
  padding: 72px 24px;
  text-align: center;
  background: #101219;
  border-top: 1px solid #2b2f3a;
}

.home-cta h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.home-cta p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: #c7cad6;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .three-columns,
  .split-preview-grid,
  .intro-panel {
    grid-template-columns: 1fr;
  }

  .latest-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .home-hero {
    min-height: auto;
    padding: 64px 20px;
  }

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

  .intro-panel,
  .preview-panel,
  .latest-panel {
    padding: 22px;
  }

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

  .image-placeholder {
    min-height: 210px;
  }

  .mascot-placeholder {
    min-height: 240px;
  }
}

.home-hero {
  position: relative;
  min-height: 82vh;
  padding: 110px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, #2b1b12 0%, #111111 55%, #050505 100%);
  text-align: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at center, rgba(255, 138, 36, 0.15), rgba(0, 0, 0, 0.55));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.game-preview-card {
  min-height: auto;
  background: #101219;
}

.portrait-image-placeholder {
  aspect-ratio: 2 / 3;
  width: 100%;
  min-height: 420px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.45)),
    linear-gradient(135deg, #314054, #1b1e28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8dbe8;
  font-weight: 800;
  text-align: center;
  padding: 20px;
}

@media (max-width: 900px) {
  .portrait-image-placeholder {
    min-height: 520px;
  }
}

@media (max-width: 600px) {
  .home-hero {
    min-height: 72vh;
    padding: 80px 20px;
  }

  .portrait-image-placeholder {
    min-height: auto;
  }
}

/* Home hero video size adjustment */
.home-hero {
  height: 58vh;
  min-height: 460px;
  max-height: 620px;
  padding: 70px 24px;
}

.hero-background-video {
  object-fit: cover;
  object-position: center center;
}

.hero-logo {
  width: min(680px, 84vw);
}

@media (max-width: 800px) {
  .home-hero {
    height: 62vh;
    min-height: 420px;
    max-height: none;
    padding: 64px 20px;
  }

  .hero-logo {
    width: min(520px, 88vw);
  }
}

@media (max-width: 480px) {
  .home-hero {
    height: 58vh;
    min-height: 390px;
  }

  .hero-logo {
    width: 92vw;
  }
}

/* Hero layout fine-tuning */
.home-hero {
  padding: 0;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
}

.hero-kicker {
  position: absolute;
  top: 17%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  margin: 0;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9);
}

.hero-logo {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, 78vw);
  height: auto;
  margin: 0;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.85));
}

.hero-tagline {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 88vw);
  margin: 0;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.95);
}

.home-hero .button-row {
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 90vw);
  margin: 0;
}

@media (max-width: 800px) {
  .hero-kicker {
    top: 15%;
    font-size: 1rem;
  }

  .hero-logo {
    top: 39%;
    width: min(520px, 88vw);
  }

  .hero-tagline {
    bottom: 110px;
    font-size: 1rem;
    width: min(620px, 88vw);
  }

  .home-hero .button-row {
    bottom: 50px;
  }
}

@media (max-width: 480px) {
  .hero-kicker {
    top: 14%;
    font-size: 0.9rem;
  }

  .hero-logo {
    top: 36%;
    width: 92vw;
  }

  .hero-tagline {
    bottom: 105px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .home-hero .button-row {
    bottom: 34px;
  }

  .home-hero .button {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}

.square-image-placeholder {
  aspect-ratio: 1 / 1;
  width: 100%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.45)),
    linear-gradient(135deg, #314054, #1b1e28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8dbe8;
  font-weight: 800;
  text-align: center;
  padding: 20px;
}

/* Real homepage image slots */
.square-preview-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
}

.mini-preview-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
}

.mascot-image-wrap {
  min-height: 320px;
  border: 1px solid #2b2f3a;
  border-radius: 16px;
  background:
    radial-gradient(circle at center, rgba(255, 138, 36, 0.15), transparent 55%),
    #101219;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mascot-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center center;
  padding: 20px;
}

@media (max-width: 600px) {
  .mascot-image-wrap {
    min-height: 240px;
  }
}

/* Game status label colours */
.status-available {
  background: #5cff8d;
  color: #071108;
  box-shadow: 0 0 18px rgba(92, 255, 141, 0.35);
}

.status-upcoming {
  background: #ff8a24;
  color: #111111;
}

.hero-video-embed {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.hero-video-embed iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-width: 177.78vh;
	min-height: 100vh;
	transform: translate(-50%, -50%);
	border: 0;
}

.home-page .hero-kicker,
.home-page .section-kicker {
	font-size: var(--home-orange-heading-size, 1rem);
}

.home-page .section-heading h2,
.home-page .intro-panel h2,
.home-page .preview-panel h2,
.home-page .home-cta h2 {
	font-size: var(--home-white-title-size, 3rem);
}

.home-page .hero-tagline,
.home-page .page-intro,
.home-page .intro-panel p,
.home-page .preview-panel p,
.home-page .home-cta p {
	font-size: var(--home-white-body-size, 1.1rem);
}

/* ================================
   Home Page Editable Orange Heading Size
================================ */

.home-page .hero-kicker,
.home-page .section-kicker {
	font-size: var(--home-orange-heading-size, 1rem) !important;
}

/* ================================
   Home About Studio Compact Panel
================================ */

.home-page .home-about-section {
	padding-top: 48px;
	padding-bottom: 48px;
}

.home-page .home-about-panel {
	display: block;
	grid-template-columns: none;
	padding: 44px 48px;
}

.home-page .home-about-copy {
	max-width: 900px;
}

.home-page .home-about-copy h2 {
	max-width: 820px;
	margin-bottom: 18px;
}

.home-page .home-about-copy [data-home-about-body] {
	max-width: 850px;
}

.home-page .home-about-copy p {
	margin-top: 0;
	margin-bottom: 16px;
}

.home-page .home-about-copy p:last-child {
	margin-bottom: 24px;
}

@media (max-width: 600px) {
	.home-page .home-about-section {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.home-page .home-about-panel {
		padding: 28px 24px;
	}

	.home-page .home-about-copy p:last-child {
		margin-bottom: 22px;
	}
}

/* ================================
   Games Page
================================ */

.games-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at center, rgba(255, 138, 36, 0.14), transparent 50%),
    #101219;
  border-bottom: 1px solid #2b2f3a;
}

.games-hero .page-section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.games-hero h1 {
  max-width: 950px;
  margin: 0 0 22px;
  font-size: clamp(1.5rem, 3.5vw, 3.25rem);
  line-height: 1.05;
}

.games-hero-text {
  max-width: 900px;
  color: #d8dbe8;
  font-size: 1.18rem;
  line-height: 1.75;
}

.latest-game-panel {
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr;
  gap: 38px;
  align-items: center;
  background: #181b25;
  border: 1px solid #2b2f3a;
  border-radius: 22px;
  padding: 28px;
}

.latest-game-image-wrap {
  width: 100%;
  max-width: 430px;
  justify-self: start;
}

.latest-game-image-wrap,
.game-card-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #101219;
  border: 1px solid #2b2f3a;
}

.latest-game-image,
.game-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
}

.latest-game-content h3 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.latest-game-content p {
  margin: 0 0 16px;
  color: #c7cad6;
  line-height: 1.65;
}

.game-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.game-info-tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #2a2f42;
  color: #d8dbe8;
  font-size: 0.9rem;
  font-weight: 800;
}

.price-tag {
  background: #5cff8d;
  color: #071108;
  box-shadow: 0 0 18px rgba(92, 255, 141, 0.25);
}

.game-library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.game-library-card {
  background: #181b25;
  border: 1px solid #2b2f3a;
  border-radius: 20px;
  overflow: hidden;
}

.game-card-content {
  padding: 24px;
}

.game-card-content h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.game-card-content p {
  color: #c7cad6;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .latest-game-panel,
  .game-library-grid {
    grid-template-columns: 1fr;
  }

  .latest-game-image-wrap {
    max-width: 100%;
  }

  .games-hero .page-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 600px) {
  .latest-game-panel {
    padding: 22px;
  }

  .game-card-content {
    padding: 20px;
  }

  .games-hero-text {
    font-size: 1rem;
  }
}

.game-detail-tags {
  margin: 20px 0;
}

.game-card-tags {
  margin: 18px 0;
}

.game-card-content .button {
  margin-top: 10px;
}

.game-empty-message {
  padding: 24px;
  background: #181b25;
  border: 1px solid #2b2f3a;
  border-radius: 18px;
  color: #c7cad6;
  font-weight: 800;
}

/* ================================
   Games Page Editable Content
================================ */

.games-hero {
	position: relative;
	overflow: hidden;
}

.games-video-embed {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.games-video-embed iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-width: 177.78vh;
	min-height: 100vh;
	transform: translate(-50%, -50%);
	border: 0;
}

.games-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)),
		radial-gradient(circle at center, rgba(255, 138, 36, 0.14), transparent 50%);
}

.games-hero-content {
	position: relative;
	z-index: 2;
}

.games-page .section-kicker {
	font-size: var(--games-orange-heading-size, 1rem) !important;
}

.games-page .games-hero h1,
.games-page .section-heading h2 {
	font-size: var(--games-white-title-size, 3rem);
}

.games-page .games-hero-text,
.games-page .page-intro {
	font-size: var(--games-white-body-size, 1.15rem);
}

/* ================================
   Fab Page
================================ */

.fab-page {
  background: #0f1014;
  color: #ffffff;
}

.fab-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at center, rgba(255, 138, 36, 0.14), transparent 50%),
    #101219;
  border-bottom: 1px solid #2b2f3a;
}

.fab-hero .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 82px 24px;
}

.fab-hero h1 {
  max-width: 950px;
  margin: 0 0 22px;
	font-size: clamp(1.5rem, 3.5vw, 3.25rem);
  line-height: 1.05;
}

.fab-hero p {
  max-width: 900px;
  margin: 0;
  color: #d8dbe8;
  font-size: 1.18rem;
  line-height: 1.75;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.latest-fab-section,
.fab-products-section {
  padding: 64px 24px;
}

.fab-page .section-heading {
  max-width: 850px;
  margin-bottom: 32px;
}

.fab-page .section-label {
  margin: 0 0 10px;
  color: #ff8a24;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fab-page .section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.latest-fab-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  background: #181b25;
  border: 1px solid #2b2f3a;
  border-radius: 22px;
  padding: 24px;
}

.latest-fab-image,
.fab-product-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #101219;
  border: 1px solid #2b2f3a;
}

.latest-fab-image img,
.fab-product-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.latest-fab-content h3 {
  margin: 8px 0 14px;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.1;
}

.fab-description {
  margin: 14px 0;
  color: #c7cad6;
  line-height: 1.65;
  font-size: 1rem;
}

.fab-tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.fab-tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #2a2f42;
  color: #d8dbe8;
  font-size: 0.9rem;
  font-weight: 800;
}

.fab-keyword-tags .fab-tag {
  background: rgba(255, 138, 36, 0.16);
  color: #ffb06a;
  border: 1px solid rgba(255, 138, 36, 0.35);
}

.fab-buy-button {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 20px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.fab-buy-button:hover {
  transform: translateY(-2px);
  background: #ff8a24;
  color: #111111;
}

#fab-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fab-product-card {
  background: #181b25;
  border: 1px solid #2b2f3a;
  border-radius: 20px;
  overflow: hidden;
}

.fab-product-content {
  padding: 20px;
}

.fab-product-content h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.empty-message {
  padding: 24px;
  background: #181b25;
  border: 1px solid #2b2f3a;
  border-radius: 18px;
  color: #c7cad6;
  font-weight: 800;
}

/* Tablet */
@media (max-width: 900px) {
  .latest-fab-card,
  #fab-product-grid {
    grid-template-columns: 1fr;
  }

  .fab-hero .section-inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .latest-fab-section,
  .fab-products-section {
    padding: 44px 20px;
  }

  .latest-fab-card {
    padding: 22px;
  }

  .fab-product-content {
    padding: 20px;
  }

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

/* ================================
   Fab Page Editable Content + Video
================================ */

.fab-hero {
	position: relative;
	overflow: hidden;
}

.fab-video-embed {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.fab-video-embed iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-width: 177.78vh;
	min-height: 100vh;
	transform: translate(-50%, -50%);
	border: 0;
}

.fab-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)),
		radial-gradient(circle at center, rgba(255, 138, 36, 0.14), transparent 50%);
}

.fab-hero-content {
	position: relative;
	z-index: 2;
}

.fab-page .section-label {
	font-size: var(--fab-orange-heading-size, 1rem) !important;
}

.fab-page .fab-hero h1,
.fab-page .section-heading h2 {
	font-size: var(--fab-white-title-size, 3rem);
}

.fab-page .fab-hero p,
.fab-page .fab-description {
	font-size: var(--fab-white-body-size, 1.15rem);
}

/* ================================
   Portfolio Page
================================ */

.portfolio-page {
  background: #0f1014;
  color: #ffffff;
}

.portfolio-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at center, rgba(255, 138, 36, 0.14), transparent 50%),
    #101219;
  border-bottom: 1px solid #2b2f3a;
}

.portfolio-hero .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 82px 24px;
}

.portfolio-hero h1 {
  max-width: 950px;
  margin: 0 0 22px;
	font-size: clamp(1.5rem, 3.5vw, 3.25rem);
  line-height: 1.05;
}

.portfolio-hero p {
  max-width: 900px;
  margin: 0;
  color: #d8dbe8;
  font-size: 1.18rem;
  line-height: 1.75;
}

.portfolio-showcase-section {
  padding: 64px 24px;
  background: #0f1014;
}

.portfolio-showcase-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-grid-heading {
  margin-top: 56px;
}

.portfolio-page .section-label {
  margin: 0 0 10px;
  color: #ff8a24;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portfolio-page .section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.top-pick-slider {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}

.top-pick-track {
	display: flex;
	width: 100%;
	transition: transform 0.7s ease;
	will-change: transform;
}

.top-pick-slide {
	flex: 0 0 100%;
	width: 100%;
	padding: 0 2px;
}

.top-pick-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	padding: 24px;
	background: #181b25;
	border: 1px solid #2b2f3a;
	border-radius: 22px;
	color: inherit;
	text-decoration: none;
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.top-pick-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 36, 0.55);
}

.top-pick-image-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #101219;
  border: 1px solid #2b2f3a;
}

.top-pick-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.top-pick-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 138, 36, 0.16);
  color: #ffb06a;
  border: 1px solid rgba(255, 138, 36, 0.35);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.top-pick-content h3 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.1;
}

.top-pick-content p {
  margin: 0;
  color: #c7cad6;
  line-height: 1.65;
}

.top-pick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 0;
}

.top-pick-dot {
  width: 28px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #5f6678;
  cursor: pointer;
}

.top-pick-dot.active,
.top-pick-dot:hover {
  background: #ffffff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.portfolio-thumbnail-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
  text-decoration: none;
  color: #ffffff;
  background: #181b25;
  border: 1px solid #2b2f3a;
}

.portfolio-thumbnail-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
}

.portfolio-thumbnail-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 14px;
  text-align: center;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.08)
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.portfolio-thumbnail-overlay h3 {
  margin: 0;
  font-size: 0.95rem;
}

.portfolio-thumbnail-card:hover .portfolio-thumbnail-image {
  transform: scale(1.06);
}

.portfolio-thumbnail-card:hover .portfolio-thumbnail-overlay {
  opacity: 1;
}

@media (max-width: 900px) {
  .top-pick-card {
    grid-template-columns: 1fr;
  }

  .portfolio-hero .section-inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 800px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .portfolio-showcase-section {
    padding: 44px 20px;
  }

  .top-pick-card {
    padding: 22px;
  }

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

/* ================================
   Portfolio Page Editable Content + Video
================================ */

.portfolio-hero {
	position: relative;
	overflow: hidden;
}

.portfolio-video-embed {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.portfolio-video-embed iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-width: 177.78vh;
	min-height: 100vh;
	transform: translate(-50%, -50%);
	border: 0;
}

.portfolio-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)),
		radial-gradient(circle at center, rgba(255, 138, 36, 0.14), transparent 50%);
}

.portfolio-hero-content {
	position: relative;
	z-index: 2;
}

.portfolio-page .section-label {
	font-size: var(--portfolio-orange-heading-size, 1rem) !important;
}

.portfolio-page .portfolio-hero h1,
.portfolio-page .portfolio-grid-heading h2 {
	font-size: var(--portfolio-white-title-size, 3rem);
}

.portfolio-page .portfolio-hero p,
.portfolio-page .top-pick-content p {
	font-size: var(--portfolio-white-body-size, 1.15rem);
}

/* ================================
   About Lava Lantern Page
================================ */

.about-hero {
	background:
		radial-gradient(circle at top left, rgba(255, 146, 61, 0.14), transparent 34rem),
		linear-gradient(180deg, #050506 0%, #090a0d 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 6.5rem 0 6rem;
}

.about-hero-inner {
	max-width: 980px;
}

.about-hero h1 {
	color: #ffffff;
	font-size: clamp(1.5rem, 3.5vw, 3.25rem);
	line-height: 0.95;
	letter-spacing: -0.055em;
	margin: 0;
	max-width: 1050px;
}

.about-hero-text {
	color: #d8d9e6;
	font-size: 1.25rem;
	line-height: 1.8;
	max-width: 790px;
	margin-top: 2rem;
}

.about-intro-section,
.about-content-section,
.about-direction-section,
.about-values-section {
	background: #101116;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 5rem 0;
}

.about-intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
	gap: 2rem;
	align-items: stretch;
}

.about-feature-card,
.about-side-panel,
.about-direction-card,
.about-card,
.about-value {
	background: #181a22;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1.4rem;
	box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.22);
}

.about-feature-card {
	padding: 3rem;
}

.about-feature-card h2,
.about-section-heading h2,
.about-direction-card h2 {
	color: #ffffff;
	font-size: clamp(2.2rem, 4vw, 4.2rem);
	line-height: 1;
	letter-spacing: -0.045em;
	margin: 0 0 1.5rem;
}

.about-feature-card p,
.about-card p,
.about-direction-copy p,
.about-value p {
	color: #d8d9e6;
	font-size: 1rem;
	line-height: 1.8;
	margin: 0;
}

.about-feature-card p + p,
.about-direction-copy p + p {
	margin-top: 1rem;
}

.about-side-panel {
	padding: 2rem;
	display: grid;
	gap: 1rem;
}

.about-stat {
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.075);
	border-radius: 1rem;
	padding: 1.25rem;
}

.about-stat span,
.about-value span {
	color: #ff9a3d;
	font-weight: 900;
	letter-spacing: 0.12em;
	font-size: 0.85rem;
}

.about-stat p {
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	margin: 0.5rem 0 0;
}

.about-section-heading {
	max-width: 850px;
	margin-bottom: 2rem;
}

.about-section-heading.centered {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.about-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.about-card {
	padding: 2rem;
	min-height: 240px;
}

.about-card h3,
.about-value h3 {
	color: #ffffff;
	font-size: 1.45rem;
	line-height: 1.2;
	margin: 0 0 1rem;
}

.about-direction-card {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 2rem;
	padding: 3rem;
	background:
		linear-gradient(135deg, rgba(255, 146, 61, 0.14), transparent 42%),
		#181a22;
}

.about-direction-copy {
	align-self: end;
}

.about-values-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.about-value {
	padding: 1.5rem;
}

.about-value h3 {
	margin-top: 0.8rem;
}

.site-nav a.active {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 0.25rem;
}

.footer-inner {
	color: #aeb1c2;
	font-size: 0.95rem;
	padding: 2rem 0;
}

/* Responsive adjustments */
@media (max-width: 950px) {
	.about-intro-grid,
	.about-direction-card {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 650px) {
	.about-hero {
		padding: 4.5rem 0;
	}

	.about-intro-section,
	.about-content-section,
	.about-direction-section,
	.about-values-section {
		padding: 3.5rem 0;
	}

	.about-feature-card,
	.about-direction-card {
		padding: 2rem;
	}

	.about-card-grid,
	.about-values-grid {
		grid-template-columns: 1fr;
	}

	.about-card {
		min-height: auto;
	}

	.about-hero-text {
		font-size: 1.05rem;
	}
}

.about-page .about-stat span,
.about-page .about-value span {
	font-size: var(--about-orange-heading-size, 1rem) !important;
}

.about-stat h3 {
	color: #ffffff;
	font-size: 1.35rem;
	line-height: 1.2;
	margin: 0.65rem 0 1rem;
}

.about-stat p {
	margin: 0;
}

/* ================================
   About Page Editable Content + Hero Image
================================ */

.about-page .about-hero {
	position: relative;
	overflow: hidden;
}

.about-hero-image-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.about-hero-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.about-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)),
		radial-gradient(circle at center, rgba(255, 138, 36, 0.14), transparent 50%);
}

.about-hero-content {
	position: relative;
	z-index: 2;
}

.about-loki-card {
	display: grid;
	grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
	gap: 2rem;
	align-items: center;
	margin-top: 2rem;
	padding: 2rem;
	background: #102133;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
}

.about-loki-image-wrap {
	overflow: hidden;
	border-radius: 14px;
	background: #0b0c10;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-loki-image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center center;
}

.about-loki-content p {
	color: #d8dbe8;
	line-height: 1.7;
}

.about-reviews-section {
	padding: 5rem 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.about-review-card {
	background: #102133;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	padding: 1.5rem;
	text-align: center;
}

.about-review-card img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	object-position: center center;
	background: #0b0c10;
	margin-bottom: 1rem;
}

.about-review-card h3 {
	margin: 0 0 1rem;
	color: #ffffff;
}

.about-review-card blockquote {
	margin: 0;
	color: #d8dbe8;
	line-height: 1.7;
}

.about-review-card blockquote::before {
	content: open-quote;
}

.about-review-card blockquote::after {
	content: close-quote;
}

.about-page .section-kicker {
	font-size: var(--about-orange-heading-size, 1rem) !important;
}

.about-page .about-hero h1,
.about-page .about-feature-card h2,
.about-page .about-section-heading h2,
.about-page .about-direction-card h2 {
	font-size: var(--about-white-title-size, 3rem);
}

.about-page .about-hero-text,
.about-page .about-feature-card p,
.about-page .about-card p,
.about-page .about-direction-copy p,
.about-page .about-value p,
.about-page .about-loki-content p,
.about-page .about-review-card blockquote {
	font-size: var(--about-white-body-size, 1.15rem);
}

@media (max-width: 900px) {
	.about-loki-card,
	.about-reviews-grid {
		grid-template-columns: 1fr;
	}
}

/* ================================
   About Page Edge Spacing Fix
================================ */

.about-page .about-intro-section,
.about-page .about-content-section,
.about-page .about-direction-section,
.about-page .about-values-section,
.about-page .about-reviews-section {
	padding-left: 24px;
	padding-right: 24px;
}

.about-page .section-inner {
	width: 100%;
}

/* Mobile spacing to match the rest of the site */
@media (max-width: 600px) {
	.about-page .about-intro-section,
	.about-page .about-content-section,
	.about-page .about-direction-section,
	.about-page .about-values-section,
	.about-page .about-reviews-section {
		padding-left: 20px;
		padding-right: 20px;
	}

	.about-page .about-hero .section-inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* ================================
   Contact Page
================================ */

.contact-hero {
	background:
		radial-gradient(circle at top left, rgba(255, 146, 61, 0.14), transparent 34rem),
		linear-gradient(180deg, #050506 0%, #090a0d 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 6.5rem 0 6rem;
}

.contact-hero-inner {
	max-width: 980px;
}

.contact-hero h1 {
	color: #ffffff;
	font-size: clamp(1.5rem, 3.5vw, 3.25rem);
	line-height: 0.95;
	letter-spacing: -0.055em;
	margin: 0;
	max-width: 1050px;
}

.contact-hero-text {
	color: #d8d9e6;
	font-size: 1.25rem;
	line-height: 1.8;
	max-width: 790px;
	margin-top: 2rem;
}

.contact-socials-section,
.contact-email-section {
	background: #101116;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 5rem 0;
}

.contact-section-heading {
	max-width: 850px;
	margin-bottom: 2rem;
}

.contact-section-heading.centered {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.contact-section-heading h2,
.contact-email-card h2 {
	color: #ffffff;
	font-size: clamp(2.2rem, 4vw, 4.2rem);
	line-height: 1;
	letter-spacing: -0.045em;
	margin: 0 0 1.5rem;
}

.contact-socials-list {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 1rem;
	flex-wrap: wrap;
}

.contact-social-card {
	width: 220px;
	min-height: 190px;
	background: #181a22;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1.4rem;
	box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.22);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		background 0.2s ease;
}

.contact-social-card:hover,
.contact-social-card:focus-visible {
	transform: translateY(-0.35rem);
	border-color: rgba(255, 146, 61, 0.65);
	background: #20232d;
}

.contact-social-card img {
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.contact-social-card span {
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.contact-email-card {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 2rem;
	padding: 3rem;
	background:
		linear-gradient(135deg, rgba(255, 146, 61, 0.14), transparent 42%),
		#181a22;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1.4rem;
	box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.22);
}

.contact-email-copy {
	align-self: end;
}

.contact-email-copy p {
	color: #d8d9e6;
	font-size: 1rem;
	line-height: 1.8;
	margin: 0 0 1.5rem;
}

.contact-email-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	color: #101116;
	border-radius: 999px;
	padding: 0.9rem 1.25rem;
	font-size: 1rem;
	font-weight: 900;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		background 0.2s ease;
}

.contact-email-link:hover,
.contact-email-link:focus-visible {
	transform: translateY(-0.2rem);
	background: #ff9a3d;
	color: #101116;
}

/* Responsive adjustments */
@media (max-width: 950px) {
	.contact-email-card {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 650px) {
	.contact-hero {
		padding: 4.5rem 0;
	}

	.contact-socials-section,
	.contact-email-section {
		padding: 3.5rem 0;
	}

	.contact-email-card {
		padding: 2rem;
	}

	.contact-social-card {
		width: 100%;
		min-height: 160px;
	}

	.contact-hero-text {
		font-size: 1.05rem;
	}

	.contact-email-link {
		width: 100%;
		text-align: center;
	}
}

/* ================================
   Contact Page Editable Content + Hero Image
================================ */

.contact-page .contact-hero {
	position: relative;
	overflow: hidden;
}

.contact-hero-image-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.contact-hero-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.contact-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)),
		radial-gradient(circle at center, rgba(255, 138, 36, 0.14), transparent 50%);
}

.contact-hero-content {
	position: relative;
	z-index: 2;
}

.contact-page .section-kicker {
	font-size: var(--contact-orange-heading-size, 1rem) !important;
}

.contact-page .contact-hero h1,
.contact-page .contact-section-heading h2,
.contact-page .contact-email-card h2 {
	font-size: var(--contact-white-title-size, 3rem);
}

.contact-page .contact-hero-text,
.contact-page .contact-email-copy p {
	font-size: var(--contact-white-body-size, 1.15rem);
}

/* ================================
   Devlogs Page
================================ */

.devlogs-hero {
	background:
		radial-gradient(circle at top left, rgba(255, 146, 61, 0.14), transparent 34rem),
		linear-gradient(180deg, #050506 0%, #090a0d 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 6.5rem 0 6rem;
}

.devlogs-hero-inner {
	max-width: 1050px;
}

.devlogs-hero h1 {
	color: #ffffff;
	font-size: clamp(1.5rem, 3.5vw, 3.25rem);
	line-height: 0.95;
	letter-spacing: -0.055em;
	margin: 0;
	max-width: 1150px;
}

.devlogs-hero-text {
	color: #d8d9e6;
	font-size: 1.25rem;
	line-height: 1.8;
	max-width: 820px;
	margin-top: 2rem;
}

.devlogs-browser-section {
	background: #101116;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 5rem 0;
}

.devlogs-section-heading {
	max-width: 850px;
	margin-bottom: 2rem;
}

.devlogs-section-heading h2 {
	color: #ffffff;
	font-size: clamp(2.2rem, 4vw, 4.2rem);
	line-height: 1;
	letter-spacing: -0.045em;
	margin: 0;
}

.devlog-controls-card {
	background: #181a22;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1.4rem;
	box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.22);
	padding: 1.5rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
	gap: 1rem;
	align-items: end;
	margin-bottom: 1.5rem;
}

.devlog-control {
	display: grid;
	gap: 0.5rem;
}

.devlog-control span {
	color: #ff9a3d;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.devlog-control select {
	width: 100%;
	background: #101116;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.85rem;
	padding: 0.9rem 1rem;
	font: inherit;
	outline: none;
}

.devlog-control select:focus {
	border-color: rgba(255, 146, 61, 0.7);
}

.devlog-reset-button,
.devlog-pagination button {
	background: #ffffff;
	color: #101116;
	border: 0;
	border-radius: 999px;
	padding: 0.9rem 1.25rem;
	font-size: 0.95rem;
	font-weight: 900;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		background 0.2s ease,
		opacity 0.2s ease;
}

.devlog-reset-button:hover,
.devlog-reset-button:focus-visible,
.devlog-pagination button:hover,
.devlog-pagination button:focus-visible {
	background: #ff9a3d;
	transform: translateY(-0.15rem);
}

.devlog-pagination button:disabled {
	cursor: not-allowed;
	opacity: 0.45;
	transform: none;
	background: rgba(255, 255, 255, 0.35);
}

.devlog-count {
	color: #aeb1c2;
	font-size: 0.95rem;
	margin: 0 0 1.25rem;
}

.devlog-list {
	display: grid;
	gap: 1.25rem;
}

.devlog-card {
	background: #181a22;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1.4rem;
	box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.22);
	overflow: hidden;
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	min-height: 220px;
}

.devlog-card-image-wrap {
	background: #0b0c10;
	min-height: 220px;
}

.devlog-card-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.devlog-image-placeholder {
	width: 100%;
	height: 100%;
	min-height: 220px;
	display: grid;
	place-items: center;
	color: #aeb1c2;
	background: rgba(255, 255, 255, 0.04);
	font-weight: 800;
}

.devlog-card-content {
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.devlog-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.devlog-card-meta span {
	background: rgba(255, 146, 61, 0.14);
	color: #ffb067;
	border: 1px solid rgba(255, 146, 61, 0.28);
	border-radius: 999px;
	padding: 0.4rem 0.7rem;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.devlog-card h2 {
	color: #ffffff;
	font-size: clamp(1.55rem, 3vw, 2.4rem);
	line-height: 1.05;
	letter-spacing: -0.035em;
	margin: 0 0 1rem;
}

.devlog-card p {
	color: #d8d9e6;
	font-size: 1rem;
	line-height: 1.8;
	margin: 0;
	max-width: 900px;
}

.devlog-read-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	color: #101116;
	border-radius: 999px;
	padding: 0.8rem 1.1rem;
	font-size: 0.95rem;
	font-weight: 900;
	text-decoration: none;
	margin-top: auto;
	transition:
		transform 0.2s ease,
		background 0.2s ease;
}

.devlog-read-link:hover,
.devlog-read-link:focus-visible {
	background: #ff9a3d;
	transform: translateY(-0.15rem);
}

.devlog-read-link.disabled {
	background: rgba(255, 255, 255, 0.12);
	color: #aeb1c2;
	cursor: default;
}

.devlog-empty-state {
	background: #181a22;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 1.4rem;
	box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.22);
	padding: 3rem;
	text-align: center;
}

.devlog-empty-state h3 {
	color: #ffffff;
	font-size: 1.6rem;
	margin: 0 0 0.75rem;
}

.devlog-empty-state p {
	color: #d8d9e6;
	line-height: 1.7;
	margin: 0;
}

.devlog-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-top: 2rem;
}

.devlog-pagination span {
	color: #d8d9e6;
	font-weight: 800;
}

@media (max-width: 900px) {
	.devlog-controls-card {
		grid-template-columns: 1fr;
	}

	.devlog-reset-button {
		width: 100%;
	}

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

	.devlog-card-image-wrap {
		aspect-ratio: 16 / 9;
		min-height: auto;
	}

	.devlog-image-placeholder {
		min-height: 220px;
	}
}

@media (max-width: 650px) {
	.devlogs-hero {
		padding: 4.5rem 0;
	}

	.devlogs-browser-section {
		padding: 3.5rem 0;
	}

	.devlog-controls-card,
	.devlog-card-content,
	.devlog-empty-state {
		padding: 1.5rem;
	}

	.devlog-pagination {
		flex-direction: column;
	}

	.devlog-pagination button {
		width: 100%;
	}
}

/* ================================
   Devlogs Content-Controlled Page
================================ */

.devlogs-page .devlogs-hero {
	position: relative;
	overflow: hidden;
	background: #050506;
}

.devlogs-hero-image-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.devlogs-hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.devlogs-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)),
		radial-gradient(circle at center, rgba(255, 138, 36, 0.14), transparent 50%);
}

.devlogs-hero-content {
	position: relative;
	z-index: 2;
}

.devlogs-page .section-kicker,
.devlogs-page .devlog-control span {
	font-size: var(--devlogs-orange-heading-size, 1rem) !important;
}

.devlogs-page .devlogs-hero h1,
.devlogs-page .devlogs-section-heading h2 {
	font-size: var(--devlogs-white-title-size, 4.2rem);
}

.devlogs-page .devlogs-hero-text,
.devlogs-page .devlog-card p,
.devlogs-page .devlog-count {
	font-size: var(--devlogs-white-body-size, 1.25rem);
}

.devlogs-page .devlog-card-content .devlog-read-link {
	margin-top: 1.5rem !important;
}

/* ================================
   Home Page Data-Driven Previews
================================ */

.home-card-media-link,
.home-mini-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
	height: 100%;
}

.home-data-card {
	transition:
		transform 0.2s ease,
		border-color 0.2s ease;
}

.home-data-card:hover,
.home-data-card:focus-within {
	transform: translateY(-4px);
	border-color: rgba(255, 138, 36, 0.55);
}

.home-mini-card {
	transition:
		transform 0.2s ease,
		border-color 0.2s ease;
}

.home-mini-card:hover,
.home-mini-card:focus-within {
	transform: translateY(-4px);
	border-color: rgba(255, 138, 36, 0.55);
}

.home-mini-card-link {
	padding-bottom: 1px;
}

.home-preview-empty {
	grid-column: 1 / -1;
	background: #181b25;
	border: 1px solid #2b2f3a;
	border-radius: 18px;
	padding: 24px;
	color: #c7cad6;
	font-weight: 800;
	text-align: center;
}

.home-preview-empty p {
	margin: 0;
}

.home-devlog-meta {
	margin: 0 0 0.65rem;
	color: #ffb06a;
	font-size: 0.9rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* ================================
   Home Fab / Portfolio Preview Tweaks
================================ */

#home-fab-preview,
#home-portfolio-preview {
	grid-template-columns: 1fr;
	gap: 1rem;
}

#home-fab-preview .home-mini-card,
#home-portfolio-preview .home-mini-card {
	width: 100%;
}

#home-fab-preview .mini-preview-image,
#home-portfolio-preview .mini-preview-image {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center center;
}

#home-fab-preview .home-mini-card h3,
#home-portfolio-preview .home-mini-card h3 {
	margin: 1rem 1rem 1.1rem;
	font-size: 1.15rem;
	line-height: 1.25;
}

.home-16-9-placeholder {
	aspect-ratio: 16 / 9;
	width: 100%;
	background:
		linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.45)),
		linear-gradient(135deg, #314054, #1b1e28);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d8dbe8;
	font-weight: 800;
	text-align: center;
	padding: 20px;
}

/* ================================
   Home Fab / Portfolio Size + Button Tweaks
================================ */

#home-fab-preview,
#home-portfolio-preview {
	justify-items: center;
}

#home-fab-preview .home-mini-card,
#home-portfolio-preview .home-mini-card {
	width: 100%;
	max-width: 420px;
}

#home-fab-preview .mini-preview-image,
#home-portfolio-preview .mini-preview-image {
	aspect-ratio: 16 / 9;
	max-height: 210px;
	object-fit: cover;
	object-position: center center;
}

#home-fab-preview .home-16-9-placeholder,
#home-portfolio-preview .home-16-9-placeholder {
	max-height: 210px;
}

.preview-panel > .button {
	display: block;
	width: fit-content;
	margin: 1.75rem auto 0;
}

/* ================================
   Colour Scheme Mockup Preview
================================ */

:root {
	--lava-navy: #0d2b42;
	--lava-navy-cell: #2b526f;
	--lava-navy-deep: #061622;
	--lava-panel: #100e0d;
	--lava-panel-soft: #16120f;
	--lava-white: #ffffff;
	--lava-text-muted: #d9e2e8;
	--lava-orange: #e58745;
	--lava-orange-soft: rgba(229, 135, 69, 0.18);
	--lava-green: #4cbb54;
	--lava-border: rgba(255, 255, 255, 0.13);
}

body,
.fab-page,
.portfolio-page {
	background:
		radial-gradient(circle at top left, rgba(229, 135, 69, 0.12), transparent 30rem),
		linear-gradient(180deg, #100e0d 0%, #070605 100%);
	color: var(--lava-white);
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.site-header,
.site-footer {
	background: var(--lava-panel);
	border-color: var(--lava-border);
}

.site-nav a,
.site-footer,
.footer-inner,
.page-intro,
.hero p,
.card p,
.intro-panel p,
.preview-panel p,
.latest-panel p,
.feature-card-content p,
.mini-card p,
.games-hero-text,
.latest-game-content p,
.game-card-content p,
.fab-description,
.fab-hero p,
.portfolio-hero p,
.top-pick-content p,
.about-hero-text,
.about-feature-card p,
.about-card p,
.about-direction-copy p,
.about-value p,
.contact-hero-text,
.contact-email-copy p,
.devlogs-hero-text,
.devlog-card p,
.devlog-empty-state p {
	color: var(--lava-text-muted);
}

.site-nav a:hover,
.site-nav a.active {
	color: var(--lava-orange);
	text-decoration-color: var(--lava-orange);
}

.hero-kicker,
.section-kicker,
.fab-page .section-label,
.portfolio-page .section-label,
.about-stat span,
.about-value span,
.devlog-control span,
.home-devlog-meta {
	color: var(--lava-orange);
}

h1,
h2,
h3,
.about-feature-card h2,
.about-section-heading h2,
.about-direction-card h2,
.about-card h3,
.about-value h3,
.contact-section-heading h2,
.contact-email-card h2,
.devlogs-section-heading h2,
.devlog-card h2 {
	color: var(--lava-white);
}

.button,
.fab-buy-button,
.contact-email-link,
.devlog-reset-button,
.devlog-pagination button,
.devlog-read-link {
	background: var(--lava-white);
	border: 1px solid var(--lava-white);
	color: var(--lava-panel);
	transition:
		transform 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.button.secondary {
	background: var(--lava-white);
	color: var(--lava-panel);
	border-color: var(--lava-white);
}

.button:hover,
.button:focus-visible,
.fab-buy-button:hover,
.fab-buy-button:focus-visible,
.contact-email-link:hover,
.contact-email-link:focus-visible,
.devlog-reset-button:hover,
.devlog-reset-button:focus-visible,
.devlog-pagination button:hover,
.devlog-pagination button:focus-visible,
.devlog-read-link:hover,
.devlog-read-link:focus-visible {
	background: var(--lava-orange);
	border-color: var(--lava-orange);
	color: var(--lava-panel);
	transform: translateY(-2px);
}

.filter-button {
	border-color: var(--lava-white);
	color: var(--lava-white);
}

.filter-button.active,
.filter-button:hover {
	background: var(--lava-orange);
	border-color: var(--lava-orange);
	color: var(--lava-panel);
}

.home-hero,
.games-hero,
.fab-hero,
.portfolio-hero,
.about-hero,
.contact-hero,
.devlogs-hero {
	background:
		linear-gradient(rgba(16, 14, 13, 0.32), rgba(16, 14, 13, 0.74)),
		radial-gradient(circle at top left, rgba(229, 135, 69, 0.24), transparent 28rem),
		linear-gradient(135deg, #14100d 0%, #070605 70%);
	border-color: var(--lava-border);
}

.hero-overlay {
	background:
		linear-gradient(rgba(16, 14, 13, 0.2), rgba(16, 14, 13, 0.68)),
		radial-gradient(circle at center, rgba(229, 135, 69, 0.15), rgba(11, 34, 51, 0.72));
}

.intro-panel,
.preview-panel,
.latest-panel,
.home-cta,
.feature-card,
.mini-card,
.home-preview-empty,
.latest-game-panel,
.game-library-card,
.game-empty-message,
.latest-fab-card,
.fab-product-card,
.empty-message,
.top-pick-card,
.portfolio-thumbnail-card,
.about-feature-card,
.about-side-panel,
.about-direction-card,
.about-card,
.about-value,
.contact-social-card,
.contact-email-card,
.devlog-controls-card,
.devlog-card,
.devlog-empty-state,
.card {
	background:
		linear-gradient(to bottom right, var(--lava-navy-deep) 0%, #092034 42%, var(--lava-navy) 100%);
	border-color: var(--lava-border);
	box-shadow: 0 1.1rem 2.8rem rgba(0, 0, 0, 0.22);
}

.about-intro-section,
.about-content-section,
.about-direction-section,
.about-values-section,
.contact-socials-section,
.contact-email-section,
.devlogs-browser-section,
.portfolio-showcase-section {
	background: transparent;
	border-color: var(--lava-border);
}

.mascot-placeholder,
.image-placeholder,
.small-image-placeholder,
.portrait-image-placeholder,
.square-image-placeholder,
.home-16-9-placeholder,
.latest-game-image-wrap,
.game-card-image-wrap,
.latest-fab-image,
.fab-product-image,
.top-pick-image-wrap,
.devlog-card-image-wrap {
	background:
		linear-gradient(rgba(16, 14, 13, 0.1), rgba(16, 14, 13, 0.52)),
		linear-gradient(135deg, #164260, var(--lava-navy-deep));
	border-color: rgba(229, 135, 69, 0.32);
	color: var(--lava-text-muted);
}

.mock-image,
.mock-thumb,
.mock-square,
.mock-wide {
	display: grid;
	place-items: center;
	background:
		linear-gradient(rgba(16, 14, 13, 0.08), rgba(16, 14, 13, 0.55)),
		linear-gradient(135deg, #164260, var(--lava-navy-deep));
	border: 1px solid rgba(229, 135, 69, 0.32);
	color: var(--lava-white);
	font-weight: 900;
	text-align: center;
	padding: 1rem;
}

.mock-square {
	aspect-ratio: 1 / 1;
	border-radius: 18px;
}

.mock-wide {
	aspect-ratio: 16 / 9;
	border-radius: 18px;
}

.mock-thumb {
	aspect-ratio: 1 / 1;
}

.portfolio-thumbnail-card .mock-thumb,
.devlog-card-image-wrap .mock-wide {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0;
}

.devlog-card-image-wrap .mock-wide {
	min-height: 220px;
	aspect-ratio: auto;
}

.status-ribbon,
.status-upcoming {
	background: var(--lava-orange);
	color: var(--lava-panel);
}

.status-available,
.price-tag,
.mock-available,
.mock-price {
	background: var(--lava-green);
	color: #071108;
	border-color: rgba(76, 187, 84, 0.45);
	box-shadow: 0 0 18px rgba(76, 187, 84, 0.34);
}

.game-info-tag,
.fab-tag,
.tag,
.top-pick-label,
.devlog-card-meta span {
	background: var(--lava-orange-soft);
	border: 1px solid rgba(229, 135, 69, 0.36);
	color: #ffc79b;
}

.fab-keyword-tags .fab-tag {
	background: var(--lava-orange-soft);
	border-color: rgba(229, 135, 69, 0.36);
	color: #ffc79b;
}

.devlog-control select {
	background: var(--lava-panel);
	border-color: var(--lava-border);
	color: var(--lava-white);
}

.top-pick-dot.active,
.top-pick-dot:hover {
	background: var(--lava-orange);
}

.top-pick-dot {
	background: rgba(255, 255, 255, 0.35);
}

.contact-social-card:hover,
.contact-social-card:focus-visible,
.home-data-card:hover,
.home-data-card:focus-within,
.home-mini-card:hover,
.home-mini-card:focus-within,
.top-pick-card:hover,
.top-pick-card:focus-visible {
	border-color: rgba(229, 135, 69, 0.7);
	background: #184864;
}

.mini-card h3,
.feature-card-content,
.about-stat {
	background: var(--lava-navy-cell);
	border-color: rgba(255, 255, 255, 0.11);
}

.mini-card h3 {
	margin: 0;
	padding: 1rem 1.1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.feature-card-content {
	border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.about-stat {
	border: 1px solid rgba(255, 255, 255, 0.11);
}

#home-fab-preview .home-mini-card,
#home-portfolio-preview .home-mini-card {
	background: var(--lava-navy-cell);
}

#home-fab-preview .home-mini-card h3,
#home-portfolio-preview .home-mini-card h3 {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0.75rem 0.8rem 0.85rem;
}

.fab-page .fab-product-content {
	background: transparent;
}

.mascot-placeholder {
	padding: 0;
	overflow: hidden;
}

.mascot-placeholder::before {
	content: none;
}

.mascot-image {
	display: block;
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	object-position: center center;
	padding: 0;
}

.intro-panel .section-kicker,
.preview-panel .section-kicker,
.latest-panel .section-kicker,
.about-feature-card .section-kicker,
.about-section-heading .section-kicker,
.about-direction-card .section-kicker,
.contact-section-heading .section-kicker,
.contact-email-card .section-kicker,
.devlogs-section-heading .section-kicker,
.section-heading .section-kicker,
.section-heading .section-label,
.portfolio-showcase-heading .section-label,
.portfolio-grid-heading .section-label {
	color: var(--lava-orange);
}

.games-hero,
.fab-hero,
.portfolio-hero,
.about-hero,
.contact-hero,
.devlogs-hero {
	padding: 0;
}

.games-hero .page-section,
.fab-hero .section-inner,
.portfolio-hero .section-inner,
.about-hero .section-inner,
.contact-hero .section-inner,
.devlogs-hero .section-inner {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 82px 24px;
}

.portfolio-showcase-heading h2:empty {
	display: none;
}

.top-pick-label {
	display: none;
}

.game-info-tag.price-tag,
.game-info-tag.mock-price,
.fab-tag.price-tag,
.fab-tag.mock-price,
.price-tag,
.mock-price {
	background: var(--lava-green);
	color: #071108;
	border-color: rgba(76, 187, 84, 0.45);
	box-shadow: 0 0 18px rgba(76, 187, 84, 0.34);
}


/* ================================
   Orange Heading Font
================================ */

.hero-kicker,
.section-kicker,
.section-label,
.fab-page .section-label,
.portfolio-page .section-label,
.about-page .section-kicker,
.contact-page .section-kicker,
.devlogs-page .section-kicker,
.devlog-control span,
.about-stat span,
.about-value span,
.home-devlog-meta {
	font-family: "Norse Bold", Arial, Helvetica, sans-serif;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.1;
}

/* ================================
   Mobile Full-Screen Menu
   Keeps logo/button in normal position
================================ */

@media (max-width: 800px) {
	body:has(.site-nav.open) {
		overflow: hidden;
	}

	.site-header:has(.site-nav.open) {
		position: fixed;
		inset: 0;
		z-index: 9999;
		background: var(--lava-panel, #100e0d);
		overflow-y: auto;
	}

	.site-header:has(.site-nav.open) .header-inner {
		max-width: none;
		min-height: 100dvh;
		margin: 0;
		padding: 18px 24px;
		display: flex;
		flex-direction: row;
		align-items: center;
		align-content: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 0;
	}

	.site-header:has(.site-nav.open) .logo {
		display: inline-flex;
		align-items: center;
		justify-content: flex-start;
	}

	.site-header:has(.site-nav.open) .menu-toggle {
		margin-left: auto;
	}

	.site-header:has(.site-nav.open) .site-nav.open {
		display: flex;
		width: 100%;
		min-height: calc(100dvh - 125px);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 28px;
		margin-top: 22px;
		padding: 34px 0;
		border-top: 1px solid var(--lava-border, rgba(255, 255, 255, 0.13));
		text-align: center;
	}

	.site-header:has(.site-nav.open) .site-nav a {
		width: 100%;
		max-width: 340px;
		padding: 6px 0;
		font-size: 1.55rem;
		line-height: 1.2;
		text-align: center;
	}
}


/* ================================
   Desktop Navigation + Hero Spacing
================================ */

@media (min-width: 801px) {
	/* Larger desktop menu links */
	.site-nav a {
		font-size: 1.08rem;
		padding: 0.35rem 0.15rem;
	}

	.site-nav {
		gap: 1.15rem;
	}

	/* More space between "Welcome to" and the main hero logo */
	.home-page .hero-kicker {
		top: 14%;
	}

	.home-page .hero-logo {
		top: 45%;
	}
}

/* ================================
   Contact + Devlogs Page Edge Spacing Fix
================================ */

.contact-page .contact-socials-section,
.contact-page .contact-email-section,
.devlogs-page .devlogs-browser-section {
	padding-left: 24px;
	padding-right: 24px;
}

.contact-page .section-inner,
.devlogs-page .section-inner {
	width: 100%;
}

/* Mobile spacing to match the rest of the site */
@media (max-width: 600px) {
	.contact-page .contact-socials-section,
	.contact-page .contact-email-section,
	.devlogs-page .devlogs-browser-section {
		padding-left: 20px;
		padding-right: 20px;
	}

	.contact-page .contact-hero .section-inner,
	.devlogs-page .devlogs-hero .section-inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* ================================
   Devlogs Mobile Pagination Layout
================================ */

@media (max-width: 650px) {
	.devlogs-page .devlog-pagination {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 0.75rem;
		flex-wrap: nowrap;
	}

	.devlogs-page .devlog-pagination button {
		width: auto;
		flex: 1 1 0;
		min-width: 0;
		padding: 0.75rem 0.85rem;
		font-size: 0.85rem;
		white-space: nowrap;
	}

	.devlogs-page .devlog-pagination span {
		flex: 0 0 auto;
		order: 2;
		font-size: 0.95rem;
		white-space: nowrap;
	}

	.devlogs-page .devlog-pagination button:first-of-type {
		order: 1;
	}

	.devlogs-page .devlog-pagination button:last-of-type {
		order: 3;
	}
}