:root {
  --navy: #09245d;
  --navy-strong: #052a78;
  --blue: #0086b6;
  --cyan: #58efe7;
  --cyan-soft: #67f6ea;
  --mint: #c6fcf5;
  --sky-start: #e5f6ff;
  --sky-end: #f6f8ff;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --text: #16356f;
  --muted: #6b7a98;
  --white: #ffffff;
  --gold: #ffd64f;
  --shadow: 0 18px 48px rgba(10, 28, 63, 0.16);
  --shadow-soft: 0 10px 28px rgba(10, 28, 63, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Inter", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: #d9dde3;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.preview-shell {
  width: 100%;
}

.app-container {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(180deg, var(--sky-start) 0%, #edf7ff 42%, var(--sky-end) 100%);
  overflow: hidden;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fa 100%);
  border-bottom: 1px solid rgba(9, 36, 93, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  isolation: isolate;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle, rgba(9, 36, 93, 0.14) 0 1.2px, transparent 1.35px) 0 0 / 14px 14px;
  pointer-events: none;
}

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

.logo-button {
  position: relative;
  width: 132px;
  height: 34px;
  flex: 0 0 132px;
  border: none;
  padding: 0;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}

.logo {
  position: absolute;
  top: 50%;
  left: -34px;
  width: 182px;
  max-width: none;
  transform: translateY(-50%);
  pointer-events: none;
}

.header-nav {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.header-nav::-webkit-scrollbar {
  display: none;
}

.nav-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 32px;
  min-width: 32px;
  flex: 0 0 32px;
  padding: 2px 3px;
  border-radius: 8px;
  color: #111;
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-icon:hover,
.nav-icon.active-nav {
  background: rgba(9, 36, 93, 0.08);
}

.nav-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.nav-icon span {
  display: block;
  width: 100%;
  text-align: center;
}

.nav-icon-lang {
  gap: 2px;
  width: 32px;
  min-width: 32px;
  flex: 0 0 32px;
  padding: 2px 3px;
}

.nav-icon-lang img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transform: none;
  margin: 0;
}

.nav-icon-lang span {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
  width: 100%;
  text-align: center;
}

.marquee-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--navy-strong);
  color: var(--white);
  overflow: hidden;
}

.speaker-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.marquee-text {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-text span {
  display: inline-block;
  padding-left: 100%;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  animation: notice-marquee 18s linear infinite;
}

@keyframes notice-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.hero-section {
  width: 100%;
}

.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 517;
  overflow: hidden;
  background: #051f56;
}

.hero-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  background: #051f56;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

#heroCarousel .hero-slide:first-child .hero-img {
  object-position: center center;
}

.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 26, 76, 0.6);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}

.hero-control:hover {
  background: rgba(7, 26, 76, 0.85);
}

.hero-control-prev {
  left: 8px;
}

.hero-control-next {
  right: 8px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.hero-dot.active {
  background: var(--white);
}

/* Home */
#page-home .promotions-section {
  position: relative;
  overflow: visible;
  padding: 26px 18px 18px;
  background: linear-gradient(180deg, #9cd9fc 0%, #d8f2ff 68%, #def7ff 100%);
}

#page-home .section-title {
  margin: 0 0 20px;
  text-align: center;
  font-size: 38px;
  font-family: "Arial Black", "Inter", sans-serif;
  letter-spacing: 1px;
  line-height: 1;
  color: transparent;
}

#page-home .section-title .title-3d {
  position: relative;
  display: inline-block;
}

#page-home .section-title .title-3d::before {
  content: attr(data-text);
  position: absolute;
  left: 1px;
  top: 3px;
  width: 100%;
  z-index: 0;
  background: linear-gradient(180deg, #0a6b8a 0%, #04405e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(0.3px);
}

#page-home .section-title .title-3d::after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  top: 6px;
  width: 100%;
  z-index: -1;
  background: linear-gradient(180deg, #053c52 0%, #021e30 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(1.5px);
  opacity: 0.6;
}

#page-home .section-title .title-text {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #5fd4dc 0%, #0085b8 60%, #005a7c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.15);
}

#page-home .promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 38px;
  overflow: visible;
}

#page-home .promo-card {
  position: relative;
  min-height: 138px;
  padding: 18px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #c6fcf5 87%);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    5px 5px 16px rgba(0, 199, 192, 0.5),
    0 0 24px rgba(0, 199, 192, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: visible;
  transform: perspective(800px) rotateX(1deg) rotateY(-0.5deg);
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#page-home .promo-card:hover {
  transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateY(-3px);
  box-shadow:
    5px 8px 22px rgba(0, 199, 192, 0.55),
    0 0 30px rgba(0, 199, 192, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#page-home .promo-copy {
  position: relative;
  z-index: 3;
}

#page-home .promo-copy h2 {
  max-width: 52%;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.03;
  color: var(--navy);
  text-shadow: 0 1px 2px rgba(9, 36, 93, 0.08);
}

#page-home .promo-copy p {
  max-width: 54%;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--blue);
}

#page-home .promo-img {
  position: absolute;
  z-index: 1;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 60, 120, 0.18));
}

#page-home .promo-card--astronaut .promo-img {
  width: 146px;
  right: -20px;
  bottom: -2px;
}

#page-home .promo-card--dice .promo-img {
  width: 160px;
  right: -8px;
  bottom: 2px;
}

#page-home .promo-card--rocket .promo-img {
  width: 144px;
  right: -28px;
  top: -8px;
}

#page-home .promo-card--shield .promo-img {
  width: 134px;
  right: -20px;
  top: 2px;
}

#page-home .casino-section {
  position: relative;
  overflow: visible;
  padding: 55px 14px 22px;
  background: #def7ff;
}

#page-home .casino-card {
  position: relative;
  display: flex;
  gap: 10px;
  min-height: 195px;
  padding: 20px 16px 18px;
  border-radius: 16px;
  border: 2px solid rgba(103, 246, 234, 0.95);
  background: linear-gradient(135deg, #09245d 0%, #0a2f7a 50%, #052a78 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  overflow: visible;
}

#page-home .casino-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  border: 3px solid rgba(76, 242, 234, 0.92);
  box-shadow:
    0 0 16px rgba(76, 242, 234, 0.45),
    inset 0 0 12px rgba(76, 242, 234, 0.12);
  pointer-events: none;
}

#page-home .casino-copy,
#page-home .casino-art {
  position: relative;
  z-index: 2;
}

#page-home .casino-copy {
  width: 58%;
  padding: 16px 0 8px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#page-home .casino-copy h2 {
  max-width: 100%;
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#page-home .casino-copy p {
  max-width: 100%;
  margin: 3px 0 0;
  font-size: 10px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

#page-home .slot-button {
  width: 100px;
  min-height: 50px;
  margin-top: auto;
  padding: 8px 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(180deg, #3cbeca 0%, #0486b6 87%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  font-size: 18px;
  font-weight: 900;
  line-height: 0.88;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(4, 134, 182, 0.45);
}

#page-home .slot-button span {
  display: block;
}

#page-home .casino-art {
  flex: 1;
  overflow: visible;
  min-height: 155px;
}

#page-home .casino-art-back {
  position: absolute;
  left: -14px;
  bottom: -8px;
  width: 115px;
  transform: translateY(15px);
  filter: drop-shadow(0 8px 14px rgba(48, 0, 90, 0.35));
}

#page-home .casino-art-back-secondary {
  position: absolute;
  right: -10px;
  bottom: 16px;
  width: 115px;
  transform: translateY(15px);
  filter: drop-shadow(0 10px 16px rgba(18, 40, 92, 0.25));
}

#page-home .casino-model {
  position: absolute;
  right: -18px;
  bottom: -4px;
  width: 220px;
  height: calc(100% + 96px);
  max-width: none;
  transform: translateY(22px) scale(1.08);
  transform-origin: bottom center;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

/* Shared content sections */
.shop-section,
.slots-section,
.info-section,
.about-section {
  padding: 20px 16px 26px;
}

.shop-section,
.slots-section {
  background: linear-gradient(180deg, #eef8ff 0%, #ffffff 100%);
}

.shop-intro,
.slots-intro {
  margin-bottom: 20px;
}

.shop-intro h1,
.slots-intro h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.08;
  color: var(--navy);
}

.shop-intro p,
.slots-intro p {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
  color: #31517c;
}

.click-hint {
  color: var(--blue) !important;
  font-weight: 700;
}

/* Shop */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.product-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(9, 36, 93, 0.08);
  box-shadow: 0 10px 24px rgba(9, 36, 93, 0.08);
}

.product-image {
  min-height: 210px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f4f8ff 0%, #e9f5ff 100%);
}

.product-image img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.product-tee-img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  transform: none;
}

.product-info {
  padding: 16px;
}

.product-info h2 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.color-options,
.size-options {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.color-dot,
.size-btn {
  border: none;
  cursor: pointer;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.color-dot.black {
  background: #111;
}

.color-dot.white {
  background: #f1f1f1;
}

.selected-ring {
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.08),
    0 0 0 2px rgba(0, 134, 182, 0.22);
}

.size-btn {
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(9, 36, 93, 0.06);
  color: #7a869d;
  font-size: 10px;
  font-weight: 700;
}

.size-btn.active {
  background: rgba(0, 134, 182, 0.12);
  color: var(--navy);
}

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-old {
  font-size: 11px;
  font-weight: 700;
  color: #98a4b8;
  text-decoration: line-through;
}

.price-new {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
}

.btn-buy {
  margin-left: auto;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #0691c0, #09245d);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.merch-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7ffff 0%, #c9fcf5 100%);
  border: 2px solid rgba(88, 239, 231, 0.9);
  box-shadow: 0 6px 16px rgba(0, 174, 199, 0.18);
}

.merch-media {
  min-height: 156px;
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(243, 249, 252, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.merch-media img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.merch-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 6px 2px;
}

.merch-info {
  flex: 1;
  min-width: 0;
}

.merch-colors {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 14px;
  margin-bottom: 8px;
}

.merch-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(9, 36, 93, 0.16);
  background: #fff;
  cursor: pointer;
}

.merch-dot-active {
  box-shadow: 0 0 0 2px rgba(0, 130, 181, 0.18);
}

.merch-dot-gold {
  background: #ffd84e;
  border-color: #16356f;
}

.merch-dot-navy {
  background: #0a2e7a;
  border-color: #16356f;
}

.merch-dot-white {
  background: rgba(255, 255, 255, 0.92);
}

.merch-copy h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}

.merch-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.merch-price .price-old {
  font-size: 10px;
}

.merch-price .price-new {
  font-size: 11px;
}

.mini-buy {
  margin-left: 0;
}

.merch-buy {
  min-width: 66px;
  padding: 8px 10px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0691c0, #09245d);
  box-shadow: none;
}

.merch-buy:hover {
  background: linear-gradient(135deg, #057da6, #081f50);
}

/* Slots */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.slot-card {
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(9, 36, 93, 0.06);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(9, 36, 93, 0.08);
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slot-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(9, 36, 93, 0.12);
}

.slot-img-wrapper {
  aspect-ratio: 1;
  border-radius: 18px;
  background: linear-gradient(180deg, #eef7ff 0%, #e0eefb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slot-img-wrapper img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.slot-name {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.4px;
  color: var(--navy);
}

/* Info and trust */
.info-section {
  padding-top: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.top-games-carousel {
  --top-games-gap: 8px;
  --top-games-card-size: clamp(140px, 38vw, 220px);
  overflow: hidden;
  margin-bottom: 16px;
  padding-block: 4px;
}

.top-games-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: top-games-scroll-right 30s linear infinite;
}

.top-games-carousel:hover .top-games-track,
.top-games-carousel:focus-within .top-games-track {
  animation-play-state: paused;
}

.top-games-group {
  display: flex;
  flex-shrink: 0;
  gap: var(--top-games-gap);
  padding-right: var(--top-games-gap);
}

.game-thumb {
  flex: 0 0 var(--top-games-card-size);
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef7ff 0%, #e0eefb 100%);
  box-shadow: 0 6px 16px rgba(9, 36, 93, 0.08);
}

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

@keyframes top-games-scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.btn-more-games {
  display: block;
  margin: 0 auto 20px;
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #0691c0, #09245d);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.section-divider {
  margin: 18px 0;
  border: none;
  border-top: 1px solid rgba(9, 36, 93, 0.1);
}

.trust-section {
  margin: 0 -16px;
  padding: 8px 16px 26px;
  background: var(--navy);
  color: var(--white);
}

.section-divider-trust {
  margin: 12px 0 18px;
  border-top-color: rgba(76, 114, 255, 0.55);
}

.underage-section {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.underage-img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex-shrink: 0;
}

.underage-text h3,
.licences-section h3,
.certifications-section h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.underage-text p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.licences-section,
.certifications-section {
  margin-bottom: 18px;
}

.licence-icons,
.cert-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.licence-icons img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.cert-logo-round {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.cert-logo-wide {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.cert-logo-badge {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 4px 8px 4px 4px;
  border-radius: 6px;
  background: linear-gradient(180deg, #2e67c5 0%, #173f92 100%);
  box-shadow: inset 0 0 0 1px rgba(185, 219, 255, 0.24);
}

.cert-badge-mark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #f3cb4b;
  color: #113b86;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.cert-badge-copy {
  color: #eef6ff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.payment-section {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.payment-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.payment-label {
  min-width: 72px;
  flex-shrink: 0;
}

.payment-label strong {
  display: block;
  font-size: 13px;
  line-height: 1.1;
  color: var(--white);
}

.currency-tag {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #dce8ff;
}

.payment-icons {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.payment-brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1;
  margin-right: 4px;
}

.payment-payid {
  gap: 2px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.payment-payid-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--white);
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.payment-paynow {
  color: #d23daa;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.payment-tile,
.payment-text-box {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(15, 46, 125, 0.18);
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.payment-tile {
  padding: 4px;
  object-fit: contain;
}

.payment-text-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.3px;
  color: var(--navy);
}

.partners-section {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.partners-label {
  min-width: 72px;
  flex-shrink: 0;
}

.partners-label strong {
  font-size: 13px;
  line-height: 1.15;
  color: var(--white);
}

.partners-icons {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 14px;
  align-items: center;
}

.partner-logo {
  width: 100%;
  max-height: 34px;
  object-fit: contain;
  justify-self: center;
}

/* About */
.about-section {
  min-height: calc(100vh - 120px);
  background: var(--navy);
  color: var(--white);
}

.about-content h1,
.about-content h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.brand-name {
  color: var(--gold);
}

.about-content p,
.seo-section p {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.86);
}

.section-divider-dark {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.seo-logo {
  width: 72px;
  margin-bottom: 10px;
}

.seo-section h3,
.follow-section h4 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
}

.social-strip {
  width: 100%;
  max-width: 240px;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 11, 30, 0.62);
  z-index: 1000;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 28px 20px 20px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: transparent;
  color: #8893a7;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-body h3 {
  margin: 0 0 18px;
  text-align: center;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.modal-btn {
  display: block;
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 14px 18px;
  color: var(--white);
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.modal-btn + .modal-btn {
  margin-top: 12px;
}

.telegram {
  background: linear-gradient(135deg, #0088cc, #1365b3);
}

.whatsapp {
  background: linear-gradient(135deg, #0088cc, #1365b3);
}

.cs-my {
  background: linear-gradient(135deg, #0088cc, #1365b3);
}

.lang-btn {
  background: linear-gradient(135deg, #0691c0, #09245d);
}

.lang-btn.is-active {
  box-shadow: inset 0 0 0 3px #ff5b2e;
}

.download-modal-box {
  text-align: center;
}

.download-game-preview {
  width: 120px;
  height: 120px;
  margin: 0 auto 14px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef7ff 0%, #e0eefb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-game-preview img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 32px;
  background: linear-gradient(135deg, #0691c0, #09245d);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

.btn-download.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.oos-modal p {
  margin: 0;
  color: #50627f;
  text-align: center;
  line-height: 1.6;
  font-size: 13px;
}

@media (max-width: 767px) {
  #page-home .casino-art-back {
    transform: translateY(10px);
  }
}

/* Small phones */
@media (max-width: 380px) {
  .header {
    padding: 10px 10px 9px;
  }

  .logo-button {
    width: 120px;
    height: 31px;
    flex-basis: 120px;
  }

  .logo {
    left: -31px;
    width: 166px;
  }

  .header-nav {
    gap: 4px;
  }

  .nav-icon {
    width: 28px;
    min-width: 28px;
    flex-basis: 28px;
    padding-inline: 2px;
    font-size: 8px;
  }

  .nav-icon img {
    width: 18px;
    height: 18px;
  }

  .nav-icon-lang img {
    width: 18px;
    height: 18px;
    transform: none;
  }

  .nav-icon-lang span {
    font-size: inherit;
  }

  .marquee-bar {
    padding: 7px 10px;
  }

  .marquee-text span {
    font-size: 11px;
  }

  #page-home .promotions-section {
    padding: 22px 14px 16px;
  }

  #page-home .section-title {
    font-size: 31px;
  }

  #page-home .promo-grid {
    gap: 14px;
    padding-top: 28px;
  }

  #page-home .promo-card {
    min-height: 126px;
    padding: 15px 12px;
  }

  #page-home .promo-copy h2 {
    max-width: 56%;
    font-size: 15px;
  }

  #page-home .promo-copy p {
    max-width: 58%;
  }

  #page-home .promo-card--astronaut .promo-img {
    width: 128px;
    right: -14px;
    bottom: -1px;
  }

  #page-home .promo-card--dice .promo-img {
    width: 140px;
    right: -14px;
    bottom: 2px;
  }

  #page-home .promo-card--rocket .promo-img {
    width: 128px;
    right: -36px;
    top: -6px;
  }

  #page-home .promo-card--shield .promo-img {
    width: 120px;
    right: -16px;
    top: 2px;
  }

  #page-home .casino-section {
    padding: 46px 14px 18px;
  }

  #page-home .casino-card {
    min-height: 180px;
    padding: 16px 12px 14px;
  }

  #page-home .casino-card::before {
    inset: 8px;
  }

  #page-home .casino-copy {
    width: 56%;
    padding: 12px 0 6px 10px;
  }

  #page-home .casino-copy h2 {
    font-size: 20px;
    white-space: normal;
  }

  #page-home .slot-button {
    width: 92px;
    min-height: 46px;
    font-size: 17px;
  }

  #page-home .casino-art-back {
    width: 98px;
    left: -10px;
  }

  #page-home .casino-art-back-secondary {
    width: 98px;
    right: -8px;
    bottom: 12px;
  }

  #page-home .casino-model {
    width: 194px;
    right: -16px;
    height: calc(100% + 78px);
  }

  .shop-section,
  .slots-section,
  .info-section,
  .about-section {
    padding: 18px 14px 22px;
  }

  .shop-intro h1,
  .slots-intro h1 {
    font-size: 24px;
  }

  .shop-intro p,
  .slots-intro p,
  .about-content p,
  .seo-section p {
    font-size: 12px;
  }

  .product-image {
    min-height: 180px;
  }

  .merch-grid,
  .slots-grid {
    gap: 10px;
  }

  .trust-section {
    margin: 0 -14px;
    padding-inline: 14px;
  }

  .underage-img {
    width: 72px;
    height: 72px;
  }

  .underage-text h3,
  .licences-section h3,
  .certifications-section h3 {
    font-size: 14px;
  }

  .underage-text p {
    font-size: 11px;
  }

  .payment-group,
  .partners-section {
    gap: 10px;
  }

  .payment-label,
  .partners-label {
    min-width: 58px;
  }

  .payment-label strong,
  .partners-label strong,
  .currency-tag {
    font-size: 12px;
  }

  .payment-tile,
  .payment-text-box {
    width: 32px;
    height: 32px;
  }

  .partner-logo {
    max-height: 30px;
  }
}

/* Tablet and desktop shell */
@media (min-width: 768px) {
  body {
    padding: 24px 20px 40px;
    background:
      radial-gradient(circle at top left, rgba(147, 208, 251, 0.35), transparent 28%),
      radial-gradient(circle at top right, rgba(198, 252, 245, 0.25), transparent 24%),
      linear-gradient(180deg, #edf4fb 0%, #dde6f0 100%);
  }

  .preview-shell {
    width: min(100%, 960px);
    margin: 0 auto;
  }

  .app-container {
    min-height: auto;
    border-radius: 26px;
    box-shadow: var(--shadow);
  }

  .header {
    padding: 18px 24px 14px;
  }

  .logo-button {
    width: 168px;
    height: 42px;
    flex-basis: 168px;
  }

  .logo {
    left: -42px;
    width: 228px;
  }

  .header-nav {
    gap: 12px;
  }

  .nav-icon {
    width: 42px;
    min-width: 42px;
    flex-basis: 42px;
    padding: 4px 6px;
    font-size: 10px;
    gap: 4px;
  }

  .nav-icon img {
    width: 26px;
    height: 26px;
  }

  .nav-icon-lang img {
    width: 26px;
    height: 26px;
  }

  .nav-icon-lang span {
    font-size: inherit;
  }

  .marquee-bar {
    padding: 10px 18px;
  }

  .marquee-text span {
    font-size: 15px;
  }

  .hero-control {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }

  #page-home .promotions-section {
    padding: 34px 28px 24px;
  }

  #page-home .section-title {
    font-size: 58px;
    margin-bottom: 24px;
  }

  #page-home .promo-grid {
    gap: 24px;
    padding-top: 46px;
  }

  #page-home .promo-card {
    min-height: 210px;
    padding: 22px 18px;
    border-radius: 22px;
  }

  #page-home .promo-copy h2 {
    max-width: 48%;
    font-size: 30px;
  }

  #page-home .promo-copy p {
    max-width: 50%;
    margin-top: 10px;
    font-size: 16px;
  }

  #page-home .promo-card--astronaut .promo-img {
    width: 206px;
    right: -18px;
    bottom: -3px;
  }

  #page-home .promo-card--dice .promo-img {
    width: 188px;
    right: 20px;
    bottom: 4px;
  }

  #page-home .promo-card--rocket .promo-img {
    width: 174px;
    right: 0;
    top: 6px;
  }

  #page-home .promo-card--shield .promo-img {
    width: 176px;
    right: -12px;
    top: 10px;
  }

  #page-home .casino-section {
    padding: 76px 26px 28px;
  }

  #page-home .casino-card {
    min-height: 290px;
    padding: 28px 22px 22px;
    border-radius: 22px;
  }

  #page-home .casino-card::before {
    inset: 14px;
    border-radius: 18px;
  }

  #page-home .casino-copy {
    width: 56%;
    padding: 20px 0 10px 14px;
  }

  #page-home .casino-copy h2 {
    font-size: 42px;
    line-height: 1.02;
    white-space: normal;
  }

  #page-home .casino-copy p {
    font-size: 16px;
    line-height: 1.32;
  }

  #page-home .slot-button {
    width: 150px;
    min-height: 74px;
    font-size: 28px;
    border-radius: 16px;
  }

  #page-home .casino-art-back {
    width: 164px;
    left: 155px;
    bottom: -8px;
  }

  #page-home .casino-art-back-secondary {
    width: 160px;
    right: -6px;
    bottom: 14px;
  }

  #page-home .casino-model {
    width: 308px;
    height: calc(100% + 122px);
    right: -24px;
    transform: translateY(36px) scale(1.08);
  }

  .shop-section,
  .slots-section,
  .info-section,
  .about-section {
    padding: 26px 24px 30px;
  }

  .shop-intro h1,
  .slots-intro h1 {
    font-size: 40px;
  }

  .shop-intro p,
  .slots-intro p {
    font-size: 15px;
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .product-image {
    min-height: 260px;
  }

  .product-image img {
    max-height: 220px;
  }

  .product-info h2 {
    font-size: 20px;
  }

  .merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .merch-media {
    min-height: 200px;
  }

  .merch-media img {
    max-height: 150px;
  }

  .merch-copy h3,
  .slot-name {
    font-size: 16px;
  }

  .slots-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .slot-card {
    padding: 14px;
  }

  .slot-name {
    margin-top: 12px;
  }

  .info-section {
    padding-top: 12px;
  }

  .top-games-carousel {
    --top-games-gap: 12px;
    --top-games-card-size: 212px;
  }

  .btn-more-games {
    font-size: 15px;
    padding: 12px 30px;
  }

  .trust-section {
    margin: 0 -24px;
    padding: 10px 24px 30px;
  }

  .payment-tile,
  .payment-text-box {
    width: 42px;
    height: 42px;
  }

  .partners-icons {
    gap: 14px 16px;
  }

  .partner-logo {
    max-height: 38px;
  }

  .about-content h1,
  .about-content h2 {
    font-size: 34px;
  }

  .about-content p,
  .seo-section p {
    font-size: 15px;
  }

  .seo-section h3,
  .follow-section h4 {
    font-size: 18px;
  }

  .social-strip {
    max-width: 320px;
  }

  .modal-box {
    max-width: 420px;
    padding: 32px 24px 24px;
  }

  .modal-body h3 {
    font-size: 24px;
  }

  .modal-btn,
  .btn-download {
    font-size: 16px;
  }
}

@media (min-width: 1100px) {
  .preview-shell {
    width: min(100%, 1200px);
  }

  #page-home .promotions-section {
    padding: 44px 36px 30px;
  }

  #page-home .section-title {
    font-size: 68px;
    margin-bottom: 28px;
  }

  #page-home .promo-grid {
    gap: 28px;
    padding-top: 52px;
  }

  #page-home .promo-card {
    min-height: 245px;
    padding: 26px 22px;
    border-radius: 24px;
  }

  #page-home .promo-copy h2 {
    max-width: 44%;
    font-size: 34px;
  }

  #page-home .promo-copy p {
    max-width: 48%;
    margin-top: 12px;
    font-size: 18px;
  }

  #page-home .promo-card--astronaut .promo-img {
    width: 230px;
    right: -22px;
  }

  #page-home .promo-card--dice .promo-img {
    width: 215px;
    right: 34px;
    bottom: 4px;
  }

  #page-home .promo-card--rocket .promo-img {
    width: 198px;
    right: 6px;
    top: 8px;
  }

  #page-home .promo-card--shield .promo-img {
    width: 198px;
    right: -16px;
    top: 10px;
  }

  #page-home .casino-section {
    padding: 86px 34px 34px;
  }

  #page-home .casino-card {
    min-height: 330px;
    padding: 32px 28px 24px;
    border-radius: 26px;
  }

  #page-home .casino-card::before {
    inset: 16px;
    border-radius: 20px;
  }

  #page-home .casino-copy {
    width: 56%;
    padding: 24px 0 12px 20px;
  }

  #page-home .casino-copy h2 {
    font-size: 48px;
  }

  #page-home .casino-copy p {
    font-size: 18px;
  }

  #page-home .slot-button {
    width: 170px;
    min-height: 82px;
    font-size: 31px;
  }

  #page-home .casino-art-back {
    width: 190px;
    left: 153px;
    bottom: -10px;
  }

  #page-home .casino-art-back-secondary {
    width: 186px;
    right: -8px;
    bottom: 16px;
  }

  #page-home .casino-model {
    width: 356px;
    height: calc(100% + 146px);
    right: -30px;
  }

  .nav-icon-lang img {
    width: 26px;
    height: 26px;
  }

  .nav-icon-lang span {
    font-size: inherit;
  }

  .shop-section,
  .slots-section,
  .info-section,
  .about-section {
    padding-left: 34px;
    padding-right: 34px;
  }

  .shop-grid {
    gap: 22px;
  }

  .merch-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .slots-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

