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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'PT Sans', sans-serif;
    background: #323234;
    color: #e8e8e8;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden
}

a {
    color: #00fbc8;
    text-decoration: none;
    transition: color .25s, opacity .25s
}

a:hover {
    color: #00e0b0;
    opacity: .9
}

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

ul {
    list-style: none
}

button {
    cursor: pointer;
    font-family: inherit
}

input, textarea, select {
    font-family: inherit
}

.x7k2m-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.x7k2m-container, .x7k2m-main .x7k2m-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%
}

.x7k2m-main {
    flex: 1;
    padding: 32px 0 64px
}

.a8f1z-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .3px;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s, background .18s, opacity .18s;
    text-decoration: none;
    line-height: 1.2
}

.a8f1z-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .35);
    opacity: 1
}

.a8f1z-btn:active {
    transform: translateY(0)
}

.a8f1z-btn--red {
    background: #ff2e09;
    color: #fff
}

.a8f1z-btn--red:hover {
    background: #e02600;
    color: #fff
}

.a8f1z-btn--cyan {
    background: #00fbc8;
    color: #000
}

.a8f1z-btn--cyan:hover {
    background: #00e0b0;
    color: #000
}

.a8f1z-btn--sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 6px
}

.a8f1z-btn--lg {
    padding: 16px 36px;
    font-size: 17px;
    border-radius: 10px
}

.q2x8n-card {
    background: #28282a;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, .28);
    border: 1px solid rgba(255, 255, 255, .06);
    transition: box-shadow .25s
}

.q2x8n-card:hover {
    box-shadow: 0 8px 48px rgba(0, 0, 0, .38)
}

.q2x8n-card--inner {
    background: #1e1e20;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .06)
}

.k8m2p-header {
    background: #000;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #00fbc8;
    box-shadow: 0 2px 24px rgba(0, 0, 0, .5)
}

.k8m2p-header__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-wrap: nowrap
}

.k8m2p-header__logo {
    flex-shrink: 0
}

.k8m2p-header__logo img {
    height: 40px;
    width: auto;
    object-fit: contain
}

.k8m2p-header__nav {
    flex: 1
}

.k8m2p-header__menu {
    display: flex;
    gap: 4px;
    flex-wrap: wrap
}

.k8m2p-header__link {
    color: #ccc;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background .2s, color .2s
}

.k8m2p-header__link:hover, .k8m2p-header__link:focus {
    background: rgba(0, 251, 200, .12);
    color: #00fbc8
}

.k8m2p-header__link--bonus {
    color: #00fbc8
}

.k8m2p-header__online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #aaa;
    white-space: nowrap;
    flex-shrink: 0
}

.k8m2p-header__online-dot {
    width: 8px;
    height: 8px;
    background: #00fbc8;
    border-radius: 50%;
    animation: n7q2p-pulse 2s infinite
}

@keyframes n7q2p-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .5;
        transform: scale(1.3)
    }
}

.k8m2p-header__btns {
    display: flex;
    gap: 8px;
    flex-shrink: 0
}

.k8m2p-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    flex-shrink: 0
}

.k8m2p-burger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.k8m2p-burger.is-open .k8m2p-burger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.k8m2p-burger.is-open .k8m2p-burger__line:nth-child(2) {
    opacity: 0
}

.k8m2p-burger.is-open .k8m2p-burger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.k8m2p-mobile-menu {
    display: none;
    background: #111;
    border-top: 1px solid #222;
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease
}

.k8m2p-mobile-menu.is-open {
    max-height: 400px
}

.k8m2p-mobile-menu__list {
    padding: 12px 20px 20px
}

.k8m2p-mobile-menu__link {
    display: block;
    color: #ccc;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 0;
    border-bottom: 1px solid #222;
    transition: color .2s
}

.k8m2p-mobile-menu__link:hover {
    color: #00fbc8
}

.b9r3q-hero {
    position: relative;
    background: url('/pin-banner.jpg') center/cover no-repeat;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.b9r3q-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .75) 0%, rgba(50, 50, 52, .6) 100%);
    z-index: 1
}

.b9r3q-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%
}

.b9r3q-hero__content {
    max-width: 580px
}

.b9r3q-hero__title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5)
}

.b9r3q-hero__sub {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 28px;
    line-height: 1.6
}

.b9r3q-hero__btn {
    animation: z3k8v-glow 2.5s ease-in-out infinite
}

@keyframes z3k8v-glow {
    0%, 100% {
        box-shadow: 0 0 16px rgba(255, 46, 9, .5)
    }
    50% {
        box-shadow: 0 0 32px rgba(255, 46, 9, .85)
    }
}

.f3p9w-jackpot-section {
    text-align: center
}

.f3p9w-jackpot-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

.f3p9w-jackpot-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px
}

.f3p9w-jackpot-amount__value {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 700;
    color: #00fbc8;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 24px rgba(0, 251, 200, .4);
    transition: all .3s
}

.f3p9w-jackpot-amount__label {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    align-self: flex-end;
    margin-bottom: 8px
}

.f3p9w-jackpot-section__sub {
    color: #aaa;
    margin-bottom: 24px;
    font-size: 15px
}

.m6t1s-tournaments__title, .g1n8p-slots__title, .s2w7k-minigame__title, .e5q1v-reviews__title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px
}

.m6t1s-tournaments__grid {
    display: flex;
    gap: 20px
}

.m6t1s-tournaments__card {
    flex: 1;
    background: #1e1e20;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(0, 251, 200, .15);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .25s, transform .25s
}

.m6t1s-tournaments__card:hover {
    border-color: #00fbc8;
    transform: translateY(-4px)
}

.m6t1s-tournaments__card-badge {
    display: inline-block;
    background: #ff2e09;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: .5px;
    align-self: flex-start
}

.m6t1s-tournaments__card-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

.m6t1s-tournaments__card-desc {
    font-size: 13px;
    color: #aaa;
    line-height: 1.55;
    flex: 1
}

.m6t1s-tournaments__card-prize {
    font-size: 13px;
    color: #ccc
}

.m6t1s-tournaments__card-prize strong {
    color: #00fbc8
}

.m6t1s-tournaments__card-timer {
    font-size: 13px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px
}

.c9v3x-timer-val {
    color: #fff;
    font-weight: 700;
    font-variant-numeric: tabular-nums
}

.g1n8p-slots__grid {
    display: grid;
    grid-template-columns:repeat(6, 1fr);
    gap: 16px
}

.g1n8p-slots__item {
    background: #1e1e20;
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: border-color .25s, transform .25s
}

.g1n8p-slots__item:hover {
    border-color: #00fbc8;
    transform: translateY(-3px)
}

.g1n8p-slots__logo {
    font-size: 36px;
    line-height: 1
}

.g1n8p-slots__name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3
}

.g1n8p-slots__provider {
    font-size: 11px;
    color: #777
}

.g1n8p-slots__dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

.g1n8p-slots__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
    cursor: pointer;
    transition: background .2s
}

.g1n8p-slots__dot.active {
    background: #00fbc8
}

.s2w7k-minigame {
    text-align: center
}

.s2w7k-minigame__sub {
    color: #aaa;
    margin-bottom: 24px
}

.s2w7k-reels {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px
}

.s2w7k-reel {
    width: 88px;
    height: 88px;
    background: #1e1e20;
    border: 2px solid rgba(0, 251, 200, .25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: border-color .2s;
    user-select: none
}

.s2w7k-reel.is-spinning {
    animation: p9n3k-spin-anim .12s linear infinite
}

@keyframes p9n3k-spin-anim {
    0% {
        transform: scaleY(1)
    }
    50% {
        transform: scaleY(.7)
    }
    100% {
        transform: scaleY(1)
    }
}

.s2w7k-minigame__result {
    margin-top: 24px;
    animation: e4r1w-fadein .4s ease
}

@keyframes e4r1w-fadein {
    from {
        opacity: 0;
        transform: translateY(10px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.s2w7k-minigame__win {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.s2w7k-minigame__win-text {
    font-size: 20px;
    font-weight: 700;
    color: #00fbc8
}

.s2w7k-minigame__win-amount {
    font-size: 28px;
    font-weight: 700;
    color: #fff
}

.s2w7k-minigame__lose-text {
    font-size: 16px;
    color: #aaa
}

.t8r2p-review__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.t8r2p-review__author-info {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.t8r2p-review__author-info strong {
    color: #fff;
    font-size: 15px
}

.t8r2p-review__author-info span {
    color: #999;
    font-size: 13px
}

.t8r2p-review__author-link {
    color: #00fbc8;
    font-size: 13px
}

.t8r2p-review__content h1, .t8r2p-review__content h2, .t8r2p-review__content h3, .t8r2p-review__content h4 {
    color: #fff;
    margin: 24px 0 12px;
    font-weight: 700;
    line-height: 1.3
}

.t8r2p-review__content h1 {
    font-size: 24px
}

.t8r2p-review__content h2 {
    font-size: 20px
}

.t8r2p-review__content h3 {
    font-size: 17px
}

.t8r2p-review__content p {
    color: #ccc;
    margin-bottom: 16px;
    line-height: 1.75
}

.t8r2p-review__content ul, .t8r2p-review__content ol {
    color: #ccc;
    margin-bottom: 16px;
    padding-left: 24px;
    line-height: 1.75
}

.t8r2p-review__content ul {
    list-style: disc
}

.t8r2p-review__content ol {
    list-style: decimal
}

.t8r2p-review__content li {
    margin-bottom: 6px
}

.t8r2p-review__content a {
    color: #00fbc8
}

.t8r2p-review__content strong, .t8r2p-review__content b {
    color: #fff;
    font-weight: 700
}

.t8r2p-review__content em, .t8r2p-review__content i {
    font-style: italic
}

.t8r2p-review__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    overflow-x: auto;
    display: block
}

.t8r2p-review__content table th, .t8r2p-review__content table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .12)
}

.t8r2p-review__content table th {
    background: #1a1a1c;
    color: #00fbc8;
    font-weight: 700
}

.t8r2p-review__content table td {
    color: #ccc
}

.t8r2p-review__content table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03)
}

.t8r2p-review__content blockquote {
    border-left: 4px solid #00fbc8;
    padding: 12px 20px;
    background: #1e1e20;
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    color: #bbb;
    font-style: italic
}

.t8r2p-review__content code, .t8r2p-review__content pre {
    background: #1a1a1c;
    color: #00fbc8;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px
}

.t8r2p-review__content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin: 24px 0
}

.e5q1v-reviews__grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px
}

.e5q1v-reviews__card {
    background: #1e1e20;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    gap: 14px;
    transition: border-color .25s
}

.e5q1v-reviews__card:hover {
    border-color: rgba(0, 251, 200, .3)
}

.e5q1v-reviews__avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #00fbc8, #007b65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #000
}

.e5q1v-reviews__body {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.e5q1v-reviews__name {
    color: #fff;
    font-size: 14px
}

.e5q1v-reviews__stars {
    display: flex;
    gap: 3px
}

.e5q1v-reviews__star-svg {
    width: 16px;
    height: 16px
}

.e5q1v-reviews__text {
    font-size: 13px;
    color: #bbb;
    line-height: 1.6
}

.e5q1v-form-wrap__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

.e5q1v-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.e5q1v-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.e5q1v-form__label {
    font-size: 13px;
    color: #aaa;
    font-weight: 700;
    letter-spacing: .3px
}

.e5q1v-form__input, .e5q1v-form__textarea {
    background: #28282a;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 15px;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    width: 100%
}

.e5q1v-form__input:focus, .e5q1v-form__textarea:focus {
    border-color: #00fbc8;
    box-shadow: 0 0 0 3px rgba(0, 251, 200, .12)
}

.e5q1v-form__input::placeholder, .e5q1v-form__textarea::placeholder {
    color: #555
}

.e5q1v-form__textarea {
    resize: vertical;
    min-height: 100px
}

.e5q1v-form__success {
    background: rgba(0, 251, 200, .12);
    border: 1px solid #00fbc8;
    border-radius: 8px;
    padding: 14px 18px;
    color: #00fbc8;
    font-size: 14px;
    font-weight: 700;
    margin-top: 4px
}

.u3q7r-footer {
    background: #000;
    border-top: 2px solid rgba(0, 251, 200, .2);
    padding: 48px 0 24px;
    margin-top: auto
}

.u3q7r-footer__top {
    display: grid;
    grid-template-columns:2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px
}

.u3q7r-footer__logo {
    display: block;
    margin-bottom: 12px
}

.u3q7r-footer__logo img {
    height: 36px;
    width: auto
}

.u3q7r-footer__desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6
}

.u3q7r-footer__nav-title {
    font-size: 13px;
    font-weight: 700;
    color: #00fbc8;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 14px
}

.u3q7r-footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.u3q7r-footer__link {
    font-size: 14px;
    color: #777;
    transition: color .2s
}

.u3q7r-footer__link:hover {
    color: #00fbc8
}

.u3q7r-footer__payments {
    margin-bottom: 28px
}

.u3q7r-footer__payments-title {
    font-size: 13px;
    font-weight: 700;
    color: #00fbc8;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 14px
}

.u3q7r-footer__payments-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.u3q7r-footer__payment-badge {
    background: #1a1a1c;
    border: 1px solid #2e2e30;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #999;
    letter-spacing: .3px;
    transition: border-color .2s, color .2s
}

.u3q7r-footer__payment-badge:hover {
    border-color: #00fbc8;
    color: #fff
}

.u3q7r-footer__providers {
    margin-bottom: 36px
}

.u3q7r-footer__bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.u3q7r-footer__copy {
    font-size: 13px;
    color: #555
}

.u3q7r-footer__legal {
    font-size: 11px;
    color: #444;
    line-height: 1.6
}

.n9p4k-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #000;
    border-top: 2px solid #ff2e09;
    transform: translateY(100%);
    transition: transform .4s ease;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, .5)
}

.n9p4k-widget.is-visible {
    transform: translateY(0)
}

.n9p4k-widget__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.n9p4k-widget__text {
    color: #fff;
    font-size: 15px;
    flex: 1
}

.n9p4k-widget__text strong {
    color: #ff2e09
}

.n9p4k-widget__btn {
    flex-shrink: 0;
    text-decoration: none
}

.n9p4k-widget__close {
    background: none;
    border: none;
    color: #555;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: color .2s
}

.n9p4k-widget__close:hover {
    color: #fff
}

@media (max-width: 1024px) {
    .g1n8p-slots__grid {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 768px) {
    .k8m2p-header__nav {
        display: none
    }

    .k8m2p-header__online {
        display: none
    }

    .k8m2p-burger {
        display: flex
    }

    .k8m2p-mobile-menu {
        display: block
    }

    .k8m2p-header__btns .a8f1z-btn--sm {
        padding: 7px 12px;
        font-size: 12px
    }

    .b9r3q-hero {
        min-height: 320px
    }

    .b9r3q-hero__inner {
        padding: 40px 20px
    }

    .m6t1s-tournaments__grid {
        flex-direction: column;
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        flex-wrap: nowrap;
        display: flex
    }

    .m6t1s-tournaments__card {
        min-width: 280px;
        scroll-snap-align: start;
        flex: 0 0 280px
    }

    .g1n8p-slots__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px
    }

    .g1n8p-slots__item {
        min-width: 150px;
        flex: 0 0 150px;
        scroll-snap-align: start
    }

    .g1n8p-slots__dots {
        display: flex
    }

    .e5q1v-reviews__grid {
        grid-template-columns:1fr
    }

    .u3q7r-footer__top {
        grid-template-columns:1fr
    }

    .u3q7r-footer__top > * + * {
        border-top: 1px solid #1a1a1a;
        padding-top: 24px
    }

    .q2x8n-card {
        padding: 20px;
        border-radius: 12px
    }

    .s2w7k-reel {
        width: 72px;
        height: 72px;
        font-size: 32px
    }

    .n9p4k-widget__text {
        font-size: 13px
    }
}

@media (max-width: 480px) {
    .k8m2p-header__inner {
        gap: 10px
    }

    .k8m2p-header__logo img {
        height: 32px
    }

    .k8m2p-header__btns .a8f1z-btn--sm {
        padding: 6px 10px;
        font-size: 11px
    }

    .g1n8p-slots__grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .f3p9w-jackpot-amount__value {
        font-size: 42px
    }
}

.w2j5m-hidden {
    display: none
}

.p8n3v-clearfix::after {
    content: '';
    display: table;
    clear: both
}

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

.t4m7z-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.t4m7z-overlay.active {
    opacity: 1;
    pointer-events: auto
}

.q1n8s-bounce {
    animation: q1n8s-bounce-kf .6s infinite alternate
}

@keyframes q1n8s-bounce-kf {
    from {
        transform: translateY(0)
    }
    to {
        transform: translateY(-6px)
    }
}

.r5p2k-fade-in {
    animation: r5p2k-fadein-kf .5s ease forwards
}

@keyframes r5p2k-fadein-kf {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.v9h4m-shimmer {
    background: linear-gradient(90deg, #28282a 25%, #333335 50%, #28282a 75%);
    background-size: 200%;
    animation: v9h4m-shimmer-kf 1.5s infinite
}

@keyframes v9h4m-shimmer-kf {
    0% {
        background-position: 200% 0
    }
    100% {
        background-position: -200% 0
    }
}
