/* Casino affiliate layout — mobile-first, jungle premium theme */

:root {
  --color-bg: #070b09;
  --color-bg-elevated: #0c1210;
  --color-surface: #111916;
  --color-surface-2: #162019;
  --color-border: #243429;
  --color-border-soft: rgba(255, 255, 255, 0.06);
  --color-text: #f2f6f0;
  --color-muted: #93a899;
  --color-gold: #f0b429;
  --color-gold-soft: rgba(240, 180, 41, 0.14);
  --color-accent: #e67e22;
  --color-accent-top: #f7b045;
  --color-accent-bottom: #d96a12;
  --color-login-top: #66d2c3;
  --color-login-bottom: #3ba99c;
  --color-pro: #4ade80;
  --color-con: #fb7185;
  --container: 910px;
  --hero-title: 1175px;
  --header-h: 60px;
  --radius: 12px;
  --radius-pill: 999px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 8px 28px rgba(230, 126, 34, 0.22);
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-h);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(59, 169, 156, 0.08), transparent 55%),
    radial-gradient(ellipse 80% 40% at 100% 0%, rgba(240, 180, 41, 0.06), transparent 50%),
    var(--color-bg);
}

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

a {
  color: var(--color-gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: linear-gradient(180deg, var(--color-accent-top), var(--color-accent-bottom));
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 8px;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

.section {
  padding-block: clamp(2.25rem, 5.5vw, 4rem);
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 3.8vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.section__intro {
  margin: 0 0 1.5rem;
  color: var(--color-muted);
}

.card-surface {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(7, 11, 9, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border-soft);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 100%;
  max-width: min(100%, calc(var(--container) + 48px));
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

.site-header__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.site-header__logo img {
  display: block;
  width: auto;
  height: 32px;
}

.site-header__logo:hover {
  opacity: 0.88;
}

.site-header__burger {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.site-header__burger:hover {
  border-color: rgba(240, 180, 41, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.site-header__burger-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.site-header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--color-text);
  transition: transform 0.25s var(--ease-out), opacity 0.2s ease;
}

.site-header.is-nav-open .site-header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .site-header__burger-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .site-header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-header__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__list a {
  display: inline-block;
  padding: 8px 12px;
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}

.site-header__list a:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
}

.site-header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s var(--ease-out), box-shadow 0.15s ease, filter 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn--ghost:hover {
  border-color: rgba(102, 210, 195, 0.45);
}

.btn--primary {
  background: linear-gradient(180deg, var(--color-accent-top) 0%, var(--color-accent-bottom) 100%);
  color: #fff;
  box-shadow: var(--shadow-glow);
  border-color: rgba(255, 255, 255, 0.08);
}

.btn--primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 10px 32px rgba(230, 126, 34, 0.32);
}

.btn--login {
  background: linear-gradient(180deg, var(--color-login-top) 0%, var(--color-login-bottom) 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(59, 169, 156, 0.22);
}

.btn--login:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 28px rgba(59, 169, 156, 0.3);
}

@media (max-width: 379px) {
  .site-header__login {
    display: none;
  }

  .btn--primary {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.82rem;
  }
}

@media (min-width: 380px) {
  .site-header__login {
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .site-header__burger {
    display: inline-flex;
  }

  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex: none;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    background: rgba(7, 11, 9, 0.97);
    border-bottom: 1px solid transparent;
    transition: max-height 0.35s var(--ease-out), opacity 0.25s ease, visibility 0.25s ease;
  }

  .site-header.is-nav-open .site-header__nav {
    max-height: 320px;
    opacity: 1;
    visibility: visible;
    border-bottom-color: var(--color-border-soft);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

  .site-header__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px clamp(16px, 4vw, 24px) 16px;
  }

  .site-header__list a {
    padding: 14px 12px;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .site-header__list a:hover {
    background: rgba(240, 180, 41, 0.08);
    color: var(--color-gold);
  }
}

@media (min-width: 768px) {
  .site-header__nav {
    position: static;
    max-height: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
  }
}

@media (max-width: 639px) and (min-width: 768px) {
  .site-header__inner {
    flex-wrap: wrap;
    height: auto;
    min-height: var(--header-h);
    padding-block: 10px;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding-block: clamp(1.75rem, 5vw, 3rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(59, 169, 156, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(230, 126, 34, 0.08), transparent 55%);
  pointer-events: none;
}

.hero__title-wrap {
  position: relative;
  max-width: var(--hero-title);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

.hero__title {
  margin: 0 auto 1rem;
  text-align: center;
  font-size: clamp(1.85rem, 5.5vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 800;
  text-wrap: balance;
  color: var(--color-text);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__lead.container {
  position: relative;
  max-width: var(--hero-title);
  margin-top: 0;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

/* ——— Promo banner section ——— */
.section--promo-banner {
  padding-top: clamp(1rem, 3vw, 1.75rem);
}

.section--promo-banner .media-wide {
  border: 1px solid rgba(240, 180, 41, 0.12);
  box-shadow: var(--shadow);
}

.section--promo-banner .media-wide__inner {
  padding: 0;
  display: block;
  background: none;
}

/* ——— Media full width inside container ——— */
.media-wide {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: linear-gradient(145deg, var(--color-surface-2), var(--color-bg-elevated));
  text-decoration: none;
  color: inherit;
}

.media-wide__inner {
  aspect-ratio: 2172 / 724;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 32, 25, 0.95), rgba(12, 18, 16, 0.98)),
    radial-gradient(circle at 70% 30%, rgba(230, 126, 34, 0.08), transparent 50%);
}

.media-wide img,
.media-wide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ——— Tables ——— */
.table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow);
}

.table {
  width: max-content !important;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  table-layout: auto;
}

.table th,
.table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border-soft);
  vertical-align: top;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

.table th {
  font-weight: 700;
  color: var(--color-text);
  background: linear-gradient(180deg, rgba(240, 180, 41, 0.12), rgba(240, 180, 41, 0.04));
}

.table tbody tr {
  transition: background 0.15s ease;
}

.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.table tr:last-child th,
.table tr:last-child td {
  border-bottom: none;
}

.table-caption-above {
  caption-side: top;
  padding: 0 0 0.75rem;
  font-weight: 600;
}

.table-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}

/* ——— Pros / cons grid ——— */
.procon {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-block: 1rem 1.25rem;
}

@media (max-width: 640px) {
  .procon {
    grid-template-columns: 1fr;
  }
}

.procon__block {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.procon__title {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.procon__list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text);
  font-size: 0.94rem;
}

.procon--pro {
  border-color: rgba(74, 222, 128, 0.25);
  background: linear-gradient(145deg, rgba(74, 222, 128, 0.08), var(--color-surface));
}

.procon--pro .procon__title {
  color: var(--color-pro);
}

.procon--con {
  border-color: rgba(251, 113, 133, 0.25);
  background: linear-gradient(145deg, rgba(251, 113, 133, 0.07), var(--color-surface));
}

.procon--con .procon__title {
  color: var(--color-con);
}

/* ——— Panels / subs ——— */
.subsection {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.subsection:last-child {
  margin-bottom: 0;
}

.subsection__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.05rem, 2.8vw, 1.22rem);
  line-height: 1.3;
  font-weight: 700;
}

.figure-center {
  max-width: 100%;
  margin: 1.5rem auto;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow);
}

.figure-center figcaption {
  padding: 0.7rem 0.9rem;
  font-size: 0.82rem;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border-soft);
}

.figure-center img {
  width: 100%;
  aspect-ratio: 2172 / 724;
  object-fit: cover;
}

.figure-center > a {
  display: block;
}

/* ——— Steps ——— */
.steps-list {
  margin: 1rem 0 1rem;
  padding-left: 1.35rem;
}

.steps-list li {
  margin-bottom: 0.55rem;
  color: var(--color-text);
}

.steps-list li::marker {
  color: var(--color-gold);
  font-weight: 700;
}

.section-outro {
  margin: 1.25rem 0 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.u-mt-md {
  margin-top: 1.5rem;
}

.u-mt-sm {
  margin-top: 1rem;
}

.u-mt-lg {
  margin-top: 1.35rem;
}

/* ——— Card grid ——— */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 1.75rem;
}

@media (min-width: 480px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.card-tile {
  position: relative;
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: linear-gradient(160deg, var(--color-surface-2), var(--color-surface));
  font-size: 0.82rem;
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: transform 0.2s var(--ease-out), border-color 0.2s ease, box-shadow 0.2s ease;
}

.card-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(240, 180, 41, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 180, 41, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.card-tile:hover::before {
  opacity: 1;
}

.card-tile__label {
  position: relative;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
}

.bullet-list {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--color-muted);
}

.bullet-list li {
  margin-bottom: 0.35rem;
}

.bullet-list li::marker {
  color: var(--color-gold);
}

/* ——— FAQ accordion ——— */
#faq > h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 3.8vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.is-open {
  border-color: rgba(240, 180, 41, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.faq-question {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 15px 16px;
}

.faq-question h3 {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
}

.faq-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease-out);
  flex-shrink: 0;
}

.faq-item.is-open .faq-arrow {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border-soft);
  font-size: 0.94rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  padding-top: 12px;
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--color-border-soft);
  padding-block: 1.5rem 2rem;
  background: linear-gradient(180deg, var(--color-bg-elevated), #050807);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  padding-inline: clamp(16px, 4vw, 24px);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.84rem;
  color: var(--color-muted);
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-size: 0.86rem;
}

.site-footer__links a {
  color: var(--color-muted);
  text-decoration: none;
  padding: 6px 4px;
  transition: color 0.15s ease;
}

.site-footer__links a:hover {
  color: var(--color-gold);
}

/* ——— Article body (review content) ——— */
.article-body h2 {
  margin: clamp(2rem, 4vw, 2.75rem) 0 0.75rem;
  font-size: clamp(1.45rem, 3.8vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: clamp(1.05rem, 2.8vw, 1.22rem);
  line-height: 1.3;
  font-weight: 700;
}

.article-body p {
  margin: 0 0 1rem;
  color: var(--color-text);
}

.article-body div:has(> table) {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  margin-block: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow);
}

.article-body table {
  width: max-content !important;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  table-layout: auto;
}

.article-body table th,
.article-body table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border-soft);
  vertical-align: top;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

.article-body table th {
  font-weight: 700;
  color: var(--color-text);
  background: linear-gradient(180deg, rgba(240, 180, 41, 0.12), rgba(240, 180, 41, 0.04));
}

.article-body table tbody tr {
  transition: background 0.15s ease;
}

.article-body table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.article-body table tr:last-child th,
.article-body table tr:last-child td {
  border-bottom: none;
}

.article-body ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.2rem;
  color: var(--color-muted);
}

.article-body ul li {
  margin-bottom: 0.35rem;
}

.article-body ul li::marker {
  color: var(--color-gold);
}

.article-body ol {
  margin: 1rem 0 1rem;
  padding-left: 1.35rem;
}

.article-body ol li {
  margin-bottom: 0.55rem;
  color: var(--color-text);
}

.article-body ol li::marker {
  color: var(--color-gold);
  font-weight: 700;
}

.article-body figure {
  max-width: 100%;
  margin: 1.5rem auto;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow);
}

.article-body figure img {
  width: 100%;
  aspect-ratio: 2172 / 724;
  object-fit: cover;
}

.article-body figure > a {
  display: block;
}

.article-body .media-wide {
  margin-top: 1.5rem;
}

/* ——— Code inline ——— */
code {
  font-size: 0.88em;
  padding: 0.12em 0.35em;
  border-radius: 6px;
  background: rgba(240, 180, 41, 0.1);
  color: #f5d78e;
}

/* ——— Breakpoint polish ——— */
@media (max-width: 320px) {
  .site-header__inner {
    gap: 8px;
  }

  .site-header__logo img {
    height: 28px;
  }

  .hero__title {
    font-size: 1.65rem;
  }

  .cards-grid {
    gap: 8px;
  }

  .card-tile {
    min-height: 80px;
    padding: 0.7rem 0.6rem;
  }
}

@media (min-width: 1280px) {
  .site-header__inner {
    max-width: min(100%, calc(var(--hero-title) + 48px));
  }
}

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

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

  .btn:hover,
  .card-tile:hover {
    transform: none;
  }
}
