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

:root {
    --c-bg: #323234;
    --c-black: #000000;
    --c-teal: #00fbc8;
    --c-red: #ff2e09;
    --c-white: #ffffff;
    --c-grey: #e8e8e8;
    --c-grey2: #a0a0a8;
    --c-card: #2a2a2c;
    --c-card2: #1e1e20;
    --c-border: rgba(0, 251, 200, 0.18);
    --c-border2: rgba(255, 255, 255, 0.08);
    --radius: 10px;
    --radius-sm: 6px;
    --font: 'PT Sans', sans-serif;
    --tr: 0.22s ease;
}

html {
    scroll-behavior: smooth;
    background: var(--c-bg)
}

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-white);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden
}

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

a {
    color: var(--c-teal);
    text-decoration: none;
    transition: opacity var(--tr)
}

a:hover {
    opacity: .82
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    font-weight: 700
}

.pu-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.pu-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px
}

.pu-hdr {
    background: var(--c-black);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 24px rgba(0, 0, 0, .55)
}

.pu-hdr__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 20px;
    height: 64px;
    max-width: 1180px;
    margin: 0 auto
}

.pu-hdr__logo {
    flex-shrink: 0
}

.pu-hdr__logo img {
    height: 40px;
    width: auto;
    border-radius: 4px
}

.pu-hdr__nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center
}

.pu-hdr__nav a {
    color: var(--c-grey);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: color var(--tr), background var(--tr)
}

.pu-hdr__nav a:hover {
    color: var(--c-teal);
    background: rgba(0, 251, 200, .08)
}

.pu-hdr__online {
    font-size: 12px;
    color: var(--c-teal);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px
}

.pu-hdr__online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-teal);
    display: inline-block;
    animation: dot-pulse 1.4s infinite
}

@keyframes dot-pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .35
    }
}

.pu-hdr__btns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.pu-hdr__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px
}

.pu-hdr__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: transform var(--tr), opacity var(--tr)
}

.pu-hdr__burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.pu-hdr__burger.is-open span:nth-child(2) {
    opacity: 0
}

.pu-hdr__burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.pu-mob-nav {
    display: none;
    background: var(--c-black);
    padding: 12px 20px 18px;
    flex-direction: column;
    gap: 6px
}

.pu-mob-nav.is-open {
    display: flex
}

.pu-mob-nav a {
    color: var(--c-grey);
    font-size: 15px;
    font-weight: 600;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.pu-mob-nav a:last-child {
    border-bottom: none
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    padding: 9px 18px;
    text-decoration: none;
    transition: filter var(--tr), transform var(--tr), box-shadow var(--tr);
    white-space: nowrap
}

.btn:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .35)
}

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

.btn--teal {
    background: var(--c-teal);
    color: var(--c-black)
}

.btn--red {
    background: var(--c-red);
    color: var(--c-white)
}

.btn--outline {
    background: transparent;
    border: 1.5px solid var(--c-teal);
    color: var(--c-teal)
}

.btn--lg {
    font-size: 17px;
    padding: 14px 34px;
    border-radius: var(--radius)
}

.btn--sm {
    font-size: 13px;
    padding: 7px 14px
}

.pu-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-black)
}

.pu-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .55
}

.pu-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55
}

.pu-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(0, 0, 0, .82) 35%, rgba(50, 50, 52, .18) 100%)
}

.pu-hero__inner {
    position: relative;
    z-index: 2;
    padding: 70px 20px;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%
}

.pu-hero__badge {
    display: inline-block;
    background: var(--c-red);
    color: var(--c-white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.pu-hero__title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    max-width: 620px;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--c-white)
}

.pu-hero__title span {
    color: var(--c-teal)
}

.pu-hero__sub {
    font-size: 17px;
    max-width: 500px;
    color: var(--c-grey);
    margin-bottom: 32px;
    line-height: 1.6
}

.pu-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}

.pu-hero__bonus {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 251, 200, .1);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 14px 22px;
    color: var(--c-teal);
    font-size: 15px;
    font-weight: 600;
    margin-top: 28px
}

.pu-section {
    padding: 60px 0
}

.pu-section__title {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--c-white)
}

.pu-section__sub {
    font-size: 15px;
    color: var(--c-grey2);
    margin-bottom: 36px
}

.pu-divider {
    width: 48px;
    height: 3px;
    background: var(--c-teal);
    border-radius: 2px;
    margin-bottom: 28px
}

.pu-pros {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.pu-pros__col {
    flex: 1;
    min-width: 280px;
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid var(--c-border2)
}

.pu-pros__col--plus .pu-pros__head {
    color: var(--c-teal)
}

.pu-pros__col--minus .pu-pros__head {
    color: var(--c-red)
}

.pu-pros__head {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px
}

.pu-pros__list {
    list-style: none
}

.pu-pros__list li {
    padding: 9px 0;
    border-bottom: 1px solid var(--c-border2);
    font-size: 15px;
    color: var(--c-grey);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5
}

.pu-pros__list li:last-child {
    border-bottom: none
}

.pu-pros__list li::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-radius: 50%
}

.pu-pros__col--plus .pu-pros__list li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%2300fbc8' opacity='.18'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='%2300fbc8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat
}

.pu-pros__col--minus .pu-pros__list li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23ff2e09' opacity='.18'/%3E%3Cpath d='M6 6l6 6M12 6l-6 6' stroke='%23ff2e09' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat
}

.pu-mirrors {
    background: var(--c-card2);
    border-radius: var(--radius);
    padding: 30px 24px;
    border: 1px solid var(--c-border)
}

.pu-mirrors__meta {
    font-size: 13px;
    color: var(--c-grey2);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px
}

.pu-mirrors__meta strong {
    color: var(--c-teal)
}

.pu-mirrors__wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.pu-mirrors__table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse
}

.pu-mirrors__table th {
    background: var(--c-black);
    color: var(--c-teal);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    padding: 12px 16px;
    border: 1px solid rgba(0, 251, 200, .18)
}

.pu-mirrors__table td {
    padding: 12px 16px;
    border: 1px solid var(--c-border2);
    font-size: 14px;
    color: var(--c-grey);
    vertical-align: middle
}

.pu-mirrors__table tr:nth-child(even) td {
    background: rgba(0, 0, 0, .18)
}

.pu-mirrors__table tr:hover td {
    background: rgba(0, 251, 200, .05)
}

.pu-mirrors__status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #3ddc84
}

.pu-mirrors__status::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3ddc84;
    display: inline-block;
    animation: dot-pulse 1.6s infinite
}

.pu-mirrors__link {
    color: var(--c-teal);
    font-weight: 600;
    font-size: 14px
}

.pu-screenshots {
    position: relative
}

.pu-ss-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px
}

.pu-ss-track::-webkit-scrollbar {
    height: 4px
}

.pu-ss-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05);
    border-radius: 2px
}

.pu-ss-track::-webkit-scrollbar-thumb {
    background: var(--c-teal);
    border-radius: 2px
}

.pu-ss-item {
    flex: 0 0 340px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--c-border2);
    scroll-snap-align: start;
    transition: transform var(--tr), box-shadow var(--tr)
}

.pu-ss-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 251, 200, .12)
}

.pu-ss-item img {
    width: 100%;
    height: 210px;
    object-fit: cover
}

.pu-games-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px
}

.pu-games-track::-webkit-scrollbar {
    height: 4px
}

.pu-games-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05);
    border-radius: 2px
}

.pu-games-track::-webkit-scrollbar-thumb {
    background: var(--c-teal);
    border-radius: 2px
}

.pu-game-card {
    flex: 0 0 180px;
    background: var(--c-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--c-border2);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: transform var(--tr), box-shadow var(--tr)
}

.pu-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .45)
}

.pu-game-card__img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    background: var(--c-card2)
}

.pu-game-card__body {
    padding: 14px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.pu-game-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-white)
}

.pu-game-card__provider {
    font-size: 12px;
    color: var(--c-grey2)
}

.pu-slot {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid var(--c-border);
    max-width: 520px;
    margin: 0 auto;
    text-align: center
}

.pu-slot__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--c-white)
}

.pu-slot__reels {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px
}

.pu-slot__reel {
    width: 80px;
    height: 80px;
    background: var(--c-black);
    border: 2px solid var(--c-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: opacity .15s;
    overflow: hidden
}

.pu-slot__reel.is-spinning {
    animation: reel-spin .12s linear infinite
}

@keyframes reel-spin {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-8px)
    }
    100% {
        transform: translateY(0)
    }
}

.pu-slot__result {
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.pu-slot__win {
    color: var(--c-teal);
    font-size: 17px;
    font-weight: 700;
    animation: fade-in .35s ease
}

.pu-slot__lose {
    color: var(--c-grey2);
    font-size: 15px;
    animation: fade-in .35s ease
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(6px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.pu-reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.pu-review-card {
    flex: 1;
    min-width: 260px;
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1px solid var(--c-border2);
    transition: box-shadow var(--tr)
}

.pu-review-card:hover {
    box-shadow: 0 4px 24px rgba(0, 251, 200, .1)
}

.pu-review-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px
}

.pu-review-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-border)
}

.pu-review-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-white)
}

.pu-review-card__stars {
    display: flex;
    gap: 2px;
    margin-top: 2px
}

.pu-review-card__stars svg {
    width: 14px;
    height: 14px
}

.pu-review-card__text {
    font-size: 14px;
    color: var(--c-grey);
    line-height: 1.65
}

.pu-form {
    background: var(--c-card2);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid var(--c-border2);
    max-width: 540px;
    margin: 36px auto 0
}

.pu-form__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 20px
}

.pu-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px
}

.pu-form__field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-grey2)
}

.pu-form__field input, .pu-form__field textarea {
    background: var(--c-card);
    border: 1.5px solid var(--c-border2);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--c-white);
    font-family: var(--font);
    font-size: 15px;
    transition: border-color var(--tr);
    outline: none;
    width: 100%
}

.pu-form__field input:focus, .pu-form__field textarea:focus {
    border-color: var(--c-teal)
}

.pu-form__field textarea {
    min-height: 100px;
    resize: vertical
}

.pu-form__msg {
    display: none;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(0, 251, 200, .12);
    color: var(--c-teal);
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px
}

.pu-form__msg.is-shown {
    display: block;
    animation: fade-in .3s ease
}

.pu-faq {
    margin-top: 48px
}

.pu-faq__item {
    border-bottom: 1px solid var(--c-border2);
    padding: 18px 0
}

.pu-faq__q {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px
}

.pu-faq__q::after {
    content: '+';
    font-size: 22px;
    color: var(--c-teal);
    transition: transform var(--tr);
    flex-shrink: 0
}

.pu-faq__item.is-open .pu-faq__q::after {
    transform: rotate(45deg)
}

.pu-faq__a {
    display: none;
    font-size: 14px;
    color: var(--c-grey);
    line-height: 1.7;
    padding-top: 10px
}

.pu-faq__item.is-open .pu-faq__a {
    display: block;
    animation: fade-in .25s ease
}

.pu-author {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--c-card2);
    border-radius: var(--radius);
    padding: 18px 22px;
    border: 1px solid var(--c-border2);
    margin-top: 36px
}

.pu-author__avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-teal);
    flex-shrink: 0
}

.pu-author__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-white)
}

.pu-author__bio {
    font-size: 13px;
    color: var(--c-grey2);
    margin-top: 2px;
    line-height: 1.55
}

.pu-author__link {
    font-size: 13px;
    color: var(--c-teal);
    font-weight: 600;
    margin-top: 4px;
    display: inline-block
}

.pu-content-block {
    padding: 20px 0
}

.pu-content-block h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--c-white);
    margin: 28px 0 12px
}

.pu-content-block h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--c-teal);
    margin: 22px 0 10px
}

.pu-content-block h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--c-white);
    margin: 18px 0 8px
}

.pu-content-block p {
    font-size: 15px;
    color: var(--c-grey);
    line-height: 1.75;
    margin-bottom: 14px
}

.pu-content-block a {
    color: var(--c-teal)
}

.pu-content-block ul, .pu-content-block ol {
    margin: 10px 0 16px 20px;
    color: var(--c-grey);
    font-size: 15px;
    line-height: 1.7
}

.pu-content-block ul li {
    list-style: disc
}

.pu-content-block ol li {
    list-style: decimal
}

.pu-content-block strong {
    color: var(--c-white)
}

.pu-content-block em {
    color: var(--c-grey2)
}

.pu-content-block blockquote {
    border-left: 3px solid var(--c-teal);
    padding: 10px 18px;
    background: rgba(0, 251, 200, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    color: var(--c-grey)
}

.pu-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block
}

.pu-content-block table th {
    background: var(--c-black);
    color: var(--c-teal);
    padding: 11px 14px;
    border: 1px solid rgba(0, 251, 200, .2);
    text-align: left;
    font-size: 14px
}

.pu-content-block table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border2);
    font-size: 14px;
    color: var(--c-grey)
}

.pu-content-block table tr:nth-child(even) td {
    background: rgba(0, 0, 0, .16)
}

.pu-content-block hr {
    border: none;
    border-top: 1px solid var(--c-border2);
    margin: 24px 0
}

.pu-content-block img {
    border-radius: var(--radius-sm);
    margin: 12px 0
}

.pu-ftr {
    background: var(--c-black);
    padding: 48px 20px 24px;
    margin-top: auto
}

.pu-ftr__inner {
    max-width: 1180px;
    margin: 0 auto
}

.pu-ftr__top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.pu-ftr__logo img {
    height: 38px;
    width: auto;
    border-radius: 4px
}

.pu-ftr__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px
}

.pu-ftr__nav a {
    color: var(--c-grey2);
    font-size: 14px;
    transition: color var(--tr)
}

.pu-ftr__nav a:hover {
    color: var(--c-teal)
}

.pu-ftr__pay {
    margin-top: 20px
}

.pu-ftr__pay-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--c-grey2);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px
}

.pu-ftr__pay-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.pu-ftr__pay-badge {
    background: rgba(255, 255, 255, .07);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-grey2);
    border: 1px solid rgba(255, 255, 255, .1)
}

.pu-ftr__providers {
    margin-top: 20px
}

.pu-ftr__providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.pu-ftr__legal {
    max-width: 1180px;
    margin: 20px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.7
}

.pu-widget {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: linear-gradient(90deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(255, 46, 9, .45);
    border-radius: 40px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, .65), 0 0 0 1px rgba(255, 46, 9, .12);
    max-width: calc(100vw - 32px)
}

.pu-widget__bonus {
    font-size: 13px;
    color: var(--c-grey);
    line-height: 1.3
}

.pu-widget__bonus strong {
    color: var(--c-teal);
    display: block;
    font-size: 15px
}

.pu-widget__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .35);
    font-size: 20px;
    cursor: pointer;
    padding: 0 0 0 8px;
    line-height: 1;
    flex-shrink: 0;
    transition: color var(--tr)
}

.pu-widget__close:hover {
    color: var(--c-white)
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width: 768px) {
    .pu-hdr__nav {
        display: none
    }

    .pu-hdr__burger {
        display: flex
    }

    .pu-hdr__online {
        display: none
    }

    .pu-hero {
        min-height: 380px
    }

    .pu-hero__inner {
        padding: 46px 16px
    }

    .pu-pros {
        flex-direction: column
    }

    .pu-ss-item {
        flex: 0 0 88vw
    }

    .pu-game-card {
        flex: 0 0 160px
    }

    .pu-ftr__top {
        flex-direction: column;
        gap: 24px
    }

    .pu-widget {
        padding: 10px 16px;
        gap: 10px
    }

    .pu-reviews {
        flex-direction: column
    }
}

.wp-content-area {
    display: none
}

.elementor-hidden {
    visibility: hidden;
    position: absolute;
    pointer-events: none
}

.wp-block-spacer {
    display: block
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px)
}

.x9f2a7d, .b3k1m9q, .z4p8r2s {
    opacity: 0;
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden
}

.ltwseds {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    background: #1f1f21;
    border: 1px solid rgba(0, 251, 200, .18);
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.ltwseds h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
    word-break: break-word;
}

.ltwseds h2 {
    font-size: 30px;
    line-height: 1.3;
    color: #00fbc8;
    margin: 42px 0 18px;
    word-break: break-word;
}

.ltwseds h3 {
    font-size: 24px;
    line-height: 1.35;
    color: #fff;
    margin: 30px 0 14px;
    word-break: break-word;
}

.ltwseds p {
    font-size: 17px;
    line-height: 1.9;
    color: #d7d7dc;
    margin-bottom: 18px;
    overflow-wrap: anywhere;
}

.ltwseds a {
    color: #00fbc8;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.ltwseds a:hover {
    color: #fff;
}

.ltwseds ul,
.ltwseds ol {
    padding-left: 22px;
    margin: 18px 0;
}

.ltwseds li {
    color: #d7d7dc;
    margin-bottom: 10px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.ltwseds img {
    width: 100%;
    border-radius: 14px;
    margin: 20px 0;
}

.ltwseds table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
}

.ltwseds table::-webkit-scrollbar {
    height: 6px;
}

.ltwseds table::-webkit-scrollbar-thumb {
    background: #00fbc8;
    border-radius: 20px;
}

.ltwseds th {
    background: #111214;
    color: #00fbc8;
    font-size: 14px;
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
}

.ltwseds td {
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #d7d7dc;
    font-size: 15px;
    white-space: nowrap;
}

.ltwseds blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid #00fbc8;
    background: rgba(0, 251, 200, .06);
    border-radius: 0 12px 12px 0;
    color: #e8e8e8;
}

.ltwseds hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin: 32px 0;
}

@media (max-width: 768px) {

    .ltwseds {
        margin: 20px auto;
        padding: 22px 16px;
        border-radius: 14px;
    }

    .ltwseds h1 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .ltwseds h2 {
        font-size: 22px;
        margin: 28px 0 14px;
    }

    .ltwseds h3 {
        font-size: 19px;
        margin: 22px 0 12px;
    }

    .ltwseds p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .ltwseds li {
        font-size: 15px;
    }

    .ltwseds table {
        font-size: 13px;
    }

    .ltwseds th,
    .ltwseds td {
        padding: 11px 12px;
    }

    .ltwseds blockquote {
        padding: 14px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .ltwseds {
        padding: 18px 14px;
    }

    .ltwseds h1 {
        font-size: 24px;
    }

    .ltwseds h2 {
        font-size: 20px;
    }

    .ltwseds h3 {
        font-size: 17px;
    }

    .ltwseds p,
    .ltwseds li {
        font-size: 14px;
        line-height: 1.7;
    }

    .ltwseds ul,
    .ltwseds ol {
        padding-left: 18px;
    }
}