:root {
  --bg-0: #020101;
  --bg-1: #100805;
  --bg-2: #1f120c;
  --main-solid-dark: #0b0604;
  --main-solid-raised: #1a100c;
  --surface: rgba(30, 18, 12, 0.82);
  --surface-strong: rgba(22, 13, 9, 0.94);
  --line: rgba(214, 137, 73, 0.28);
  --line-soft: rgba(214, 137, 73, 0.22);
  --text: #fff4e8;
  --text-dim: #d9bda1;
  --accent: #ff9a3d;
  --accent-2: #d67b30;
  --btn-yellow-start: #f39f3f;
  --btn-yellow-end: #d8751f;
  --btn-yellow-hover-start: #ffb55a;
  --btn-yellow-hover-end: #e98a2f;
  --btn-yellow-solid: #e88a2f;
  --btn-yellow-solid-hover: #f4a043;
  --btn-olive-solid: #51603a;
  --btn-olive-solid-hover: #5c6c40;
  --btn-olive-spotlight-solid: #5b6f3e;
  --btn-olive-spotlight-hover: #64804a;
  --btn-red-solid: #853429;
  --btn-red-solid-hover: #96403a;
  --btn-red-dark-solid: #572a17;
  --btn-yellow-border: rgba(255, 183, 94, 0.76);
  --btn-yellow-ring: rgba(255, 193, 112, 0.26);
  --btn-yellow-ring-hover: rgba(255, 206, 136, 0.32);
  --btn-yellow-shadow: rgba(116, 48, 14, 0.38);
  --btn-yellow-shadow-hover: rgba(116, 48, 14, 0.46);
  --btn-yellow-text: #2a1708;
  --danger: #ff6b4a;
  --cut: 14px;
  --gameplay-blur-progress: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  background-image: linear-gradient(rgba(9, 4, 3, 0.76), rgba(9, 4, 3, 0.82)),
    url("images/background.png");
  background-position: center center, center center;
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.28;
  mix-blend-mode: soft-light;
  background: 0 0 / 220px 220px repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.52;
  background: radial-gradient(circle at 18% 20%, rgba(170, 76, 34, 0.22), transparent 34%),
    radial-gradient(circle at 82% 70%, rgba(96, 40, 22, 0.24), transparent 36%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.42), transparent 70%);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.85rem;
  padding: 0 1rem;
  border: 1px solid rgba(255, 160, 88, 0.34);
  background: linear-gradient(145deg, rgba(21, 12, 8, 0.9), rgba(10, 6, 4, 0.92));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(255, 170, 96, 0.08);
  backdrop-filter: blur(2px);
  position: relative;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 12% 18%, rgba(255, 158, 84, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 170, 94, 0.06), transparent 34%);
}

.header > * {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  line-height: 1;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-logo {
  width: clamp(48px, 5vw, 62px);
  height: clamp(48px, 5vw, 62px);
  display: block;
  margin: 0;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-link {
  color: var(--text);
  text-decoration: none;
}

.brand-link:hover {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-link-btn {
  border: 1px solid var(--line);
  background: rgba(255, 154, 61, 0.1);
  color: var(--text);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.72rem;
  clip-path: none;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-link-btn:hover {
  background: rgba(255, 154, 61, 0.2);
  color: #fff7ef;
}

.future-btn {
  border: 1px solid var(--line);
  background: rgba(255, 154, 61, 0.12);
  color: var(--text);
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.72rem;
  cursor: pointer;
  clip-path: none;
  border-radius: 0;
}

.future-btn.is-pulse {
  box-shadow: 0 0 0 2px rgba(255, 154, 61, 0.35);
}

.nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  padding: 2.4rem 0 2rem;
  max-width: 760px;
}

.luckrot-top-art {
  margin-top: 1.2rem;
  overflow: hidden;
}

.luckrot-top-art img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 188px;
  object-fit: cover;
  object-position: center;
  image-rendering: pixelated;
  filter: blur(calc(var(--gameplay-blur-progress) * 18px))
    contrast(calc(1.14 - var(--gameplay-blur-progress) * 0.1))
    saturate(calc(0.72 - var(--gameplay-blur-progress) * 0.48))
    sepia(calc(0.14 + var(--gameplay-blur-progress) * 0.04))
    brightness(calc(0.92 - var(--gameplay-blur-progress) * 0.4));
  transform: scale(calc(1 + var(--gameplay-blur-progress) * 0.05));
  opacity: calc(1 - var(--gameplay-blur-progress) * 0.7);
  transition: filter 0.28s ease, transform 0.28s ease, opacity 0.28s ease;
}

.luckrot-video {
  margin-top: 0.7rem;
  background: transparent;
  padding: 0;
  overflow: hidden;
  filter: blur(calc(var(--gameplay-blur-progress) * 8px));
  transform: scale(calc(1 + var(--gameplay-blur-progress) * 0.03));
  opacity: calc(1 - var(--gameplay-blur-progress) * 0.56);
  transition: filter 0.28s ease, transform 0.28s ease, opacity 0.28s ease;
}

.luckrot-video-player {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  pointer-events: none;
  background: transparent;
  filter: blur(calc(var(--gameplay-blur-progress) * 16px))
    saturate(calc(1 - var(--gameplay-blur-progress) * 0.82))
    brightness(calc(1 - var(--gameplay-blur-progress) * 0.62));
  transform: scale(calc(1 + var(--gameplay-blur-progress) * 0.07));
  opacity: calc(1 - var(--gameplay-blur-progress) * 0.72);
  transition: filter 0.28s ease, transform 0.28s ease, opacity 0.28s ease;
}

.luckrot-steam-entry {
  --steam-entry-top-gap: clamp(2.2rem, 4.6vw, 3.2rem);
  margin-top: var(--steam-entry-top-gap);
  margin-bottom: calc(var(--steam-entry-top-gap) * 2);
  display: flex;
  justify-content: center;
}

.luckrot-page .btn.btn-steam-page {
  margin-top: 0;
  width: min(100%, clamp(300px, 44vw, 500px));
  justify-content: center;
  align-items: center;
  gap: clamp(0.7rem, 1.5vw, 1rem);
  padding: clamp(1.3rem, 2.5vw, 1.7rem) clamp(1.9rem, 4.8vw, 3rem);
  font-size: clamp(1.3rem, 2.7vw, 1.9rem);
  background: var(--btn-yellow-solid);
  border-color: var(--btn-yellow-border);
  color: var(--btn-yellow-text);
  box-shadow: 0 0 0 1px var(--btn-yellow-ring), 0 11px 0 var(--btn-yellow-shadow);
  letter-spacing: 0.04em;
}

.luckrot-page .btn.btn-steam-page:hover {
  background: var(--btn-yellow-solid-hover);
  color: var(--btn-yellow-text);
  box-shadow: 0 0 0 1px var(--btn-yellow-ring-hover), 0 13px 0 var(--btn-yellow-shadow-hover);
}

.btn-steam-page-icon {
  width: clamp(1.65rem, 2.4vw, 2.2rem);
  height: clamp(1.65rem, 2.4vw, 2.2rem);
  object-fit: contain;
  flex: 0 0 auto;
}

.company-home {
  min-height: calc(100vh - 190px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.8rem;
}

.luckrot-page {
  padding-bottom: clamp(2.55rem, 9.4vh, 5.6rem);
}

.luckrot-page .featured {
  margin-top: clamp(0.45rem, 1.2vw, 0.8rem);
}

.company-hero {
  max-width: 100%;
  padding-top: 2.8rem;
  padding-bottom: 1.2rem;
}

.company-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.company-hero-layout--solo {
  grid-template-columns: 1fr;
  justify-items: center;
}

.company-mark {
  margin: 0;
  width: min(100%, 560px);
  justify-self: end;
}

.company-mark--solo {
  width: min(100%, 760px);
  justify-self: center;
}

.company-mark img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  image-rendering: pixelated;
  filter: contrast(1.12) saturate(0.78) brightness(0.92);
}

.proceed-wrap {
  margin-top: auto;
  padding-top: 1.4rem;
  display: flex;
  justify-content: center;
}

.btn-proceed {
  width: min(560px, 100%);
  justify-content: center;
  font-size: clamp(1.1rem, 2.6vw, 1.8rem);
  padding: 1rem 1.5rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
}

h1,
h2 {
  font-family: "Chakra Petch", sans-serif;
  line-height: 1.06;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0.6rem 0 0.9rem;
  font-size: clamp(2rem, 5vw, 3.7rem);
}

h2 {
  margin: 0.4rem 0 0.7rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

p {
  margin: 0;
}

.hero-copy {
  color: var(--text-dim);
  max-width: 62ch;
}

.btn {
  display: inline-flex;
  margin-top: 1.35rem;
  text-decoration: none;
  background: var(--btn-yellow-solid);
  color: var(--btn-yellow-text);
  font-weight: 700;
  padding: 0.78rem 1.1rem;
  border-radius: 0;
  border: 1px solid var(--btn-yellow-border);
  clip-path: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--btn-yellow-ring-hover), 0 12px 0 var(--btn-yellow-shadow-hover);
  filter: contrast(1.08);
}

.btn-back {
  clip-path: none;
  padding-left: 1.25rem;
  padding-right: 1rem;
}

.btn-wishlist {
  background: var(--btn-yellow-solid);
  border-color: var(--btn-yellow-border);
  box-shadow: 0 0 0 1px var(--btn-yellow-ring), 0 10px 0 var(--btn-yellow-shadow);
  font-size: clamp(1.15rem, 2.5vw, 1.38rem);
  padding: 1.05rem 1.6rem;
  min-width: min(100%, 380px);
  justify-content: center;
  color: var(--btn-yellow-text);
  font-weight: 700;
}

.btn-wishlist:hover {
  box-shadow: 0 0 0 1px var(--btn-yellow-ring-hover), 0 12px 0 var(--btn-yellow-shadow-hover);
  transform: translateY(-2px);
  filter: contrast(1.08);
  background: var(--btn-yellow-solid-hover);
  color: var(--btn-yellow-text);
}

.btn-library {
  background: var(--btn-olive-solid);
  color: #f4edd8;
  border-color: rgba(157, 177, 116, 0.52);
  clip-path: none;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(170, 190, 128, 0.18), 0 10px 0 rgba(42, 50, 29, 0.3);
  font-size: clamp(0.9rem, 1.35vw, 1rem);
  font-weight: 700;
  padding: 0.72rem 1rem;
  min-width: 0;
  justify-content: center;
  letter-spacing: 0.02em;
  gap: 0.45rem;
}

.btn-library:hover {
  transform: translateY(-2px);
  filter: contrast(1.05);
  background: var(--btn-olive-solid-hover);
  color: #fff6e7;
  box-shadow: 0 0 0 1px rgba(189, 210, 147, 0.22), 0 12px 0 rgba(42, 50, 29, 0.38);
}

.btn-library-spotlight {
  margin-top: 0;
  width: fit-content;
  max-width: 100%;
  background: var(--btn-olive-spotlight-solid);
  border-color: rgba(193, 218, 145, 0.58);
  color: #fff4df;
  box-shadow: 0 0 0 1px rgba(193, 218, 145, 0.2), 0 11px 0 rgba(34, 44, 23, 0.34);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  letter-spacing: 0.02em;
}

.btn-library-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border: 0;
  background: transparent;
}

.btn-library-icon svg {
  width: 0.88rem;
  height: 0.88rem;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.btn-library-spotlight:hover {
  background: var(--btn-olive-spotlight-hover);
  color: #fff8ea;
  box-shadow: 0 0 0 1px rgba(211, 234, 164, 0.24), 0 12px 0 rgba(34, 44, 23, 0.38);
}

.btn-press-kit {
  background: var(--btn-red-solid);
  border-color: rgba(183, 114, 98, 0.74);
  color: #f7e9e2;
  box-shadow: 0 0 0 1px rgba(200, 133, 114, 0.28), 0 11px 0 rgba(55, 24, 19, 0.42);
}

.btn-press-kit:hover {
  background: var(--btn-red-solid-hover);
  color: #fff1ea;
  box-shadow: 0 0 0 1px rgba(216, 148, 129, 0.32), 0 12px 0 rgba(55, 24, 19, 0.48);
}

.featured {
  margin-top: clamp(6.5rem, 12vw, 10rem);
  border: 1px solid rgba(255, 154, 61, 0.34);
  overflow: hidden;
  background: var(--main-solid-dark);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  clip-path: none;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 169, 93, 0.08);
  position: relative;
}

.featured--single {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
  align-items: stretch;
  gap: 0;
  min-height: clamp(460px, 62vh, 650px);
}

.featured::before {
  content: none;
}

.featured::after {
  content: none;
}

.featured-main {
  padding: clamp(1.4rem, 2.9vw, 2rem) clamp(1.2rem, 3vw, 2rem);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 1rem;
  min-height: 100%;
  background: transparent;
  border-right: 0;
  position: relative;
}

.featured-main > * {
  position: relative;
  z-index: 1;
}

.featured-header {
  display: grid;
  gap: 0.36rem;
}

.featured-status {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(255, 170, 96, 0.36);
  background: rgba(255, 154, 61, 0.12);
  color: #ffbc83;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.featured-title,
.library-title {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-subline {
  margin: 0;
  color: #efbf93;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.73rem, 1.3vw, 0.83rem);
}

.featured-copy {
  color: var(--text-dim);
  max-width: 60ch;
  line-height: 1.35;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.featured-capsule {
  padding: 0;
  display: flex;
  justify-content: stretch;
  min-height: 100%;
  border-left: 0;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.featured-capsule img {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: none;
  height: 100%;
  border: 0;
  background: transparent;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.12) saturate(0.88) brightness(0.86);
}

.featured-capsule::after {
  content: none;
}

.featured-capsule-badges {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  z-index: 1;
}

.featured-capsule-badges span {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(255, 181, 122, 0.32);
  background: rgba(16, 8, 5, 0.7);
  color: #ffd9b7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 700;
}

.featured-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.featured-actions {
  margin-top: auto;
  padding-top: 0.6rem;
  display: grid;
  gap: 0.7rem;
  width: 100%;
  align-items: stretch;
}

.featured-actions .btn {
  margin-top: 0;
  justify-content: center;
  white-space: nowrap;
}

.featured-actions .btn-library {
  width: fit-content;
  min-width: 0;
}

.featured-actions .btn-wishlist {
  margin-left: 0;
  width: 100%;
  min-width: 0;
  padding: 0.94rem 1.24rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.03em;
}

.library-page {
  padding-top: 0.2rem;
}

.media-hub {
  --media-hub-pad: clamp(1rem, 2.6vw, 1.45rem);
  margin: 1.3rem 0 2.45rem;
  border: 1px solid rgba(255, 154, 61, 0.34);
  background: var(--main-solid-dark);
  padding: var(--media-hub-pad);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 169, 93, 0.08);
}

.media-hub::before {
  content: none;
}

.media-hub::after {
  content: none;
}

.media-hub--library {
  --press-kit-hero-gap-bottom: clamp(6rem, 12vw, 9rem);
  margin-top: 1.1rem;
  border-color: rgba(255, 154, 61, 0.22);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(255, 169, 93, 0.05);
}

.press-kit-header-image {
  margin: calc(-1 * var(--media-hub-pad)) calc(-1 * var(--media-hub-pad)) calc(var(--press-kit-hero-gap-bottom) / 2);
  position: relative;
  z-index: 1;
}

.press-kit-header-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.media-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 169, 93, 0.2);
  position: relative;
  z-index: 1;
}

.media-head--library {
  align-items: start;
  border-bottom: 0;
  justify-items: center;
  text-align: center;
}

.media-head--right {
  justify-content: flex-end;
}

.library-title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.library-page h1,
.library-page h2,
.library-page h3 {
  text-align: center;
}

.library-page .media-head--library .library-title-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
}

.library-page .media-head--library .press-kit-actions {
  margin-left: 0;
  justify-content: center;
}

.library-title {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 3rem);
}

.library-subline {
  margin: 0.05rem 0 0;
  color: #efbf93;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
}

.press-kit-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0;
  margin-left: auto;
}

.press-kit-action {
  display: inline-flex;
  flex: 0 0 auto;
  width: 216px;
  min-height: 3.6rem;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.14rem;
  font-weight: 700;
  padding: 0.82rem 0.78rem;
  border: 1px solid transparent;
  border-radius: 0;
  clip-path: none;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.press-kit-action:hover {
  transform: translateY(-1px);
  filter: contrast(1.06);
}

.press-kit-action-icon {
  width: 1.05rem;
  height: 1.05rem;
  object-fit: contain;
  fill: currentColor;
  flex: 0 0 auto;
}

.press-kit-action--steam {
  background: var(--btn-yellow-solid);
  border-color: var(--btn-yellow-border);
  color: var(--btn-yellow-text);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  border-radius: 0;
  box-shadow: 0 0 0 1px var(--btn-yellow-ring), 0 8px 0 var(--btn-yellow-shadow);
}

.press-kit-action--steam .press-kit-action-icon {
  width: 2.5rem;
  height: 2.5rem;
}

.press-kit-action--steam:hover {
  color: var(--btn-yellow-text);
  background: var(--btn-yellow-solid-hover);
  box-shadow: 0 0 0 1px var(--btn-yellow-ring-hover), 0 9px 0 var(--btn-yellow-shadow-hover);
}

.press-kit-action--download {
  background: var(--btn-red-solid);
  border-color: rgba(183, 114, 98, 0.74);
  color: #f7e9e2;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(200, 133, 114, 0.28), 0 8px 0 rgba(55, 24, 19, 0.42);
}

.press-kit-action--download:hover {
  color: #fff1ea;
  background: var(--btn-red-solid-hover);
  box-shadow: 0 0 0 1px rgba(216, 148, 129, 0.32), 0 9px 0 rgba(55, 24, 19, 0.48);
}

.press-kit-action--disabled,
.press-kit-action--disabled:hover {
  pointer-events: none;
  transform: none;
  filter: none;
}

.library-controls {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.52rem;
  position: relative;
  z-index: 1;
}

.press-kit-factsheet {
  margin-top: var(--press-kit-hero-gap-bottom);
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 1;
  box-shadow: none;
  overflow: visible;
}

.press-kit-factsheet::before {
  content: none;
}

.press-kit-factsheet-title,
.press-kit-description-title,
.press-kit-trailers-title,
.press-kit-screenshots-title,
.press-kit-media-library-title {
  font-size: clamp(1.75rem, 3.8vw, 2.3rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cc742e;
  text-align: center;
  -webkit-text-stroke: 1px rgba(18, 9, 3, 0.98);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55);
}

.press-kit-factsheet-title {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 4.2vw, 2.7rem);
}

.press-kit-factsheet-content {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  align-items: stretch;
  gap: clamp(0.95rem, 2vw, 1.5rem);
  position: relative;
  z-index: 1;
}

.press-kit-factsheet-main {
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
}

.press-kit-factsheet-grid {
  margin: 0;
  display: grid;
  gap: 0.52rem;
  width: 100%;
}

.press-kit-factsheet-capsule {
  margin: 0;
  width: min(100%, 430px);
  max-width: 430px;
  justify-self: end;
  align-self: stretch;
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
  display: flex;
}

.press-kit-factsheet-capsule::before {
  content: "";
  position: absolute;
  inset: auto 7% 6% 7%;
  height: 14%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.46), transparent 72%);
  pointer-events: none;
}

.press-kit-factsheet-capsule img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  image-rendering: auto;
  filter: saturate(0.96) contrast(1.05);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.36);
}

.press-kit-factsheet-item {
  display: grid;
  grid-template-columns: minmax(136px, 188px) minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  padding: clamp(0.72rem, 1.8vw, 0.98rem) clamp(0.8rem, 1.7vw, 1rem);
  border: 1px solid rgba(176, 104, 56, 0.52);
  background: var(--main-solid-raised);
}

.press-kit-factsheet-item dt {
  margin: 0;
  color: #dea977;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.press-kit-factsheet-item dd {
  margin: 0;
  color: #f8eadb;
  font-size: clamp(1.02rem, 1.9vw, 1.2rem);
  line-height: 1.2;
  font-weight: 700;
  text-align: right;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
}

.press-kit-description {
  margin-top: 5rem;
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.press-kit-description-title {
  margin: 0;
}

.press-kit-description-lead {
  margin: 0.48rem 0 0;
  color: #ffe6c9;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.press-kit-description p {
  margin: 0.66rem auto 0;
  color: #f4e4d1;
  line-height: 1.58;
  font-size: 0.92rem;
  max-width: 78ch;
}

.press-kit-trailers {
  margin-top: 5rem;
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 1;
}

.press-kit-trailers-title {
  margin: 0;
}

.press-kit-trailer-frame {
  margin-top: 0.7rem;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border: 0;
  background: #050506;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.38);
}

.press-kit-trailer-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.press-kit-screenshots {
  margin-top: 5rem;
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 1;
}

.press-kit-screenshots-title {
  margin: 0;
}

.press-kit-screenshots-slider {
  margin-top: 0.72rem;
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.press-kit-screenshots-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid var(--btn-yellow-border);
  background: var(--btn-yellow-solid);
  color: var(--btn-yellow-text);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  border-radius: 0;
  box-shadow: 0 0 0 1px var(--btn-yellow-ring), 0 6px 0 var(--btn-yellow-shadow);
  cursor: pointer;
}

.press-kit-screenshots-arrow--prev {
  left: 0.65rem;
}

.press-kit-screenshots-arrow--next {
  right: 0.65rem;
}

.press-kit-screenshots-arrow:hover {
  background: var(--btn-yellow-solid-hover);
  box-shadow: 0 0 0 1px var(--btn-yellow-ring-hover), 0 8px 0 var(--btn-yellow-shadow-hover);
}

.press-kit-screenshots-arrow:disabled {
  opacity: 0.55;
  cursor: default;
}

.press-kit-screenshots-grid {
  margin-top: 0;
  display: block;
}

.press-kit-screenshots-thumbs {
  margin: 0.52rem auto 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.26rem;
  overflow-x: auto;
  padding: 0.12rem 0.04rem 0.18rem;
}

.press-kit-screenshots-thumb {
  border: 1px solid rgba(255, 173, 94, 0.14);
  background: rgba(8, 5, 3, 0.55);
  padding: 0;
  width: 60px;
  height: 34px;
  flex: 0 0 auto;
  opacity: 0.46;
  cursor: pointer;
}

.press-kit-screenshots-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-kit-screenshots-thumb.is-active {
  opacity: 0.95;
  border-color: rgba(255, 173, 94, 0.78);
  box-shadow: 0 0 0 1px rgba(255, 196, 123, 0.38);
}

.press-kit-media-library-title {
  margin: 5rem 0 0;
}

.press-kit-media-controls {
  margin-top: 0.75rem;
}

.press-kit-screenshot-card {
  margin: 0;
  border: 0;
  background: rgba(7, 8, 12, 0.8);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.32);
  cursor: default;
  display: none;
}

.press-kit-screenshot-card.is-active {
  display: block;
}

.press-kit-screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  cursor: default;
}

.library-controls-label {
  margin: 0;
  color: #efbf92;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
  font-weight: 600;
}

.library-back {
  align-self: start;
  border: 1px solid var(--btn-yellow-border);
  background: var(--btn-yellow-solid);
  color: var(--btn-yellow-text);
  text-decoration: none;
  padding: 0.68rem 1.08rem;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  clip-path: none;
  border-radius: 0;
  box-shadow: 0 0 0 1px var(--btn-yellow-ring), 0 6px 0 var(--btn-yellow-shadow);
  white-space: nowrap;
}

.library-back:hover {
  color: var(--btn-yellow-text);
  background: var(--btn-yellow-solid-hover);
  box-shadow: 0 0 0 1px var(--btn-yellow-ring-hover), 0 8px 0 var(--btn-yellow-shadow-hover);
}

.media-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.media-tab {
  border: 0;
  background: rgba(22, 11, 7, 0.74);
  color: #d9bda1;
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.48rem 0.75rem;
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.media-tab:hover {
  color: #ffe3c6;
  background: rgba(44, 21, 13, 0.9);
  transform: translateY(-1px);
}

.media-tab.is-active {
  color: #fff6ea;
  background: var(--btn-red-dark-solid);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.24);
}

.media-copy {
  margin-top: 0.6rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.media-grid {
  margin-top: 0.92rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.media-card {
  border: 0;
  background: linear-gradient(160deg, rgba(40, 21, 14, 0.9), rgba(20, 11, 8, 0.94));
  padding: 0.42rem;
  cursor: zoom-in;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.28);
}

.media-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.34);
}

.media-card img {
  display: block;
  width: 100%;
  height: 204px;
  object-fit: cover;
  image-rendering: pixelated;
  background: rgba(14, 8, 5, 0.92);
  filter: contrast(1.18) saturate(0.72) brightness(0.95);
  cursor: inherit;
}

.media-card[data-kind="weapons"] img,
.media-card[data-kind="characters"] img,
.media-card[data-kind="bots"] img {
  object-fit: contain;
  image-rendering: auto;
  background: radial-gradient(120% 90% at 18% 14%, rgba(126, 66, 34, 0.34), transparent 58%),
    radial-gradient(100% 82% at 82% 76%, rgba(74, 38, 22, 0.36), transparent 62%),
    linear-gradient(150deg, rgba(33, 17, 11, 0.95), rgba(20, 11, 8, 0.98));
  filter: contrast(1.06) saturate(0.9);
  box-shadow: none;
}

.media-card p {
  margin: 0.52rem 0 0.24rem;
  color: #f3d5b6;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(3, 1, 1, 0.92);
  backdrop-filter: blur(3px);
  display: grid;
  place-items: center;
  padding: 1.4rem;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 84vh;
  width: auto;
  height: auto;
  border: 1px solid rgba(255, 166, 97, 0.48);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.55);
  background: #120b07;
}

.lightbox-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  border: 1px solid rgba(255, 169, 93, 0.3);
  background: rgba(24, 12, 8, 0.82);
  color: #ffd9b6;
  padding: 0.45rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: inherit;
  font-size: 0.72rem;
  border-radius: 0;
  cursor: pointer;
}

.lightbox-close:hover {
  border-color: rgba(255, 174, 105, 0.62);
  color: #fff4e5;
  background: rgba(45, 21, 13, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.featured-meta li {
  display: grid;
  grid-template-columns: minmax(82px, 108px) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  background: var(--main-solid-raised);
  border: 1px solid rgba(255, 166, 97, 0.24);
  border-radius: 0;
  padding: 0.58rem 0.76rem;
  clip-path: none;
}

.featured-meta span {
  color: #efbf92;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
}

.featured-meta strong {
  justify-self: end;
  text-align: right;
  color: #fff1df;
  font-size: 1rem;
}

.stats {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.stats article {
  position: relative;
  padding: 1rem;
  border-radius: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.stats article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--accent), transparent);
}

.stat-value {
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.stat-label {
  margin-top: 0.3rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.games {
  margin: 2rem 0 2.6rem;
}

.games-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filters button {
  border: 1px solid var(--line);
  background: rgba(24, 14, 10, 0.75);
  color: var(--text-dim);
  border-radius: 0;
  padding: 0.42rem 0.85rem;
  cursor: pointer;
  transition: all 0.22s ease;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.72rem;
}

.filters button:hover,
.filters button.is-active {
  border-color: rgba(255, 154, 61, 0.56);
  color: var(--text);
  background: rgba(52, 28, 16, 0.94);
  transform: skewX(-5deg);
}

.games-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.game-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  background: var(--surface-strong);
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.35);
}

.game-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background: repeating-linear-gradient(
    160deg,
    rgba(255, 197, 148, 0.4) 0px,
    rgba(255, 197, 148, 0.4) 1px,
    transparent 1px,
    transparent 6px
  );
}

.game-art {
  height: 152px;
  background-size: cover;
  background-position: center;
  filter: contrast(1.24) saturate(0.75) sepia(0.22);
}

.game-body {
  padding: 0.8rem 0.86rem 0.9rem;
}

.game-body h3 {
  margin: 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.15rem;
}

.game-body p {
  margin-top: 0.44rem;
  color: var(--text-dim);
  font-size: 0.94rem;
}

.game-meta {
  margin-top: 0.65rem;
  display: flex;
  gap: 0.42rem;
  flex-wrap: wrap;
}

.tag {
  border-radius: 0;
  padding: 0.25rem 0.5rem;
  font-size: 0.78rem;
  border: 1px solid rgba(255, 173, 110, 0.24);
  color: var(--text-dim);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
}

.tag.status-live {
  border-color: rgba(255, 154, 61, 0.62);
  color: var(--accent);
}

.tag.status-upcoming {
  border-color: rgba(214, 123, 48, 0.65);
  color: var(--accent-2);
}

.tag.status-prototype {
  border-color: rgba(255, 94, 122, 0.5);
  color: var(--danger);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.8rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.18rem 0.28rem;
  color: var(--text-dim);
  text-decoration: none;
  border: 1px solid transparent;
}

.footer-links a:hover {
  color: var(--text);
  border-color: var(--line-soft);
  background: rgba(255, 154, 61, 0.06);
}

.link-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex: 0 0 auto;
}

:is(
  button,
  input[type="button"],
  input[type="submit"],
  input[type="reset"],
  a[class*="btn"],
  button[class*="btn"],
  .btn,
  .press-kit-action,
  .press-kit-screenshots-arrow,
  .media-tab,
  .filters button,
  .lightbox-close,
  .future-btn,
  .header-link-btn
) {
  border-radius: 0;
  clip-path: none;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

:is(
  button,
  input[type="button"],
  input[type="submit"],
  input[type="reset"],
  a[class*="btn"],
  button[class*="btn"],
  .btn,
  .press-kit-action,
  .press-kit-screenshots-arrow,
  .media-tab,
  .filters button,
  .lightbox-close,
  .future-btn,
  .header-link-btn
):is(:hover, :focus-visible, :active, :disabled, .is-active, .is-pulse) {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

@media (max-width: 980px) {
  .luckrot-top-art img {
    max-height: 170px;
  }

  .company-hero-layout {
    grid-template-columns: 1fr;
  }

  .company-mark {
    width: min(100%, 520px);
    justify-self: start;
  }

  .company-mark img {
    max-height: 380px;
  }

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

  .featured--single {
    min-height: auto;
  }

  .featured-main {
    border-right: 0;
  }

  .featured-capsule {
    min-height: clamp(250px, 44vh, 360px);
    border-left: 0;
    border-top: 0;
  }

  .featured-capsule img {
    object-position: center top;
  }

  .featured-capsule-badges {
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .media-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.8rem;
  }

  .library-back {
    width: fit-content;
  }

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

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

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

@media (max-width: 680px) {
  .nav {
    display: none;
  }

  .header {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 1.7rem;
  }

  .luckrot-page {
    padding-bottom: clamp(1.7rem, 7.2vh, 3.4rem);
  }

  .luckrot-steam-entry {
    --steam-entry-top-gap: 1.8rem;
  }

  .games-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .library-controls {
    width: 100%;
    gap: 0.45rem;
  }

  .press-kit-factsheet-item {
    grid-template-columns: 1fr;
    gap: 0.28rem;
    padding: 0.74rem 0.78rem;
  }

  .press-kit-factsheet-content {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.86rem;
  }

  .press-kit-factsheet-capsule {
    width: min(100%, 280px);
    max-width: 280px;
    justify-self: center;
  }

  .press-kit-factsheet-capsule img {
    height: auto;
  }

  .press-kit-factsheet-item dd {
    text-align: left;
  }

  .press-kit-screenshots-arrow {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1.15rem;
  }

  .press-kit-screenshots-arrow--prev {
    left: 0.4rem;
  }

  .press-kit-screenshots-arrow--next {
    right: 0.4rem;
  }

  .press-kit-screenshots-thumb {
    width: 48px;
    height: 28px;
  }

  .press-kit-screenshots-thumbs {
    justify-content: flex-start;
  }

  .press-kit-actions {
    width: auto;
  }

  .press-kit-action {
    flex: 0 0 auto;
  }

  .library-back {
    width: fit-content;
  }

  .stats,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-card img {
    height: 220px;
  }

  .featured-actions {
    align-items: stretch;
    width: 100%;
  }

  .featured-actions .btn-library-spotlight {
    width: 100%;
  }

  .featured-meta li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .featured-meta strong {
    justify-self: start;
    text-align: left;
  }

  .featured-actions .btn-wishlist {
    margin-left: 0;
    width: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

@media (max-width: 1024px) {
  html {
    background-color: #0b0604;
    background-image: linear-gradient(rgba(9, 4, 3, 0.76), rgba(9, 4, 3, 0.82)),
      url("images/background.png");
    background-position: center center, center center;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-attachment: scroll, scroll;
  }

  body {
    background-color: #0b0604;
    background-image: none;
    background-attachment: scroll, scroll;
    background-size: auto, auto;
  }
}
