:root {
  color-scheme: dark;
  --bg: #05070c;
  --navy: #07111f;
  --navy-2: #0a1726;
  --panel: #0d1b2a;
  --panel-2: #101f30;
  --gold: #f5c45a;
  --gold-2: #d69420;
  --emerald: #24c98a;
  --ruby: #e33d55;
  --text: #fff8e8;
  --muted: #aeb9c7;
  --line: rgba(245, 196, 90, .24);
  --green-line: rgba(36, 201, 138, .28);
  --shadow: 0 16px 40px rgba(0, 0, 0, .36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #d4d7dc;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: #d4d7dc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input {
  font: inherit;
}

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

img,
video,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--emerald);
  outline-offset: 3px;
}

.app-shell {
  position: relative;
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 2%, rgba(245, 196, 90, .08), transparent 22%),
    var(--bg);
  box-shadow: 0 0 42px rgba(7, 17, 31, .24);
  padding-bottom: calc(78px + env(safe-area-inset-bottom));
}

.touch-target {
  min-height: 44px;
}

.top-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  padding: 5px 12px;
  color: #d4deea;
  background: #020407;
  border-bottom: 1px solid rgba(36, 201, 138, .16);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .02em;
}

.top-note span:last-child {
  color: var(--gold);
  font-weight: 950;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  padding: 9px 11px;
  background: rgba(5, 7, 12, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 1000;
  letter-spacing: -.075em;
  line-height: 1;
  text-shadow: 0 0 22px rgba(245, 196, 90, .2);
}

.brand-crown {
  position: relative;
  top: -2px;
  font-size: 1.1rem;
  font-style: normal;
}

.header-actions {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .015em;
  line-height: 1.1;
  text-align: center;
  transition: transform .18s ease, filter .18s ease, border-color .18s ease;
}

.button:active {
  transform: translateY(1px);
}

.button-gold {
  color: #1a1204;
  background: linear-gradient(180deg, #ffe28c 0%, var(--gold) 48%, #dda128 100%);
  border-color: #ffe7a8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .42),
    0 8px 24px rgba(214, 148, 32, .18);
}

.button-gold:hover {
  filter: brightness(1.06);
}

.button-ghost {
  color: var(--text);
  background: rgba(7, 17, 31, .78);
  border-color: rgba(245, 196, 90, .72);
}

.button-ghost:hover {
  border-color: var(--gold);
}

.button-large {
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: .78rem;
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #05070c;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 12, .08) 0%, rgba(5, 7, 12, .38) 48%, #05070c 100%),
    linear-gradient(90deg, rgba(5, 7, 12, .98) 0%, rgba(5, 7, 12, .78) 44%, rgba(5, 7, 12, .12) 86%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  width: 76%;
  padding: 54px 15px 42px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: .62rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 350px;
  margin: 8px 0 0;
  font-size: clamp(2.25rem, 11.2vw, 3.45rem);
  line-height: .98;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 330px;
  margin: 14px 0 0;
  color: #e6e7e8;
  font-size: .82rem;
  font-weight: 650;
}

.hero-actions {
  display: grid;
  gap: 9px;
  width: min(100%, 290px);
  margin-top: 20px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: -29px 10px 0;
  padding: 8px;
  background:
    linear-gradient(135deg, rgba(5, 34, 29, .97), rgba(5, 15, 25, .98));
  border: 1px solid var(--green-line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.trust-strip article {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 85px;
  padding: 8px 3px;
  border-right: 1px solid rgba(36, 201, 138, .17);
  text-align: center;
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip article > span {
  color: var(--emerald);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.trust-strip strong {
  margin-top: 8px;
  font-size: .57rem;
  line-height: 1.25;
}

.trust-strip small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .5rem;
}

.section {
  padding: 25px 12px;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(16px, 1fr) auto minmax(16px, 1fr);
  align-items: center;
  gap: 10px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.section-title > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 196, 90, .58));
}

.section-title > span:last-child {
  background: linear-gradient(90deg, rgba(245, 196, 90, .58), transparent);
}

.section-lead {
  margin: 8px auto 0;
  max-width: 370px;
  color: var(--muted);
  font-size: .72rem;
  text-align: center;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 15px;
}

.game-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 10px 6px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(245, 196, 90, .15), transparent 34%),
    linear-gradient(145deg, #112236, #08111e);
  border: 1px solid rgba(245, 196, 90, .42);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
  text-align: center;
}

.game-card:hover {
  border-color: var(--gold);
}

.game-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  color: var(--gold);
  background:
    linear-gradient(145deg, rgba(245, 196, 90, .15), rgba(36, 201, 138, .06));
  border: 1px solid rgba(245, 196, 90, .32);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 950;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .24);
}

.game-card strong {
  color: #ffe094;
  font-size: .72rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.game-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .51rem;
}

.promo-card,
.trust-visual,
.category-trust {
  position: relative;
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 2px 12px 18px;
  padding: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(245, 196, 90, .13), transparent 42%),
    linear-gradient(145deg, #122238, #08111d);
  border: 1px solid rgba(245, 196, 90, .45);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.promo-card img,
.trust-visual img,
.category-trust img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(245, 196, 90, .2);
  border-radius: 12px;
}

.promo-card h2,
.trust-visual h2,
.category-trust h2 {
  margin: 5px 0 0;
  color: var(--gold);
  font-size: 1.08rem;
  line-height: 1.15;
}

.promo-card p:not(.eyebrow),
.trust-visual p:not(.eyebrow),
.category-trust p:not(.eyebrow) {
  margin: 7px 0 10px;
  color: var(--muted);
  font-size: .65rem;
}

.promo-card .button {
  width: 100%;
}

.why-section {
  background: linear-gradient(180deg, rgba(13, 27, 42, .16), rgba(13, 27, 42, .52));
  border-block: 1px solid rgba(245, 196, 90, .12);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 15px;
}

.why-grid article {
  min-width: 0;
  min-height: 146px;
  padding: 12px 8px;
  background: linear-gradient(145deg, #102036, #09131f);
  border: 1px solid rgba(245, 196, 90, .3);
  border-radius: 13px;
  text-align: center;
}

.why-grid b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 8px;
  color: var(--emerald);
  border: 1px solid var(--green-line);
  border-radius: 50%;
  font-size: 1rem;
}

.why-grid strong {
  display: block;
  color: var(--text);
  font-size: .7rem;
}

.why-grid p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .57rem;
  line-height: 1.45;
}

.trust-visual {
  margin-top: 20px;
  border-color: var(--green-line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 15px;
}

.steps article {
  min-width: 0;
  min-height: 130px;
  padding: 11px 7px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.steps b {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: #06130e;
  background: var(--emerald);
  border-radius: 50%;
  font-size: .72rem;
}

.steps strong {
  display: block;
  margin-top: 9px;
  color: var(--gold);
  font-size: .64rem;
  line-height: 1.25;
}

.steps p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .56rem;
  line-height: 1.4;
}

.steps-section > .button {
  width: 100%;
  margin-top: 12px;
}

.faq-list {
  display: grid;
  gap: 8px;
  margin-top: 15px;
}

.faq-item {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: left;
}

.faq-button b {
  color: var(--gold);
  font-size: 1rem;
  transition: transform .18s ease;
}

.faq-button[aria-expanded="true"] b {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 12px 11px;
  color: var(--muted);
  border-top: 1px solid rgba(245, 196, 90, .1);
}

.faq-panel p {
  margin: 10px 0 0;
  font-size: .68rem;
}

.site-footer {
  padding: 19px 14px 23px;
  color: var(--muted);
  background: #030509;
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer strong {
  color: var(--gold);
  font-size: .77rem;
}

.site-footer p {
  margin: 8px auto;
  max-width: 380px;
  font-size: .61rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 13px;
  margin-top: 10px;
  font-size: .62rem;
  font-weight: 780;
}

.bottom-nav {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 480px);
  min-height: 69px;
  margin: 0 auto;
  padding: 5px 5px calc(5px + env(safe-area-inset-bottom));
  background: rgba(5, 7, 12, .97);
  border-top: 1px solid rgba(245, 196, 90, .35);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .32);
  backdrop-filter: blur(12px);
}

.bottom-nav a {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  min-width: 0;
  color: #98a3b2;
  border-radius: 10px;
  font-size: .52rem;
  font-weight: 850;
  text-transform: uppercase;
}

.bottom-nav a span {
  color: #c5ced9;
  font-size: 1rem;
  line-height: 1;
}

.bottom-nav .bottom-register {
  color: #161004;
  background: linear-gradient(180deg, #ffe58f, var(--gold));
  box-shadow: 0 0 22px rgba(245, 196, 90, .24);
}

.bottom-nav .bottom-register span {
  color: #161004;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 12px;
  overflow: hidden;
  color: var(--muted);
  background: #07101b;
  border-bottom: 1px solid rgba(245, 196, 90, .12);
  font-size: .65rem;
  white-space: nowrap;
}

.breadcrumbs a {
  color: var(--gold);
}

.category-hero {
  position: relative;
  min-height: 485px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.category-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 7, 12, .2), rgba(5, 7, 12, .96) 78%),
    linear-gradient(90deg, rgba(5, 7, 12, .96), rgba(5, 7, 12, .28));
}

.category-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 485px;
  padding: 28px 14px;
}

.category-hero h1 {
  margin: 7px 0 0;
  max-width: 410px;
  font-size: clamp(1.75rem, 8.2vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -.048em;
}

.category-hero-copy > p:not(.eyebrow) {
  margin: 10px 0 15px;
  max-width: 380px;
  color: #d1d8df;
  font-size: .78rem;
}

.category-hero .button {
  width: min(100%, 280px);
}

.category-intro h2,
.register-panel h2 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.18;
}

.category-intro > p,
.register-panel > p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .76rem;
}

.feature-stack {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.feature-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  background: linear-gradient(145deg, #102036, #09131f);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.feature-card > b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #07130e;
  background: var(--emerald);
  border-radius: 50%;
  font-size: .72rem;
}

.feature-card strong {
  color: var(--gold);
  font-size: .76rem;
}

.feature-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .66rem;
}

.category-trust {
  margin-top: 0;
  border-color: var(--green-line);
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 15px;
}

.related-link {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 1px 8px;
  align-items: center;
  padding: 9px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.related-link .game-mark {
  grid-row: 1 / 3;
  width: 36px;
  height: 36px;
  margin: 0;
  font-size: .72rem;
}

.related-link strong {
  overflow: hidden;
  font-size: .67rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-link small {
  color: var(--muted);
  font-size: .52rem;
}

.register-panel {
  margin: 0 12px 24px;
  padding: 19px 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(36, 201, 138, .15), transparent 40%),
    linear-gradient(145deg, #13243a, #08121e);
  border: 1px solid rgba(245, 196, 90, .42);
  border-radius: 15px;
  text-align: center;
}

.register-panel .button {
  width: 100%;
  margin-top: 14px;
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  padding: 30px 18px;
  text-align: center;
}

.not-found h1,
.not-found p {
  margin: 0;
}

.not-found > p:not(.eyebrow) {
  color: var(--muted);
}

.content-list,
.article-shell {
  padding: 14px 12px 24px;
}

.content-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 10px;
  min-height: 112px;
  margin-top: 9px;
  padding: 8px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.content-card img {
  width: 108px;
  height: 100%;
  min-height: 94px;
  object-fit: cover;
  border-radius: 8px;
}

.content-card h2 {
  display: -webkit-box;
  margin: 1px 0 5px;
  overflow: hidden;
  font-size: .78rem;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.content-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: .62rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.content-card time {
  color: var(--emerald);
  font-size: .53rem;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.pager a,
.pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 6px 9px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: .67rem;
}

.article-cover {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.article-head {
  padding: 16px 1px 13px;
  border-bottom: 1px solid var(--line);
}

.article-head h1 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-top: 9px;
  color: var(--muted);
  font-size: .6rem;
}

.article-body {
  padding: 5px 0 10px;
  overflow-wrap: anywhere;
  color: #e8edf2;
  font-size: .91rem;
  line-height: 1.78;
}

.article-body h2 {
  margin: 1.45em 0 .52em;
  color: var(--gold);
  font-size: 1.22rem;
  line-height: 1.3;
}

.article-body h3 {
  margin: 1.25em 0 .42em;
  font-size: 1.03rem;
}

.article-body a {
  color: #ffe08a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body blockquote {
  margin: 1em 0;
  padding: 11px 12px;
  color: #d9e0e7;
  background: rgba(36, 201, 138, .06);
  border-left: 3px solid var(--emerald);
}

.article-body table,
.article-body pre {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

.article-body table {
  border-collapse: collapse;
  font-size: .78rem;
}

.article-body th,
.article-body td {
  padding: 8px;
  border: 1px solid var(--line);
}

.pagebreak,
.article-nav {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.article-nav {
  grid-template-columns: 1fr 1fr;
}

.article-nav section {
  min-width: 0;
  min-height: 72px;
  padding: 10px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .66rem;
  overflow-wrap: anywhere;
}

.article-nav span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: .55rem;
  font-weight: 900;
  text-transform: uppercase;
}

.related-posts {
  margin-top: 16px;
  padding: 13px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.related-posts h2 {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 1rem;
}

.related-posts a {
  display: block;
  padding: 9px 0;
  border-top: 1px solid rgba(245, 196, 90, .12);
  font-size: .72rem;
}

.responsible-note {
  margin: 13px 12px 22px;
  padding: 11px;
  color: #d3dbe3;
  background: rgba(36, 201, 138, .06);
  border: 1px solid var(--green-line);
  border-radius: 10px;
  font-size: .65rem;
  text-align: center;
}

@media (max-width: 360px) {
  .brand {
    font-size: 1.38rem;
  }

  .header-actions .button {
    padding-inline: 8px;
    font-size: .61rem;
  }

  .hero-copy {
    width: 84%;
  }

  .hero h1 {
    font-size: 2.28rem;
  }

  .trust-strip {
    margin-inline: 7px;
  }

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

  .why-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .why-grid article,
  .steps article {
    min-height: 0;
  }

  .promo-card,
  .trust-visual,
  .category-trust {
    grid-template-columns: 1fr;
  }

  .promo-card img,
  .trust-visual img,
  .category-trust img {
    max-height: 180px;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
