:root {
  --red: #d52b1e;
  --deep: #8f1d16;
  --ink: #242426;
  --muted: #6d6868;
  --line: #e5dddd;
  --page: #f7f5f4;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--page);
  font-synthesis: none;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  padding-top: 80px;
  font-size: 16px;
  line-height: 1.75;
  background:
    radial-gradient(ellipse at 0 20%, #f1d3cf33, transparent 40%),
    linear-gradient(125deg, #fff0 60%, #f0e6e633);
}
a {
  color: var(--deep);
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  max-width: 100%;
}
p,
h1,
h2,
h3,
ul,
ol {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.17;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
}
h1 {
  font-size: clamp(32px, 2.6vw, 43px);
  font-weight: 800;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 21px;
  line-height: 1.35;
}
p,
li {
  overflow-wrap: break-word;
}
ul,
ol {
  padding-left: 23px;
}
li + li {
  margin-top: 10px;
}
li::marker {
  color: var(--red);
}
[hidden] {
  display: none !important;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
  border-radius: 4px;
}
.container {
  max-width: 1480px;
  margin: auto;
  padding: 0 32px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  padding: 12px 22px;
  background: #fff;
  z-index: 1100;
}
.skip-link:focus {
  top: 10px;
}
.eyebrow,
.section-kicker {
  display: block;
  font-size: 10px;
  letter-spacing: 0.17em;
  font-weight: 800;
  color: var(--red);
  line-height: 1.5;
}
.section-kicker {
  margin-bottom: 14px;
  font-size: 9px;
  color: #9e7983;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  max-width: 100%;
  text-align: center;
  transition:
    box-shadow 0.28s,
    transform 0.28s,
    background 0.28s;
}
.button:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 25%,
    #ffffff45 50%,
    transparent 75%
  );
  transform: translateX(-120%);
  transition: transform 0.55s;
}
.button-blue {
  background: #fff;
  color: var(--deep);
  border-color: #d7c8c5;
}
.button:active {
  transform: scale(0.97);
}
.button:disabled {
  opacity: 0.55;
  cursor: default;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 80px;
  z-index: 50;
  background: #fffdfcf5;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 18px #48122206;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 162px;
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: stretch;
  gap: 30px;
  margin-left: auto;
  height: 100%;
}
.desktop-nav a {
  display: flex;
  align-items: center;
  position: relative;
  color: #57474e;
  font-size: 13px;
  font-weight: 700;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--red) 0 43%,
    transparent 43% 57%,
    var(--red) 57%
  );
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.desktop-nav a[aria-current="page"] {
  color: var(--red);
}
.desktop-nav a[aria-current="page"]:after {
  transform: scaleX(1);
}
.header-tools,
.desktop-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-tools {
  margin-left: auto;
}
.desktop-actions .button {
  padding: 11px 18px;
  min-height: 42px;
}
.geo-switcher {
  position: relative;
  flex: 0 0 auto;
}
.geo-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 5px 11px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 4px 14px #48122209;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.geo-toggle:hover,
.geo-toggle[aria-expanded="true"] {
  border-color: #dd9ca9;
  box-shadow: 0 7px 22px #7c16321a;
}
.geo-toggle:active {
  transform: scale(0.97);
}
.geo-code,
.geo-option-code {
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
}
.geo-flag {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  object-fit: cover;
  background: #eef0f3;
  border: 1px solid #d7d8dc;
  border-radius: 50%;
  box-shadow: 0 1px 5px #24151a22;
}
.geo-chevron {
  width: 9px;
  height: 9px;
  margin-left: 1px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s var(--ease);
}
.geo-toggle[aria-expanded="true"] .geo-chevron {
  transform: translateY(2px) rotate(225deg);
}
.geo-menu {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  z-index: 55;
  width: max-content;
  padding: 8px;
  background: #111216;
  color: #fff;
  border: 1px solid #313238;
  border-radius: 16px;
  box-shadow: 0 22px 50px #2110164a;
}
.geo-menu-title {
  display: block;
  padding: 3px 5px 10px;
  color: #b8b8be;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.geo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: max-content;
  gap: 6px;
}
.geo-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  width: max-content;
  min-height: 44px;
  padding: 6px 8px;
  color: #f5f5f7;
  border: 1px solid transparent;
  border-radius: 11px;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.geo-option:hover,
.geo-option:focus-visible {
  color: #fff;
  background: #212228;
  border-color: #3c3d44;
  transform: translateY(-1px);
}
.geo-option .geo-flag {
  width: 30px;
  height: 30px;
}
.dock-launch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  min-height: 44px;
  border-radius: 8px;
  padding: 6px;
}
.dock-launch img {
  width: 20px;
}
.dock-launch b {
  border-radius: 50%;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  background: #f8e3e8;
  color: var(--red);
  font-size: 10px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 20px 24px;
  box-shadow: 0 20px 35px #4e152b15;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.mobile-menu nav a {
  width: min(100%, 360px);
  padding: 9px 12px;
  border-left: 2px solid transparent;
  transition:
    padding 0.25s,
    background 0.25s;
}
.mobile-menu nav a[aria-current="page"] {
  background: #fff1f4;
  border-color: var(--red);
}
.mobile-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.menu-scrim {
  position: fixed;
  inset: 80px 0 0;
  background: #38182155;
  z-index: 49;
}
.noscript-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 16px;
}
html:not([data-interactions]) .menu-toggle,
html:not([data-interactions]) .dock-launch,
html:not([data-interactions]) .geo-switcher,
html:not([data-interactions]) .wheel-launch {
  display: none !important;
}
.is-disclosing {
  overflow: hidden !important;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 216px;
  gap: 26px;
  margin-top: 28px;
  margin-bottom: 48px;
  align-items: start;
}
.content-column {
  min-width: 0;
}
.content-column > article {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 28px;
  min-width: 0;
}
.hero,
.promo-banner {
  position: relative;
  isolation: isolate;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eadde1;
  background: #fff9f9;
}
.hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 40px 38px;
}
.hero picture,
.promo-banner picture {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero img,
.promo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 55%;
  transition: transform 1s var(--ease);
}
.hero:after,
.promo-banner:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    #fffcfcfa 0%,
    #fffcfcec 28%,
    #fffcfc80 51%,
    #ffffff00 72%
  );
}
.hero-copy {
  width: 61%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.hero-lead {
  font-size: 15px;
  line-height: 1.75;
  color: #64535b;
}
.hero .eyebrow {
  font-size: 9px;
}
.content-section {
  padding: 34px 36px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  background-size: cover;
  background-position: right center;
  scroll-margin-top: 100px;
  position: relative;
  transition:
    border-color 0.35s,
    box-shadow 0.35s;
}
.content-section:before {
  content: "";
  position: absolute;
  left: -1px;
  top: 32px;
  width: 3px;
  height: 0;
  background: var(--red);
  border-radius: 4px;
  transition: height 0.7s var(--ease);
}
.content-section.edge-seen:before {
  height: 43px;
}
.content-section h2 {
  margin-bottom: 24px;
}
.section-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}
.topic-info-card {
  background: #fffcfc;
  background-size: cover;
  padding: 24px;
  border: 1px solid #eddee2;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    box-shadow 0.3s,
    border-color 0.3s,
    transform 0.3s;
  position: relative;
  overflow: hidden;
}
.topic-info-card h3 {
  color: var(--deep);
}
.topic-info-card p,
.topic-info-card li {
  position: relative;
}
.topic-info-card:after {
  content: "";
  position: absolute;
  right: 18px;
  top: 15px;
  width: 26px;
  height: 26px;
  background: url("swiss-cross.svg") center/contain no-repeat;
  opacity: 0.12;
  transition:
    transform 0.5s,
    opacity 0.5s;
}
.table-wrap {
  overflow: auto;
  width: 100%;
  min-width: 0;
  border: 1px solid #e6d4da;
  border-radius: 10px;
  scrollbar-color: #c58796 #f8eef1;
  scrollbar-width: thin;
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.65;
  font-size: 14px;
}
.table-wrap th {
  background: #f8e9ee;
  color: #7b2035;
  text-align: left;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.015em;
}
.table-wrap th,
.table-wrap td {
  padding: 15px 17px;
  vertical-align: top;
  border-bottom: 1px solid #eddee2;
  min-width: 130px;
}
.table-wrap tbody tr:last-child td {
  border: 0;
}
.table-wrap td {
  transition: background 0.22s;
  max-width: 580px;
}
.table-wrap th:first-child,
.table-wrap td:first-child {
  min-width: 170px;
}
.table-wrap tbody tr:nth-child(even) {
  background: #fffafb;
}
.table-wrap td:first-child {
  font-weight: 600;
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.comparison {
  padding: 25px;
  border: 1px solid #e6ced5;
  border-top: 3px solid var(--red);
  border-radius: 12px;
  background-size: cover;
  transition: box-shadow 0.3s;
}
.comparison > p:first-child {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--deep);
}
.comparison:nth-child(2) {
  border-top-color: #66535d;
}
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.review-card {
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 16px;
  border: 1px solid #ecd8df;
  border-radius: 14px;
  background-size: cover;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}
.review-card:last-child {
  grid-column: 1/-1;
}
.review-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.review-source-tag {
  font-size: 10px;
  color: #896974;
  align-self: center;
  max-width: 140px;
  line-height: 1.4;
}
.review-card blockquote {
  margin: 0;
  width: 100%;
  font-size: 15px;
}
.review-card > p {
  font-size: 12px;
  color: var(--deep);
  font-weight: 700;
}
.faq-item {
  border: 1px solid #ead8df;
  border-radius: 10px;
  overflow: hidden;
  background: #fffcfd;
  transition: border-color 0.3s;
}
.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  padding: 19px 54px 19px 22px;
  transition:
    background 0.3s,
    color 0.3s;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 25px;
  line-height: 1.5;
  color: var(--red);
  transition: transform 0.35s;
}
.faq-item[open] summary:after {
  transform: rotate(45deg);
}
.faq-item[open] summary {
  background: #f9e9ee;
  color: var(--deep);
}
.faq-answer {
  padding: 20px 22px;
  border-top: 1px solid #eddee3;
  font-size: 15px;
}

.promo-banner {
  min-height: 330px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
}
.promo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  width: 58%;
}
.promo-title {
  font-size: 31px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--deep);
}
.promo-copy > p:not(.promo-title) {
  font-size: 13px;
  line-height: 1.65;
  color: #6b4f5b;
}
.promo-banner:after {
  background: linear-gradient(
    90deg,
    #fffcfcfa 0%,
    #fffcfce8 28%,
    #fffcfc60 56%,
    transparent 77%
  );
}
.store-pair {
  display: flex;
  gap: 10px;
  max-width: 100%;
}
.store-button {
  background: #fff;
  color: #38292f;
  border-color: #d9c6cd;
  min-width: 152px;
  justify-content: flex-start;
  padding: 11px 15px;
}
.store-label {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 3px;
  white-space: nowrap;
  font-size: 10px;
}
.store-label strong {
  font-size: 14px;
}
.platform-mark {
  font-size: 23px;
  line-height: 1;
  color: var(--red);
}

.game-rail {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  background: #fff;
  overflow: hidden;
}
.rail-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}
.rail-heading p {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.rail-heading .eyebrow {
  font-size: 9px;
  margin-bottom: 5px;
}
.rail-toggle {
  padding: 8px 15px;
  border: 1px solid #ecd4db;
  border-radius: 7px;
  color: var(--deep);
  background: #fff5f7;
  font-size: 12px;
  transition: box-shadow 0.25s;
}
.rail-window {
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #ce8b9b transparent;
}
.rail-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: game-drift var(--rail-duration, 40s) linear infinite;
}
.game-group {
  display: flex;
  gap: 16px;
}
.game-card {
  width: 144px;
  flex: 0 0 144px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink);
  padding-bottom: 9px;
}
.game-card img {
  width: 144px;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s;
}
.game-card span {
  min-height: 37px;
}
.game-rail[data-paused="true"] .rail-track {
  animation-play-state: paused;
}
.game-rail[data-native="true"] .rail-track {
  animation: none;
}
.game-rail[data-native="false"] .rail-window {
  overflow: hidden;
}
.art-note {
  display: block;
  margin-top: 13px;
  font-size: 9px;
  letter-spacing: 0.04em;
  color: #927883;
}
@keyframes game-drift {
  to {
    transform: translateX(calc(-1 * var(--rail-distance)));
  }
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.side-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  background-size: cover;
}
.side-card h3 {
  font-size: 17px;
  margin-bottom: 19px;
}
.side-card .eyebrow {
  font-size: 8px;
  margin-bottom: 8px;
}
.side-link {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid #eedee3;
  transition:
    padding 0.3s,
    color 0.3s;
}
.side-link:last-child {
  border: 0;
}
.side-game {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  margin-top: 17px;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 700;
}
.side-game img {
  width: 58px;
  height: 55px;
  object-fit: cover;
  border-radius: 7px;
  transition: transform 0.35s;
}
.side-responsible {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #38242d;
  color: #fff;
  border-color: #38242d;
}
.side-responsible p {
  font-size: 14px;
}
.side-responsible small {
  color: #d8bdc8;
  font-size: 11px;
}
.side-responsible a {
  font-size: 12px;
  color: #fff;
}
.age {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  background: #f0e6e9;
  border-top: 1px solid #dfcbd2;
  padding-top: 42px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1fr 1.3fr;
  gap: 35px;
}
.footer-brand img {
  width: 160px;
  height: auto;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 13px;
  color: #75606a;
}
.footer-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
}
.footer-grid nav strong {
  margin-bottom: 9px;
}
.footer-grid nav a {
  position: relative;
}
.footer-grid nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s;
}
.footer-grid .footer-country-links {
  grid-column: 1/-1;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  padding: 20px;
  border: 1px solid #533442;
  border-radius: 12px;
  background: var(--deep);
  box-shadow: inset 0 1px 0 #ffffff0d;
}
.footer-grid .footer-country-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 7px 15px 7px 9px;
  border: 1px solid #875265;
  border-radius: 999px;
  background: #4a2636;
  color: #fff5f8;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.footer-grid .footer-country-links a:after {
  display: none;
}
.footer-country-links a:hover,
.footer-country-links a:focus-visible {
  border-color: #efa7ba;
  background: #6b2e45;
  color: #fff;
  transform: translateY(-1px);
}
.footer-country-links a[aria-current="page"] {
  border-color: #ffccd8;
  background: var(--red);
}
.footer-country-links .geo-flag {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1px solid #ffffff3d;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}
.responsible {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  font-size: 12px;
}
.responsible .age {
  color: var(--deep);
}
.responsible p {
  color: #78616b;
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid #dcc8d0;
  padding: 21px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: #826a74;
}
.service-main {
  padding-top: 36px;
  padding-bottom: 50px;
}
.service-block {
  max-width: 1080px;
  margin: auto;
  padding: 45px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.service-block h1 {
  margin-top: 17px;
  margin-bottom: 34px;
}
.service-qa {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.service-qa h2 {
  font-size: 22px;
  margin-bottom: 15px;
}
.service-qa p {
  color: #695760;
}
.error-page {
  text-align: center;
  padding: 90px 30px;
}
.error-page .button {
  margin-top: 25px;
}

.utility-cluster {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 35;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.utility-cluster > a,
.utility-cluster > button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 46px;
  height: 46px;
  background: var(--deep);
  color: #fff;
  border-radius: 13px;
  box-shadow: 0 4px 15px #64162926;
  transition:
    border-radius 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.utility-cluster img {
  filter: brightness(0) invert(1);
}
.scroll-top > svg {
  position: absolute;
  inset: 2px;
  width: 42px;
  height: 42px;
  transform: rotate(-90deg);
  fill: none;
  stroke-width: 2;
}
.scroll-track {
  stroke: #c18798;
}
.scroll-meter {
  stroke: #fff;
  stroke-dasharray: 100;
  stroke-linecap: round;
  stroke-dashoffset: calc(100 - var(--scroll-progress, 0));
}
.scroll-top-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  align-items: center;
  font-weight: 700;
}
.scroll-top-copy > span {
  font-size: 19px;
}
.scroll-top-copy small {
  font-size: 8px;
}
.bonus-dock {
  position: fixed;
  z-index: 60;
  right: 30px;
  top: 92px;
  width: 410px;
  max-width: calc(100vw - 32px);
  max-height: calc(100dvh - 110px);
  overflow: auto;
  background: #fffcfd;
  border: 1px solid #e8ccd5;
  border-radius: 17px;
  padding: 22px;
  box-shadow: 0 20px 70px #4f142d38;
}
.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.panel-heading strong {
  font-size: 21px;
  letter-spacing: -0.035em;
}
.panel-heading button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  transition:
    transform 0.3s,
    background 0.3s;
}
.dock-offer {
  margin-top: 16px;
  padding: 20px;
  border: 1px solid #eddae1;
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  background-size: cover;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.dock-offer strong {
  font-size: 19px;
  line-height: 1.4;
  color: var(--deep);
}
.dock-offer p {
  font-size: 12px;
  line-height: 1.7;
}
.dock-offer .button {
  font-size: 12px;
  min-height: 42px;
}
.offer-wheel {
  width: 580px;
  max-width: calc(100vw - 24px);
  max-height: calc(100dvh - 30px);
  padding: 27px;
  border: 1px solid #f4e1e7;
  border-radius: 20px;
  overflow: auto;
  background: #fffcfd;
  color: var(--ink);
  box-shadow: 0 30px 100px #2e071460;
}
.offer-wheel::backdrop {
  background: #2e1224b5;
  backdrop-filter: blur(6px);
}
.wheel-intro {
  margin: 15px 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.wheel-stage {
  width: min(100%, 340px);
  aspect-ratio: 1;
  position: relative;
  margin: 27px auto;
}
.wheel-disc {
  position: relative;
  width: 100%;
  height: 100%;
  container-type: inline-size;
  border-radius: 50%;
  background: var(--wheel-sectors);
  border: 7px solid #fff;
  box-shadow:
    0 0 0 3px #d52b1e,
    0 12px 40px #9a1a3820;
}
.wheel-pointer {
  position: absolute;
  z-index: 2;
  left: calc(50% - 12px);
  top: -13px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 26px solid var(--red);
}
.wheel-label {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 64px;
  transform-origin: 0 50%;
  transform: translateY(-50%) rotate(var(--angle));
  color: #fff;
  text-align: center;
}
.wheel-label > span {
  position: absolute;
  left: 30%;
  width: 64%;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  max-height: 62px;
  overflow: hidden;
  transform: translateY(-50%) rotate(var(--flip));
}
.wheel-rate {
  font-size: clamp(9px, 3.3cqw, 11px);
  line-height: 1.1;
  white-space: nowrap;
}
.wheel-amount {
  font-size: clamp(12px, 4.4cqw, 15px);
  line-height: 1.15;
  white-space: nowrap;
}
.wheel-spins,
.wheel-kind {
  font-size: clamp(8px, 3cqw, 10px);
  line-height: 1.15;
  white-space: nowrap;
}
.wheel-kind {
  margin-top: 2px;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  line-height: 1.05;
  text-wrap: balance;
}
.wheel-results > div {
  padding: 23px;
  border: 1px solid #e7cbd4;
  border-radius: 12px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.wheel-results strong {
  font-size: 23px;
  line-height: 1.25;
  color: var(--deep);
}
.wheel-results p {
  font-size: 13px;
}
.coin-confetti {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  top: 0;
  display: block;
  border-radius: 2px;
  pointer-events: none;
  will-change: transform, opacity;
}
.bonus-surprise-art {
  height: 175px;
  margin: 18px -27px 0;
  background: url("art-ch/hero-bonuses.webp") center 62% / cover;
  position: relative;
}
.bonus-surprise-art span {
  position: absolute;
  left: 24px;
  bottom: 20px;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.17em;
  color: var(--deep);
  padding: 5px 8px;
  background: #ffffffdb;
}
.bonus-surprise-copy {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-top: 22px;
}
.bonus-surprise-copy h2 {
  font-size: 31px;
  color: var(--deep);
}
.bonus-surprise-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--red);
}
.bonus-surprise-copy > p {
  font-size: 13px;
}
.bonus-surprise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bonus-surprise-note {
  color: var(--muted);
  font-size: 11px !important;
}
.offer-preferences {
  border-top: 1px solid #ead5de;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 23px;
  padding-top: 16px;
}
.offer-preferences button {
  font-size: 11px;
  min-height: 35px;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #775663;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 20% 10%, #f5ccd5, transparent 48%),
    radial-gradient(ellipse at 85% 90%, #e4b9c5, transparent 40%), #fffbfc;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s,
    visibility 0.24s;
}
.transition-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(100% - 40px, 390px);
  padding: 38px;
  background: #ffffffd9;
  border: 1px solid #e4c6d0;
  border-radius: 24px;
  box-shadow: 0 30px 100px #751b3820;
}
.transition-emblem {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 110px;
  margin-bottom: 14px;
}
.transition-emblem img {
  width: 190px;
  height: auto;
}
.transition-orbit {
  position: absolute;
  inset: 0;
  border: 1px solid #edd3dc;
  border-radius: 50%;
  transform: rotate(-15deg);
}
.transition-orbit:after {
  content: "";
  position: absolute;
  right: 30px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 6px #d52b1e12;
}
.transition-caption {
  font-size: 9px;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 12px;
}
.transition-card > strong {
  font-size: 27px;
  letter-spacing: -0.04em;
}
.transition-card > p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.transition-track {
  height: 3px;
  width: 100%;
  margin-top: 24px;
  background: #f1d9e2;
  overflow: hidden;
  position: relative;
}
.transition-track:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  background: var(--red);
  animation: swiss-loader 1.2s infinite;
}
.transition-signature {
  font-size: 9px;
  letter-spacing: 0.18em;
  margin-top: 20px;
  color: #9e7485;
}
html[data-page-transition="loading"] .page-transition,
html[data-page-transition="leaving"] .page-transition {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@keyframes swiss-loader {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(330%);
  }
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover:after {
    transform: scaleX(1);
  }
  .desktop-nav a:hover {
    color: var(--red);
  }
  .button:hover {
    transform: translateY(-2px);
    box-shadow:
      0 7px 0 #8f1d161c,
      0 12px 24px #d52b1e20;
  }
  .button:hover:before {
    transform: translateX(120%);
  }
  .store-button:hover {
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: 4px 5px 0 #f0c9c4;
  }
  .hero:hover img {
    transform: scale(1.018);
  }
  .promo-banner:hover img {
    transform: scale(1.035) translateX(-4px);
  }
  .topic-info-card:hover {
    transform: translateX(3px);
    border-color: #d0847d;
    box-shadow: -4px 0 0 var(--red);
  }
  .topic-info-card:hover:after {
    transform: rotate(18deg) scale(1.18);
    opacity: 0.55;
  }
  .content-section:hover {
    border-color: #dfaaa5;
    box-shadow: 0 10px 30px #85233f08;
  }
  .table-wrap tbody tr:hover td {
    background: #fde9e6;
  }
  .table-wrap tbody tr:hover td:first-child {
    box-shadow: inset 3px 0 var(--red);
  }
  .comparison:hover {
    box-shadow:
      inset 0 -4px #d52b1e,
      0 8px 23px #84173310;
  }
  .review-card:hover {
    transform: translateY(-4px) rotate(-0.4deg);
    box-shadow: 7px 9px 0 #eee3e1;
  }
  .faq-item:hover {
    border-color: #cf766e;
  }
  .faq-item:not([open]) summary:hover {
    background: #fff0ee;
    color: var(--red);
  }
  .game-card:hover img {
    transform: translateY(-4px) scale(0.96) rotate(-2deg);
    box-shadow: 5px 6px 0 #efcdc9;
  }
  .game-card:hover {
    color: var(--red);
  }
  .side-game:hover img {
    transform: rotate(5deg) scale(1.08);
  }
  .side-game:hover {
    color: var(--red);
  }
  .side-link:hover {
    padding-left: 7px;
    color: var(--red);
  }
  .dock-launch:hover {
    background: #fdeae7;
  }
  .dock-launch:hover img {
    transform: rotate(15deg);
  }
  .dock-offer:hover {
    transform: translateY(-2px);
    box-shadow: inset 3px 0 var(--red);
  }
  .rail-toggle:hover {
    box-shadow: inset 0 -3px var(--red);
  }
  .panel-heading button:hover {
    transform: rotate(90deg);
    background: #f7dfdc;
  }
  .utility-cluster > a:hover,
  .utility-cluster > button:hover {
    border-radius: 50%;
    transform: translateX(-4px);
    box-shadow: 4px 0 0 #edb9b3;
  }
  .footer-grid nav a:hover:after {
    width: 100%;
  }
  .mobile-menu nav a:hover {
    padding-left: 20px;
    background: #fcede9;
  }
  .offer-preferences button:hover {
    color: var(--red);
    text-decoration-thickness: 2px;
  }
}
@media (min-width: 1700px) {
  .hero {
    min-height: 490px;
  }
  .hero h1 {
    font-size: 44px;
  }
}
@media (max-width: 1250px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .page-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .sidebar {
    display: none;
  }
  .hero {
    min-height: 440px;
  }
  .hero-copy {
    width: 55%;
  }
  .desktop-nav {
    gap: 22px;
  }
  .header-inner {
    gap: 20px;
  }
  .desktop-actions .button {
    padding: 10px 14px;
  }
  .header-tools {
    gap: 8px;
  }
  .content-section {
    padding: 32px;
  }
  .utility-cluster {
    right: 8px;
  }
  .hero h1 {
    font-size: 39px;
  }
}
@media (max-width: 1100px) {
  .desktop-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .desktop-nav {
    display: none;
  }
  .header-tools {
    margin-left: auto;
  }
  .hero-copy {
    width: 60%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 65px;
    font-size: 15px;
  }
  .site-header {
    height: 65px;
  }
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .brand img {
    width: 145px;
  }
  .desktop-nav {
    display: none;
  }
  .header-tools {
    margin-left: auto;
  }
  .dock-launch > span {
    display: none;
  }
  .geo-toggle {
    min-height: 42px;
    padding: 5px 8px;
  }
  .geo-toggle .geo-flag {
    width: 26px;
    height: 26px;
    font-size: 20px;
  }
  .geo-code {
    display: none;
  }
  .geo-menu {
    position: fixed;
    top: 72px;
    left: auto;
    right: 12px;
    width: max-content;
  }
  .menu-scrim {
    top: 65px;
  }
  .page-layout {
    margin-top: 18px;
    margin-bottom: 30px;
    gap: 20px;
  }
  .content-column > article {
    gap: 20px;
    margin-top: 20px;
  }
  .hero {
    padding: 250px 24px 28px;
    min-height: 0;
    display: block;
  }
  .hero picture {
    height: 340px;
  }
  .hero img {
    object-position: 85% 54%;
    object-fit: cover;
  }
  .hero:after {
    background: linear-gradient(
      0deg,
      #fffcfc 0%,
      #fffcfc 39%,
      #fffcfce0 50%,
      #fffcfc00 76%
    );
  }
  .hero-copy {
    width: 100%;
    gap: 19px;
  }
  .hero h1 {
    font-size: 32px;
    line-height: 1.13;
  }
  .hero-lead {
    font-size: 14px;
    line-height: 1.75;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .content-section {
    padding: 25px 22px;
    border-radius: 12px;
    scroll-margin-top: 85px;
  }
  .section-kicker {
    font-size: 8px;
  }
  .content-section h2 {
    font-size: 26px;
    margin-bottom: 21px;
    line-height: 1.2;
  }
  .section-body {
    gap: 19px;
  }
  .topic-info-card {
    padding: 21px 18px;
    gap: 16px;
  }
  .topic-info-card h3 {
    font-size: 20px;
  }
  .table-wrap table {
    font-size: 13px;
  }
  .table-wrap th,
  .table-wrap td {
    padding: 13px 14px;
    min-width: 140px;
  }
  .pros-cons,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .review-card:last-child {
    grid-column: auto;
  }
  .comparison,
  .review-card {
    padding: 22px;
  }
  .promo-banner {
    padding: 205px 23px 27px;
    min-height: 410px;
    display: block;
  }
  .promo-banner picture {
    height: 285px;
  }
  .promo-banner img {
    object-position: 85% 55%;
  }
  .promo-banner:after {
    background: linear-gradient(
      0deg,
      #fffcfc 0%,
      #fffcfc 39%,
      #fffcfcd9 53%,
      #fff0 78%
    );
  }
  .promo-copy {
    width: 100%;
    gap: 15px;
  }
  .promo-title {
    font-size: 29px;
  }
  .promo-copy .eyebrow {
    font-size: 9px;
  }
  .store-pair {
    gap: 8px;
    width: 100%;
  }
  .store-button {
    flex: 1;
    min-width: 0;
    padding: 11px 10px;
    gap: 9px;
  }
  .platform-mark {
    font-size: 20px;
  }
  .store-label {
    font-size: 8px;
  }
  .store-label strong {
    font-size: 10px;
  }
  .game-rail {
    padding: 21px;
  }
  .game-card {
    width: 128px;
    flex-basis: 128px;
  }
  .game-card img {
    width: 128px;
    height: 116px;
  }
  .rail-heading {
    gap: 12px;
  }
  .rail-heading p {
    font-size: 21px;
  }
  .rail-toggle {
    font-size: 11px;
    padding: 7px 12px;
  }
  .sidebar {
    display: none;
  }
  .utility-cluster {
    right: 8px;
    bottom: 12px;
    gap: 8px;
  }
  .utility-cluster > a,
  .utility-cluster > button {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }
  .scroll-top > svg {
    width: 35px;
    height: 35px;
  }
  .scroll-top-copy > span {
    font-size: 17px;
  }
  .bonus-dock {
    top: 75px;
    right: 12px;
    padding: 18px;
    max-height: calc(100dvh - 88px);
  }
  .dock-offer {
    padding: 18px;
  }
  .offer-wheel {
    padding: 20px;
    max-height: calc(100dvh - 24px);
  }
  .panel-heading strong {
    font-size: 20px;
  }
  .wheel-stage {
    width: min(100%, 310px);
    margin: 23px auto;
  }
  .bonus-surprise-art {
    margin-left: -20px;
    margin-right: -20px;
    height: 160px;
  }
  .bonus-surprise-copy h2 {
    font-size: 28px;
  }
  .offer-preferences {
    gap: 7px;
  }
  .offer-preferences button {
    font-size: 10px;
  }
  .faq-item summary {
    padding: 17px 46px 17px 18px;
    font-size: 15px;
  }
  .faq-answer {
    padding: 18px;
    font-size: 14px;
  }
  .footer-grid {
    gap: 28px;
  }
  .footer-brand p {
    font-size: 12px;
  }
  .footer-grid nav {
    font-size: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding-right: 40px;
  }
  .service-main {
    padding-top: 22px;
    padding-bottom: 30px;
  }
  .service-block {
    padding: 27px 22px;
  }
  .service-block h1 {
    font-size: 26px;
  }
  .service-qa h2 {
    font-size: 22px;
  }
  .service-qa {
    padding: 22px 0;
  }
}
@media (max-width: 380px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-inner {
    gap: 10px;
  }
  .brand img {
    width: 129px;
  }
  .header-tools {
    gap: 3px;
  }
  .geo-toggle {
    gap: 5px;
    padding-left: 6px;
    padding-right: 7px;
  }
  .hero {
    padding: 235px 21px 24px;
  }
  .hero h1 {
    font-size: 29px;
  }
  .content-section {
    padding: 22px 19px;
  }
  .content-section h2 {
    font-size: 25px;
  }
  .promo-banner {
    padding-left: 21px;
    padding-right: 21px;
  }
  .promo-title {
    font-size: 27px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .store-pair {
    flex-direction: column;
  }
  .store-button {
    width: 100%;
    flex: auto;
    min-height: 49px;
  }
  .store-label {
    font-size: 10px;
  }
  .store-label strong {
    font-size: 14px;
  }
  .wheel-stage {
    width: 100%;
  }
  .wheel-label > span {
    left: 30%;
    width: 64%;
  }
  .wheel-amount {
    font-size: 12px;
  }
  .wheel-kind {
    font-size: 7px;
  }
}

.game-card img {
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: none;
  box-shadow: 0 0 0 1px #e7cbd5;
}
.game-rail {
  background: linear-gradient(135deg, #fff 65%, #fff4f7);
  border-color: #e6cfd9;
}

html {
  scroll-padding-top: 0;
}
.sidebar-left {
  gap: 18px;
  position: sticky;
  top: 100px;
  max-height: calc(100dvh - 118px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #d8a1b1 transparent;
  padding-right: 4px;
  padding-bottom: 4px;
}
.sidebar-right {
  position: sticky;
  top: 100px;
  max-height: calc(100dvh - 118px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #d8a1b1 transparent;
  padding: 0 4px 4px 0;
}
.sidebar-right > .side-card {
  flex-shrink: 0;
}
.side-game img {
  height: 58px;
  flex: 0 0 58px;
  aspect-ratio: 1;
  object-fit: contain;
}
.sidebar-left .side-card {
  padding: 17px 13px;
  background: linear-gradient(135deg, #fff, #fff9fb);
}
.side-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
  color: var(--deep);
  padding: 0 7px 12px;
}
.league-title {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 12px;
}
.sidebar-left .side-link {
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border: 0;
  border-radius: 7px;
  color: #67545d;
  font-size: 12px;
  line-height: 1.5;
  transition:
    background 0.25s,
    color 0.25s,
    box-shadow 0.25s;
}
.sidebar-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--red);
  transition: transform 0.35s var(--ease);
}
.article-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.article-count {
  font-size: 9px;
  letter-spacing: 0;
  min-width: 23px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #f5e2e9;
  color: var(--red);
}
.article-nav a {
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding: 9px 7px;
  color: #78636d;
  font-size: 11px;
  line-height: 1.5;
  border-radius: 7px;
  border-left: 2px solid transparent;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.article-nav-number {
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  color: #b38e9d;
  flex: 0 0 16px;
}
.article-nav a[aria-current="true"] {
  color: var(--deep);
  background: #f8e8ef;
  border-left-color: var(--red);
  font-weight: 700;
}
.article-nav a[aria-current="true"] .article-nav-number {
  color: var(--red);
}
@media (min-width: 1360px) {
  .container {
    max-width: 1600px;
  }
  .page-layout {
    grid-template-columns: 240px minmax(0, 1fr) 240px;
    gap: 20px;
  }
  .hero {
    padding: 36px 30px;
  }
  .hero h1 {
    font-size: clamp(31px, 2.4vw, 40px);
  }
  .hero-copy {
    width: 62%;
  }
}
@media (max-width: 1359px) {
  .page-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .sidebar-left,
  .sidebar-right,
  .article-nav {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sidebar-left .side-link:hover {
    background: #fbe9ef;
    color: var(--red);
    box-shadow: inset 3px 0 var(--red);
    padding-left: 8px;
  }
  .sidebar-left .side-link:hover .sidebar-icon {
    transform: rotate(-8deg) scale(1.1);
  }
  .article-nav a:hover {
    background: #fff0f5;
    color: var(--deep);
    border-left-color: #dfa1b7;
  }
}

.bonus-surprise[data-offer-id="casino-first"] .bonus-surprise-art {
  background-image: url("art-ch/promo-first.webp");
}
.bonus-surprise[data-offer-id="casino-second"] .bonus-surprise-art {
  background-image: url("art-ch/promo-second.webp");
}
.bonus-surprise[data-offer-id="casino-friday"] .bonus-surprise-art {
  background-image: url("art-ch/promo-friday.webp");
}
.bonus-surprise[data-offer-id="sports-first"] .bonus-surprise-art {
  background-image: url("art-ch/promo-sport.webp");
}
@media (max-width: 767px) {
  .hero picture {
    height: 290px;
    mask-image: linear-gradient(#000 50%, transparent 100%);
  }
  .hero:after {
    background: none;
  }
  .promo-banner picture {
    height: 250px;
    mask-image: linear-gradient(#000 45%, transparent 100%);
  }
  .promo-banner:after {
    background: none;
  }
}

.breadcrumbs {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs li + li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcrumbs li + li:before {
  content: "/";
  color: #b58c9b;
}
.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.breadcrumbs [aria-current] {
  color: var(--deep);
  font-weight: 600;
}
.content-section,
.topic-info-card,
.comparison,
.review-card {
  background-color: #fffdfd;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: right top;
}
.topic-info-card:after {
  display: none;
}
.section-body > .button {
  align-self: flex-start;
  width: auto;
}
.author-detail {
  padding: 15px 18px;
  border: 1px solid #e9c8d0;
  border-left: 4px solid var(--red);
  border-radius: 0 10px 10px 0;
  background: linear-gradient(105deg, #f5e3e9 0%, #fcf7f9 72%, #fff 100%);
  color: #59434d;
  font-size: 14px;
  line-height: 1.55;
  box-shadow: 0 8px 22px rgba(80, 13, 30, 0.07);
}
.author-detail strong {
  color: var(--deep);
  font-weight: 800;
}
.author-byline {
  color: var(--deep);
  font-size: 15px;
}
.author-meta {
  display: grid;
  gap: 5px;
}
.author-meta > span {
  display: block;
}
.section-body > .author-detail + .author-detail {
  margin-top: -14px;
}
.store-button {
  background: var(--deep);
  color: #fff;
  border-color: var(--deep);
  min-width: 160px;
  gap: 12px;
}
.platform-mark {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
}
.store-label {
  line-height: 1.2;
  gap: 4px;
}
.store-label > span,
.store-label > strong {
  display: block;
}
.bonus-surprise-copy {
  text-align: center;
  align-items: center;
}
.bonus-surprise-actions {
  justify-content: center;
  width: 100%;
}
.offer-preferences {
  justify-content: center;
  column-gap: 32px;
  text-align: center;
}
[data-wheel-view] {
  text-align: center;
}
.wheel-results > div {
  align-items: center;
  text-align: center;
}
.utility-cluster > .wheel-launch {
  padding: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 2px var(--deep),
    0 5px 16px #64162930;
}
.mini-wheel {
  position: relative;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 2px solid var(--deep);
  border-radius: 50%;
  background: repeating-conic-gradient(
    from -22.5deg,
    #d52b1e 0deg 45deg,
    #ffe5ec 45deg 90deg
  );
  transform: rotate(0deg);
  transition: transform 0.6s var(--ease);
}
.mini-wheel:before {
  content: "";
  position: absolute;
  inset: 35%;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--deep);
}
.wheel-launch:after {
  content: "";
  position: absolute;
  top: -3px;
  left: calc(50% - 5px);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid var(--deep);
}
@media (hover: hover) and (pointer: fine) {
  .wheel-launch:hover .mini-wheel {
    transform: rotate(90deg);
  }
  .store-button:hover {
    background: #a51a37;
  }
}
@media (max-width: 767px) {
  .store-button {
    min-width: 0;
    gap: 9px;
  }
  .platform-mark {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
  }
  .author-detail {
    padding: 12px 14px;
    font-size: 13px;
  }
  .content-section {
    background-size: auto 230px;
  }
  .topic-info-card {
    background-size: auto 170px;
  }
  .bonus-surprise-actions .button {
    max-width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .page-transition {
    display: none !important;
  }
}

body {
  word-break: normal;
  hyphens: none;
}
h1,
h2,
h3,
p,
li,
th,
td,
a,
button,
summary {
  word-break: normal;
  hyphens: none;
  overflow-wrap: break-word;
}
.nowrap {
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}
.table-wrap table {
  width: max-content;
  min-width: 100%;
  table-layout: auto;
}
.table-wrap th,
.table-wrap td {
  width: auto;
  min-width: 180px;
  max-width: 460px;
}
.table-wrap th:first-child,
.table-wrap td:first-child {
  min-width: 190px;
  max-width: 280px;
}
.table-wrap th:not(:first-child),
.table-wrap td:not(:first-child) {
  min-width: 240px;
  max-width: 460px;
}
@media (max-width: 767px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .content-section {
    padding-left: 18px;
    padding-right: 18px;
  }
  .topic-info-card {
    padding-left: 16px;
    padding-right: 16px;
  }
  .table-wrap th,
  .table-wrap td {
    min-width: 180px;
  }
  .table-wrap th:first-child,
  .table-wrap td:first-child {
    min-width: 190px;
  }
  .table-wrap th:not(:first-child),
  .table-wrap td:not(:first-child) {
    min-width: 240px;
  }
  .promo-banner {
    padding-left: 19px;
    padding-right: 19px;
  }
}
@media (max-width: 380px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .content-section h2 {
    font-size: 22px;
  }
  .service-block h1 {
    font-size: 23px;
  }
  .content-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 340px) {
  .service-block h1 {
    font-size: 21px;
  }
}
@media (min-width: 381px) and (max-width: 900px) {
  .store-button {
    padding-inline: 6px;
    gap: 6px;
  }
}

.brand img {
  width: 184px;
}
@media (max-width: 767px) {
  .brand img {
    width: 145px;
  }
}
@media (max-width: 380px) {
  .brand img {
    width: 118px;
  }
}
.content-section {
  --hover-accent: #d52b1e;
}
.content-section:nth-of-type(3n + 2) {
  --hover-accent: #8f1d16;
}
.content-section:nth-of-type(3n) {
  --hover-accent: #ef4032;
}
.topic-info-card:nth-of-type(odd)::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  right: 18px;
  bottom: 16px;
  background:
    linear-gradient(#d52b1e 0 0) center/8px 100% no-repeat,
    linear-gradient(#d52b1e 0 0) center/100% 8px no-repeat;
  opacity: 0.12;
  transition:
    transform 0.45s var(--ease),
    opacity 0.45s;
}
.promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 40%,
    #ffffff24 52%,
    transparent 64%
  );
  transform: translateX(-110%);
  transition: transform 0.75s var(--ease);
}
.game-card:nth-child(3n + 2) img {
  border-radius: 50% 50% 16px 16px;
}
.game-card:nth-child(3n) img {
  clip-path: polygon(
    12% 0,
    88% 0,
    100% 12%,
    100% 88%,
    88% 100%,
    12% 100%,
    0 88%,
    0 12%
  );
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:nth-child(1):hover {
    transform: translateY(-2px);
  }
  .desktop-nav a:nth-child(2):hover {
    transform: rotate(-1.5deg);
  }
  .desktop-nav a:nth-child(3):hover {
    letter-spacing: 0.035em;
  }
  .desktop-nav a:nth-child(4):hover {
    text-shadow: 0 8px 16px #d52b1e35;
  }
  .content-section:hover {
    box-shadow: 0 13px 36px
      color-mix(in srgb, var(--hover-accent) 12%, transparent);
  }
  .topic-info-card:nth-of-type(odd):hover::before {
    transform: rotate(90deg) scale(1.18);
    opacity: 0.34;
  }
  .topic-info-card:nth-of-type(even):hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px #d52b1e14;
  }
  .promo-banner:hover::after {
    transform: translateX(110%);
  }
  .promo-banner[data-offer-id="casino-first"]:hover {
    border-radius: 32px 12px 32px 12px;
  }
  .promo-banner[data-offer-id="casino-second"]:hover {
    box-shadow:
      0 0 0 3px #fff,
      0 0 0 6px #d52b1e;
  }
  .promo-banner[data-offer-id="casino-friday"]:hover {
    transform: translateY(-4px) rotate(0.25deg);
  }
  .promo-banner[data-offer-id="sports-first"]:hover {
    filter: saturate(1.08) contrast(1.03);
  }
  .faq-item:nth-child(odd):hover summary::after {
    transform: rotate(135deg);
  }
  .faq-item:nth-child(even):hover summary {
    padding-left: 30px;
  }
  .game-card:nth-child(3n + 1):hover img {
    transform: translateY(-5px) rotate(-3deg) scale(0.97);
  }
  .game-card:nth-child(3n + 2):hover img {
    transform: translateY(-6px) scale(0.94);
    box-shadow:
      0 0 0 4px #fff,
      0 0 0 7px #d52b1e;
  }
  .game-card:nth-child(3n):hover img {
    transform: translateY(-4px) rotate(3deg) scale(0.98);
  }
}

@media (min-width: 768px) {
  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(20, 8, 12, 0.97) 0%,
      rgba(45, 10, 17, 0.92) 34%,
      rgba(37, 8, 14, 0.66) 56%,
      rgba(18, 7, 10, 0.14) 79%
    );
  }
  .hero-copy {
    position: relative;
    z-index: 1;
  }
  .hero h1,
  .hero-lead {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.52);
  }
  .hero .eyebrow {
    color: #ff8a81;
    font-size: 12px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .promo-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(21, 7, 11, 0.98) 0%,
      rgba(55, 7, 15, 0.94) 38%,
      rgba(45, 7, 13, 0.72) 58%,
      rgba(16, 6, 8, 0.12) 82%
    );
  }
  .promo-banner::after {
    z-index: 0;
  }
  .promo-copy {
    position: relative;
    z-index: 1;
  }
  .promo-copy .eyebrow {
    color: #ff8a81;
    font-size: 12px;
  }
  .promo-title,
  .promo-copy > p:not(.promo-title) {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.58);
  }
  .promo-copy > p:not(.promo-title) {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .promo-banner::after {
    background: none;
    transform: none;
  }
  .promo-title {
    color: var(--deep);
  }
  .promo-copy > p:not(.promo-title) {
    color: #49343d;
  }
}
