:root {
  --ink: #14121c;
  --ink-2: #1c1927;
  --ink-3: #262233;
  --ink-line: rgba(237, 234, 245, 0.1);
  --text: #edeaf5;
  --text-muted: #b0a9c4;
  --lime: #c6ff3d;
  --coral: #ff5c7a;
  --cyan: #4fd8ea;
  --amber: #ffb23d;
  --paper: #f6f3ed;

  --font-display: "Fredoka", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(237, 234, 245, 0.28) transparent;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(237, 234, 245, 0.22);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--lime);
  background-clip: padding-box;
}
::-webkit-scrollbar-corner {
  background: transparent;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 600;
}
p {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 680px) {
  .eyebrow {
    font-size: 10px;
  }
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--lime);
  display: inline-block;
}

.noise-veil {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(198, 255, 61, 0.05),
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(255, 92, 122, 0.06),
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 90%,
      rgba(79, 216, 234, 0.05),
      transparent 45%
    );
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 18, 28, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--lime);
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(198, 255, 61, 0.7);
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  color: var(--text-muted);
  transition: color 0.2s ease;
  padding: 4px 0;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width 0.25s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 255, 61, 0.25);
}
.burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 26px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 100px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  z-index: 0;
  animation: drift 16s ease-in-out infinite alternate;
}
.blob-1 {
  width: 460px;
  height: 460px;
  background: var(--coral);
  top: -140px;
  right: -100px;
}
.blob-2 {
  width: 420px;
  height: 420px;
  background: var(--cyan);
  bottom: -180px;
  left: -120px;
  animation-delay: 2s;
}
.blob-3 {
  width: 300px;
  height: 300px;
  background: var(--lime);
  top: 220px;
  right: 280px;
  animation-delay: 4s;
  opacity: 0.35;
}
@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(20px, -30px) scale(1.08);
  }
}
.scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background: repeating-linear-gradient(
    to bottom,
    rgba(237, 234, 245, 0.05) 0px,
    rgba(237, 234, 245, 0.05) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}

.floaties {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.floaty {
  position: absolute;
  color: var(--tone, var(--lime));
  filter: drop-shadow(0 0 14px var(--tone, var(--lime)));
  opacity: 0.85;
  animation: bob 6s ease-in-out infinite;
}
.floaty svg {
  width: 100%;
  height: 100%;
}
.f-joystick {
  width: 34px;
  height: 34px;
  top: 18%;
  left: 9%;
  animation-delay: 0s;
}
.f-star {
  width: 22px;
  height: 22px;
  top: 30%;
  right: 12%;
  animation-delay: 1.2s;
}
.f-dpad {
  width: 26px;
  height: 26px;
  bottom: 26%;
  left: 15%;
  animation-delay: 2.4s;
}
.f-coin {
  width: 30px;
  height: 30px;
  bottom: 20%;
  right: 8%;
  animation-delay: 3.4s;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(8deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .sunburst,
  .floaty {
    animation: none;
  }
}
@media (max-width: 680px) {
  .floaty {
    display: none;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-inner .eyebrow {
  justify-content: center;
  margin-bottom: 22px;
}
.eyebrow-badge {
  display: inline-flex;
  margin: 0 auto 28px;
  padding: 9px 18px;
  border: 1px dashed rgba(198, 255, 61, 0.5);
  border-radius: 999px;
  background: rgba(198, 255, 61, 0.06);
}
.blink-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 10px var(--coral);
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink {
  50% {
    opacity: 0.15;
  }
}
.hero h1 {
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.glitch-title {
  text-shadow:
    3px 3px 0 rgba(255, 92, 122, 0.55),
    -3px -3px 0 rgba(79, 216, 234, 0.45);
}
.hero h1 span {
  color: var(--lime);
  -webkit-text-stroke: 0px;
  text-shadow:
    3px 3px 0 rgba(255, 92, 122, 0.6),
    -3px -3px 0 rgba(79, 216, 234, 0.5),
    0 0 40px rgba(198, 255, 61, 0.35);
}
.hero-sub {
  margin: 26px auto 0;
  max-width: 560px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.btn-primary {
  background: var(--lime);
  color: var(--ink);
  animation: pulse-glow 2.6s ease-in-out infinite;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(198, 255, 61, 0.28);
}
.btn-primary:active {
  transform: translateY(0) scale(0.97);
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(198, 255, 61, 0.35);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(198, 255, 61, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary {
    animation: none;
  }
}
.btn-ghost {
  border-color: var(--ink-line);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.hero-strip {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.hero-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-right: 1px solid var(--ink-line);
}
.hero-strip span:last-child {
  border-right: none;
}
.hero-strip .pip {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--tone, var(--lime));
  box-shadow: 0 0 8px var(--tone, var(--lime));
  transform: rotate(45deg);
  flex-shrink: 0;
}

.load-divider {
  position: relative;
  padding: 26px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  overflow: hidden;
}
.load-divider .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.load-bar {
  flex: 1;
  height: 8px;
  background: var(--ink-3);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.load-bar i {
  position: absolute;
  inset: 0;
  width: var(--fill, 100%);
  border-radius: 2px;
  background: repeating-linear-gradient(
    45deg,
    var(--lime) 0 10px,
    var(--coral) 10px 20px,
    var(--cyan) 20px 30px
  );
  background-size: 42.4264px 42.4264px;
  animation: stripes-move 1.5s linear infinite;
}

@keyframes stripes-move {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 42.4264px 0;
  }
}

section {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-top: 14px;
  letter-spacing: -0.01em;
}
.section-head p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

#about {
  background: var(--ink-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
.about-copy {
  padding-top: 20px;
}
.about-copy p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.code-aside {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--cyan);
  background: var(--ink);
  border: 1px solid var(--ink-line);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 26px 0;
  line-height: 1.7;
}
.code-aside .c1 {
  color: var(--text-muted);
}
.code-aside .c2 {
  color: var(--lime);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.stat {
  background: var(--ink);
  border: 1px solid var(--ink-line);
  border-radius: 16px;
  padding: 22px 20px;
}
.stat b {
  font-family: var(--font-display);
  font-size: 34px;
  display: block;
  color: var(--lime);
}
.stat span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.about-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  max-width: 100%;
  top: 100px;
  overflow: hidden;
}
.team-main {
  width: 100%;
  max-height: 460px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--ink-line);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.team-main img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 460px;
  object-fit: contain;
  display: block;
  transition:
    opacity 0.32s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.team-main img.is-leaving {
  opacity: 0;
  transform: translateX(calc(var(--slide, 1) * -22px)) scale(0.97);
}
.team-main img.is-entering {
  opacity: 0;
  transform: translateX(calc(var(--slide, 1) * 22px)) scale(0.97);
}
.team-main img.no-anim {
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .team-main img {
    transition: opacity 0.15s ease !important;
  }
  .team-main img.is-leaving,
  .team-main img.is-entering {
    transform: none !important;
  }
}

.team-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: var(--text);
  opacity: 0;
  transition:
    opacity 0.2s,
    background 0.2s;
  z-index: 2;
}
.team-nav svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}
.team-nav-prev {
  left: 0;
  justify-content: flex-start;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.28),
    rgba(0, 0, 0, 0) 60%
  );
}
.team-nav-next {
  right: 0;
  justify-content: flex-end;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.28),
    rgba(0, 0, 0, 0) 60%
  );
}
.team-main:hover .team-nav {
  opacity: 1;
}
.team-nav:focus-visible {
  opacity: 1;
  outline: 2px solid var(--lime);
  outline-offset: -2px;
}
.team-nav:focus-visible .team-nav-next {
  opacity: 1;
  outline: none;
  outline-offset: -2px;
}
@media (hover: none) {
  .team-nav {
    opacity: 0.85;
  }
}
.team-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.team-slider::-webkit-scrollbar {
  display: none;
}

.thumb {
  flex: 0 0 115px;
  height: 82px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.25s;
  scroll-snap-align: start;
  background: var(--ink);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumb:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
}

.thumb.active {
  border-color: var(--lime);
}
.photo-placeholder {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px dashed rgba(237, 234, 245, 0.35);
  aspect-ratio: 4/5;
}
.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(20, 18, 28, 0.75);
  backdrop-filter: blur(6px);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--ink-line);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.cart {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: 22px;
  padding: 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
  text-align: left;
}
.cart::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 28px;
  width: 56px;
  height: 14px;
  background: var(--tone, var(--lime));
  border-radius: 0 0 8px 8px;
}
.cart:hover {
  transform: translateY(-6px);
  border-color: var(--tone, var(--lime));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.cart-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--tone, var(--lime));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.cart-tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: var(--tone, var(--lime));
  padding: 4px 9px;
  border-radius: 6px;
  margin-bottom: 14px;
  font-weight: 600;
}
.cart h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: white;
}
.cart .genre {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.cart .rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.cart .rating b {
  color: var(--text);
  font-family: var(--font-mono);
}
.cart .stars {
  color: var(--amber);
  letter-spacing: 1px;
}
.cart-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--ink-line);
}
.cart-more {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.cart:hover .cart-more svg {
  transform: translateX(4px);
}
.cart.dev {
  opacity: 0.92;
}
.cart.dev .cart-icon {
  background: var(--ink-3);
  border: 1px dashed rgba(237, 234, 245, 0.35);
  color: var(--text-muted);
}
.cart-icon.has-img,
.modal-icon.has-img {
  padding: 0;
  overflow: hidden;
  background: var(--ink-3);
}
.cart-icon.has-img img,
.modal-icon.has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 9, 14, 0.78);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: 24px;
  max-width: 860px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink-3);
  border: 1px solid var(--ink-line);
  color: var(--text);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding-right: 40px;
}
.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--tone, var(--lime));
  flex-shrink: 0;
}
.modal-head h3 {
  font-size: 26px;
}
.modal-head .genre {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.modal-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.modal-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}
.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--ink-3);
  border: 1px solid var(--ink-line);
  border-radius: 14px;
  padding: 14px 16px;
}
.feature .f-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.feature b {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.feature p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}
.carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 26px;
  scroll-snap-type: x mandatory;
}
.shot {
  flex: 0 0 auto;
  width: 170px;
  aspect-ratio: 9/17;
  border-radius: 16px;
  overflow: hidden;
  border: 1px dashed rgba(237, 234, 245, 0.35);
  scroll-snap-align: start;
  position: relative;
  background: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shot span {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--lime);
  background: rgba(20, 18, 28, 0.7);
  padding: 4px 6px;
  border-radius: 6px;
  text-align: center;
}
.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--ink-line);
  padding: 7px 12px;
  border-radius: 8px;
  color: var(--text-muted);
}
.modal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
}
.store-btn:hover {
  transform: translateY(-2px);
}
.store-btn.disabled {
  background: transparent;
  border: 1px solid var(--ink-line);
  color: var(--text-muted);
  pointer-events: none;
}

#vacancies {
  background: var(--ink-2);
}
.roles {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-top: 1px solid var(--ink-line);
}
.role {
  display: grid;
  grid-template-columns: 1fr 1.6fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--ink-line);
}
.role h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
}
.role .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
  display: block;
}
.role p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}
.role .btn {
  white-space: nowrap;
}

/* ===== contacts ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--tone, var(--ink-3));
  border: 1px solid var(--ink-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
}
.contact-item b {
  display: block;
  font-size: 15.5px;
  margin-bottom: 2px;
}
.contact-item span,
.contact-item a {
  color: var(--text-muted);
  font-size: 14.5px;
}
.contact-item a:hover {
  color: var(--lime);
}
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ink-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.social-row a:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-3px);
}
.contact-form {
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: 20px;
  padding: 28px;
}
.contact-form label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--ink-line);
  border-radius: 10px;
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  margin-bottom: 18px;
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lime);
}

footer {
  border-top: 1px solid var(--ink-line);
  padding: 32px 0;
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.foot-links {
  display: flex;
  gap: 22px;
}
.foot-links a:hover {
  color: var(--text);
}

@media (max-width: 920px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .game-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-media {
    position: static;
    max-width: 100%;
  }

  .team-main {
    max-height: 360px;
  }

  .team-main img {
    max-height: 360px;
  }
}
@media (max-width: 680px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: block;
  }
  .game-grid {
    grid-template-columns: 1fr;
  }
  .modal-features {
    grid-template-columns: 1fr;
  }
  section {
    padding: 76px 0;
  }
  .role {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero {
    padding: 90px 0 60px;
  }
  .wrap {
    padding: 0 20px;
  }
  .about-media {
    gap: 12px;
  }

  .team-main {
    max-height: 280px;
  }

  .team-main img {
    max-height: 280px;
  }

  .thumb {
    flex: 0 0 80px;
    height: 60px;
  }
}

@media (max-width: 468px) {
  .modal-head h3 {
    font-size: 22px;
    line-height: 1.2;
  }
}
