* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
@font-face {
  font-family: impact;
  src: url("../fonts/impact.ttf") format('truetype');
}
@font-face {
  font-family: arbutusSlab-reg;
  src: url("../fonts/ArbutusSlab-Regular.ttf") format('truetype');
}
@font-face {
  font-family: ancizarserif-italic;
  src: url("../fonts/AncizarSerif-Italic.ttf") format('truetype');
}
@font-face {
  font-family: istokweb-regular;
  src: url("../fonts/IstokWeb-Regular.ttf") format('truetype');
}
@font-face {
  font-family: istokweb-bold;
  src: url("../fonts/IstokWeb-Bold.ttf") format('truetype');
} 

:root {
  /* JK logo guideline PDF — core palette */
  --jk-magenta: #ff0383;
  --jk-magenta-hover: #ff2d96;
  --jk-cyan: #0099fc;
  --jk-navy: #1a2968;
  --jk-navy-dark: #0f1740;
  --jk-magenta-rgb: 255, 3, 131;
  --jk-cyan-rgb: 0, 153, 252;
  --jk-navy-rgb: 26, 41, 104;

  --ease-out-smooth: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;
  --duration-slow: 0.55s;

  /* gamenow.info–style CTA glows (aligned with gh-cta) */
  --gh-cta-glow: rgba(45, 212, 232, 0.55);
  --gh-cta-glow-magenta: rgba(236, 72, 153, 0.45);
  --gh-grad-join: linear-gradient(135deg, #22d3ee 0%, #2563eb 48%, #a855f7 100%);
  --gh-grad-start: linear-gradient(135deg, #ec4899 0%, #a855f7 38%, #22d3ee 100%);
  --gh-font-cta: Montserrat, system-ui, sans-serif;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--jk-navy-dark);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .btn-join,
  .btn-login,
  .btn-black,
  .btn-white,
  .btn-clm,
  .btn-set,
  .btn-text,
  .scroll-orbit__hub {
    animation: none !important;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding-left: max(clamp(12px, 3vw, 24px), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(12px, 3vw, 24px), env(safe-area-inset-right, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  font-size: 1.3vw !important;
  height: auto;
  font-family: arbutusSlab-reg;
  background: var(--jk-navy-dark) !important;
  overflow-x: hidden;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.impact-reg{font-family: impact;}
.arb{font-family: arbutusSlab-reg !important;}
.anc{font-family: ancizarserif-italic !important;}
.isho{font-family: istokweb-regular !important;}
.isho-bold{font-family: istokweb-bold !important;}

.font-1{font-size: 1.3vw;}
.font-11{font-size: 0.9vw;}
.font-2{font-size: 3.4vw;}
.font-22{font-size: 3.8vw;}
.font-3{font-size: 4.5vw;}

.hh{width: 100vw;height: 99vh;}
.header-bg{
  background: linear-gradient(180deg, rgba(var(--jk-navy-rgb), 0.78) -47.33%, rgba(15, 23, 64, 0.85) 234.67%);
  padding: 10px;
}
.logo{
  position: absolute;
  top: 34px;
  left: 5px;
  z-index: 4;
  transition: transform var(--duration-normal) var(--ease-soft);
}
.logo img{
  width: 230px;
  transition: transform var(--duration-normal) var(--ease-soft), opacity var(--duration-fast) var(--ease-soft);
}
.logo:hover img {
  transform: scale(1.02);
}
@media (hover: none) {
  .logo:hover img {
    transform: none;
  }
}
.play-rght{
  position: absolute;
  right: 50px;
  bottom: 11px;
  width: min(20%, 200px);
  max-width: 200px;
  aspect-ratio: 1;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.play-rght .scroll-orbit-btn {
  pointer-events: auto;
}

.scroll-orbit-btn {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  transition:
    transform var(--duration-fast) var(--ease-out-smooth),
    filter var(--duration-normal) var(--ease-soft);
}
.scroll-orbit-btn:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 14px rgba(var(--jk-cyan-rgb), 0.65))
    drop-shadow(0 0 26px rgba(var(--jk-magenta-rgb), 0.4));
}
.scroll-orbit-btn:active {
  transform: scale(0.98);
}
.scroll-orbit-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
  filter: drop-shadow(0 0 12px rgba(var(--jk-cyan-rgb), 0.55));
}

.scroll-orbit__ring {
  position: absolute;
  inset: 0;
  animation: orbit-text-spin 22s linear infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-orbit__ring {
    animation: none;
  }
}

@keyframes orbit-text-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* CTA glow + brightness pulse (box-shadow/filter only — avoids fighting hover transforms) */
@keyframes tzCtaPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.2) inset,
      0 4px 20px rgba(0, 0, 0, 0.35),
      0 0 24px var(--gh-cta-glow),
      0 0 42px var(--gh-cta-glow-magenta);
    filter: brightness(1);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.3) inset,
      0 6px 28px rgba(0, 0, 0, 0.42),
      0 0 40px var(--gh-cta-glow),
      0 0 58px rgba(236, 72, 153, 0.42),
      0 0 72px rgba(45, 212, 232, 0.28);
    filter: brightness(1.06);
  }
}

/* Hero “SIGN IN NOW” — stronger glow + pulse (scoped to .centered) */
@keyframes tzCtaPulseHero {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.32) inset,
      0 4px 22px rgba(0, 0, 0, 0.4),
      0 0 30px var(--gh-cta-glow),
      0 0 54px var(--gh-cta-glow-magenta),
      0 0 78px rgba(45, 212, 232, 0.24),
      0 0 105px rgba(236, 72, 153, 0.14);
    filter: brightness(1)
      drop-shadow(0 0 16px rgba(45, 212, 232, 0.55))
      drop-shadow(0 0 32px rgba(236, 72, 153, 0.32));
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.45) inset,
      0 8px 34px rgba(0, 0, 0, 0.5),
      0 0 52px var(--gh-cta-glow),
      0 0 86px rgba(236, 72, 153, 0.55),
      0 0 115px rgba(45, 212, 232, 0.42),
      0 0 140px rgba(168, 85, 247, 0.16);
    filter: brightness(1.16)
      drop-shadow(0 0 28px rgba(45, 212, 232, 0.85))
      drop-shadow(0 0 48px rgba(236, 72, 153, 0.55))
      drop-shadow(0 0 64px rgba(168, 85, 247, 0.28));
  }
}

.scroll-orbit__svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.scroll-orbit__text {
  fill: #2dd4e8;
  font-family: var(--gh-font-cta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: fill var(--duration-normal) var(--ease-soft);
}
.scroll-orbit-btn:hover .scroll-orbit__text {
  fill: #5eeaff;
  filter: drop-shadow(0 0 6px rgba(45, 212, 232, 0.85));
}

.scroll-orbit__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 120px;
  max-height: 120px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: var(--gh-grad-start);
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 4px 20px rgba(0, 0, 0, 0.35),
    0 0 28px var(--gh-cta-glow),
    0 0 44px var(--gh-cta-glow-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: tzCtaPulse 2.2s ease-in-out infinite 0.2s;
  transition:
    filter var(--duration-fast) ease,
    transform var(--duration-fast) var(--ease-out-smooth),
    box-shadow 0.2s ease;
  pointer-events: none;
}
.scroll-orbit-btn:hover .scroll-orbit__hub {
  animation: none;
  filter: brightness(1.1) saturate(1.05);
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 44px var(--gh-cta-glow-magenta),
    0 0 72px var(--gh-cta-glow);
}
.scroll-orbit-btn:active .scroll-orbit__hub {
  animation: none;
  filter: brightness(0.98);
  transform: translate(-50%, -50%) scale(0.97);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 4px 18px rgba(0, 0, 0, 0.45),
    0 0 24px var(--gh-cta-glow-magenta),
    0 0 40px var(--gh-cta-glow);
}
.scroll-orbit__arrow {
  width: 46%;
  height: 46%;
  display: block;
}
.banner-video{
  position:absolute;
  right:4px;
  bottom: 34%;
  width:20%;
  text-align: center;
  z-index: 1;
}
.banner-video img {
  width: 235px;
  transition: transform var(--duration-normal) var(--ease-soft);
}
.banner-video:hover img {
  transform: scale(1.03);
}
@media (hover: none) {
  .banner-video:hover img {
    transform: none;
  }
}
.banner-lorem{
  position:absolute;
  right: 2%;
  top: 13%;
  width: 17%;
  text-align: center;
  z-index: 2;
}
.lorem-box{
  background: #FFFFFF33;
  padding:21px;
  height: 170px;
  border-radius: 23px;
  color: #fff;
  transition:
    background-color var(--duration-normal) var(--ease-soft),
    box-shadow var(--duration-normal) var(--ease-soft),
    transform var(--duration-normal) var(--ease-out-smooth);
}
.lorem-box:hover {
  background: #FFFFFF44;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
@media (hover: hover) {
  .lorem-box:hover {
    transform: translateY(-2px);
  }
}
.pink-bg{
  background: linear-gradient(90deg, #b93177 0%, var(--jk-navy) 100%);
  border-radius: 23px;
  padding: 25px 30px;
  transition: box-shadow var(--duration-normal) var(--ease-soft);
}
.pink-bg:hover {
  box-shadow: 0 12px 40px rgba(var(--jk-magenta-rgb), 0.25);
}
/* —— CTAs aligned with https://gamenow.info/ (.gh-cta--join / .gh-cta--start) —— */
.btn-join,
.btn-login,
.btn-black,
.btn-clm,
.btn-set {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 11px clamp(18px, 3.5vw, 24px) !important;
  font-family: var(--gh-font-cta) !important;
  font-size: clamp(11px, 2.6vw, 13px) !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  background: var(--gh-grad-join) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 4px 20px rgba(0, 0, 0, 0.35),
    0 0 28px var(--gh-cta-glow),
    0 0 44px var(--gh-cta-glow-magenta);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  animation: tzCtaPulse 2.2s ease-in-out infinite;
  cursor: pointer;
}
@media (hover: hover) {
  .btn-join:hover,
  .btn-login:hover,
  .btn-black:hover,
  .btn-clm:hover,
  .btn-set:hover {
    filter: brightness(1.08);
    transform: translateY(-1px) scale(1.02);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.25) inset,
      0 8px 32px rgba(0, 0, 0, 0.4),
      0 0 36px var(--gh-cta-glow),
      0 0 56px rgba(236, 72, 153, 0.5);
  }
  .centered .btn-join:hover {
    animation: none;
    filter: brightness(1.12) saturate(1.08)
      drop-shadow(0 0 26px rgba(45, 212, 232, 0.8))
      drop-shadow(0 0 44px rgba(236, 72, 153, 0.5));
    transform: translateY(-2px) scale(1.05);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.38) inset,
      0 12px 42px rgba(0, 0, 0, 0.48),
      0 0 56px var(--gh-cta-glow),
      0 0 92px rgba(236, 72, 153, 0.55),
      0 0 120px rgba(45, 212, 232, 0.38);
  }
}
.btn-join:active,
.btn-login:active,
.btn-black:active,
.btn-clm:active,
.btn-set:active {
  transform: translateY(0) scale(0.98);
  filter: brightness(0.97);
}
.centered .btn-join:active {
  filter: brightness(1.02) drop-shadow(0 0 18px rgba(45, 212, 232, 0.4));
}

.btn-white,
.btn-text {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 11.5rem);
  padding: clamp(12px, 2vw, 15px) clamp(26px, 5vw, 34px) !important;
  font-family: var(--gh-font-cta) !important;
  font-size: clamp(11px, 2.8vw, 13px) !important;
  font-weight: 800 !important;
  letter-spacing: 0.2em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  background: var(--gh-grad-start) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 6px 28px rgba(0, 0, 0, 0.45),
    0 0 32px var(--gh-cta-glow-magenta),
    0 0 52px var(--gh-cta-glow);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  animation: tzCtaPulse 2.2s ease-in-out infinite 0.4s;
  cursor: pointer;
}
@media (hover: hover) {
  .btn-white:hover,
  .btn-text:hover {
    filter: brightness(1.1) saturate(1.05);
    transform: translateY(-2px) scale(1.03);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.22) inset,
      0 10px 40px rgba(0, 0, 0, 0.5),
      0 0 44px var(--gh-cta-glow-magenta),
      0 0 72px var(--gh-cta-glow);
  }
}
.btn-white:active,
.btn-text:active {
  transform: translateY(0) scale(0.98);
  filter: brightness(0.98);
}

.btn-text {
  min-width: 0;
  font-size: clamp(12px, 2.5vw, 22px) !important;
  letter-spacing: 0.18em !important;
}

.btn-join:focus-visible,
.btn-login:focus-visible,
.btn-black:focus-visible,
.btn-white:focus-visible,
.btn-clm:focus-visible,
.btn-set:focus-visible,
.btn-text:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.yellow{
  background: linear-gradient(90deg, var(--jk-cyan) 0%, var(--jk-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.claim-bg{
  background: linear-gradient(179.78deg, var(--jk-cyan) -55.07%, #050814 99.81%);
  padding-bottom: 5rem;
}

.box-bg{
  background-color: var(--jk-navy);
  padding: 12px;
  border-radius: 12px; 
  height: 120px;
  margin-bottom: 1rem;
}
.box-bg img{width: 30px !important;}
.box-text{
  font-size: 16px;
  color: rgba(255, 255, 255, 0.69);
  line-height: 1.2;
}
.bg-quick{
  /* background: url('../images/bg.png'); */
  background: var(--jk-navy);
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  transition: box-shadow var(--duration-slow) var(--ease-soft);
}
.bg-works{
  background: url('../images/bg-right.png');
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-works .order-sm-1 img {
  transition: transform var(--duration-slow) var(--ease-soft), box-shadow var(--duration-normal) var(--ease-soft);
}
@media (hover: hover) {
  .bg-works .order-sm-1:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }
}

@media (max-width: 520px) {
.claim-container {
  width: 96%;
  height: 50px;
}
.phone-input {
  height: 50px;
  font-size: 13px;
  padding-left: 9px;
}
.claim-button {
  height: 50px;
  width: 130px;
  font-size: 13px;
}
}

.grad{
  background: linear-gradient(to right, var(--jk-cyan), var(--jk-magenta));
  background-clip: text;
  color: transparent;
}
.mt-7{margin-top: 8rem;}
.gray-box{
  background: #0000002B;
  border-radius: 22px;
  padding: 55px 0px 20px 0px;
  gap: 1rem;
  text-align: center;
  color: #fff;
  display: flex;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition:
    background-color var(--duration-normal) var(--ease-soft),
    box-shadow var(--duration-normal) var(--ease-soft),
    transform var(--duration-normal) var(--ease-out-smooth);
}
@media (hover: hover) {
  .gray-box:hover {
    background: #00000042;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    transform: translateY(-6px);
  }
  .gray-box:hover img {
    transform: scale(1.05);
  }
}
.mt-n{margin-top: 12vw !important;}
.w-35{width: 35%;}
.w-70{width: 70%;}
.gray-box img{
  width: 150px;
  transition: transform var(--duration-normal) var(--ease-out-smooth);
}
.blue-bg{
  background: linear-gradient(180deg, var(--jk-cyan) 0%, var(--jk-navy) 100%);
  border-radius: 23px;
  padding: 1.6rem;
}
.footers{
  padding: 6vw 0px 2vw;
  background: var(--jk-navy);
  border-radius: 15px 15px 0px 0px;
}
.ft-abs-a{position: absolute;left: -52px;bottom: 0px;transform: scaleX(-1);}
.ft-abs-b{position: absolute;right: 0px;bottom: 0px;}
.ft-coin{position: absolute;left: 24%;top: 34%;filter: blur(3px);z-index:-1;}

.gray-box-reward{
  background: #ffffff12;
  border-radius: 22px;
  height: auto;
  gap: 20px;
  display: flex;
  font-weight: 700;
  justify-content: center;
  padding: 15px;
  align-items: center;
  flex-direction: column;
}

/* .hv-image:hover + .hover-image {
  display: block;
}

.hover-image{
  display: none;
  position: absolute;
  width: 96.7%;
  padding: 2rem;
  bottom: 0px;
  background: #000000cf;
} */
 .hover-image {
  display: none;
  position: absolute;
  width: 96.7%;
  padding: 2rem;
  bottom: 0;
  background: #000000cf;
}

.hover-box:hover .hover-image {
  display: block;
}
.centered{
  position: absolute;
  top: 27%;
  left: 5%;
  max-width: min(92vw, 720px);
  transition: opacity var(--duration-slow) var(--ease-soft);
  z-index: 3;
}
.centered .btn-join {
  min-height: 44px;
  min-width: 120px;
  position: relative;
  z-index: 1;
  animation: tzCtaPulseHero 1.75s ease-in-out infinite;
}
.w-centered{position: absolute;top: 10%;left: 50%;transform: translate(-50%, -50%);}
.w-game{position: absolute;width:66%;top:25%;left: 6%;border: 10px solid #000;border-radius: 21px;}

.owl-carousel .owl-stage {
  display: flex;
}
.owl-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.owl-carousel .thumbnail {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 30px;
  font-size: 1vw;
  margin: 0 15px;
  color: #fff;
  padding: 23px;
  background: #141414;
  border-radius: 12px;
}
.owl-carousel .thumbnail .caption {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}
.owl-carousel .thumbnail .caption .flex-text {
  flex-grow: 1;
}
.white-logo-bg{
  background: #fff;
  border-radius: 12px;
  padding: 20px 15px;
}
.white-logo img {
    width: 115px;
}
.footer-text{color: rgba(200, 210, 230, 0.9);font-size: 14px;}
.ft{background: var(--jk-navy-dark);}
.chick{position: absolute;width: 100%;text-align: center;top: 0px;}
.custom-ml{margin-left: 5rem;}

main {
  flex: 1 0 auto;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 781px) and (max-width: 991.98px) {
  body {
    font-size: clamp(15px, 1.85vw, 17px) !important;
  }
  .font-3 {
    font-size: clamp(2.25rem, 4.5vw, 3rem);
  }
  .font-2 {
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  }
  .font-22 {
    font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  }
  .font-1 {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  }
  .play-rght {
    width: min(24%, 180px);
    max-width: 180px;
    bottom: 8px;
  }
  .banner-video {
    width: 22%;
    bottom: 30%;
  }
  .banner-lorem {
    width: 20%;
    top: 11%;
  }
  .centered {
    top: 24%;
    max-width: min(88vw, 560px);
  }
  .mt-n {
    margin-top: 8vw !important;
  }
  .pink-bg {
    padding: 22px 26px;
  }
}

@media (min-width: 1024px){}

@media (min-width: 1280px){
  .logo img {width: 185px;}
  .banner-lorem {top: 7%;}
}

@media (min-width: 1440px){
  .logo img {width: 222px;}
  .banner-lorem {top: 12%;}
}

@media (min-width: 1920px){}

@media (min-width: 2560px){
  .white-logo-bg img{width: 200px;}
  .logo img {width: 420px;}
  .lorem-box{height: 320px;}
  .banner-video img {width: 350px;}
}

@media (min-width: 377px ) and (max-width: 433px){

}

@media (max-width: 780px){
  .scroll-orbit__hub {
    width: 50%;
    height: 50%;
  }
  body{font-size: 16px !important;}
  .logo{top: -6px;left: 10px;}
  .logo img{width: 150px;}
  .w-35{width: 100%;}
  .btn-join,
  .btn-login,
  .btn-black,
  .btn-clm,
  .btn-set {
    padding: 10px 18px !important;
    font-size: clamp(10px, 3.4vw, 13px) !important;
    letter-spacing: 0.12em !important;
  }
  .btn-white,
  .btn-text {
    padding: 12px 22px !important;
    font-size: clamp(10px, 3.4vw, 13px) !important;
    letter-spacing: 0.16em !important;
    min-width: 0;
  }
  .custom-ml{margin: 0px 13px;margin-bottom: 3rem;}
  .font-3 {font-size: clamp(28px, 9vw, 40px);}
  .font-2 {font-size: clamp(20px, 5.5vw, 24px);}
  .font-22 {font-size: clamp(26px, 7vw, 34px);}
  .font-1 {font-size: 16px;}
  .font-18 {font-size: 14px;}
  .font-7 {font-size: 95px;}
  .centered {
    width: 93%;
    top: 4.5rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
  }
  .w-centered{width: 100%;}
  .w-game {width: 88%;}

  .owl-carousel .thumbnail {font-size: 14px;}
  .gray-box{
    gap: 14px;
    height: auto;
    min-height: 0;
    padding: 16px 20px;
  }
  .play-rght{
    right: -5px;
    bottom: -5px;
    width: min(38vw, 132px);
    max-width: 132px;
  }
  .banner-lorem{top: auto; width: min(30%, 160px); bottom: 38%;}
  .lorem-box{padding: 10px;height: auto; min-height: 90px;}
  .banner-video{width: auto;bottom: 19%; max-width: 38%;}
  .banner-video img{width: min(111px, 28vw);}
  .font-1-mob{font-size: 12px;}
  .scroll-orbit__text {
    letter-spacing: 1px; /* reduce gap */
    font-size: 10px;     /* smaller text */
  }
  .box-bg{height: 160px;font-size: 18px;}
  .pink-bg{padding: 13px; text-align: center;}
  .footers{padding: 47px 0px 55px;}
  .bg-works {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .bg-works .order-sm-1,
  .bg-works .order-sm-2 {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
} 

