:root {
  --bg: #050713;
  --panel: #0b1020;
  --panel2: #10182b;
  --line: #243552;
  --text: #f5f7ff;
  --muted: #aebbd4;
  --cyan: #27e5ff;
  --blue: #5d8cff;
  --pink: #ff4fb3;
  --purple: #9a67ff;
  --green: #64f5a7;
  --gold: #ffd166;
  --danger: #ff607c;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  --radius: 18px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  font-family:
    Inter,
    Segoe UI,
    Arial,
    sans-serif;
  background-color: #08051b;
  background-image:
    linear-gradient(
      180deg,
      rgba(6, 4, 24, 0.32) 0%,
      rgba(5, 5, 22, 0.48) 52%,
      rgba(4, 4, 18, 0.62) 100%
    ),
    url("assets/rps-space-background.jpg");
  background-position: center top, center top;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  min-height: 100vh;
}
body.rpsu-thrust-page {
  background-color: #030514;
  background-image:
    linear-gradient(
      180deg,
      rgba(3, 4, 18, 0.42) 0%,
      rgba(5, 5, 24, 0.56) 52%,
      rgba(3, 4, 17, 0.72) 100%
    ),
    url("assets/thrust-2050-space-background.jpg");
  background-position: center top, center center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input {
  font: inherit;
}
.rpsu-wrap {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}
.rpsu-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 7, 16, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(95, 132, 198, 0.25);
}
.rpsu-head-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.rpsu-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
}
.rpsu-brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 93, 196, 0.24));
}
.rpsu-brand strong {
  display: block;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
}
.rpsu-brand small {
  color: var(--cyan);
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}
.rpsu-nav {
  margin-left: auto;
  display: flex;
  gap: 4px;
  align-items: center;
}
.rpsu-nav a {
  padding: 12px 13px;
  border-radius: 11px;
  color: #d8e3f8;
  font-weight: 700;
  font-size: 0.91rem;
}
.rpsu-nav a:hover,
.rpsu-nav a[aria-current="page"] {
  background: rgba(39, 229, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(39, 229, 255, 0.25);
}
.rpsu-search-btn,
.rpsu-menu-btn {
  border: 1px solid var(--line);
  background: #10172a;
  color: #fff;
  border-radius: 12px;
  padding: 10px 13px;
  cursor: pointer;
}
.rpsu-menu-btn {
  display: none;
  font-size: 1.25rem;
}
.rpsu-search {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #070b17;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.rpsu-search.open {
  display: block;
}
.rpsu-search input {
  width: 100%;
  background: #0c1324;
  border: 1px solid #2c4268;
  color: #fff;
  border-radius: 13px;
  padding: 14px 16px;
  outline: none;
}
.rpsu-hero {
  position: relative;
  overflow: hidden;
  background: transparent;
  border-bottom: 0;
}
.rpsu-hero:before {
  content: none;
}
.rpsu-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  padding: 70px 0;
}
.rpsu-hero-art {
  position: absolute;
  right: -24px;
  bottom: 10px;
  width: min(660px, 52vw);
  z-index: 1;
  object-fit: contain;
  pointer-events: none;
  filter:
    drop-shadow(0 0 34px rgba(66, 183, 255, 0.3))
    drop-shadow(0 15px 28px rgba(0, 0, 0, 0.42));
}
.rpsu-eyebrow {
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.rpsu-hero h1,
.rpsu-page-hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  line-height: 0.93;
  margin: 14px 0 10px;
  letter-spacing: -0.055em;
  text-shadow: 0 0 28px rgba(56, 198, 255, 0.16);
}
.rpsu-gradient {
  background: linear-gradient(90deg, #fff 0%, #a9efff 45%, #ff76c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rpsu-hero h2 {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  margin: 0 0 20px;
  color: #c8d6ed;
  letter-spacing: 0.05em;
}
.rpsu-lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
}
.rpsu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.rpsu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 900;
  border: 1px solid transparent;
  transition:
    0.2s transform,
    0.2s box-shadow,
    0.2s background;
}
.rpsu-btn:hover {
  transform: translateY(-2px);
}
.rpsu-btn-primary {
  background: linear-gradient(135deg, var(--cyan), #3987ff);
  color: #03101b;
  box-shadow: 0 0 28px rgba(39, 229, 255, 0.25);
}
.rpsu-btn-secondary {
  border-color: #61518f;
  background: rgba(87, 56, 145, 0.18);
  color: #eee7ff;
}
.rpsu-btn-store {
  background: linear-gradient(135deg, #fb5ba4, #975cff);
  color: #fff;
  box-shadow: 0 0 28px rgba(255, 79, 179, 0.2);
}
.rpsu-section {
  padding: 70px 0;
}
.rpsu-section.alt {
  background: linear-gradient(
    180deg,
    rgba(13, 20, 38, 0.64),
    rgba(7, 11, 23, 0.2)
  );
  border-block: 1px solid rgba(55, 80, 125, 0.24);
}
.rpsu-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.rpsu-section-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
}
.rpsu-section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}
.rpsu-text-link {
  color: var(--cyan);
  font-weight: 800;
  white-space: nowrap;
}
.rpsu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.rpsu-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rpsu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(
    180deg,
    rgba(19, 29, 52, 0.95),
    rgba(8, 13, 27, 0.98)
  );
  border: 1px solid rgba(80, 112, 172, 0.36);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    0.22s transform,
    0.22s border-color,
    0.22s box-shadow;
}
.rpsu-card:hover {
  transform: translateY(-5px);
  border-color: rgba(39, 229, 255, 0.56);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.46),
    0 0 28px rgba(39, 229, 255, 0.09);
}
.rpsu-card-media {
  height: 205px;
  background: #080d1b;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(79, 110, 168, 0.28);
}
.rpsu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050915;
}
.rpsu-art {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.rpsu-art:before,
.rpsu-art:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.rpsu-art:before {
  width: 190px;
  height: 190px;
  right: -65px;
  top: -75px;
  background: rgba(45, 219, 255, 0.22);
}
.rpsu-art:after {
  width: 150px;
  height: 150px;
  left: -50px;
  bottom: -70px;
  background: rgba(255, 65, 177, 0.2);
}
.rpsu-art span {
  position: relative;
  z-index: 2;
  font-weight: 1000;
  letter-spacing: 0.06em;
  font-size: 1.55rem;
  text-shadow: 0 0 18px currentColor;
}
.art-asteroids {
  background:
    radial-gradient(circle at 25% 25%, #26385e 0 3px, transparent 4px),
    radial-gradient(circle at 72% 35%, #844d2d 0 23px, transparent 24px),
    linear-gradient(135deg, #071226, #11102a);
  color: #70e8ff;
}
.art-candy {
  background:
    radial-gradient(circle at 22% 38%, #ff4d85 0 28px, transparent 29px),
    radial-gradient(circle at 72% 62%, #4de8ff 0 34px, transparent 35px),
    linear-gradient(135deg, #39134e, #0d3153);
  color: #fff2a8;
}
.art-frogger {
  background: linear-gradient(
    0deg,
    #2d6537 0 32%,
    #31447b 33% 66%,
    #181d30 67%
  );
  color: #7dff88;
}
.art-pacman {
  background:
    radial-gradient(circle, #ffdf4d 0 44px, transparent 45px),
    linear-gradient(135deg, #12142e, #050612);
  color: #fff;
}
.art-pacmania {
  background: conic-gradient(from 20deg, #1d295c, #742b9a, #132d55, #1d295c);
  color: #ffe45c;
}
.art-word {
  background: linear-gradient(135deg, #143263, #3b175f);
  color: #f5faff;
}
.art-tunnel {
  background: repeating-radial-gradient(
    circle at 50%,
    #0b1023 0 18px,
    #1a2f5a 19px 25px,
    #10162e 26px 40px
  );
  color: #ff70d0;
}
.art-font {
  background: linear-gradient(135deg, #071835, #33124f);
  color: #62f0ff;
}
.art-free-tiles {
  background:
    linear-gradient(135deg, rgba(28, 116, 132, 0.92), rgba(30, 62, 105, 0.96)),
    repeating-linear-gradient(
      45deg,
      transparent 0 24px,
      rgba(100, 245, 167, 0.2) 24px 48px
    );
  color: #baffd9;
}
.rpsu-card-body {
  padding: 19px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rpsu-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.25;
}
.rpsu-meta {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.45;
}
.rpsu-price {
  margin-top: 12px;
  font-weight: 1000;
  color: var(--cyan);
  font-size: 1.1rem;
}
.rpsu-card .rpsu-card-link {
  margin-top: auto;
  padding-top: 17px;
  color: #ecf7ff;
  font-weight: 900;
}
.rpsu-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}
.rpsu-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(92, 139, 207, 0.48);
  background: rgba(30, 51, 86, 0.48);
  border-radius: 999px;
  padding: 6px 10px;
  color: #d8e8ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.rpsu-badge.android {
  border-color: rgba(79, 245, 148, 0.55);
  background: rgba(37, 121, 74, 0.25);
  color: #9affc4;
}
.rpsu-badge.free {
  border-color: rgba(39, 229, 255, 0.55);
  color: #7cefff;
}
.rpsu-badge.dev {
  border-color: rgba(255, 90, 173, 0.55);
  color: #ff9dce;
}
.rpsu-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 30px 0;
}
.rpsu-benefit {
  padding: 20px;
  border: 1px solid rgba(70, 100, 156, 0.32);
  border-radius: 15px;
  background: rgba(11, 17, 32, 0.72);
}
.rpsu-benefit b {
  display: block;
  margin-bottom: 5px;
  color: #fff;
}
.rpsu-benefit span {
  color: var(--muted);
  font-size: 0.9rem;
}
.rpsu-page-hero {
  padding: 62px 0 36px;
  border-bottom: 1px solid rgba(62, 92, 148, 0.26);
  background: radial-gradient(
    circle at 85% 20%,
    rgba(112, 71, 207, 0.18),
    transparent 28rem
  );
}
.rpsu-page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.9rem);
  margin-bottom: 18px;
}
.rpsu-page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 760px;
}
.rpsu-subhead {
  margin: 56px 0 22px;
}
.rpsu-subhead h2 {
  margin: 0 0 8px;
  font-size: 2rem;
}
.rpsu-subhead p {
  color: var(--muted);
  margin: 0;
}
.rpsu-product-hero {
  padding: 54px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
}
.rpsu-product-cover {
  background: #060914;
  border: 1px solid rgba(87, 121, 184, 0.45);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rpsu-product-cover img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: contain;
}
.rpsu-product-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1.02;
  margin: 12px 0 18px;
}
.rpsu-product-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.rpsu-product-price {
  font-size: 1.65rem;
  color: var(--cyan);
  font-weight: 1000;
  margin: 20px 0 2px;
}
.rpsu-video-section {
  padding-top: 22px;
}
.rpsu-video-panel {
  width: min(920px, 100%);
  margin-inline: auto;
  padding: 14px;
  border: 1px solid rgba(83, 117, 178, 0.45);
  border-radius: 20px;
  background: rgba(5, 8, 21, 0.9);
  box-shadow: var(--shadow);
}
.rpsu-video-panel video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 13px;
  background: #000;
}
.rpsu-video-caption {
  margin: 14px 8px 4px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}
.rpsu-note {
  color: #d1dbed;
  font-size: 0.9rem;
}
.rpsu-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.rpsu-shot {
  border: 1px solid rgba(83, 117, 178, 0.4);
  background: #050815;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rpsu-shot img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
}
.rpsu-copy-panel {
  padding: 28px;
  border: 1px solid rgba(78, 110, 171, 0.35);
  background: rgba(11, 17, 32, 0.75);
  border-radius: 18px;
  line-height: 1.75;
  color: var(--muted);
}
.rpsu-copy-panel h2,
.rpsu-copy-panel h3 {
  color: #fff;
  margin-top: 0;
}
.rpsu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.rpsu-list div {
  padding: 16px;
  border-radius: 13px;
  border: 1px solid rgba(77, 111, 174, 0.34);
  background: rgba(13, 21, 39, 0.78);
}
.rpsu-list b {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}
.rpsu-footer {
  margin-top: 70px;
  border-top: 1px solid rgba(69, 98, 151, 0.3);
  background: #040610;
}
.rpsu-footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 40px;
  padding: 42px 0;
}
.rpsu-footer-brand {
  display: flex;
  gap: 18px;
  align-items: center;
}
.rpsu-footer-brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}
.rpsu-footer h3 {
  margin: 0 0 13px;
  font-size: 1rem;
}
.rpsu-footer p,
.rpsu-footer a {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.92rem;
}
.rpsu-footer a {
  display: block;
}
.rpsu-copyright {
  padding: 17px 0;
  border-top: 1px solid rgba(64, 91, 141, 0.25);
  color: #8291ab;
  font-size: 0.83rem;
  text-align: center;
}
.rpsu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 28px;
}
.rpsu-lightbox.open {
  display: flex;
}
.rpsu-lightbox img {
  max-width: 96vw;
  max-height: 92vh;
  object-fit: contain;
}
.rpsu-lightbox button {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 1px solid #53698f;
  background: #0d1528;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  cursor: pointer;
}
.rpsu-empty {
  display: none;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed #3a527d;
  border-radius: 15px;
}
@media (max-width: 980px) {
  .rpsu-nav {
    position: absolute;
    top: 86px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #090e1c;
    border: 1px solid #263a5e;
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .rpsu-nav.open {
    display: flex;
  }
  .rpsu-menu-btn {
    display: block;
  }
  .rpsu-search-btn {
    margin-left: auto;
  }
  .rpsu-hero-inner {
    grid-template-columns: 1fr;
    min-height: 540px;
  }
  .rpsu-hero-art {
    opacity: 0.44;
    width: 640px;
    right: -210px;
    bottom: 2px;
  }
  .rpsu-grid,
  .rpsu-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rpsu-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .rpsu-product-hero {
    grid-template-columns: 1fr;
  }
  .rpsu-footer-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 650px) {
  .rpsu-wrap {
    width: min(100% - 24px, 1180px);
  }
  .rpsu-head-inner {
    min-height: 72px;
  }
  .rpsu-brand {
    min-width: 0;
  }
  .rpsu-brand img {
    width: 58px;
    height: 58px;
  }
  .rpsu-brand strong,
  .rpsu-brand small {
    display: none;
  }
  .rpsu-nav {
    top: 72px;
  }
  .rpsu-hero-inner {
    padding: 54px 0;
    min-height: 520px;
  }
  .rpsu-hero-art {
    width: 450px;
    right: -210px;
    bottom: 26px;
    opacity: 0.36;
  }
  .rpsu-section {
    padding: 52px 0;
  }
  .rpsu-section-head {
    align-items: start;
    flex-direction: column;
  }
  .rpsu-grid,
  .rpsu-grid.three {
    grid-template-columns: 1fr;
  }
  .rpsu-card-media {
    height: 220px;
  }
  .rpsu-benefits {
    grid-template-columns: 1fr;
  }
  .rpsu-gallery {
    grid-template-columns: 1fr;
  }
  .rpsu-shot {
    min-height: 220px;
  }
  .rpsu-list {
    grid-template-columns: 1fr;
  }
  .rpsu-footer-main {
    grid-template-columns: 1fr;
  }
  .rpsu-footer-brand {
    align-items: flex-start;
  }
  .rpsu-product-cover {
    min-height: 250px;
  }
  .rpsu-product-hero {
    gap: 28px;
  }
  .rpsu-video-section {
    padding-top: 8px;
  }
  .rpsu-video-panel {
    padding: 8px;
    border-radius: 15px;
  }
  .rpsu-video-panel video {
    border-radius: 10px;
  }
}

/* Restored thumbnail presentation — only product/game cards */
.rpsu-card-media {
  height: auto !important;
  aspect-ratio: 16 / 9;
  background: #050915;
}
.rpsu-card-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.rpsu-card-media > img.rpsu-contain {
  object-fit: contain;
}
@media (max-width: 720px) {
  .rpsu-card-media {
    height: auto !important;
    aspect-ratio: 16 / 9;
  }
}
