@font-face {
  font-family: "Geologica";
  src: url("/fonts/Geologica-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Geologica";
  src: url("/fonts/Geologica-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Geologica";
  src: url("/fonts/Geologica-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}

:root {
  --bg: #09051f;
  --bg-deep: #060218;
  --surface: #130c32;
  --surface-2: #1a1142;
  --surface-3: #24175a;
  --purple: #6b3ee8;
  --purple-light: #9274ff;
  --gold: #ffb31a;
  --gold-light: #fff27a;
  --orange: #ff6a00;
  --ivory: #fbf9ff;
  --text: #f4f0ff;
  --muted: #bbb3d3;
  --line: rgba(255, 255, 255, 0.1);
  --green: #70e6ae;
  --danger: #ff8a75;
  --warning-bg: #24151f;
  --shadow: 0 24px 80px rgba(2, 0, 14, 0.35);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
  --header-height: 72px;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 18% -10%, rgba(93, 53, 224, 0.28), transparent 34rem),
    radial-gradient(circle at 90% 8%, rgba(255, 179, 26, 0.08), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: "Geologica", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  position: fixed;
  top: var(--menu-scroll-top, 0px);
  left: 0;
  width: var(--menu-page-width, 100%);
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ivory);
  line-height: 1.13;
  text-wrap: balance;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5vw, 4.85rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section--soft {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.005)),
    rgba(20, 12, 52, 0.58);
  border-block: 1px solid var(--line);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-180%);
  border-radius: 10px;
  background: var(--gold-light);
  color: #0a061b;
  font-weight: 700;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--orange));
  box-shadow: 0 11px 30px rgba(255, 126, 0, 0.24);
  color: #0e081e;
}

.button--primary:hover {
  box-shadow: 0 14px 36px rgba(255, 126, 0, 0.34);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
  color: var(--ivory);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.09);
}

.button--text {
  min-height: 44px;
  padding-inline: 6px;
  color: var(--ivory);
}

.button--text span {
  color: var(--gold);
}

.button--large {
  min-height: 56px;
  padding: 16px 25px;
  border-radius: 15px;
}

.fine-print {
  color: #a79fbe;
  font-size: 0.78rem;
  line-height: 1.55;
}

.disclosure-bar {
  position: relative;
  z-index: 52;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #050114;
  color: #c9c2db;
  font-size: 0.75rem;
}

.disclosure-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.disclosure-bar p {
  margin: 0;
}

.disclosure-bar strong {
  color: var(--gold-light);
}

.disclosure-bar a {
  flex: 0 0 auto;
  color: var(--ivory);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(9, 5, 31, 0.82);
  backdrop-filter: blur(16px);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 3, 25, 0.94);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 129px;
  height: 26px;
}

.brand span {
  padding: 3px 7px;
  border: 1px solid rgba(255, 179, 26, 0.35);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #d5cee8;
  font-size: 0.88rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 2px;
  background: var(--gold);
  content: "";
  transition: transform 160ms ease;
}

.desktop-nav a:hover {
  color: var(--ivory);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .button {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.84rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: white;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-menu,
.menu-backdrop {
  display: none;
}

.hero {
  position: relative;
  padding: 72px 0 66px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -180px;
  left: 50%;
  width: 760px;
  height: 760px;
  transform: translateX(-85%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 55, 224, 0.2), transparent 68%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: 58px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 26px;
  color: #c9c2dc;
  font-size: 1.08rem;
}

.offer-card {
  display: inline-grid;
  min-width: 360px;
  margin-bottom: 23px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 214, 72, 0.28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 179, 26, 0.11), rgba(107, 62, 232, 0.11));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.offer-card p {
  margin: 0;
}

.offer-card__label {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.offer-card__amount {
  margin-top: 2px !important;
  color: white;
  font-size: 1.7rem;
  line-height: 1.25;
}

.offer-card__amount strong {
  font-size: 2.2rem;
}

.offer-card__extra {
  color: #e1daef;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
}

.hero-copy > .fine-print {
  max-width: 620px;
}

.hero-trust {
  display: grid;
  margin: 26px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.hero-trust li {
  display: grid;
  gap: 1px;
  padding: 0 15px;
  border-left: 1px solid var(--line);
}

.hero-trust li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-trust strong {
  color: white;
  font-size: 1.05rem;
}

.hero-trust span {
  color: #a9a1bc;
  font-size: 0.71rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual__glow {
  position: absolute;
  z-index: -1;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 63, 236, 0.28), transparent 67%);
  filter: blur(20px);
}

.hero-visual > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.875 / 1;
  border: 1px solid rgba(255, 213, 92, 0.21);
  border-radius: var(--radius-xl);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42), 0 0 0 7px rgba(255, 255, 255, 0.025);
  object-fit: cover;
}

.hero-visual__note {
  position: absolute;
  right: 18px;
  bottom: -17px;
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(10, 5, 31, 0.9);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  color: #d8d1e8;
  font-size: 0.69rem;
  backdrop-filter: blur(10px);
}

.pulse {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(112, 230, 174, 0.12);
}

.legal-alert {
  padding: 0 0 26px;
}

.legal-alert__card {
  display: grid;
  padding: 24px 26px;
  border: 1px solid rgba(255, 138, 117, 0.25);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 118, 91, 0.09), rgba(255, 179, 26, 0.05));
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.legal-alert__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 138, 117, 0.35);
  border-radius: 13px;
  background: rgba(255, 138, 117, 0.13);
  color: #ffd3ca;
  font-weight: 800;
}

.legal-alert h2 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.legal-alert p {
  margin-bottom: 11px;
  color: #d4cbdc;
  font-size: 0.91rem;
}

.legal-alert__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-alert__links a {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading > p:not(.eyebrow),
.section-heading--split > p {
  color: var(--muted);
}

.section-heading--split {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 70px;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading--split > p {
  margin-bottom: 2px;
  font-size: 0.94rem;
}

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

.fact-card {
  min-height: 168px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.fact-card--accent {
  border-color: rgba(255, 193, 52, 0.22);
  background: linear-gradient(145deg, rgba(255, 179, 26, 0.12), rgba(107, 62, 232, 0.08));
}

.fact-card--warning {
  border-color: rgba(255, 138, 117, 0.2);
  background: rgba(255, 106, 78, 0.065);
}

.fact-card__kicker {
  display: block;
  margin-bottom: 12px;
  color: #a99fca;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-card strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: 1.32rem;
  line-height: 1.25;
}

.fact-card p {
  color: #aaa2bd;
  font-size: 0.82rem;
  line-height: 1.55;
}

.contents {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 15px 17px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
  scrollbar-width: thin;
}

.contents span {
  flex: 0 0 auto;
  margin-right: 5px;
  color: #9d94b6;
  font-size: 0.75rem;
}

.contents a {
  display: inline-flex;
  min-height: 38px;
  flex: 0 0 auto;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 600;
}

.contents a:hover {
  border-color: rgba(255, 179, 26, 0.35);
  color: var(--gold-light);
}

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

.verdict-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(9, 5, 31, 0.48);
}

.verdict-card--positive {
  border-color: rgba(112, 230, 174, 0.18);
}

.verdict-card--caution {
  border-color: rgba(255, 179, 26, 0.2);
}

.verdict-card__head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.verdict-card__head span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: rgba(112, 230, 174, 0.12);
  color: var(--green);
  font-weight: 800;
}

.verdict-card--caution .verdict-card__head span {
  background: rgba(255, 179, 26, 0.11);
  color: var(--gold-light);
}

.verdict-card__head h3 {
  margin: 0;
}

.check-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #c2bad4;
  font-size: 0.89rem;
}

.check-list li::before {
  position: absolute;
  top: 0.54em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(112, 230, 174, 0.1);
  content: "";
}

.verdict-card--caution .check-list li::before {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 179, 26, 0.1);
}

.source-note {
  margin-top: 20px;
  padding: 18px 21px;
  border-left: 3px solid var(--purple-light);
  border-radius: 0 14px 14px 0;
  background: rgba(112, 82, 224, 0.08);
  color: #bdb5cd;
  font-size: 0.83rem;
}

.source-note strong {
  color: white;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 0.72fr));
  gap: 16px;
}

.promo-card {
  min-height: 300px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.promo-card--main {
  border-color: rgba(255, 179, 26, 0.25);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 179, 26, 0.16), transparent 45%),
    linear-gradient(150deg, rgba(105, 59, 223, 0.26), rgba(20, 11, 50, 0.82));
}

.promo-card__tag {
  display: inline-block;
  margin-bottom: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #c0b7d4;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-card h3 {
  margin-bottom: 8px;
}

.promo-card__value {
  margin-bottom: 0;
  color: white;
  font-size: clamp(2.15rem, 4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.promo-card__sub {
  margin: 7px 0 15px;
  color: var(--gold-light);
  font-weight: 700;
}

.promo-card > p:not([class]) {
  color: #ada4c1;
  font-size: 0.82rem;
}

.promo-card .button {
  margin-top: 8px;
}

.conditions-panel {
  display: grid;
  align-items: center;
  margin-top: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.025);
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  gap: 34px;
}

.conditions-panel h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.conditions-panel > div:first-child > p:last-child {
  color: #b6aec6;
  font-size: 0.9rem;
}

.conditions-panel > .fine-print {
  grid-column: 1 / -1;
  margin-top: -14px;
}

.mini-specs {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mini-specs div {
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.mini-specs dt {
  color: #9f96b8;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.mini-specs dd {
  margin: 3px 0 0;
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
}

.game-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.game-filters::-webkit-scrollbar {
  display: none;
}

.filter-button {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #bdb5cf;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.filter-button.is-active {
  border-color: rgba(255, 179, 26, 0.35);
  background: linear-gradient(135deg, rgba(255, 179, 26, 0.17), rgba(107, 62, 232, 0.15));
  color: white;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.game-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.game-card[hidden] {
  display: none;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 179, 26, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.game-card img {
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  background: #120b2a;
  object-fit: cover;
}

.game-card__body {
  display: grid;
  padding: 14px 15px 16px;
  gap: 2px;
}

.game-card__body strong {
  overflow: hidden;
  color: white;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-card__body small {
  overflow: hidden;
  color: #978eac;
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalogue-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 22px;
  padding: 25px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.catalogue-note h3 {
  margin-bottom: 7px;
}

.catalogue-note p {
  color: #aaa2bb;
  font-size: 0.84rem;
}

.catalogue-note .button {
  flex: 0 0 auto;
}

.payment-logos {
  display: grid;
  margin-bottom: 25px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.payment-logos div {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 16px;
  border: 1px solid rgba(31, 24, 48, 0.14);
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #eeeaf4);
  box-shadow: 0 10px 26px rgba(4, 1, 18, 0.14), inset 0 1px 0 #ffffff;
  gap: 7px;
}

.payment-logos .payment-logo--dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, #272331, #100d18);
  box-shadow: 0 10px 26px rgba(4, 1, 18, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.payment-logos img {
  width: 108px;
  height: 38px;
  max-width: 100%;
  object-fit: contain;
}

.payment-logos span {
  color: #3e374d;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
}

.payment-logos .payment-logo--dark span {
  color: #f8f6fb;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  scrollbar-color: var(--purple) var(--surface);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

caption {
  padding: 15px 20px;
  color: #a89fba;
  font-size: 0.72rem;
  text-align: left;
}

th,
td {
  padding: 17px 20px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(107, 62, 232, 0.11);
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

td {
  color: #b7aec9;
  font-size: 0.82rem;
}

td:first-child {
  color: white;
  font-weight: 700;
}

.withdrawal-flow {
  margin-top: 34px;
}

.withdrawal-flow h3 {
  margin-bottom: 18px;
  font-size: 1.55rem;
}

.withdrawal-flow ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.withdrawal-flow li {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
}

.withdrawal-flow li > span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 10px;
  background: rgba(107, 62, 232, 0.19);
  color: var(--purple-light);
  font-size: 0.8rem;
  font-weight: 800;
}

.withdrawal-flow strong {
  color: white;
  font-size: 0.9rem;
}

.withdrawal-flow p {
  margin-top: 7px;
  color: #9f96b2;
  font-size: 0.77rem;
  line-height: 1.55;
}

.mobile-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
}

.phone-art {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.phone-art::before {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 67, 232, 0.3), transparent 65%);
  content: "";
  filter: blur(6px);
}

.phone-art__device {
  position: relative;
  z-index: 2;
  width: 266px;
  padding: 10px;
  transform: rotate(-3deg);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 39px;
  background: linear-gradient(145deg, #353044, #090710);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.42);
}

.phone-art__speaker {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 50%;
  width: 66px;
  height: 17px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #090712;
}

.phone-art__screen {
  min-height: 500px;
  padding: 43px 14px 18px;
  overflow: hidden;
  border-radius: 31px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 179, 26, 0.16), transparent 32%),
    linear-gradient(180deg, #140a46, #09051f 62%);
}

.phone-art__screen > img {
  width: 118px;
  height: auto;
  margin-inline: auto;
}

.phone-art__banner {
  display: grid;
  min-height: 145px;
  align-content: end;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 179, 26, 0.25);
  border-radius: 18px;
  background:
    radial-gradient(circle at 85% 30%, rgba(255, 179, 26, 0.36), transparent 28%),
    linear-gradient(135deg, #4c24b4, #1b0f4a);
}

.phone-art__banner span {
  color: var(--gold-light);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.phone-art__banner strong {
  max-width: 155px;
  color: white;
  font-size: 1.05rem;
  line-height: 1.15;
}

.phone-art__tiles {
  display: grid;
  margin-top: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.phone-art__tiles i {
  aspect-ratio: 1.25 / 1;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 179, 26, 0.25), rgba(107, 62, 232, 0.45));
}

.phone-art__tiles i:nth-child(2),
.phone-art__tiles i:nth-child(3) {
  background: linear-gradient(135deg, rgba(255, 74, 121, 0.28), rgba(32, 179, 229, 0.35));
}

.phone-art__button {
  display: grid;
  min-height: 38px;
  margin-top: 14px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--orange));
  color: #0d071c;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
}

.phone-art__badge {
  position: absolute;
  z-index: 3;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(9, 5, 31, 0.88);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.28);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.phone-art__badge--top {
  top: 115px;
  right: 5px;
}

.phone-art__badge--bottom {
  bottom: 85px;
  left: 4px;
}

.mobile-grid > div:last-child > p:not(.eyebrow) {
  color: #b7afc7;
}

.feature-list {
  display: grid;
  margin: 27px 0;
  padding: 0;
  gap: 17px;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
}

.feature-list li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: rgba(112, 230, 174, 0.12);
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 800;
}

.feature-list li:last-child > span {
  background: rgba(255, 179, 26, 0.12);
  color: var(--gold-light);
}

.feature-list strong {
  display: block;
  color: white;
  font-size: 0.9rem;
}

.feature-list p {
  color: #9e95b1;
  font-size: 0.79rem;
}

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

.security-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.028);
}

.security-card > img,
.security-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.security-card__icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(146, 116, 255, 0.23);
  border-radius: 14px;
  background: rgba(107, 62, 232, 0.14);
  color: var(--purple-light);
  font-size: 0.72rem;
  font-weight: 800;
}

.security-card p {
  color: #a8a0ba;
  font-size: 0.84rem;
}

.responsible-panel {
  display: grid;
  align-items: center;
  margin-top: 20px;
  padding: 27px 29px;
  border: 1px solid rgba(255, 179, 26, 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 179, 26, 0.08), rgba(107, 62, 232, 0.06));
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.5fr) auto;
  gap: 26px;
}

.responsible-panel__mark {
  display: inline-grid;
  min-width: 48px;
  min-height: 38px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 179, 26, 0.12);
  color: var(--gold-light);
  font-weight: 800;
}

.responsible-panel h3 {
  margin: 10px 0 0;
}

.responsible-panel p {
  color: #b4abc4;
  font-size: 0.82rem;
}

.responsible-panel .button {
  min-width: 210px;
}

.step-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.step-grid li {
  min-height: 260px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(9, 5, 31, 0.48);
}

.step-grid__number {
  display: block;
  margin-bottom: 44px;
  color: var(--purple-light);
  font-size: 1.15rem;
  font-weight: 800;
}

.step-grid h3 {
  font-size: 1rem;
}

.step-grid p {
  color: #9e95b0;
  font-size: 0.77rem;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 80px;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro p:not(.eyebrow) {
  color: #aca4bd;
}

.faq-intro .button {
  margin-top: 13px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.028);
}

.faq-list details[open] {
  border-color: rgba(146, 116, 255, 0.28);
  background: rgba(107, 62, 232, 0.065);
}

.faq-list summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  cursor: pointer;
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
  font-size: 1.18rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 20px 20px;
  color: #aaa2bb;
  font-size: 0.82rem;
}

.final-cta {
  padding: 34px 0 92px;
}

.final-cta__inner {
  position: relative;
  display: grid;
  align-items: center;
  padding: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 179, 26, 0.24);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 95% 10%, rgba(255, 179, 26, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(105, 58, 226, 0.35), rgba(19, 10, 49, 0.92));
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
}

.final-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 760px;
  color: #c1b9d0;
}

.final-cta .button {
  min-width: 215px;
}

.site-footer {
  padding: 68px 0 24px;
  border-top: 1px solid var(--line);
  background: #050216;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
}

.footer-brand > img {
  width: 145px;
  height: auto;
  margin-bottom: 12px;
}

.footer-brand > span {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 430px;
  margin-top: 15px;
  color: #9188a7;
  font-size: 0.78rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-links h3 {
  margin-bottom: 15px;
  color: #ded8eb;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  min-height: 36px;
  color: #8f87a3;
  font-size: 0.76rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.affiliate-disclosure {
  margin: 38px 0 24px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  color: #8f86a4;
  font-size: 0.7rem;
}

.affiliate-disclosure strong {
  color: #c9c2d8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #736b89;
  font-size: 0.66rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom strong {
  color: var(--gold-light);
}

.mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 0.8rem;
  }

  .header-login {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
    gap: 38px;
  }

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

  .promo-card--main {
    grid-row: span 2;
  }

  .withdrawal-flow ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .step-grid li {
    min-height: 230px;
  }

  .responsible-panel {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  }

  .responsible-panel .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .desktop-nav,
  .header-login {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    z-index: 61;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(88vw, 360px);
    max-height: 100dvh;
    flex-direction: column;
    padding: 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(105%);
    border-left: 1px solid var(--line);
    background: #0c0627;
    box-shadow: -30px 0 70px rgba(0, 0, 0, 0.4);
    gap: 5px;
    transition: transform 200ms ease;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    color: white;
    font-weight: 700;
  }

  .mobile-menu__head button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    cursor: pointer;
    font-size: 1.7rem;
  }

  .mobile-menu > a:not(.button) {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    color: #cbc3dc;
    font-size: 0.9rem;
  }

  .mobile-menu > a:not(.button):hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
  }

  .mobile-menu > .button {
    margin-top: auto;
    margin-bottom: max(2px, env(safe-area-inset-bottom));
  }

  .menu-backdrop {
    position: fixed;
    z-index: 60;
    inset: 0;
    display: block;
    padding: 0;
    border: 0;
    background: rgba(2, 0, 12, 0.67);
    backdrop-filter: blur(4px);
  }

  .menu-backdrop[hidden] {
    display: none;
  }

  .hero {
    padding-top: 55px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 700px);
    justify-self: center;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .conditions-panel {
    grid-template-columns: 1fr;
  }

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

  .mobile-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .phone-art {
    order: 2;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .responsible-panel {
    grid-template-columns: 1fr;
  }

  .responsible-panel .button {
    grid-column: auto;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .faq-intro {
    position: static;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .final-cta .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
    font-size: 15px;
  }

  html {
    scroll-padding-top: 92px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 62px 0;
  }

  .disclosure-bar__inner {
    min-height: 40px;
  }

  .disclosure-bar p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .disclosure-bar a {
    display: none;
  }

  .brand span {
    display: none;
  }

  .header-actions {
    gap: 7px;
  }

  .header-offer {
    min-height: 42px !important;
    padding: 9px 12px !important;
    border-radius: 11px;
    font-size: 0.74rem !important;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: 42px 0 48px;
  }

  .hero::before {
    transform: translateX(-70%);
  }

  h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.65rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.8rem, 8.8vw, 2.45rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .offer-card {
    width: 100%;
    min-width: 0;
  }

  .offer-card__amount strong {
    font-size: 1.9rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .hero-trust li {
    min-width: 0;
    padding: 12px 9px;
    text-align: center;
  }

  .hero-trust span {
    overflow: hidden;
    font-size: 0.63rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-visual > img {
    border-radius: 20px;
  }

  .hero-visual {
    overflow: hidden;
    padding-bottom: 18px;
  }

  .hero-visual__glow {
    inset: 0;
  }

  .hero-visual__note {
    right: 10px;
    bottom: 0;
    max-width: calc(100% - 20px);
  }

  .legal-alert {
    padding-bottom: 5px;
  }

  .legal-alert__card {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .legal-alert__links {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }

  .fact-card {
    min-height: 0;
  }

  .contents {
    margin-inline: -12px;
    padding-inline: 12px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .contents span {
    display: none;
  }

  .verdict-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-card,
  .promo-card--main {
    min-height: 0;
    grid-row: auto;
  }

  .conditions-panel {
    padding: 23px;
  }

  .mini-specs {
    grid-template-columns: 1fr;
  }

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

  .game-card {
    border-radius: 14px;
  }

  .game-card__body {
    padding: 11px 11px 13px;
  }

  .catalogue-note {
    align-items: stretch;
    flex-direction: column;
    padding: 21px;
    gap: 16px;
  }

  .catalogue-note .button {
    width: 100%;
  }

  .payment-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-logos div:last-child {
    grid-column: 1 / -1;
  }

  .withdrawal-flow ol {
    grid-template-columns: 1fr;
  }

  .phone-art {
    min-height: 480px;
    transform: scale(0.94);
    margin-block: -20px;
  }

  .phone-art__badge--top {
    right: 0;
  }

  .phone-art__badge--bottom {
    left: 0;
  }

  .step-grid {
    grid-template-columns: 1fr;
  }

  .step-grid li {
    min-height: 0;
  }

  .step-grid__number {
    margin-bottom: 24px;
  }

  .faq-list summary {
    padding: 16px;
    font-size: 0.84rem;
  }

  .faq-list details p {
    padding-inline: 16px;
  }

  .final-cta {
    padding: 22px 0 68px;
  }

  .final-cta__inner {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 45;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px max(12px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 3, 25, 0.94);
    box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
  }

  .mobile-cta > div {
    display: grid;
    min-width: 0;
    line-height: 1.2;
  }

  .mobile-cta span {
    color: #9188a6;
    font-size: 0.62rem;
    text-transform: uppercase;
  }

  .mobile-cta strong {
    overflow: hidden;
    color: white;
    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-cta .button {
    min-width: 84px;
    min-height: 46px;
    padding: 10px 17px;
  }
}

@media (max-width: 390px) {
  .header-offer {
    display: none;
  }

  .brand img {
    width: 121px;
  }

  .hero-trust strong {
    font-size: 0.92rem;
  }

  .hero-visual__note {
    font-size: 0.61rem;
  }

  .phone-art {
    transform: scale(0.86);
    margin-block: -40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
