html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 1vw;
  overflow-x: hidden;
}
.t-play-header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #00000080;
  padding: 1vw 2vw;
  font-family: "Segoe UI", sans-serif;
  color: #ffffff;
}

.t-play-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 96%;
}

.t-play-logo {
  width: 6vw;
  height: auto;
}
.t-play-nav-list {
  display: flex;
  gap: 1.6vw;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.t-play-nav-item {
  position: relative;
}
.t-play-nav-item > a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9vw;
  padding: 0.6vw 0;
  position: relative;
  transition: color 0.3s ease;
}
.t-play-nav-item > a::after {
  content: " ▾";
  font-size: 0.7vw;
  margin-left: 0.2vw;
  transition: transform 0.3s ease;
}
.t-play-nav-item > a::before {
  content: "";
  position: absolute;
  bottom: -0.3vw;
  left: 0;
  width: 100%;
  height: 0.2vw;
  background-color: #4192c7;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.t-play-nav-item:hover > a {
  color: #4192c7;
}
.t-play-nav-item:hover > a::after {
  transform: rotate(180deg);
}
.t-play-nav-item:hover > a::before {
  transform: scaleX(1);
  transform-origin: left;
}
.t-play-submenu {
  position: absolute;
  top: 2.2vw;
  left: 0;
  background-color: #1a1d2e;
  display: flex;
  flex-direction: column;
  min-width: 10vw;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5vw);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  border-radius: 0.3vw;
  overflow: hidden;
  box-shadow: 0 0.3vw 0.6vw rgba(0, 0, 0, 0.4);
  z-index: 99;
}
.t-play-submenu a {
  padding: 0.8vw 1vw;
  font-size: 0.8vw;
  color: #ccc;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.t-play-submenu a:hover {
  background-color: #2c3148;
  color: #ffffff;
}
.t-play-nav-item:hover .t-play-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.t-play-config-btn {
  background-color: #4192c7;
  padding: 0.7vw 1.4vw;
  font-size: 0.85vw;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  border-radius: 0.3vw;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.t-play-config-btn:hover {
  background-color: #4192c7;
}
.t-play-cart-area {
  position: relative;
  font-size: 1vw;
}
.t-play-cart-area a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
}
#cart-count {
  position: absolute;
  top: -0.4vw;
  right: -0.8vw;
  background-color: #4192c7;
  color: #000000;
  font-size: 0.7vw;
  padding: 0.2vw 0.5vw;
  border-radius: 50%;
}
.t-play-contact-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5vw;
  font-size: 0.8vw;
  margin-top: 0.6vw;
}
.t-play-contact-bar a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4vw;
}
.t-play-top-btns {
  display: flex;
  gap: 1vw;
  margin-left: auto;
}
.t-play-top-btns a {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8vw;
  text-decoration: none;
  text-transform: uppercase;
}
.t-play-burger {
  display: none;
  width: 2.5vw;
  height: 2vw;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.t-play-burger div {
  height: 0.3vw;
  background: #fff;
  border-radius: 0.2vw;
}
.t-play-burger-toggle {
  display: none;
}

.t-play-footer {
  background-color: #101215;
  color: #e1e1e1;
  padding: 3vw 5vw;
  font-size: 0.8vw;
}

.t-play-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
  justify-content: space-between;
  margin-bottom: 2vw;
}

.t-play-footer-logo img {
  width: 8vw;
  height: auto;
}

.t-play-footer-map iframe {
  width: 24vw;
  height: 12vw;
  border: none;
  border-radius: 0.6vw;
}

.t-play-footer-links,
.t-play-footer-contact {
  flex: 1 1 15vw;
}

.t-play-footer-heading {
  font-size: 1vw;
  font-weight: 700;
  color: #4192c7;
  margin-bottom: 1vw;
  text-transform: uppercase;
}

.t-play-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.t-play-footer-links li {
  margin-bottom: 0.6vw;
}

.t-play-footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.t-play-footer-links a:hover {
  color: #4192c7;
}

.t-play-footer-bottom {
  border-top: 0.1vw solid #2a2e35;
  padding-top: 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vw;
}

.t-play-footer-payments {
  max-width: 32vw;
  height: auto;
  filter: grayscale(1) brightness(1.2);
}

.t-play-footer-copy {
  font-size: 0.7vw;
  color: #999999;
}
.t-play-hero {
  position: relative;
  overflow: hidden;
  padding: 1vw 3vw;
  padding-top: 12vw;
  color: #fff;
  z-index: 1;
}
.t-play-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.t-play-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.t-play-carousel {
  flex: 1 1 40vw;
  position: relative;
  height: 36vw;
  overflow: hidden;
  border-radius: 1vw;
}

.carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 35vw;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-img.active {
  opacity: 1;
}

.t-play-hero-text {
  flex: 1 1 50vw;
  max-width: 40vw;
  padding: 2vw;
  background-color: #0000003f;
  border: 0.3vw solid #000000;
  border-radius: 0.5vw;
}

.t-play-hero-text h1 {
  font-size: 2.4vw;
  margin-bottom: 1vw;
}

.t-play-hero-text p {
  font-size: 1.2vw;
  margin-bottom: 2vw;
  line-height: 1.6;
}
.t-play-hdmi-title {
  font-size: 2vw;
}
.t-play-hero-btn {
  display: inline-block;
  padding: 1vw 2vw;
  background-color: #4192c7;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1vw;
  border-radius: 0.5vw;
  transition: background-color 0.3s ease;
}

.t-play-hero-btn:hover {
  background-color: #4192c7;
}

.t-play-retro-section {
  padding: 4vw 2vw;
  background-color: #0d0f1d;
  color: #fff;
}

.t-play-retro-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2vw;
}

.t-play-retro-text {
  flex: 1 1 50%;
  max-width: 45vw;
  font-family: "Segoe UI", sans-serif;
  font-size: 1vw;
  background-color: #0000003f;
  border-bottom: 0.3vw solid #4192c7;
  padding: 2vw;
  border-radius: 1vw;
}

.t-play-retro-text h2 {
  font-size: 1.8vw;
  margin-bottom: 1vw;
  color: #4192c7;
}

.t-play-retro-text p {
  margin-bottom: 1vw;
  line-height: 1.6;
}

.t-play-retro-image {
  flex: 1 1 45%;
  text-align: center;
}

.t-play-retro-image img {
  max-width: 65%;
  height: auto;
  border-radius: 1vw;
  box-shadow: 0 0 1vw #4191c73f;
}

.t-play-rent-section {
  background-image: url("img/back.jpg");
  background-size: cover;
  background-position: center;
  padding: 4vw 2vw;
  position: relative;
  min-height: 25vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
  overflow: hidden;
  background-attachment: fixed;
}

.t-play-rent-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.t-play-rent-overlay {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2vw;
  border-radius: 1vw;
  max-width: 60vw;
  text-align: center;
}

.t-play-rent-content h2 {
  font-size: 2vw;
  margin-bottom: 1vw;
  color: #4192c7;
}

.t-play-rent-content p {
  font-size: 1vw;
  margin-bottom: 1.5vw;
}

.t-play-rent-button {
  display: inline-block;
  background-color: #4192c7;
  color: #ffffff;
  padding: 0.8vw 2vw;
  font-size: 1vw;
  text-decoration: none;
  border-radius: 0.4vw;
  transition: background-color 0.3s ease;
}

.t-play-rent-button:hover {
  background-color: #3375a1;
}

.t-play-benefits {
  background-color: #0d0f1d;
  padding: 4vw 2vw;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
}

.t-play-benefits-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2vw;
  max-width: 1200px;
  margin: 0 auto;
}

.t-play-benefit-item {
  flex: 1 1 18%;
  background-color: #1b1f33;
  padding: 2vw;
  border-radius: 1vw;
  text-align: center;
}

.t-play-benefit-icon {
  width: 5vw;
  height: auto;
  filter: invert(1);
  margin-bottom: 0vw;
}

.t-play-benefit-item h3 {
  font-size: 1.2vw;
  margin-bottom: 0.6vw;
  color: #4192c7;
}

.t-play-benefit-item p {
  font-size: 0.9vw;
  color: #ccc;
}

.t-play-clients-section {
  padding: 4vw 2vw;
  background-color: #0d0f1d;
  color: #ffffff;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.t-play-clients-title {
  font-size: 2.5vw;
  margin-bottom: 2vw;
  color: #4192c7;
}

.t-play-clients-image-wrapper {
  max-width: 50vw;
  margin: 0 auto;
  overflow: hidden;
}

.t-play-clients-image {
  width: 100%;
  height: auto;
  display: block;
}

.t-play-hdmi-arcade {
  padding: 2vw 2vw;
  padding-top: 15vw;
  background: #0d0f1d;
  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
}

.t-play-hdmi-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  margin-bottom: 4vw;
  align-items: center;
}

.t-play-hdmi-text {
  flex: 1 1 45vw;
  font-size: 1.1vw;
  line-height: 1.6;
}

.t-play-hdmi-text h2 {
  font-size: 2vw;
  color: #4192c7;
  margin-bottom: 1vw;
}

.t-play-hdmi-text ul {
  list-style: none;
  padding: 0;
}

.t-play-hdmi-text ul li::before {
  content: "🎮 ";
}

.t-play-hdmi-img {
  flex: 1 1 45vw;
  text-align: center;
}

.t-play-hdmi-img1 {
  flex: 1 1 45vw;
  text-align: center;
}

.t-play-hdmi-img img {
  width: 70%;
}

.t-play-cart-icon {
  position: fixed;
  top: 1vw;
  right: 2vw;
  font-size: 1.2vw;
  cursor: pointer;
  background-color: #141627;
  color: #fff;
  padding: 0.5vw 1vw;
  border-radius: 2vw;
  z-index: 1000;
}

.t-play-cart-popup {
  position: fixed;
  top: 4vw;
  right: 2vw;
  width: 25vw;
  background: #0d0f1d;
  color: #fff;
  padding: 2vw;
  border-radius: 1vw;
  box-shadow: 0 0.5vw 2vw rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.t-play-cart-total {
  margin-top: 2vw;
  font-weight: bold;
  font-size: 1.1vw;
}

.t-play-cart-page {
  max-width: 90vw;
  margin: 0 auto;
  margin-top: 12vw;
  margin-bottom: 2vw;
}

.t-play-cart-title {
  font-size: 3vw;
  margin-bottom: 2vw;
  color: #4192c7;
  text-align: center;
}

.t-play-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1c2b;
  padding: 1vw 2vw;
  margin-bottom: 1.5vw;
  border-radius: 1vw;
}

.t-play-cart-item-name {
  font-size: 1.5vw;
}

.t-play-cart-item-qty {
  font-size: 1.3vw;
}

.t-play-cart-item-price {
  font-size: 1.5vw;
  font-weight: bold;
}

.t-play-cart-total {
  font-size: 2vw;
  text-align: right;
  margin-top: 3vw;
}

.t-play-cart-checkout {
  margin-top: 2vw;
  text-align: right;
}

.t-play-checkout-btn {
  background-color: #4192c7;
  color: #000;
  border: none;
  padding: 1vw 2vw;
  font-size: 1.2vw;
  border-radius: 1vw;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.t-play-checkout-btn:hover {
  background-color: #4192c7;
}

.t-play-products-title {
  font-size: 3vw;
  text-align: center;
  color: #4192c7;
  margin-top: 15vw;
  margin-bottom: -3vw;
}

.t-play-products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  padding: 5vw 2vw;
  justify-content: center;
}

.t-play-product-card {
  background-color: #1a1c2b;
  border-radius: 1vw;
  width: 40vw;
  max-width: 42vw;
  padding: 2vw;
  box-shadow: 0 0.5vw 2vw rgba(0, 0, 0, 0.4);
  text-align: center;
}

.t-play-product-card img {
  width: 40%;
  border-radius: 0.8vw;
  margin-bottom: 1.5vw;
}

.t-play-product-name {
  font-size: 1.6vw;
  margin-bottom: 1vw;
}

.t-play-product-price {
  font-size: 1.4vw;
  color: #4192c7;
  margin-bottom: 1vw;
}

.t-play-add-btn {
  background-color: #4192c7;
  border: none;
  color: #000;
  font-size: 1.2vw;
  padding: 1vw 2vw;
  border-radius: 1vw;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.t-play-add-btn:hover {
  background-color: #4192c7;
}

.t-play-hdmi-arcade {
  padding: 4vw 2vw;
  background: #0d0f1d;
  padding-top: 15vw;
  padding-bottom: 5vw;
  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
}

.t-play-hdmi-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  margin-bottom: 10vw;
  align-items: center;
}

.t-play-hdmi-text {
  flex: 1 1 45vw;
  font-size: 1.1vw;
  line-height: 1.6;
}
.t-play-hdmi-padding {
  padding-top: 2vw;
  padding-left: 2vw;
  margin-bottom: 6vw;
}

.t-play-hdmi-text h2 {
  font-size: 2vw;
  color: #4192c7;
  margin-bottom: 1vw;
}

.t-play-hdmi-text ul {
  list-style: none;
  padding: 0;
}

.t-play-hdmi-text ul li::before {
  content: "🕹️ ";
}

.t-play-hdmi-img {
  flex: 1 1 45vw;
  text-align: center;
}

.t-play-hdmi-img img {
  width: 70%;
  border-radius: 1vw;
}

.t-play-hdmi-btn-group {
  margin-top: 2vw;
  display: flex;
  gap: 2vw;
  flex-wrap: wrap;
}

.t-play-hdmi-btn {
  display: inline-block;
  padding: 1vw 2vw;
  background-color: #4192c7;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.6vw;
  font-weight: bold;
  font-size: 1vw;
  transition: background-color 0.3s ease;
}

.t-play-hdmi-btn:hover {
  background-color: #2f6fa0;
}
.t-play-hdmi-cards {
  display: flex;
  gap: 3vw;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2vw;
  margin-top: 2vw;
}

.t-play-hdmi-card {
  background-color: #fff;
  padding: 1vw;
  border-radius: 1vw;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
  width: 20vw;
  max-width: 90vw;
  font-family: "Courier New", monospace;
  color: #000;
}
.t-play-hdmi-img {
  width: 20vw;
  height: 20vw;
  border-radius: 0.8vw;
  margin-bottom: 1vw;
}

.t-play-hdmi-img1 {
  width: 20vw;
  height: 20vw;
  border-radius: 0.8vw;
  margin-bottom: 1vw;
}

.t-play-hdmi-card h3 {
  font-size: 1.4vw;
  margin-bottom: 1vw;
}

.t-play-hdmi-price {
  font-size: 1.2vw;
  font-weight: bold;
  color: #4192c7;
}

.t-play-hdmi-price .iva {
  font-size: 0.9vw;
  color: #888;
}

.t-play-hdmi-card ul {
  list-style: none;
  padding-left: 0;
  margin: 1vw 0;
  line-height: 1.5;
  font-size: 0.95vw;
}

.t-play-hdmi-card button {
  padding: 0.7vw 1.5vw;
  background-color: #4192c7;
  color: #fff;
  border: none;
  border-radius: 0.4vw;
  cursor: pointer;
  font-size: 1vw;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.t-play-hdmi-card button:hover {
  background-color: #2f6fa0;
}
.t-play-cart-toast {
  position: fixed;
  bottom: 3vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4192c7;
  color: white;
  padding: 1vw 2vw;
  border-radius: 0.5vw;
  font-size: 1vw;
  font-weight: 600;
  box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
}
.t-play-cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-1vw);
}

.t-play-contact-support {
  background: linear-gradient(135deg, #4192c7, #2d6fa1);
  padding: 4vw 2vw;
  color: #ffffff;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  border-radius: 1vw;
  margin: 13vw 2vw;
  box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.2);
}

.t-play-contact-inner {
  max-width: 800px;
  margin: 0 auto;
}

.t-play-contact-support h2 {
  font-size: 2.5vw;
  margin-bottom: 1vw;
  font-weight: bold;
}

.t-play-contact-support p {
  font-size: 1.2vw;
  line-height: 1.6;
  margin-bottom: 2vw;
}

.t-play-contact-btn {
  background-color: #fff;
  color: #4192c7;
  padding: 1vw 2.5vw;
  font-size: 1.2vw;
  text-decoration: none;
  border-radius: 0.6vw;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.t-play-contact-btn:hover {
  background-color: #e6f3fc;
  transform: scale(1.05);
}

.rex-system-section {
  padding: 4vw 2vw;
  background: #f6f7fa;
  padding-top: 12vw;
}

.rex-system-container {
  display: flex;
  gap: 3vw;
  justify-content: center;
  flex-wrap: wrap;
}

.rex-system-card {
  background: #fff;
  padding: 2vw;
  border-radius: 1vw;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
  max-width: 26vw;
  text-align: center;
  font-family: monospace;
}

.rex-system-img {
  width: 100%;
  border-radius: 0.6vw;
  margin-bottom: 1vw;
}

.rex-system-card h2 {
  font-size: 1.8vw;
  color: #4c9dd3;
  margin-bottom: 0.5vw;
}

.rex-system-sub {
  font-size: 1vw;
  margin-bottom: 1vw;
  color: #000;
}

.rex-system-card h3 {
  font-size: 1.2vw;
  font-weight: bold;
  margin: 1vw 0 0.5vw;
  color: #000;
}

.rex-system-card ul {
  list-style: none;
  padding: 0;
  color: #000;
  margin-bottom: 1.5vw;
}

.rex-system-card ul li {
  font-size: 0.95vw;
  margin: 0.3vw 0;
  text-align: left;
}

.rex-button {
  display: block;
  background: #4c9dd3;
  color: #fff;
  text-decoration: none;
  padding: 0.6vw 0;
  margin: 0.5vw 0;
  font-size: 1vw;
  border-radius: 0.4vw;
}

.rex-button.secondary {
  background: #6eaedc;
}

.rex-button.contact {
  margin-top: 1vw;
  background: #3c8dc7;
}

.rex-price {
  font-size: 1.2vw;
  margin-top: 1vw;
  margin-bottom: 0.5vw;
  color: #000;
}

.rex-price strong {
  font-size: 1.5vw;
  color: #1e75b5;
}

.rex-form-section {
  background: #f6faff;
  padding: 4vw 2vw;
  padding-top: 13vw;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.rex-form-container {
  max-width: 70vw;
  margin: 0 auto;
  background: #fff;
  border-radius: 1vw;
  padding: 3vw;
  box-shadow: 0 0.6vw 1.5vw rgba(0, 0, 0, 0.1);
}

.rex-form-container h2 {
  font-size: 2vw;
  color: #243b55;
  margin-bottom: 1vw;
}

.rex-form-container p {
  font-size: 1vw;
  color: #555;
  margin-bottom: 2vw;
}

.rex-big-form .rex-form-group {
  margin-bottom: 1.5vw;
}

.rex-big-form label {
  display: block;
  font-weight: bold;
  font-size: 1vw;
  margin-bottom: 0.5vw;
  color: #333;
}

.rex-big-form input,
.rex-big-form select,
.rex-big-form textarea {
  width: 100%;
  padding: 1vw;
  font-size: 1vw;
  border: 1px solid #ccc;
  border-radius: 0.5vw;
  box-sizing: border-box;
  transition: border 0.3s ease;
}

.rex-big-form input:focus,
.rex-big-form select:focus,
.rex-big-form textarea:focus {
  border-color: #1976d2;
  outline: none;
}

.rex-form-btn {
  background: #1976d2;
  color: #fff;
  border: none;
  padding: 1vw 2vw;
  font-size: 1.2vw;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  margin-top: 1vw;
}

.rex-form-btn:hover {
  background: #125a9c;
}

.rex-thanks-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4vw 2vw;
  padding-top: 12vw;
  background: linear-gradient(to bottom right, #4192c7, #83c3e8);
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 60vh;
}

.rex-thanks-box {
  background: #ffffff;
  color: #333;
  padding: 3vw;
  border-radius: 1vw;
  box-shadow: 0 0.8vw 2vw rgba(0, 0, 0, 0.2);
  max-width: 700px;
  text-align: center;
}

.rex-thanks-box h1 {
  font-size: 2.5vw;
  margin-bottom: 1vw;
  color: #1976d2;
}

.rex-thanks-box p {
  font-size: 1.2vw;
  margin-bottom: 2vw;
  line-height: 1.6;
}

.rex-thanks-btn {
  display: inline-block;
  padding: 1vw 2vw;
  background-color: #1976d2;
  color: white;
  border-radius: 0.6vw;
  font-size: 1vw;
  text-decoration: none;
  transition: background 0.3s ease;
}

.rex-thanks-btn:hover {
  background-color: #125a9c;
}

.t-play-legal-section {
  background-color: #0f1116;
  color: #f1f1f1;
  padding: 5vw 2vw;
  padding-top: 10vw;
  border-top: 2px solid #4192c7;
}

.t-play-legal-container {
  max-width: 80vw;
  margin: 0 auto;
  font-size: 1.1vw;
  line-height: 1.7;
  font-family: "Segoe UI", sans-serif;
}

.t-play-legal-section h2 {
  font-size: 2vw;
  margin-bottom: 1.5vw;
  color: #4192c7;
  border-bottom: 1px solid #4192c7;
  padding-bottom: 0.5vw;
}

.t-play-legal-section h3 {
  font-size: 1.4vw;
  margin-top: 2vw;
  margin-bottom: 1vw;
  color: #ffffff;
}

.t-play-legal-section a {
  color: #4192c7;
  text-decoration: none;
}

.t-play-legal-section a:hover {
  text-decoration: underline;
}

.t-play-blog-section {
  background-color: #0d0f1d;
  padding: 6vw 3vw;
  padding-top: 10vw;
  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
}

.t-play-blog-title {
  text-align: center;
  font-size: 2.8vw;
  margin-bottom: 4vw;
  color: #4192c7;
}

.t-play-blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
  justify-content: center;
}

.t-play-blog-card {
  background-color: #1a1c2b;
  border-radius: 1vw;
  overflow: hidden;
  width: 26vw;
  max-width: 90vw;
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-align: center;
}

.t-play-blog-card:hover {
  transform: translateY(-1vw);
}

.t-play-blog-img {
  width: 100%;
  height: 14vw;
  object-fit: cover;
}

.t-play-blog-name {
  font-size: 1.2vw;
  padding: 1.2vw;
  color: #ffffff;
}

.t-play-blog-btn {
  display: inline-block;
  margin-bottom: 1vw;
  background-color: #4192c7;
  color: #fff;
  padding: 0.8vw 1.8vw;
  font-size: 1vw;
  border-radius: 0.6vw;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.t-play-blog-btn:hover {
  background-color: #2f6fa0;
}

.t-play-blog-about-section {
  background-color: #0d0f1d;
  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
  padding: 0;
  padding-top: 11vw;
}

.t-play-blog-about-content {
  max-width: 90vw;
  padding: 4vw 5vw;
  position: relative;
}

.t-play-blog-about-content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.6vw;
  background-color: #4192c7;
}

.t-play-blog-about-title {
  font-size: 2.8vw;
  color: #4192c7;
  margin-bottom: 3vw;
  text-align: center;
  text-shadow: 0 0.2vw 0.5vw rgba(65, 146, 199, 0.3);
}

.t-play-blog-about-subtitle {
  font-size: 2vw;
  color: #70b9f1;
  margin-top: 4vw;
  margin-bottom: 2vw;
  border-left: 0.4vw solid #4192c7;
  padding-left: 1.5vw;
}

.t-play-blog-about-content p {
  font-size: 1.4vw;
  margin-bottom: 2vw;
  line-height: 1.8;
  text-align: justify;
}

.t-play-blog-about-list {
  padding-left: 2vw;
  margin-bottom: 3vw;
}

.t-play-blog-about-list li {
  font-size: 1.4vw;
  margin-bottom: 1.5vw;
  list-style: disc;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .t-play-burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 6vw;
    height: 4.9vw;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
  }

  .t-play-burger div {
    height: 0.6vw;
    background: #fff;
    border-radius: 1vw;
  }
  .t-play-header {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 98%;
    z-index: 10;
    background-color: #00000080;
    padding: 1vw 1vw;
    font-family: "Segoe UI", sans-serif;
    color: #ffffff;
  }
  .t-play-nav-list {
    display: none;
    position: absolute;
    top: 0vw;
    left: 0;
    flex-direction: column;
    width: 100vw;
    background-color: #0d0f1d;
    z-index: 1000;
    padding: 4vw 2vw;
  }

  .t-play-burger-toggle:checked ~ nav .t-play-nav-list {
    display: flex;
  }

  .t-play-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .t-play-cart-area {
    align-self: center;
    margin: 2vw 0;
  }
  .t-play-contact-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5vw;
    font-size: 3.2vw;
    flex-direction: column;
    margin-top: 0.6vw;
  }
  .t-play-top-btns a {
    color: #ffffff;
    font-weight: 700;
    font-size: 3.8vw;
    text-decoration: none;
    text-transform: uppercase;
  }
  .t-play-cart-area {
    position: relative;
    font-size: 5vw;
  }
  #cart-count {
    position: absolute;
    top: -0.4vw;
    right: -0.8vw;
    background-color: #4192c7;
    color: #000000;
    font-size: 2.7vw;
    padding: 0.2vw 1.3vw;
    border-radius: 50% 50%;
  }
  .t-play-nav-item > a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 4.4vw;
    padding: 0.6vw 0;
    position: relative;
    transition: color 0.3s ease;
  }
  .t-play-nav-item > a::after {
    content: " ▾";
    font-size: 2.7vw;
    margin-left: 0.2vw;
    transition: transform 0.3s ease;
  }
  .t-play-config-btn {
    background-color: #4192c7;
    padding: 0.7vw 1.4vw;
    font-size: 2.85vw;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    border-radius: 0.3vw;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .t-play-logo {
    width: 10vw;
    height: auto;
  }
  .t-play-hero {
    position: relative;
    overflow: hidden;
    padding: 1vw 3vw;
    padding-top: 55vw;
    color: #fff;
    z-index: 1;
  }
  .t-play-hero-text {
    flex: 1 1 50vw;
    max-width: 48vw;
    padding: 2vw;
    background-color: #0000003f;
    border: 0.3vw solid #000000;
    border-radius: 0.5vw;
  }
  .t-play-hero-text p {
    font-size: 4.2vw;
    margin-bottom: 2vw;
    line-height: 1.6;
  }
  .t-play-hero-btn {
    display: inline-block;
    padding: 1vw 2vw;
    background-color: #4192c7;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 4vw;
    border-radius: 0.5vw;
    transition: background-color 0.3s ease;
  }
  .t-play-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .t-play-hero-text h1 {
    font-size: 6.4vw;
    margin-bottom: 1vw;
  }
  .t-play-submenu {
    position: absolute;
    top: 3.2vw;
    left: -5vw;
    background-color: #1a1d2e;
    display: flex;
    flex-direction: column;
    max-width: 70vw;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5vw);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    border-radius: 0.3vw;
    overflow: hidden;
    box-shadow: 0 0.3vw 0.6vw rgba(0, 0, 0, 0.4);
    z-index: 99;
  }
  .t-play-nav-list {
    gap: 10.6vw;
  }
  .t-play-submenu a {
    padding: 0.8vw 1vw;
    font-size: 4.8vw;
    color: #ccc;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .t-play-retro-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    gap: 2vw;
  }
  .t-play-retro-text {
    flex: 1 1 50%;
    max-width: 80vw;
    font-family: "Segoe UI", sans-serif;
    font-size: 1vw;
    background-color: #0000003f;
    border-bottom: 0.3vw solid #4192c7;
    padding: 2vw;
    border-radius: 1vw;
  }
  .t-play-retro-text h2 {
    font-size: 5.8vw;
    margin-bottom: 1vw;
    color: #4192c7;
  }
  .t-play-retro-text {
    flex: 1 1 50%;
    max-width: 80vw;
    font-family: "Segoe UI", sans-serif;
    font-size: 4vw;
    background-color: #0000003f;
    border-bottom: 0.3vw solid #4192c7;
    padding: 2vw;
    border-radius: 1vw;
  }
  .t-play-rent-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2vw;
    border-radius: 1vw;
    max-width: 80vw;
    text-align: center;
  }
  .t-play-rent-content h2 {
    font-size: 7vw;
    margin-bottom: 1vw;
    color: #4192c7;
  }
  .t-play-rent-content p {
    font-size: 4vw;
    margin-bottom: 1.5vw;
  }
  .t-play-rent-button {
    display: inline-block;
    background-color: #4192c7;
    color: #ffffff;
    padding: 0.8vw 2vw;
    font-size: 4vw;
    text-decoration: none;
    border-radius: 0.4vw;
    transition: background-color 0.3s ease;
  }
  .t-play-benefit-item {
    flex: 1 1 50%;
    background-color: #1b1f33;
    padding: 2vw;
    border-radius: 1vw;
    text-align: center;
  }
  .t-play-benefit-icon {
    width: 15vw;
    height: auto;
    filter: invert(1);
    margin-bottom: -5vw;
  }
  .t-play-benefit-item h3 {
    font-size: 5.2vw;
    margin-bottom: 0.6vw;
    color: #4192c7;
  }
  .t-play-benefit-item p {
    font-size: 3.9vw;
    color: #ccc;
  }
  .t-play-clients-title {
    font-size: 7.5vw;
    margin-bottom: 2vw;
    color: #4192c7;
  }
  .t-play-clients-image-wrapper {
    max-width: 100vw;
    margin: 0 auto;
    overflow: hidden;
  }
  .t-play-footer-logo img {
    width: 30vw;
    height: auto;
  }
  .t-play-footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 3vw;
    justify-content: space-between;
    margin-bottom: 2vw;
  }
  .t-play-footer-heading {
    font-size: 7vw;
    font-weight: 700;
    color: #4192c7;
    margin-bottom: 1vw;
    text-transform: uppercase;
  }
  .t-play-footer {
    background-color: #101215;
    color: #e1e1e1;
    padding: 3vw 5vw;
    font-size: 4.8vw;
  }
  .t-play-footer-payments {
    max-width: 95vw;
    height: auto;
    filter: grayscale(1) brightness(1.2);
  }
  .t-play-footer-copy {
    font-size: 2.7vw;
    color: #999999;
  }
  .t-play-hdmi-arcade {
    padding: 4vw 2vw;
    background: #0d0f1d;
    padding-top: 55vw;
    padding-bottom: 5vw;
    color: #ffffff;
    font-family: "Segoe UI", sans-serif;
  }
  .t-play-hdmi-text h2 {
    font-size: 6vw;
    color: #4192c7;
    margin-bottom: 1vw;
  }
  .t-play-hdmi-text {
    flex: 1 1 45vw;
    font-size: 3.1vw;
    line-height: 1.6;
  }
  .t-play-hdmi-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
    margin-bottom: 10vw;
    flex-direction: column-reverse;
    align-items: center;
  }
  .t-play-hdmi-img {
    width: 90vw;
    height: 20vw;
    border-radius: 0.8vw;
    margin-bottom: 30vw;
  }
  .rex-system-card {
    background: #fff;
    padding: 2vw;
    border-radius: 1vw;
    box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
    max-width: 90vw;
    text-align: center;
    font-family: monospace;
  }
  .rex-system-img {
    width: 100%;
    border-radius: 0.6vw;
    margin-bottom: -5vw;
  }
  .rex-system-card h2 {
    font-size: 7.8vw;
    color: #4c9dd3;
    margin-bottom: 0.5vw;
  }
  .rex-system-sub {
    font-size: 4.5vw;
    margin-bottom: 1vw;
    color: #000;
  }
  .rex-system-card h3 {
    font-size: 4.2vw;
    font-weight: bold;
    margin: 1vw 0 0.5vw;
    color: #000;
  }
  .rex-system-card ul li {
    font-size: 3.95vw;
    margin: 0.3vw 0;
    text-align: left;
  }
  .rex-button {
    display: block;
    background: #4c9dd3;
    color: #fff;
    text-decoration: none;
    padding: 0.6vw 0;
    margin: 0.5vw 0;
    font-size: 4vw;
    border-radius: 0.4vw;
  }
  .rex-price {
    font-size: 4.2vw;
    margin-top: 1vw;
    margin-bottom: 0.5vw;
    color: #000;
  }
  .rex-price strong {
    font-size: 5.5vw;
    color: #1e75b5;
  }
  .t-play-products-title {
    font-size: 9vw;
    text-align: center;
    color: #4192c7;
    margin-top: 57vw;
    margin-bottom: 2vw;
  }
  .t-play-product-card {
    background-color: #1a1c2b;
    border-radius: 1vw;
    width: 80vw;
    max-width: 80vw;
    padding: 2vw;
    box-shadow: 0 0.5vw 2vw rgba(0, 0, 0, 0.4);
    text-align: center;
  }
  .t-play-product-name {
    font-size: 5.6vw;
    margin-bottom: 1vw;
  }
  .t-play-product-price {
    font-size: 6.4vw;
    color: #4192c7;
    margin-bottom: 1vw;
  }
  .t-play-add-btn {
    background-color: #4192c7;
    border: none;
    color: #000;
    font-size: 5.2vw;
    padding: 1vw 2vw;
    border-radius: 1vw;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .t-play-cart-toast {
    position: fixed;
    bottom: 3vw;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4192c7;
    color: white;
    padding: 1vw 2vw;
    border-radius: 0.5vw;
    font-size: 4vw;
    font-weight: 600;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 9999;
  }
  .t-play-hdmi-img img {
    width: 100%;
    border-radius: 1vw;
  }
  .t-play-hdmi-btn {
    display: inline-block;
    padding: 1vw 2vw;
    background-color: #4192c7;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.6vw;
    font-weight: bold;
    font-size: 4vw;
    transition: background-color 0.3s ease;
  }
  .t-play-hdmi-card {
    background-color: #fff;
    padding: 1vw;
    border-radius: 1vw;
    box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
    width: 45vw;
    max-width: 90vw;
    font-family: "Courier New", monospace;
    color: #000;
  }
  .t-play-hdmi-img1 {
    width: 45vw;
    height: 45vw;
    border-radius: 0.8vw;
    margin-bottom: 1vw;
  }
  .t-play-hdmi-card h3 {
    font-size: 4.4vw;
    margin-bottom: 1vw;
  }
  .t-play-hdmi-price {
    font-size: 5.2vw;
    font-weight: bold;
    color: #4192c7;
  }
  .t-play-hdmi-price .iva {
    font-size: 4.9vw;
    color: #888;
  }
  .t-play-hdmi-card ul {
    list-style: none;
    padding-left: 0;
    margin: 1vw 0;
    line-height: 1.5;
    font-size: 3.95vw;
  }
  .t-play-hdmi-card button {
    padding: 0.7vw 3.5vw;
    background-color: #4192c7;
    color: #fff;
    border: none;
    border-radius: 0.4vw;
    cursor: pointer;
    font-size: 5vw;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  .t-play-hdmi-title {
    font-size: 5vw;
  }
  .t-play-contact-support {
    background: linear-gradient(135deg, #4192c7, #2d6fa1);
    padding: 4vw 2vw;
    color: #ffffff;
    text-align: center;
    font-family: "Segoe UI", sans-serif;
    border-radius: 1vw;
    margin: 13vw 2vw;
    margin-top: 60vw;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.2);
  }
  .t-play-contact-support h2 {
    font-size: 8.5vw;
    margin-bottom: 1vw;
    font-weight: bold;
  }
  .t-play-contact-support p {
    font-size: 4.2vw;
    line-height: 1.6;
    margin-bottom: 2vw;
  }
  .t-play-contact-btn {
    background-color: #fff;
    color: #4192c7;
    padding: 1vw 2.5vw;
    font-size: 5.2vw;
    text-decoration: none;
    border-radius: 0.6vw;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
  }
  .rex-form-section {
    background: #f6faff;
    padding: 4vw 2vw;
    padding-top: 55vw;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }
  .rex-form-container h2 {
    font-size: 6vw;
    color: #243b55;
    margin-bottom: 1vw;
  }
  .rex-form-container p {
    font-size: 4vw;
    color: #555;
    margin-bottom: 2vw;
  }
  .rex-big-form label {
    display: block;
    font-weight: bold;
    font-size: 4vw;
    margin-bottom: 0.5vw;
    color: #333;
  }
  .rex-big-form input,
  .rex-big-form select,
  .rex-big-form textarea {
    width: 100%;
    padding: 1vw;
    font-size: 5vw;
    border: 1px solid #ccc;
    border-radius: 0.5vw;
    box-sizing: border-box;
    transition: border 0.3s ease;
  }
  .rex-form-btn {
    background: #1976d2;
    color: #fff;
    border: none;
    padding: 1vw 2vw;
    font-size: 5.2vw;
    border-radius: 0.5vw;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: 1vw;
  }
  .rex-thanks-box h1 {
    font-size: 6.5vw;
    margin-bottom: 1vw;
    color: #1976d2;
  }
  .rex-thanks-box p {
    font-size: 5.2vw;
    margin-bottom: 2vw;
    line-height: 1.6;
  }
  .rex-thanks-btn {
    display: inline-block;
    padding: 1vw 2vw;
    background-color: #1976d2;
    color: white;
    border-radius: 0.6vw;
    font-size: 4vw;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  .rex-thanks-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4vw 2vw;
    padding-top: 40vw;
    background: linear-gradient(to bottom right, #4192c7, #83c3e8);
    color: #ffffff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    min-height: 60vh;
  }
  .t-play-legal-section {
    background-color: #0f1116;
    color: #f1f1f1;
    padding: 5vw 2vw;
    padding-top: 55vw;
    border-top: 2px solid #4192c7;
  }
  .t-play-legal-section h2 {
    font-size: 8vw;
    margin-bottom: 1.5vw;
    color: #4192c7;
    border-bottom: 1px solid #4192c7;
    padding-bottom: 0.5vw;
  }
  .t-play-legal-section h3 {
    font-size: 5.4vw;
    margin-top: 2vw;
    margin-bottom: 1vw;
    color: #ffffff;
  }
  .t-play-legal-container {
    max-width: 80vw;
    margin: 0 auto;
    font-size: 5.1vw;
    line-height: 1.7;
    font-family: "Segoe UI", sans-serif;
  }
  .t-play-legal-container {
    max-width: 90vw;
    margin: 0 auto;
    font-size: 5.1vw;
    line-height: 1.7;
    font-family: "Segoe UI", sans-serif;
  }
  .t-play-blog-card {
    width: 80vw;
  }

  .t-play-blog-img {
    height: 45vw;
  }

  .t-play-blog-name {
    font-size: 4.8vw;
  }

  .t-play-blog-btn {
    font-size: 4vw;
    padding: 2vw 5vw;
  }

  .t-play-blog-title {
    font-size: 7vw;
    margin-bottom: 6vw;
  }
  .t-play-blog-about-section {
    background-color: #0d0f1d;
    color: #ffffff;
    font-family: "Segoe UI", sans-serif;
    padding: 0;
    padding-top: 52vw;
  }
  .t-play-blog-about-title {
    font-size: 7.8vw;
    color: #4192c7;
    margin-bottom: 3vw;
    text-align: center;
    text-shadow: 0 0.2vw 0.5vw rgba(65, 146, 199, 0.3);
  }
  .t-play-blog-about-content p {
    font-size: 4vw;
    margin-bottom: 2vw;
    line-height: 1.8;
    text-align: justify;
  }
  .t-play-blog-about-subtitle {
    font-size: 6vw;
    color: #70b9f1;
    margin-top: 4vw;
    margin-bottom: 2vw;
    border-left: 0.4vw solid #4192c7;
    padding-left: 1.5vw;
  }
  .t-play-blog-about-list li {
    font-size: 4.4vw;
    margin-bottom: 1.5vw;
    list-style: disc;
    line-height: 1.6;
  }
  .t-play-blog-section {
    background-color: #0d0f1d;
    padding: 6vw 3vw;
    padding-top: 50vw;
    color: #ffffff;
    font-family: "Segoe UI", sans-serif;
  }
  .t-play-cart-page {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 2vw;
    margin-top: 55vw;
    margin-bottom: 2vw;
  }
  .t-play-cart-title {
    font-size: 7vw;
    margin-bottom: 2vw;
    color: #4192c7;
    text-align: center;
  }
  .t-play-cart-item-name {
    font-size: 3.5vw;
  }
  .t-play-cart-item-qty {
    font-size: 3vw;
  }
  .t-play-cart-item-price {
    font-size: 3vw;
    font-weight: bold;
  }
  .t-play-checkout-btn {
    background-color: #4192c7;
    color: #000;
    border: none;
    padding: 1vw 2vw;
    font-size: 4.2vw;
    border-radius: 1vw;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
}
