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

:root {
    --clr-bg: #0C0C0D;
    --clr-hdr: #373A3E;
    --clr-btn-sec: #464749;
    --clr-btn-pri: #FFCC00;
    --clr-text: #E8E8E8;
    --clr-text-muted: #A0A4A8;
    --clr-border: #2a2d31;
    --clr-card: #1A1B1E;
    --clr-gold: #FFCC00;
    --clr-gold-dark: #d4a900;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45)
}

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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    color: var(--clr-gold);
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: #ffe566
}

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

.xb3k9 {
    display: none
}

.wp-block-placeholder {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.elementor-hidden-element {
    display: none !important
}

.lp-page-wrap {
    display: grid;
    grid-template-rows:auto 1fr auto;
    min-height: 100vh
}

.lp-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px
}

.lp-header {
    background: var(--clr-hdr);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .6)
}

.lp-header__inner {
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    max-width: 1240px;
    margin: 0 auto
}

.lp-header__logo img {
    height: 48px;
    width: auto;
    border-radius: 6px
}

.lp-header__nav {
    display: flex;
    gap: 20px;
    list-style: none
}

.lp-header__nav a {
    color: var(--clr-text);
    font-size: .9rem;
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all .2s
}

.lp-header__nav a:hover {
    color: var(--clr-gold);
    border-bottom-color: var(--clr-gold)
}

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

.lp-header__online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--clr-text-muted);
    white-space: nowrap
}

.lp-header__online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 6px #2ecc71;
    flex-shrink: 0;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .2s;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1
}

.btn--login {
    background: var(--clr-btn-sec);
    color: #fff
}

.btn--login:hover {
    background: #555;
    color: #fff
}

.btn--reg {
    background: var(--clr-btn-pri);
    color: #0C0C0D
}

.btn--reg:hover {
    background: var(--clr-gold-dark);
    color: #0C0C0D
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 8px
}

.btn--gold {
    background: var(--clr-btn-pri);
    color: #0C0C0D
}

.btn--gold:hover {
    background: var(--clr-gold-dark);
    color: #0C0C0D;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, .35)
}

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

.lp-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all .3s
}

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

.lp-burger.is-open span:nth-child(2) {
    opacity: 0
}

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

.lp-mob-nav {
    display: none;
    background: var(--clr-hdr);
    padding: 0 16px;
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease, padding .35s ease
}

.lp-mob-nav.is-open {
    max-height: 600px;
    padding: 16px
}

.lp-mob-nav ul {
    list-style: none;
    display: grid;
    gap: 4px
}

.lp-mob-nav ul a {
    display: block;
    padding: 10px 0;
    color: var(--clr-text);
    border-bottom: 1px solid var(--clr-border);
    font-size: .95rem
}

.lp-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-cas-pari.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0
}

.lp-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 12, 13, .92) 40%, rgba(12, 12, 13, .4) 100%)
}

.lp-hero__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 60px 16px
}

.lp-hero__badge {
    display: inline-block;
    background: var(--clr-gold);
    color: #0C0C0D;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.lp-hero__title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff
}

.lp-hero__title span {
    color: var(--clr-gold)
}

.lp-hero__desc {
    font-size: 1rem;
    color: #c8ccd0;
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.7
}

.lp-hero__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.lp-section {
    padding: 52px 0
}

.lp-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff
}

.lp-section-sub {
    color: var(--clr-text-muted);
    font-size: .9rem;
    margin-bottom: 32px
}

.lp-divider {
    width: 48px;
    height: 3px;
    background: var(--clr-gold);
    border-radius: 2px;
    margin: 8px 0 28px
}

.lp-block {
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow);
    margin-bottom: 24px
}

.lp-block--alt {
    background: #161719
}

.jp-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px
}

.jp-card {
    background: linear-gradient(135deg, #1e1f22 0%, #252628 100%);
    border: 1px solid #2e3035;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s
}

.jp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 204, 0, .15)
}

.jp-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(255, 204, 0, .15), transparent 70%)
}

.jp-card__name {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--clr-text-muted);
    margin-bottom: 8px
}

.jp-card__amount {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--clr-gold);
    line-height: 1
}

.jp-card__label {
    font-size: .75rem;
    color: var(--clr-text-muted);
    margin-top: 6px
}

.jp-card__icon {
    font-size: 2rem;
    margin-bottom: 10px
}

.mir-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px
}

.mir-time {
    font-size: .82rem;
    color: var(--clr-text-muted);
    background: #232528;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--clr-border)
}

.mir-time span {
    color: var(--clr-gold);
    font-weight: 600
}

.lp-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    font-size: .875rem
}

thead th {
    background: #1e2024;
    color: var(--clr-text-muted);
    text-align: left;
    padding: 12px 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .06em;
    border-bottom: 2px solid var(--clr-border)
}

tbody tr {
    border-bottom: 1px solid var(--clr-border);
    transition: background .15s
}

tbody tr:hover {
    background: rgba(255, 204, 0, .04)
}

tbody td {
    padding: 13px 16px;
    vertical-align: middle;
    text-align: left
}

.mir-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    font-weight: 600
}

.mir-status--online {
    color: #2ecc71
}

.mir-status--online::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 6px #2ecc71;
    flex-shrink: 0;
    display: inline-block
}

.mir-link {
    color: var(--clr-gold);
    font-weight: 600;
    font-size: .85rem
}

.mir-btn {
    display: inline-block;
    background: var(--clr-btn-pri);
    color: #0C0C0D;
    padding: 5px 14px;
    border-radius: 5px;
    font-size: .78rem;
    font-weight: 700;
    transition: background .2s
}

.mir-btn:hover {
    background: var(--clr-gold-dark);
    color: #0C0C0D
}

.win-list {
    display: grid;
    gap: 8px
}

.win-item {
    display: grid;
    grid-template-columns:28px 28px 1fr auto;
    align-items: center;
    gap: 12px;
    background: #1a1b1e;
    border-radius: 8px;
    padding: 10px 16px;
    border: 1px solid var(--clr-border);
    transition: background .15s
}

.win-item:hover {
    background: #1f2023
}

.win-item--top-3 {
    border-color: rgba(255, 204, 0, .3);
    background: linear-gradient(90deg, rgba(255, 204, 0, .06), #1a1b1e)
}

.win-rank {
    font-size: .8rem;
    font-weight: 700;
    color: var(--clr-text-muted)
}

.win-rank--1 {
    color: #FFD700
}

.win-rank--2 {
    color: #C0C0C0
}

.win-rank--3 {
    color: #CD7F32
}

.win-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--clr-btn-sec);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    color: var(--clr-gold);
    flex-shrink: 0
}

.win-name {
    font-size: .875rem;
    font-weight: 600;
    color: var(--clr-text)
}

.win-amount {
    font-size: .875rem;
    font-weight: 700;
    color: #2ecc71;
    white-space: nowrap
}

.games-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px
}

.game-card {
    background: #1a1b1e;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: transform .2s, box-shadow .2s;
    cursor: pointer
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 204, 0, .18);
    border-color: rgba(255, 204, 0, .4)
}

.game-card__img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    background: #252629
}

.game-card__img-placeholder {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #252629, #1a1b1e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem
}

.game-card__body {
    padding: 14px
}

.game-card__name {
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
    margin-bottom: 8px
}

.game-card__provider {
    font-size: .75rem;
    color: var(--clr-text-muted)
}

.games-slider-wrap {
    display: none;
    overflow: hidden;
    position: relative
}

.games-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
}

.games-slider::-webkit-scrollbar {
    display: none
}

.games-slider .game-card {
    scroll-snap-align: start;
    min-width: 220px;
    flex-shrink: 0
}

.slot-machine {
    background: linear-gradient(145deg, #1a1b1e, #222427);
    border: 2px solid var(--clr-border);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto
}

.slot-machine__title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-gold);
    margin-bottom: 24px
}

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

.slot-reel {
    width: 80px;
    height: 90px;
    background: #111213;
    border-radius: 8px;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    overflow: hidden;
    position: relative
}

.slot-reel.spinning {
    animation: spin .08s linear infinite
}

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

.slot-spin-btn {
    width: 100%;
    padding: 14px;
    background: var(--clr-gold);
    color: #0C0C0D;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s;
    margin-bottom: 12px
}

.slot-spin-btn:hover {
    background: var(--clr-gold-dark);
    transform: translateY(-1px)
}

.slot-spin-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none
}

.slot-result {
    min-height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.slot-win {
    display: none;
    animation: fadeIn .4s ease
}

.slot-win.visible {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.slot-win__text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2ecc71
}

.slot-win__amount {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--clr-gold)
}

.slot-lose {
    display: none;
    color: var(--clr-text-muted);
    font-size: .9rem
}

.slot-lose.visible {
    display: block
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(.9)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.review-content {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--clr-text)
}

.review-content h2, .review-content h3, .review-content h4 {
    font-family: 'Roboto', sans-serif;
    margin: 1.4em 0 .6em;
    color: #fff
}

.review-content h2 {
    font-size: 1.4rem
}

.review-content h3 {
    font-size: 1.15rem
}

.review-content p {
    margin-bottom: 1em
}

.review-content ul, .review-content ol {
    margin: 0 0 1em 1.4em;
    padding: 0
}

.review-content li {
    margin-bottom: .4em
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2em;
    font-size: .875rem
}

.review-content table th, .review-content table td {
    border: 1px solid var(--clr-border);
    padding: 10px 14px;
    text-align: left
}

.review-content table th {
    background: #1e2024;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    font-size: .75rem
}

.review-content a {
    color: var(--clr-gold)
}

.review-content strong, .review-content b {
    color: #fff;
    font-weight: 700
}

.review-content blockquote {
    border-left: 3px solid var(--clr-gold);
    padding-left: 16px;
    color: var(--clr-text-muted);
    font-style: italic;
    margin: 1em 0
}

.author-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #161719;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 28px
}

.author-box__ava {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--clr-btn-sec);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-gold);
    flex-shrink: 0
}

.author-box__name {
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.author-box__role {
    font-size: .8rem;
    color: var(--clr-gold);
    margin-bottom: 6px
}

.author-box__bio {
    font-size: .82rem;
    color: var(--clr-text-muted);
    line-height: 1.6
}

.author-box__link {
    font-size: .8rem;
    color: var(--clr-gold);
    margin-top: 6px;
    display: inline-block
}

.reviews-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 32px
}

.review-card {
    background: #1a1b1e;
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--clr-border)
}

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

.review-card__ava {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-btn-sec);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--clr-gold);
    flex-shrink: 0
}

.review-card__name {
    font-weight: 700;
    font-size: .9rem;
    color: #fff
}

.review-card__date {
    font-size: .75rem;
    color: var(--clr-text-muted)
}

.stars {
    display: flex;
    gap: 2px
}

.stars svg {
    width: 14px;
    height: 14px;
    fill: var(--clr-gold)
}

.review-card__text {
    font-size: .855rem;
    color: var(--clr-text-muted);
    line-height: 1.65
}

.review-form {
    background: #161719;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--clr-border);
    max-width: 620px
}

.review-form h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff
}

.form-field {
    margin-bottom: 16px;
    display: grid;
    gap: 6px
}

.form-field label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em
}

.form-field input, .form-field textarea {
    background: #1a1b1e;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 11px 14px;
    color: var(--clr-text);
    font-size: .9rem;
    font-family: inherit;
    transition: border-color .2s;
    width: 100%
}

.form-field input:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--clr-gold)
}

.form-field textarea {
    min-height: 100px;
    resize: vertical
}

.form-success {
    display: none;
    background: rgba(46, 204, 113, .1);
    border: 1px solid #2ecc71;
    border-radius: 6px;
    padding: 14px 18px;
    color: #2ecc71;
    font-size: .9rem;
    margin-top: 14px;
    animation: fadeIn .3s ease
}

.form-success.visible {
    display: block
}

.lp-footer {
    background: var(--clr-hdr);
    padding: 40px 0 20px;
    margin-top: auto
}

.footer-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: start;
    gap: 32px;
    margin-bottom: 28px
}

.footer-logo img {
    height: 44px;
    width: auto;
    border-radius: 6px
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    list-style: none;
    padding-top: 6px
}

.footer-nav a {
    color: var(--clr-text-muted);
    font-size: .85rem;
    transition: color .2s
}

.footer-nav a:hover {
    color: var(--clr-gold)
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.footer-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.footer-badge {
    background: #1a1b1e;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    white-space: nowrap;
    transition: border-color .2s
}

.footer-badge:hover {
    border-color: rgba(255, 204, 0, .4)
}

.footer-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #555;
    margin-bottom: 6px
}

.footer-legal {
    border-top: 1px solid var(--clr-border);
    padding-top: 20px;
    font-size: .78rem;
    color: #555;
    line-height: 1.7
}

.footer-legal p {
    margin-bottom: 6px
}

.footer-legal a {
    color: #666;
    text-decoration: underline
}

.lp-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #1a1b1e, #222427);
    border-top: 2px solid var(--clr-gold);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5)
}

.lp-widget__text {
    font-size: .8rem;
    color: var(--clr-text-muted);
    flex: 1
}

.lp-widget__bonus {
    font-weight: 700;
    color: var(--clr-gold)
}

.lp-widget__close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0;
    transition: color .2s
}

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

.tag-b4a9 {
    display: inline;
    color: inherit;
    font-size: inherit
}

.wc-placeholder {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns:1fr;
        gap: 20px
    }

    .footer-badges {
        flex-direction: row;
        flex-wrap: wrap
    }

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

@media (max-width: 768px) {
    .lp-header__inner {
        grid-template-columns:auto 1fr auto;
        gap: 10px
    }

    .lp-header__nav {
        display: none
    }

    .lp-burger {
        display: flex
    }

    .lp-mob-nav {
        display: block
    }

    .games-grid {
        display: none
    }

    .games-slider-wrap {
        display: block
    }

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

    .reviews-grid {
        grid-template-columns:1fr
    }

    .lp-hero {
        min-height: 360px
    }

    .footer-inner {
        grid-template-columns:1fr
    }

    .lp-widget {
        flex-wrap: wrap;
        gap: 8px
    }

    .mir-header {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 480px) {
    .jp-grid {
        grid-template-columns:1fr
    }

    .slot-reel {
        width: 66px;
        height: 78px;
        font-size: 2.1rem
    }

    .lp-hero__btns {
        flex-direction: column
    }
}


@media (max-width: 768px) {
    * {
        min-width: 0 !important;
    }

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .lp-page-wrap,
    main,
    .lp-container,
    .lp-header__inner,
    .lp-hero,
    .lp-hero__content,
    .lp-section,
    .lp-block {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .lp-container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .lp-hero__content {
        padding: 56px 0 44px !important;
    }

    .lp-hero__title {
        max-width: 100% !important;
        font-size: 1.55rem !important;
        line-height: 1.2 !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
    }

    .lp-hero__desc,
    .lp-section-sub,
    .review-content,
    .review-content p,
    .review-card__text,
    .footer-legal {
        max-width: 100% !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
    }

    .lp-hero__btns {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .lp-hero__btns .btn,
    .lp-widget .btn {
        width: 100% !important;
        max-width: 100% !important;
    }

    .lp-block {
        padding: 14px !important;
    }

    .jp-grid,
    .reviews-grid,
    .footer-inner {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .jp-card,
    .review-card,
    .slot-machine,
    .author-box,
    .review-form {
        width: 100% !important;
        max-width: 100% !important;
    }

    .lp-table-wrap {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
    }

    table {
        width: 100% !important;
        min-width: 560px !important;
    }

    .lp-widget {
        left: 10px !important;
        right: 10px !important;
        bottom: 10px !important;
        width: auto !important;
        max-width: none !important;
        border-radius: 10px !important;
    }
}