:root {
    --page: #0d0e11;
    --surface: #15171d;
    --surface-2: #1e222b;
    --surface-3: #252a34;
    --ink: #fbf4df;
    --muted: #b9b0a0;
    --soft: #ded5c2;
    --gold: #f2bb4b;
    --gold-2: #ffd978;
    --teal: #28d1c1;
    --ruby: #c94750;
    --blue: #6ba9ff;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.2);
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
    --radius: 8px;
    --container: 1180px;
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, rgba(242, 187, 75, 0.05), transparent 18rem),
        linear-gradient(135deg, #0d0e11 0%, #141721 52%, #1a1115 100%);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    letter-spacing: 0;
}

body.age-gate-open {
    overflow: hidden;
}

a {
    color: inherit;
}

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin-inline: auto;
}

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

.skip-link:focus {
    top: 1rem;
    left: 1rem;
    width: auto;
    height: auto;
    padding: 0.7rem 1rem;
    z-index: 1000;
    clip: auto;
    background: var(--gold);
    color: #12100b;
    border-radius: var(--radius);
}

.compliance-strip {
    background: #090a0d;
    border-bottom: 1px solid var(--line);
}

.compliance-strip__inner {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    padding: 0.55rem 0;
    color: #f8e4a8;
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.compliance-strip span {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-height: 1.65rem;
    padding: 0.12rem 0.6rem;
    border: 1px solid rgba(242, 187, 75, 0.32);
    border-radius: 999px;
    background: rgba(242, 187, 75, 0.08);
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(13, 14, 17, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    min-height: 4.8rem;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.34);
}

.brand strong {
    display: block;
    color: #fff6d6;
    font-size: 1.12rem;
    line-height: 1.1;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.76rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav a {
    padding: 0.55rem 0.68rem;
    color: #eee6d1;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 750;
    font-size: 0.9rem;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #130f09;
    background: var(--gold);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-toggle {
    display: none;
    width: 2.65rem;
    height: 2.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 1.2rem;
    height: 2px;
    margin: 0.25rem auto;
    background: currentColor;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.76rem 1.12rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:disabled {
    opacity: 0.62;
    cursor: wait;
    transform: none;
}

.button--primary {
    color: #151007;
    background: linear-gradient(135deg, #ffe89a, var(--gold) 52%, #d9822c);
    box-shadow: 0 14px 34px rgba(242, 187, 75, 0.23);
}

.button--secondary {
    color: #06100d;
    background: linear-gradient(135deg, #8dffe1, var(--teal));
}

.button--ghost {
    color: #fff3ce;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.075);
}

.eyebrow {
    margin: 0 0 0.7rem;
    color: var(--gold-2);
    font-weight: 950;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.home-hero {
    position: relative;
    min-height: min(760px, calc(100vh - 6rem));
    display: grid;
    align-items: end;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.home-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 8, 10, 0.92) 0%, rgba(8, 8, 10, 0.72) 38%, rgba(8, 8, 10, 0.24) 78%),
        linear-gradient(0deg, rgba(13, 14, 17, 0.84) 0%, transparent 38%);
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: end;
    min-height: inherit;
    padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.home-hero__copy {
    max-width: 42rem;
}

.home-hero h1,
.game-hero h1 {
    margin: 0;
    color: #fff6d6;
    font-size: clamp(3.4rem, 9vw, 7.4rem);
    line-height: 0.92;
    letter-spacing: 0;
    text-shadow: 0 12px 42px rgba(0, 0, 0, 0.66);
}

.home-hero p:not(.eyebrow),
.game-hero p:not(.eyebrow) {
    max-width: 42rem;
    margin: 1.1rem 0 0;
    color: #eee2c6;
    font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.hero-actions,
.game-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.55rem;
}

.notice-band {
    padding: clamp(1.1rem, 3vw, 1.6rem) 0;
    background: #101218;
    border-bottom: 1px solid var(--line);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.notice-grid div {
    min-height: 7rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.notice-grid strong,
.notice-grid span {
    display: block;
}

.notice-grid strong {
    color: #ffe08a;
    font-size: 1.05rem;
}

.notice-grid span {
    color: var(--muted);
    margin-top: 0.35rem;
}

.games-section,
.content-band,
.content-page,
.game-stage {
    padding: clamp(2.4rem, 6vw, 5rem) 0;
}

.section-heading {
    max-width: 48rem;
    margin-bottom: 1.5rem;
}

.section-heading h2,
.content-band h2,
.content-page h1,
.game-info h2 {
    margin: 0;
    color: #fff6d6;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1;
    letter-spacing: 0;
}

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

.game-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.game-card a {
    display: grid;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
}

.game-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #0b0d12;
    transition: transform 420ms ease, filter 420ms ease;
}

.game-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.04);
}

.game-card__body {
    position: relative;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-top: 3px solid var(--game-accent);
}

.game-card__body p {
    margin: 0;
    color: var(--game-accent);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.game-card__body h3 {
    margin: 0;
    color: #fff6d6;
    font-size: 1.5rem;
    line-height: 1.08;
}

.game-card__body span {
    display: block;
    color: var(--muted);
}

.content-band {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.content-band__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    gap: clamp(1.2rem, 4vw, 3rem);
    align-items: start;
}

.content-band__text,
.content-wrap {
    max-width: 62rem;
}

.content-band__text p,
.content-page p,
.content-page li {
    color: #ded4bd;
}

.content-band__panel,
.feature-card,
.notice-card,
.policy-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.065);
    box-shadow: var(--shadow);
}

.content-band__panel {
    padding: 1.25rem;
}

.content-band__panel ul,
.content-page ul {
    padding-left: 1.2rem;
}

.game-hero {
    padding: clamp(2.2rem, 5vw, 4.6rem) 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        linear-gradient(180deg, #11141b, #0d0e11);
    border-bottom: 1px solid var(--line);
}

.game-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(22rem, 1.14fr);
    gap: clamp(1.2rem, 4vw, 3rem);
    align-items: center;
}

.game-hero__copy h1 {
    font-size: clamp(3rem, 7vw, 5.8rem);
}

.hero-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.35rem;
}

.hero-flags span {
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    color: #0e1114;
    background: var(--game-accent);
    font-size: 0.82rem;
    font-weight: 900;
}

.game-hero__art {
    justify-self: stretch;
}

.game-hero__art img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.game-stage__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 22.5rem);
    gap: 1rem;
    align-items: start;
}

.game-shell {
    position: relative;
    overflow: hidden;
    padding: clamp(0.85rem, 2vw, 1.2rem);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        #101218;
    box-shadow: var(--shadow);
}

.game-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 4px solid var(--game-accent);
    pointer-events: none;
}

.machine-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.machine-top h2 {
    margin: 0;
    color: #fff6d6;
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    line-height: 1;
}

.machine-label {
    margin: 0 0 0.2rem;
    color: var(--game-accent);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.machine-badge {
    flex: 0 0 auto;
    padding: 0.42rem 0.62rem;
    border-radius: var(--radius);
    color: #12100b;
    background: var(--gold);
    font-size: 0.8rem;
    font-weight: 950;
}

.meters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.meters div {
    min-width: 0;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.22);
}

.meters span,
.meters strong {
    display: block;
}

.meters span {
    color: var(--muted);
    font-size: 0.76rem;
}

.meters strong {
    overflow-wrap: anywhere;
    color: #fff8dc;
    font-size: clamp(1.02rem, 1.8vw, 1.32rem);
    line-height: 1.15;
}

.slot-frame {
    position: relative;
    overflow: hidden;
    padding: clamp(0.55rem, 1.4vw, 0.85rem);
    border: 2px solid color-mix(in srgb, var(--game-accent), white 12%);
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 12%, transparent 88%, rgba(255, 255, 255, 0.08)),
        linear-gradient(180deg, #08090c, #11141b);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(0.35rem, 1vw, 0.62rem);
}

.reel {
    display: grid;
    grid-template-rows: repeat(3, minmax(4.9rem, 1fr));
    gap: clamp(0.35rem, 1vw, 0.62rem);
}

.slot-cell {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(4.9rem, 9vw, 7.6rem);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
        #171b22;
    box-shadow: inset 0 0 26px rgba(0, 0, 0, 0.34);
    padding: 0.2rem;
}

.slot-cell img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
    transform: translateZ(0);
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.28));
}

.slot-cell__label {
    display: none;
}

.reel.is-spinning .slot-cell img {
    animation: reelBlur 120ms linear infinite;
}

.slot-cell.is-win {
    border-color: var(--gold);
    animation: winPulse 960ms ease-in-out infinite;
}

.slot-cell.is-win::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.42), 0 0 24px var(--game-accent);
    pointer-events: none;
}

.payline-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--game-accent), transparent 78%), transparent);
    opacity: 0;
    transform: translateX(-80%);
}

.game-shell.feature-cascade .payline-glow,
.game-shell.feature-opal .payline-glow,
.game-shell.feature-beacon .payline-glow {
    animation: sweep 1.2s ease-out;
}

.game-message {
    min-height: 3.2rem;
    margin: 1rem 0 0;
    color: #eee4c6;
}

.win-history {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    min-height: 2.2rem;
    margin-top: 0.65rem;
}

.win-history span {
    display: inline-flex;
    align-items: center;
    min-height: 1.85rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.075);
    font-weight: 800;
}

.win-history span.is-positive {
    color: #12100b;
    background: var(--gold);
}

.coin-spark {
    position: absolute;
    bottom: 14%;
    width: 0.68rem;
    height: 0.68rem;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff8bf, var(--gold) 58%, #d1751e);
    pointer-events: none;
    animation: coinBurst 1s ease-out forwards;
}

.game-info {
    display: grid;
    gap: 0.85rem;
}

.game-info h2 {
    font-size: 1.35rem;
}

.symbol-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.symbol-card {
    display: grid;
    grid-template-columns: 3.2rem minmax(0, 1fr);
    align-items: center;
    gap: 0.58rem;
    min-height: 4.3rem;
    padding: 0.52rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.symbol-card img {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 6px;
    object-fit: cover;
}

.symbol-card span {
    min-width: 0;
    color: #fff7d2;
    font-weight: 850;
    font-size: 0.85rem;
    line-height: 1.15;
}

.feature-card,
.notice-card {
    padding: 0.95rem;
}

.feature-card h3 {
    margin: 0 0 0.35rem;
    color: var(--game-accent);
}

.feature-card p,
.notice-card p {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.content-page {
    background: rgba(255, 255, 255, 0.02);
}

.content-wrap {
    margin-inline: auto;
}

.content-page h1 {
    margin-bottom: 0.8rem;
}

.content-page h2 {
    margin: 2rem 0 0.4rem;
    color: #fff7d2;
    font-size: 1.55rem;
}

.content-page h3 {
    margin: 1.4rem 0 0.2rem;
    color: #f8dfa0;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.policy-card {
    padding: 1rem;
}

.policy-card strong {
    color: #ffe08a;
}

.site-footer {
    padding: clamp(2.2rem, 5vw, 3rem) 0 1rem;
    background: #08090b;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(10rem, 0.5fr) minmax(0, 0.9fr);
    gap: 1.5rem;
}

.footer-brand {
    color: #fff7d2;
    font-weight: 950;
    margin-bottom: 0.8rem;
}

.footer-brand img,
.age-gate__panel img {
    border-radius: 50%;
    object-fit: cover;
}

.site-footer p,
.footer-note {
    color: var(--muted);
}

.site-footer nav {
    display: grid;
    gap: 0.5rem;
    align-content: start;
}

.site-footer nav a,
.footer-note a {
    color: #ffe08a;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    color: #8f8874;
    font-size: 0.9rem;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(14px);
}

.age-gate[hidden] {
    display: none;
}

.age-gate__panel {
    max-width: 30rem;
    padding: 1.4rem;
    border: 1px solid rgba(242, 187, 75, 0.35);
    border-radius: var(--radius);
    background: #11141b;
    box-shadow: var(--shadow);
    text-align: center;
}

.age-gate__panel img {
    margin: 0 auto 0.8rem;
}

.age-gate__panel h2 {
    margin: 0;
    color: #fff7d2;
    line-height: 1.05;
}

.age-gate__panel p {
    color: var(--muted);
}

.age-gate__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem;
}

@keyframes reelBlur {
    0% {
        transform: translateY(-9%) scale(0.96);
        filter: blur(1px) drop-shadow(0 10px 16px rgba(0, 0, 0, 0.36));
    }
    100% {
        transform: translateY(9%) scale(1.04);
        filter: blur(2px) drop-shadow(0 10px 16px rgba(0, 0, 0, 0.36));
    }
}

@keyframes winPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: inset 0 0 26px rgba(0, 0, 0, 0.35), 0 0 12px rgba(242, 187, 75, 0.28);
    }
    50% {
        transform: scale(1.035);
        box-shadow: inset 0 0 26px rgba(0, 0, 0, 0.35), 0 0 26px rgba(242, 187, 75, 0.55);
    }
}

@keyframes sweep {
    0% {
        opacity: 0;
        transform: translateX(-85%);
    }
    22% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(85%);
    }
}

@keyframes coinBurst {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5);
    }
    15% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(var(--spark-x), -10rem) rotate(540deg) scale(1.1);
    }
}

@media (max-width: 1040px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        padding: 0.75rem;
        background: rgba(13, 14, 17, 0.98);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a {
        padding: 0.82rem;
    }

    .notice-grid,
    .game-cards,
    .content-band__inner,
    .game-hero__inner,
    .game-stage__inner,
    .footer-grid,
    .policy-grid {
        grid-template-columns: 1fr;
    }

    .game-hero__art {
        max-width: 44rem;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 1rem, var(--container));
    }

    .compliance-strip__inner {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .home-hero {
        min-height: 38rem;
    }

    .home-hero__media img {
        object-position: 62% center;
    }

    .home-hero h1,
    .game-hero h1 {
        font-size: clamp(3rem, 16vw, 4.8rem);
    }

    .notice-grid {
        gap: 0.6rem;
    }

    .notice-grid div {
        min-height: auto;
    }

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

    .machine-top,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .slot-grid {
        gap: 0.28rem;
    }

    .reel {
        grid-template-rows: repeat(3, minmax(3.7rem, 1fr));
        gap: 0.28rem;
    }

    .slot-cell {
        min-height: 3.7rem;
    }

    .slot-cell__label {
        display: none;
    }

    .symbol-list {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}
