/* =========================================================
   PLAYGATE WEBSITE STYLESHEET
   Lightweight structure with clear page separators
   ========================================================= */


/* =========================================================
   1. ROOT VARIABLES
   ========================================================= */

:root {
  --playg8-dark: #020024;
  --playg8-blue: #090979;
  --playg8-gold: #FFAA00;
  --playg8-gold-dark: #e69900;
  --playg8-gold-light: #ffc247;

  --playg8-black: #000000;
  --playg8-white: #ffffff;
  --playg8-body-bg: #FAFAF7;
  --playg8-text: #1f2937;
  --playg8-muted: #6b7280;

  --playg8-navbar-height: 80px;
  --playg8-container: 1180px;
  --playg8-page-inline: 8%;

  --playg8-shadow-sm: 0 10px 35px rgba(0, 0, 0, 0.08);
  --playg8-shadow-md: 0 14px 40px rgba(2, 0, 36, 0.12);
  --playg8-shadow-lg: 0 20px 60px rgba(2, 0, 36, 0.18);

  --playg8-radius-sm: 12px;
  --playg8-radius-md: 22px;
  --playg8-radius-lg: 28px;
}


/* =========================================================
   2. RESET / BASE
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  padding-top: var(--playg8-navbar-height);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: var(--playg8-text);
  background: var(--playg8-body-bg);
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  min-height: 60vh;
}


/* =========================================================
   3. ACCESSIBILITY HELPERS
   ========================================================= */

.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);
}


/* =========================================================
   NAVBAR BASE
   ========================================================= */

.site-navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1031;
	min-height: var(--playg8-navbar-height);
	background: linear-gradient(135deg, #000000, #1f1f1f);
	border-bottom: 2px solid var(--playg8-gold);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.site-navbar-inner {
	width: min(100% - 32px, var(--playg8-container));
	min-height: var(--playg8-navbar-height);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	margin: 0 auto;
}


/* =========================================================
   NAVBAR LEFT MENU
   ========================================================= */

.site-navbar-menu {
	justify-self: start;
	min-width: 0;
}

.site-navbar-list {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-navbar-list > li {
	position: relative;
	display: flex;
	align-items: center;
}

.site-navbar-link,
.site-navbar-dropdown-toggle {
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 9px 12px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.94rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition:
		color 0.2s ease,
		background-color 0.2s ease;
}

.site-navbar-link:hover,
.site-navbar-link:focus-visible,
.site-navbar-dropdown-toggle:hover,
.site-navbar-dropdown-toggle:focus-visible,
.site-navbar-link.is-active,
.site-navbar-dropdown-toggle.is-active {
	color: var(--playg8-gold);
	background: rgba(255, 170, 0, 0.08);
}

.site-navbar-arrow {
	font-size: 0.75rem;
	line-height: 1;
	transition: transform 0.2s ease;
}

.site-navbar-item-dropdown.is-dropdown-open .site-navbar-arrow {
	transform: rotate(180deg);
}


/* =========================================================
   NAVBAR CENTRE LOGO
   ========================================================= */

.site-navbar-brand {
	justify-self: center;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--playg8-white);
	font-size: 1.12rem;
	font-weight: 850;
	letter-spacing: 0.3px;
	text-decoration: none;
	white-space: nowrap;
}

.site-navbar-brand img {
	width: 55px;
	height: 55px;
	display: block;
	object-fit: contain;
}

.site-navbar-brand:hover,
.site-navbar-brand:focus-visible {
	color: var(--playg8-gold);
}


/* =========================================================
   NAVBAR RIGHT CTA
   ========================================================= */

.site-navbar-right {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-navbar-link-cta {
	min-height: 42px;
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--playg8-gold);
	color: #111827;
	font-weight: 850;
	box-shadow: 0 10px 24px rgba(255, 170, 0, 0.22);
}

.site-navbar-link-cta:hover,
.site-navbar-link-cta:focus-visible,
.site-navbar-link-cta.is-active {
	background: var(--playg8-gold-light);
	color: #111827;
}

.shop-navbar-link {
    border: 1px solid rgba(255, 170, 0, 0.8);
}


/* =========================================================
   NAVBAR DROPDOWNS
   ========================================================= */

@media (min-width: 992px) {
	.site-navbar-dropdown {
		position: absolute;
		top: calc(100% + 14px);
		left: 50%;
		min-width: 240px;
		padding: 10px;
		margin: 0;
		list-style: none;
		border: 1px solid rgba(255, 170, 0, 0.28);
		border-radius: 16px;
		background: #111111;
		box-shadow: var(--playg8-shadow-md);
		opacity: 0;
		visibility: hidden;
		transform: translate(-50%, 8px);
		pointer-events: none;
		transition:
			opacity 0.18s ease,
			transform 0.18s ease,
			visibility 0.18s ease;
	}

	.site-navbar-item-dropdown::after {
		content: "";
		position: absolute;
		top: 100%;
		left: -24px;
		right: -24px;
		height: 14px;
		display: block;
	}

	.site-navbar-item-dropdown:hover .site-navbar-dropdown,
	.site-navbar-item-dropdown:focus-within .site-navbar-dropdown,
	.site-navbar-item-dropdown.is-dropdown-open .site-navbar-dropdown {
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, 0);
		pointer-events: auto;
	}

	.site-navbar-dropdown::before {
		content: "";
		position: absolute;
		top: -8px;
		left: 50%;
		width: 14px;
		height: 14px;
		background: #111111;
		border-left: 1px solid rgba(255, 170, 0, 0.28);
		border-top: 1px solid rgba(255, 170, 0, 0.28);
		transform: translateX(-50%) rotate(45deg);
	}
}

.site-navbar-dropdown-link {
	position: relative;
	z-index: 1;
	display: block;
	padding: 11px 13px;
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.94rem;
	font-weight: 650;
	line-height: 1.25;
	text-decoration: none;
	white-space: nowrap;
	transition:
		color 0.2s ease,
		background-color 0.2s ease;
}

.site-navbar-dropdown-link:hover,
.site-navbar-dropdown-link:focus-visible,
.site-navbar-dropdown-link.is-active {
	background: rgba(255, 170, 0, 0.12);
	color: var(--playg8-gold);
}


/* =========================================================
   NAVBAR MOBILE BUTTON
   ========================================================= */

.site-navbar-toggle {
	display: none;
	width: 54px;
	height: 42px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	padding: 0;
	border: 1px solid rgba(255, 170, 0, 0.8);
	border-radius: 8px;
	background: transparent;
}

.site-navbar-toggle-line {
	width: 24px;
	height: 2px;
	display: block;
	border-radius: 999px;
	background: var(--playg8-gold);
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}

.site-navbar.is-menu-open .site-navbar-toggle-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-navbar.is-menu-open .site-navbar-toggle-line:nth-child(2) {
	opacity: 0;
}

.site-navbar.is-menu-open .site-navbar-toggle-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   NAVBAR MOBILE LAYOUT
   ========================================================= */

@media (max-width: 991.98px) {
	.site-navbar-inner {
		width: 100%;
		min-height: var(--playg8-navbar-height);
		display: grid;
		grid-template-columns: auto 1fr auto;
		gap: 14px;
		padding: 0 18px;
	}

	.site-navbar-toggle {
		display: inline-flex;
		grid-column: 1;
		grid-row: 1;
	}

	.site-navbar-brand {
		grid-column: 2;
		grid-row: 1;
		justify-self: center;
	}

	.site-navbar-right {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
	}

	.site-navbar-right .site-navbar-link-cta {
		display: none;
	}

	.site-navbar-menu {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
		max-height: 0;
		display: block;
		overflow: hidden;
		transition: max-height 0.25s ease;
	}

	.site-navbar.is-menu-open .site-navbar-menu {
		max-height: calc(100vh - var(--playg8-navbar-height));
		overflow-y: auto;
	}

	.site-navbar-list {
		display: block;
		padding: 12px 0 18px;
		border-top: 1px solid rgba(255, 170, 0, 0.25);
	}

	.site-navbar-list > li {
		display: block;
		width: 100%;
	}

	.site-navbar-link,
	.site-navbar-dropdown-toggle {
		width: 100%;
		justify-content: space-between;
		min-height: 46px;
		padding: 12px 4px;
		border-radius: 0;
		text-align: left;
	}

	.site-navbar-link:hover,
	.site-navbar-link:focus-visible,
	.site-navbar-dropdown-toggle:hover,
	.site-navbar-dropdown-toggle:focus-visible,
	.site-navbar-link.is-active,
	.site-navbar-dropdown-toggle.is-active {
		background: transparent;
	}

	.site-navbar-dropdown {
		display: none;
		width: 100%;
		margin: 0;
		padding: 6px 0 10px;
		list-style: none;
	}

	.site-navbar-item-dropdown.is-dropdown-open .site-navbar-dropdown {
		display: block;
	}

	.site-navbar-dropdown-link {
		display: flex;
		align-items: center;
		width: 100%;
		min-height: 42px;
		margin: 2px 0;
		padding: 11px 14px 11px 22px;
		border-left: 3px solid rgba(255, 170, 0, 0.35);
		background: rgba(255, 255, 255, 0.04);
		color: var(--playg8-white);
		font-size: 0.94rem;
		font-weight: 700;
		line-height: 1.35;
		white-space: normal;
	}

	.site-navbar-dropdown-link:hover,
	.site-navbar-dropdown-link:focus-visible,
	.site-navbar-dropdown-link.is-active {
		background: rgba(255, 170, 0, 0.12);
		color: var(--playg8-gold);
	}

	.site-navbar-menu .site-navbar-list::after {
		content: "";
		display: block;
		margin-top: 12px;
	}

	.site-navbar-menu .site-navbar-list {
		position: relative;
	}

	.site-navbar-menu .site-navbar-list::before {
		content: "Contact Us";
		display: block;
		margin-top: 12px;
		padding: 13px 18px;
		border-radius: 999px;
		background: var(--playg8-gold);
		color: #111827;
		font-weight: 850;
		text-align: center;
	}
}


/* =========================================================
   NAVBAR SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {
	.site-navbar-inner {
		padding: 0 14px;
	}

	.site-navbar-brand {
		font-size: 1rem;
	}

	.site-navbar-brand img {
		width: 50px;
		height: 50px;
	}
}


/* =========================================================
   13. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* =========================================================
   14. SHARED PAGE STRUCTURE
   ========================================================= */

.site-page {
  background: var(--playg8-body-bg);
  color: var(--playg8-text);
  overflow: hidden;
}

.site-container {
  width: min(100% - 32px, var(--playg8-container));
  margin: 0 auto;
}

.site-section {
  padding: 88px 0;
  background: var(--playg8-body-bg);
}

.site-section-light {
  background:
    radial-gradient(circle at top left, rgba(255, 170, 0, 0.12), transparent 30%),
    var(--playg8-white);
}

.site-section-soft {
  background:
    radial-gradient(circle at top right, rgba(255, 170, 0, 0.14), transparent 30%),
    #f8fafc;
}

.site-section-dark {
  background:
    radial-gradient(circle at top left, rgba(255, 170, 0, 0.18), transparent 34%),
    linear-gradient(135deg, var(--playg8-dark), #06064f);
  color: var(--playg8-white);
}

/* Decorative jukebox pairs for blue content sections. */
.site-section-art {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.site-section-art::before,
.site-section-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: auto clamp(440px, 55vw, 720px);
  opacity: 0.96;
}

.site-section-art::before {
  background-image: var(--section-art-left);
  background-position: left center;
}

.site-section-art::after {
  background-image: var(--section-art-right);
  background-position: right center;
}

.site-section-art > .site-container {
  position: relative;
  z-index: 1;
}

.site-section-art-tall {
  min-height: 720px;
  display: flex;
  align-items: center;
}

.site-section-art-cta::before,
.site-section-art-cta::after {
  background-position-y: top;
  background-size: auto 480px;
}

@media (min-width: 901px) {
  .site-section-art > .site-container {
    width: min(
      calc(100% - clamp(320px, 36vw, 500px)),
      var(--playg8-container)
    );
  }
}

.site-section-art-01 {
  --section-art-left: url("../img/Left/L1Final.webp");
  --section-art-right: url("../img/Right/R1Final.webp");
}

.site-section-art-02 {
  --section-art-left: url("../img/Left/L2Final.webp");
  --section-art-right: url("../img/Right/R2Final.webp");
}

.site-section-art-03 {
  --section-art-left: url("../img/Left/L3Final.webp");
  --section-art-right: url("../img/Right/R3Final.webp");
}

.site-section-art-04 {
  --section-art-left: url("../img/Left/L4Final.webp");
  --section-art-right: url("../img/Right/R4Final.webp");
}

.site-section-art-05 {
  --section-art-left: url("../img/Left/L5Final.webp");
  --section-art-right: url("../img/Right/R5Final.webp");
}

.site-section-art-06 {
  --section-art-left: url("../img/Left/L6Final.webp");
  --section-art-right: url("../img/Right/R6Final.webp");
}

.site-section-art-07 {
  --section-art-left: url("../img/Left/L7Final.webp");
  --section-art-right: url("../img/Right/R7Final.webp");
}

.site-section-art-08 {
  --section-art-left: url("../img/Left/L8Final.webp");
  --section-art-right: url("../img/Right/R8Final.webp");
}

.site-section-art-09 {
  --section-art-left: url("../img/Left/L9Final.webp");
  --section-art-right: url("../img/Right/R9Final.webp");
}

.site-section-art-10 {
  --section-art-left: url("../img/LRV4/v4L.webp");
  --section-art-right: url("../img/LRV4/v4R.webp");
}

.site-section-art-11 {
  --section-art-left: url("../img/Left/L11Final.webp");
  --section-art-right: url("../img/Right/R11Final.webp");
}

.site-section-art-12 {
  --section-art-left: url("../img/Left/L12Final.webp");
  --section-art-right: url("../img/Right/R12Final.webp");
}

.site-section[id] {
  scroll-margin-top: calc(var(--playg8-navbar-height) + 24px);
}

.site-section h2,
.site-cta h2 {
  margin: 0 0 22px;
  color: var(--playg8-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
  font-weight: 850;
}

.site-section h3 {
  margin: 0 0 14px;
  color: var(--playg8-dark);
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 850;
}

.site-section p,
.site-cta p {
  margin: 0 0 18px;
  color: var(--playg8-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.site-section-dark h2,
.site-section-dark h3 {
  color: var(--playg8-white);
}

.site-section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.site-section-header {
  max-width: 860px;
  margin-bottom: 46px;
}

.site-section-header-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.site-eyebrow {
  margin: 0 0 14px;
  color: var(--playg8-gold);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 2px;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Shared CTA section */

.site-cta {
  padding: 88px 0 104px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 170, 0, 0.18), transparent 34%),
    linear-gradient(135deg, var(--playg8-dark), var(--playg8-blue));
  color: var(--playg8-white);
}

.site-cta-content {
  max-width: 860px;
  margin: 0 auto;
}

.site-cta .site-eyebrow {
  color: var(--playg8-gold);
}

.site-cta h2 {
  color: var(--playg8-white);
}

.site-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.78);
}

.site-cta .site-actions {
  margin-top: 12px;
}



/* =========================================================
   15. SHARED HERO SECTIONS
   ========================================================= */

.site-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 96px 0 110px;
  background-color: var(--playg8-dark);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  color: var(--playg8-white);
  overflow: hidden;
}

.site-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(2, 0, 36, 0.96) 0%,
      rgba(2, 0, 36, 0.88) 38%,
      rgba(2, 0, 36, 0.28) 64%,
      rgba(2, 0, 36, 0.08) 100%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 12px
    );
  pointer-events: none;
}

.site-hero-content {
  position: relative;
  z-index: 2;
}

.site-hero-title {
  max-width: 900px;
  margin: 0 0 24px;
  color: var(--playg8-white);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.site-hero-title span {
  display: block;
  color: var(--playg8-gold);
}

.site-hero-text {
  max-width: 760px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.8;
}



/* =========================================================
   16. SHARED BUTTONS
   ========================================================= */

.site-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-actions-center {
  justify-content: center;
}

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.site-btn:hover,
.site-btn:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.site-btn-primary {
  background: var(--playg8-gold);
  color: #111827;
  box-shadow: 0 12px 30px rgba(255, 170, 0, 0.28);
}

.site-btn-primary:hover,
.site-btn-primary:focus-visible {
  background: var(--playg8-gold-light);
  color: #111827;
}

.site-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: transparent;
  color: var(--playg8-white);
}

.site-btn-secondary:hover,
.site-btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  color: var(--playg8-white);
}

.site-text-link {
  display: inline-block;
  margin-top: 6px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--playg8-gold);
  color: var(--playg8-gold);
  font-weight: 850;
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.site-text-link:hover,
.site-text-link:focus-visible {
  border-color: var(--playg8-gold-light);
  color: var(--playg8-gold-light);
  outline: none;
}



/* =========================================================
   17. SHARED CARDS
   ========================================================= */

.site-card,
.site-step-card,
.site-feature-item,
.site-panel {
  border: 1px solid rgba(2, 0, 36, 0.08);
  border-radius: var(--playg8-radius-md);
  background: var(--playg8-white);
  box-shadow: var(--playg8-shadow-md);
}

.site-card,
.site-step-card {
  min-height: 100%;
  padding: 32px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.site-card:hover,
.site-step-card:hover,
.site-feature-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 170, 0, 0.5);
  box-shadow: var(--playg8-shadow-lg);
}

/* Shared icon circles */

.site-icon,
.site-card-icon,
.site-step-card > span,
.site-feature-item > span {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--playg8-gold);
  color: #111827;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.site-icon svg,
.site-card-icon svg,
.site-step-card > span svg,
.site-feature-item > span svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-card p,
.site-step-card p {
  margin-bottom: 22px;
}

.site-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.site-link-card .site-icon {
  margin-bottom: 22px;
}

.site-link-card p {
  margin-bottom: 0;
}

.site-gallery-feature {
  align-items: start;
  margin-bottom: 24px;
}

.site-gallery-grid {
  margin-top: 24px;
}

.site-gallery-card {
  overflow: hidden;
  padding: 0;
}

.site-gallery-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  padding: 24px;
  object-fit: contain;
  background: #f8fafc;
}

.site-gallery-card div {
  padding: 24px;
  border-top: 1px solid rgba(2, 0, 36, 0.08);
}

.site-gallery-card span,
.site-card-label {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--playg8-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-gallery-card h3 {
  margin-bottom: 10px;
}

.site-gallery-card p {
  margin-bottom: 0;
}

.site-section-dark .site-gallery-card h3 {
  color: var(--playg8-dark);
}

.site-section-dark .site-gallery-card p {
  color: var(--playg8-muted);
}

/* Dark cards */

.site-card-dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--playg8-white);
  box-shadow: none;
}

.site-card-dark:hover {
  border-color: rgba(255, 170, 0, 0.7);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: none;
}

.site-card-dark h3 {
  color: var(--playg8-white);
}

.site-card-dark p {
  color: rgba(255, 255, 255, 0.76);
}

/* Feature items */

.site-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.site-feature-item .site-icon,
.site-feature-item > span {
  margin-bottom: 0;
}

.site-feature-item h3 {
  margin: 0;
  font-size: 1.15rem;
}

/* Shared content panel */

.site-panel {
  padding: 36px;
  background:
    radial-gradient(circle at top right, rgba(255, 170, 0, 0.12), transparent 34%),
    linear-gradient(145deg, #ffffff, #f8fafc);
}

.site-panel h3 {
  margin-bottom: 18px;
}



/* =========================================================
   18. SHARED GRIDS
   ========================================================= */

.site-grid {
  display: grid;
  gap: 24px;
}

.site-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.site-check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-check-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border-left: 5px solid var(--playg8-gold);
  border-radius: var(--playg8-radius-sm);
  background: var(--playg8-white);
  color: var(--playg8-dark);
  font-weight: 750;
  line-height: 1.55;
  box-shadow: 0 12px 30px rgba(2, 0, 36, 0.07);
}

.site-check-list li::before {
  content: "✓";
  position: absolute;
  top: 16px;
  left: 20px;
  color: var(--playg8-gold);
  font-weight: 900;
}

.site-detail-list {
  display: grid;
  gap: 10px;
  padding-left: 1.15rem;
  margin: 0;
  color: var(--playg8-muted);
  line-height: 1.65;
}

.site-detail-list li::marker {
  color: var(--playg8-gold);
}

.site-section-dark .site-detail-list {
  color: rgba(255, 255, 255, 0.76);
}



/* =========================================================
   19. SHARED FORMS
   ========================================================= */



/* =========================================================
   20. HOME PAGE
   ========================================================= */

.home-hero {
  background-image: url("../img/home/homeHero1.webp");
}

.home-page .site-section:first-of-type {
  background:
    radial-gradient(circle at top left, rgba(255, 170, 0, 0.1), transparent 30%),
    var(--playg8-body-bg);
}



/* =========================================================
   21. JUKEBOXES PAGE
   ========================================================= */

.jukeboxes-hero {
  background-image: url("../img/jukeboxes/jukeboxesHero.webp");
}

.jukeboxes-gallery-section .site-section-header {
  max-width: 920px;
}



/* =========================================================
   22. VENUES PAGE
   ========================================================= */

.venues-hero {
  background-image: url("../img/venueowners/benefitsHero.webp");
}

.venues-page .site-section-header {
  max-width: 920px;
}


/* =========================================================
   23. TECHNOLOGY PAGE
   ========================================================= */
.technology-hero {
  background-image: url("../img/technology/technologyHero.webp");
}


/* =========================================================
   24. SPECIFICATIONS PAGE
   ========================================================= */
.specifications-hero {
  background-image: url("../img/specifications/specificationsHero.webp");
}


/* =========================================================
   25. ADVERTISING PAGE
   ========================================================= */

.ads-hero {
  background-image: url("../img/advertising/advertisingHero.webp");
}

.ads-page .site-section-header {
  max-width: 920px;
}

.ads-page .site-gallery-card img {
  aspect-ratio: 16 / 9;
  padding: 18px;
  object-fit: contain;
}

.ads-page .site-section-dark .site-gallery-card {
  background: var(--playg8-white);
  color: var(--playg8-text);
}



/* =========================================================
   26. FRANCHISES PAGE
   ========================================================= */

.franchises-hero {
  background-image: url("../img/franchises/franchiseHero.webp");
}

.franchises-page .site-section-header {
  max-width: 920px;
}



/* =========================================================
   27. SOFTWARE PAGE
   ========================================================= */
.software-hero {
  background-image: url("../img/software/softwareHero.webp");
}


/* =========================================================
   28. SHOP PAGE
   ========================================================= */

.shop-hero {
  background-image: url("../img/store/equipmentHero.webp");
}

.shop-page .site-section-header {
  max-width: 920px;
}

.shop-page .shop-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-page .shop-product-card img {
  aspect-ratio: 4 / 3;
  padding: 24px;
  object-fit: contain;
}

.shop-page .shop-product-card .site-detail-list {
  margin: 18px 0 12px;
}

@media (max-width: 760px) {
  .shop-page .shop-product-grid {
    grid-template-columns: 1fr;
  }
}



/* =========================================================
   29. ABOUT PAGE
   ========================================================= */
.about-hero {
  background-image: url("../img/about/aboutHero.webp");
}


/* =========================================================
   30. CONTACT PAGE
   ========================================================= */

.contact-hero {
  background-image: url("../img/contact/contact8.webp");
}

.contact-page .site-section-header-center {
  max-width: 820px;
}

.contact-info-card a {
  color: inherit;
  text-decoration: none;
}

.contact-info-card a:hover,
.contact-info-card a:focus-visible {
  color: var(--playg8-gold);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 40px;
  align-items: stretch;
}

.contact-form-panel {
  min-width: 0;
}

.contact-form {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field label {
  color: var(--playg8-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(2, 0, 36, 0.14);
  border-radius: var(--playg8-radius-sm);
  background: var(--playg8-white);
  color: var(--playg8-text);
  padding: 13px 15px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--playg8-gold);
  box-shadow: 0 0 0 4px rgba(255, 170, 0, 0.18);
}

.contact-select-wrap {
  position: relative;
}

.contact-select-wrap select {
  appearance: none;
  padding-right: 42px;
}

.contact-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--playg8-muted);
  border-bottom: 2px solid var(--playg8-muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.error-message {
  min-height: 18px;
  font-size: 0.86rem;
  font-weight: 700;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cf-turnstile {
  min-height: 55px;
}

.contact-submit {
  width: fit-content;
}

.contact-submit:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.contact-image-panel {
  overflow: hidden;
  border-radius: var(--playg8-radius-md);
  box-shadow: var(--playg8-shadow-lg);
}

.contact-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-image-panel img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .cf-turnstile,
  .cf-turnstile > div,
  .cf-turnstile iframe {
    max-width: 100% !important;
  }

  .cf-turnstile {
    overflow: hidden;
  }

  .contact-submit {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    min-width: 0;
  }
}


/* =========================================================
   CONTACT PAGE LEGACY LAYOUT
   Clean version of the old contact page styling.
   ========================================================= */

.pulse-playg8 {
  color: var(--playg8-gold);
}

.contact-page {
  padding: 0 20px 60px;
}

.contact-page .contact-hero {
  margin: 0 -20px;
  padding: 40px 20px 80px;
  background:
    radial-gradient(circle at top right, rgba(255, 170, 0, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(2, 0, 36, 0.96), rgba(9, 9, 121, 0.92));
}

.contact-title {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  font-weight: 500;
}

.contact-info-row {
  max-width: var(--playg8-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.contact-info-item {
  min-width: 0;
}

.contact-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--playg8-gold);
  color: #000;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #fff;
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-card {
  max-width: var(--playg8-container);
  margin: -40px auto 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  padding: 50px;
  background: #fff;
  box-shadow: var(--playg8-shadow-sm);
}

.contact-form-side {
  min-width: 0;
}

.contact-form-side h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 500;
}

.contact-form-intro {
  margin-bottom: 30px;
  color: var(--playg8-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #111;
}

.contact-page .form-control {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
  color: var(--playg8-text);
  box-shadow: none;
  outline: none;
}

.contact-page .form-control:focus {
  border-bottom-color: var(--playg8-gold);
  box-shadow: none;
}

.contact-page textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-page select.form-control {
  appearance: none;
  padding: 10px 34px 10px 0;
  color: #111;
  cursor: pointer;
}

.contact-page select.form-control:invalid {
  color: #777;
}

.contact-select-wrap {
  position: relative;
}

.contact-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--playg8-muted);
  border-bottom: 2px solid var(--playg8-muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.error-message {
  color: #d00000;
  font-size: 0.8rem;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.cf-turnstile {
  min-height: 55px;
  margin-bottom: 18px;
}

.cf-turnstile,
.cf-turnstile > div,
.cf-turnstile iframe {
  max-width: 100% !important;
}

.cf-turnstile {
  overflow: hidden;
}

.btn-playg8 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 24px;
  border: 1px solid var(--playg8-gold);
  border-radius: 999px;
  background: var(--playg8-gold);
  color: #000;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255, 170, 0, 0.28);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.btn-playg8:hover,
.btn-playg8:focus-visible {
  background: var(--playg8-gold-light);
  border-color: var(--playg8-gold-light);
  color: #000;
  transform: translateY(-3px);
  outline: none;
}

.btn-playg8:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.contact-image-side {
  min-width: 0;
}

.contact-image-side img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .contact-info-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-image-side img {
    min-height: 320px;
  }
}

@media (max-width: 576px) {
  .contact-page {
    padding: 0 15px 50px;
  }

  .contact-page .contact-hero {
    margin: 0 -15px;
    padding: 35px 20px 70px;
  }

  .contact-title {
    margin-bottom: 40px;
    font-size: 1.8rem;
  }

  .contact-info-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-row {
    gap: 35px;
  }

  .contact-card {
    margin-top: -30px;
    padding: 30px 20px;
    gap: 35px;
  }

  .contact-form-side h2 {
    font-size: 1.5rem;
  }

  .btn-playg8 {
    width: 100%;
  }

  .contact-image-side img {
    min-height: 260px;
  }
}


/* =========================================================
   31. SUCCESS / NO-SUCCESS PAGES
   ========================================================= */

.status-page {
  min-height: calc(100vh - var(--playg8-navbar-height));
  display: flex;
  align-items: center;
  padding: 86px 0;
  background:
    radial-gradient(circle at top right, rgba(255, 170, 0, 0.22), transparent 34%),
    linear-gradient(135deg, var(--playg8-dark), var(--playg8-blue));
}

.status-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 58px);
  text-align: center;
}

.status-icon {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--playg8-gold);
  color: #111827;
  box-shadow: 0 14px 34px rgba(255, 170, 0, 0.32);
}

.status-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status-card h1 {
  margin: 0 0 18px;
  color: var(--playg8-dark);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  font-weight: 900;
}

.status-card p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.status-note {
  font-weight: 750;
}

.status-btn-secondary {
  border: 1px solid rgba(2, 0, 36, 0.22);
  background: var(--playg8-white);
  color: var(--playg8-dark);
}

.status-btn-secondary:hover,
.status-btn-secondary:focus-visible {
  border-color: var(--playg8-gold);
  background: rgba(255, 170, 0, 0.12);
  color: var(--playg8-dark);
}

.status-icon-warning {
  background: #ffb020;
  color: #111827;
}



/* =========================================================
   32. PRIVACY PAGE
   ========================================================= */



/* =========================================================
   33. TERMS OF USE PAGE
   ========================================================= */

.legal-hero {
  min-height: 52vh;
  background:
    radial-gradient(circle at top right, rgba(255, 170, 0, 0.2), transparent 34%),
    linear-gradient(135deg, var(--playg8-dark), var(--playg8-blue));
}

.legal-container {
  max-width: 980px;
}

.legal-content {
  padding: clamp(28px, 5vw, 56px);
}

.legal-updated {
  display: inline-block;
  margin: 0 0 34px;
  padding: 12px 16px;
  border-left: 5px solid var(--playg8-gold);
  border-radius: var(--playg8-radius-sm);
  background: rgba(255, 170, 0, 0.12);
  color: var(--playg8-dark);
  font-weight: 750;
}

.legal-block {
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid rgba(2, 0, 36, 0.1);
}

.legal-block:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.legal-block h2 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-block a {
  color: var(--playg8-gold-dark);
  font-weight: 800;
}

.legal-contact-grid {
  margin: 24px 0;
}

.legal-list-grid {
  margin: 24px 0;
}

.legal-contact-grid .site-card {
  box-shadow: var(--playg8-shadow-sm);
}

.legal-list-grid .site-card {
  box-shadow: var(--playg8-shadow-sm);
}



/* =========================================================
   34. FOOTER
   ========================================================= */
.site-footer {
	border-top: 2px solid var(--playg8-gold);
	background:
		radial-gradient(circle at top left, rgba(255, 170, 0, 0.14), transparent 32%),
		linear-gradient(135deg, #000000, #1f1f1f);
	color: rgba(255, 255, 255, 0.82);
}

.site-footer-inner {
	width: min(100% - 32px, var(--playg8-container));
	margin: 0 auto;
	padding: 56px 0 26px;
}

.site-footer-main {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr;
	gap: 48px;
	align-items: start;
}

.site-footer-section {
	min-width: 0;
}

.site-footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--playg8-white);
	font-size: 1.15rem;
	font-weight: 850;
	letter-spacing: 0.3px;
	text-decoration: none;
}

.site-footer-brand img {
	width: 48px;
	height: 48px;
	display: block;
	object-fit: contain;
}

.site-footer-brand:hover,
.site-footer-brand:focus-visible {
	color: var(--playg8-gold);
}

.site-footer-title {
	margin: 0 0 18px;
	color: var(--playg8-white);
	font-size: 1.05rem;
	font-weight: 850;
	letter-spacing: 0.3px;
}

.site-footer-text {
	max-width: 420px;
	margin: 0 0 16px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.96rem;
	line-height: 1.7;
}

.site-footer-small {
	margin-bottom: 0;
	font-size: 0.86rem;
	color: rgba(255, 255, 255, 0.62);
}

.site-footer-links,
.site-footer-contact,
.site-footer-social {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer-links {
	display: grid;
	gap: 9px;
}

.site-footer-links a,
.site-footer-contact a,
.site-footer-bottom a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible,
.site-footer-contact a:hover,
.site-footer-contact a:focus-visible,
.site-footer-bottom a:hover,
.site-footer-bottom a:focus-visible {
	color: var(--playg8-gold);
}

.site-footer-contact {
	display: grid;
	gap: 10px;
	margin-bottom: 22px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.95rem;
	line-height: 1.6;
}

.site-footer-contact span {
	display: inline-block;
	margin-right: 4px;
	color: var(--playg8-white);
	font-weight: 800;
}

.site-footer-social {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.site-footer-social a {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 170, 0, 0.35);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--playg8-white);
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.site-footer-social a:hover,
.site-footer-social a:focus-visible {
	border-color: var(--playg8-gold);
	background: var(--playg8-gold);
	color: #111827;
	transform: translateY(-2px);
}

.site-footer-social svg {
	width: 20px;
	height: 20px;
	display: block;
	fill: currentColor;
}

.site-footer-bottom {
	margin-top: 36px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 170, 0, 0.24);
	text-align: right;
}

.site-footer-bottom a {
	color: var(--playg8-gold);
	font-weight: 800;
}


/* =========================================================
   FLOATING BACK TO TOP BUTTON
   ========================================================= */

.back-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 1040;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 170, 0, 0.75);
	border-radius: 50%;
	background: var(--playg8-gold);
	color: #111827;
	font-size: 1.45rem;
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	pointer-events: none;
	transition:
		opacity 0.2s ease,
		visibility 0.2s ease,
		transform 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease;
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
	background: var(--playg8-gold-light);
	color: #111827;
	outline: none;
}

@media (max-width: 575.98px) {
	.back-to-top {
		right: 16px;
		bottom: 16px;
		width: 44px;
		height: 44px;
		font-size: 1.3rem;
	}
}


/* =========================================================
   COOKIE NOTICE
   ========================================================= */

.cookie-notice {
	position: fixed;
	left: 50%;
	bottom: 18px;
	z-index: 1050;
	width: min(960px, calc(100% - 32px));
	border: 1px solid rgba(255, 170, 0, 0.36);
	border-radius: 16px;
	background:
		radial-gradient(circle at top left, rgba(255, 170, 0, 0.16), transparent 34%),
		linear-gradient(135deg, #000000, #1f1f1f);
	color: rgba(255, 255, 255, 0.82);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
	transform: translateX(-50%);
}

.cookie-notice[hidden] {
	display: none;
}

.cookie-notice-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"heading actions"
		"copy actions"
		"link actions";
	column-gap: 26px;
	padding: 16px 18px;
}

.cookie-notice h2 {
	grid-area: heading;
	margin: 0 0 4px;
	color: var(--playg8-white);
	font-size: 1rem;
	font-weight: 850;
}

.cookie-notice p {
	grid-area: copy;
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.86rem;
	line-height: 1.5;
}

.cookie-notice-actions {
	grid-area: actions;
	display: flex;
	align-self: center;
	gap: 10px;
	flex-wrap: nowrap;
	margin: 0;
}

.cookie-btn {
	min-height: 42px;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 850;
	line-height: 1;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.cookie-btn:hover,
.cookie-btn:focus-visible {
	transform: translateY(-2px);
	outline: none;
}

.cookie-btn-primary {
	border: 1px solid var(--playg8-gold);
	background: var(--playg8-gold);
	color: #111827;
}

.cookie-btn-primary:hover,
.cookie-btn-primary:focus-visible {
	background: var(--playg8-gold-light);
	border-color: var(--playg8-gold-light);
	color: #111827;
}

.cookie-btn-secondary {
	border: 1px solid rgba(255, 170, 0, 0.55);
	background: transparent;
	color: var(--playg8-gold);
}

.cookie-btn-secondary:hover,
.cookie-btn-secondary:focus-visible {
	background: rgba(255, 170, 0, 0.1);
	color: var(--playg8-gold-light);
}

.cookie-notice-link {
	grid-area: link;
	display: inline-block;
	width: fit-content;
	margin-top: 6px;
	color: var(--playg8-gold);
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none;
}

.cookie-notice-link:hover,
.cookie-notice-link:focus-visible {
	color: var(--playg8-gold-light);
}


/* =========================================================
   COOKIE NOTICE RESPONSIVE
   ========================================================= */

@media (max-width: 575.98px) {
	.cookie-notice {
		left: 10px;
		right: 10px;
		bottom: 10px;
		width: auto;
		border-radius: 14px;
		transform: none;
	}

	.cookie-notice-content {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			"heading heading"
			"copy copy"
			"link actions";
		gap: 8px 12px;
		padding: 14px 16px;
	}

	.cookie-notice h2 {
		margin: 0;
		font-size: 0.98rem;
	}

	.cookie-notice p {
		font-size: 0.79rem;
		line-height: 1.45;
	}

	.cookie-notice-actions {
		display: block;
		align-self: end;
	}

	.cookie-btn {
		width: auto;
		min-height: 36px;
		padding: 9px 16px;
		font-size: 0.82rem;
	}

	.cookie-notice-link {
		align-self: center;
		margin-top: 0;
		font-size: 0.78rem;
	}
}


/* =========================================================
   FOOTER RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
	.site-footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 38px;
	}

	.site-footer-brand-section {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.site-footer-inner {
		width: min(100% - 28px, var(--playg8-container));
		padding: 44px 0 24px;
	}

	.site-footer-main {
		grid-template-columns: 1fr;
		gap: 34px;
		text-align: center;
	}

	.site-footer-text {
		margin-left: auto;
		margin-right: auto;
	}

	.site-footer-brand,
	.site-footer-social {
		justify-content: center;
	}

	.site-footer-bottom {
		text-align: center;
	}
}



/* =========================================================
   35. RESPONSIVE: LARGE TABLETS
   ========================================================= */

@media (max-width: 1100px) {
  .site-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-split {
    gap: 40px;
  }
}



/* =========================================================
   36. RESPONSIVE: TABLETS
   ========================================================= */

@media (max-width: 900px) {
  .site-section {
    padding: 72px 0;
  }

  .site-section-art::before,
  .site-section-art::after {
    background-size: auto clamp(360px, 62vw, 520px);
    opacity: 0.78;
  }

  .site-section-art-tall {
    min-height: 520px;
  }

  .site-split {
    grid-template-columns: 1fr;
  }

  .site-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-hero {
    min-height: 66vh;
    background-position: center right;
  }
}



/* =========================================================
   37. RESPONSIVE: MOBILE
   ========================================================= */

@media (max-width: 640px) {
  .site-container {
    width: min(100% - 28px, var(--playg8-container));
  }

  .site-section-art {
    padding-top: 190px;
    padding-bottom: 58px;
  }

  .site-section-art::before {
    background-position: left top;
    background-size: auto 320px;
    opacity: 1;
  }

  .site-section-art::after {
    background-position: right top;
    background-size: auto 320px;
    opacity: 1;
  }

  .site-section-art-tall {
    min-height: 0;
    display: block;
  }

  .site-section {
    padding: 58px 0;
  }

  .site-section-header {
    margin-bottom: 34px;
  }

  .site-grid-3,
  .site-grid-4 {
    grid-template-columns: 1fr;
  }

  .site-grid-2 {
    grid-template-columns: 1fr;
  }

  .site-card,
  .site-step-card,
  .site-panel {
    padding: 26px;
  }

  .site-feature-item {
    padding: 22px;
  }

  .site-actions {
    align-items: stretch;
  }

  .site-btn {
    width: 100%;
  }

  .site-hero {
    min-height: auto;
    padding: 76px 0 86px;
    background-position: center right;
    background-size: auto 100%;
  }

  .site-hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(2, 0, 36, 0.97) 0%,
        rgba(2, 0, 36, 0.9) 54%,
        rgba(2, 0, 36, 0.45) 100%
      ),
      repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.018) 0,
        rgba(255, 255, 255, 0.018) 1px,
        transparent 1px,
        transparent 12px
      );
  }

  .site-hero-text {
    font-size: 1rem;
  }
}



/* =========================================================
   38. RESPONSIVE: SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {
  .site-section-art::before,
  .site-section-art::after {
    background-size: auto 270px;
    opacity: 1;
  }

  .site-section-art {
    padding-top: 170px;
    padding-bottom: 58px;
  }

  .site-card,
  .site-step-card,
  .site-panel {
    padding: 22px;
  }

  .site-icon,
  .site-card-icon,
  .site-step-card > span,
  .site-feature-item > span {
    width: 48px;
    height: 48px;
  }

  .site-icon svg,
  .site-card-icon svg,
  .site-step-card > span svg,
  .site-feature-item > span svg {
    width: 23px;
    height: 23px;
  }

  .site-check-list li {
    padding: 14px 16px 14px 44px;
  }

  .site-check-list li::before {
    top: 14px;
    left: 18px;
  }
}
