@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

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

html {
    scroll-behavior: smooth;
    background: #150587
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #150587;
    color: #e8e0ff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

a {
    color: #d1210d;
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: #7bdb00
}

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

button {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, filter .15s;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2
}

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

.btn--green {
    background: #7bdb00;
    color: #0a0520
}

.btn--green:hover {
    filter: brightness(1.1);
    color: #0a0520
}

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

.btn--red:hover {
    filter: brightness(1.15);
    color: #fff
}

.btn--outline {
    background: transparent;
    border: 2px solid #7bdb00;
    color: #7bdb00
}

.btn--outline:hover {
    background: #7bdb00;
    color: #0a0520
}

.btn--outline-red {
    background: transparent;
    border: 2px solid #d1210d;
    color: #d1210d
}

.btn--outline-red:hover {
    background: #d1210d;
    color: #fff
}

.btn--sm {
    padding: 7px 16px;
    font-size: .8rem
}

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

.btn--xl {
    padding: 16px 40px;
    font-size: 1.1rem
}

.xq7r2a {
    display: none
}

.wp-block-group {
    display: block
}

.wf4t9b {
    visibility: hidden;
    position: absolute;
    left: -9999px
}

.site-header {
    background: #452271;
    border-bottom: 2px solid #5a2e8c;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    flex-wrap: wrap
}

.header-logo {
    flex-shrink: 0
}

.header-logo img {
    height: 48px;
    width: auto
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #d4c8f0;
    font-size: .82rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background .2s, color .2s;
    text-decoration: none
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(123, 219, 0, .15);
    color: #7bdb00
}

.header-nav a svg {
    flex-shrink: 0
}

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

.jackpot-badge {
    background: linear-gradient(135deg, #1a0660, #2d0e88);
    border: 1px solid #7bdb00;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .78rem;
    font-weight: 700;
    color: #7bdb00;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.jackpot-badge span {
    color: #fff
}

.jackpot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7bdb00;
    animation: pulse-glow 1.4s infinite
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(123, 219, 0, .6)
    }
    50% {
        box-shadow: 0 0 0 6px rgba(123, 219, 0, 0)
    }
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px
}

.burger span {
    display: block;
    height: 2px;
    background: #e8e0ff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s, top .3s
}

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

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

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

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 5, 32, .97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 24px 40px
}

.mobile-nav-overlay.open {
    display: flex
}

.mobile-nav-overlay a {
    color: #d4c8f0;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    transition: background .2s, color .2s;
    width: 100%;
    max-width: 320px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none
}

.mobile-nav-overlay a:hover {
    background: rgba(123, 219, 0, .15);
    color: #7bdb00
}

.mobile-nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #e8e0ff;
    font-size: 1.8rem;
    cursor: pointer
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/banner.png');
    background-size: cover;
    background-position: center top
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 5, 135, .88) 0%, rgba(69, 34, 113, .7) 60%, rgba(21, 5, 135, .6) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 50px
}

.hero-tag {
    display: inline-block;
    background: rgba(123, 219, 0, .2);
    border: 1px solid #7bdb00;
    color: #7bdb00;
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .6)
}

.hero-sub {
    font-size: 1.05rem;
    color: #c8b8f0;
    margin-bottom: 28px;
    max-width: 560px;
    line-height: 1.6
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.hero-tiles {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-tile {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 130px;
    backdrop-filter: blur(6px)
}

.hero-tile .tile-label {
    font-size: .72rem;
    color: #a89fd0;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600
}

.hero-tile .tile-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #7bdb00
}

.section {
    padding: 60px 0
}

.section-alt {
    background: rgba(69, 34, 113, .18)
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25
}

.section-sub {
    color: #a89fd0;
    margin-bottom: 36px;
    font-size: .95rem
}

.section-header {
    margin-bottom: 36px
}

.demo-block {
    background: #0d0440;
    border: 2px solid #452271;
    border-radius: 16px;
}

.demo-inner {
    position: relative;
    width: 100%;
    padding-top: 56.25%
}

.demo-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none
}

.demo-footer {
    background: #160b50;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap
}

.demo-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.demo-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.demo-info-item .di-label {
    font-size: .7rem;
    color: #8870c0;
    text-transform: uppercase;
    letter-spacing: .04em
}

.demo-info-item .di-val {
    font-size: .9rem;
    font-weight: 700;
    color: #e8e0ff
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.adv-card {
    flex: 1 1 200px;
    background: linear-gradient(145deg, #1e0a6b, #2d1580);
    border: 1px solid rgba(123, 219, 0, .2);
    border-radius: 14px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: transform .2s, box-shadow .2s
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4)
}

.adv-icon {
    width: 48px;
    height: 48px;
    background: rgba(123, 219, 0, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.adv-icon svg {
    color: #7bdb00
}

.adv-title {
    font-size: .95rem;
    font-weight: 700;
    color: #fff
}

.adv-desc {
    font-size: .83rem;
    color: #a89fd0;
    line-height: 1.5
}

.winners-block {
    background: #0d0440;
    border: 2px solid #452271;
    border-radius: 16px;
    overflow: hidden
}

.winners-head {
    display: grid;
    grid-template-columns:40px 1fr 1fr 120px;
    gap: 8px;
    padding: 10px 16px;
    background: #1a0870;
    font-size: .75rem;
    font-weight: 700;
    color: #8870c0;
    text-transform: uppercase;
    letter-spacing: .05em
}

.winners-list {
    max-height: 420px;
    overflow-y: auto;
    scroll-behavior: smooth
}

.winners-list::-webkit-scrollbar {
    width: 4px
}

.winners-list::-webkit-scrollbar-track {
    background: #0d0440
}

.winners-list::-webkit-scrollbar-thumb {
    background: #452271;
    border-radius: 2px
}

.winner-row {
    display: grid;
    grid-template-columns:40px 1fr 1fr 120px;
    gap: 8px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(69, 34, 113, .4);
    transition: background .15s;
    align-items: center
}

.winner-row:hover {
    background: rgba(123, 219, 0, .05)
}

.winner-rank {
    font-size: .85rem;
    font-weight: 800;
    color: #8870c0
}

.winner-rank.gold {
    color: #ffd700
}

.winner-rank.silver {
    color: #c0c0c0
}

.winner-rank.bronze {
    color: #cd7f32
}

.winner-nick {
    font-size: .88rem;
    font-weight: 600;
    color: #e8e0ff
}

.winner-game {
    font-size: .8rem;
    color: #8870c0
}

.winner-amount {
    font-size: .92rem;
    font-weight: 800;
    color: #7bdb00;
    text-align: right
}

.video-block {
    background: #0d0440;
    border: 2px solid #452271;
    border-radius: 16px;
    overflow: hidden
}

.video-inner {
    position: relative;
    width: 100%;
    padding-top: 56.25%
}

.video-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none
}

.video-caption {
    padding: 14px 20px;
    background: #160b50;
    font-size: .85rem;
    color: #a89fd0;
    text-align: center
}

.strategies-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.strategy-card {
    flex: 1 1 280px;
    background: linear-gradient(145deg, #1e0a6b, #2d1580);
    border: 1px solid rgba(123, 219, 0, .2);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column
}

.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .45)
}

.strategy-img {
    width: 100%;
    height: 170px;
    object-fit: cover
}

.strategy-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.strategy-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff
}

.strategy-desc {
    font-size: .83rem;
    color: #a89fd0;
    line-height: 1.5;
    flex: 1
}

.strategy-footer {
    padding: 0 18px 18px
}

.review-block {
    background: linear-gradient(145deg, #0d0440, #1a0870);
    border: 2px solid rgba(69, 34, 113, .6);
    border-radius: 16px;
    padding: 36px
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(69, 34, 113, .5)
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #452271, #7bdb00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.review-author-info .ra-name {
    font-weight: 700;
    color: #fff;
    font-size: .95rem
}

.review-author-info .ra-title {
    font-size: .8rem;
    color: #a89fd0;
    margin-top: 2px
}

.review-author-info .ra-updated {
    font-size: .75rem;
    color: #6850a8;
    margin-top: 4px
}

.review-content {
    font-size: .95rem;
    line-height: 1.7;
    color: #c8b8f0
}

.review-content h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin: 28px 0 12px
}

.review-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d4c8f0;
    margin: 20px 0 8px
}

.review-content p {
    margin-bottom: 14px
}

.review-content ul, .review-content ol {
    margin: 12px 0 14px 22px
}

.review-content li {
    margin-bottom: 6px
}

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

.review-content em, .review-content i {
    color: #c8b8f0
}

.review-content a {
    color: #d1210d
}

.review-content a:hover {
    color: #7bdb00
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px auto;
    text-align: left
}

.review-content th {
    background: #1a0870;
    color: #d4c8f0;
    padding: 10px 14px;
    border: 1px solid #452271;
    font-size: .85rem
}

.review-content td {
    padding: 9px 14px;
    border: 1px solid #2d1580;
    font-size: .85rem;
    color: #c0b0e0
}

.review-content tr:nth-child(even) td {
    background: rgba(69, 34, 113, .2)
}

.review-content blockquote {
    border-left: 3px solid #7bdb00;
    padding: 10px 16px;
    margin: 14px 0;
    background: rgba(123, 219, 0, .05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #a89fd0
}

.review-content img {
    border-radius: 8px;
    margin: 16px 0;
    max-width: 100%
}

.review-content code {
    background: #1a0870;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .85em;
    color: #7bdb00
}

.review-content pre {
    background: #0d0440;
    border: 1px solid #452271;
    padding: 14px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 14px 0
}

.review-content hr {
    border: none;
    border-top: 1px solid rgba(69, 34, 113, .5);
    margin: 24px 0
}

.review-content h4, h5, h6 {
    color: #d4c8f0;
    margin: 16px 0 8px;
    font-weight: 700
}

.similar-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.similar-card {
    flex: 1 1 240px;
    background: linear-gradient(145deg, #1e0a6b, #2d1580);
    border: 1px solid rgba(69, 34, 113, .5);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform .2s, box-shadow .2s
}

.similar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
}

.similar-game-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    border-radius: 6px
}

.similar-name {
    font-size: .95rem;
    font-weight: 800;
    color: #fff
}

.similar-desc {
    font-size: .8rem;
    color: #a89fd0;
    line-height: 1.5;
    flex: 1
}

.similar-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.site-footer {
    background: #452271;
    border-top: 2px solid #5a2e8c;
    padding: 48px 0 24px;
    margin-top: auto
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-brand {
    flex: 1 1 220px
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 14px
}

.footer-tagline {
    font-size: .82rem;
    color: #c8b0e8;
    line-height: 1.6;
    max-width: 240px
}

.footer-nav-col {
    flex: 1 1 150px
}

.footer-nav-title {
    font-size: .78rem;
    font-weight: 700;
    color: #7bdb00;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px
}

.footer-nav-col a {
    display: block;
    font-size: .82rem;
    color: #c8b0e8;
    margin-bottom: 6px;
    transition: color .2s;
    text-decoration: none
}

.footer-nav-col a:hover {
    color: #7bdb00
}

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

.footer-logos-row img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(.85) grayscale(.3);
    transition: filter .2s
}

.footer-logos-row img:hover {
    filter: brightness(1) grayscale(0)
}

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

.trust-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: .72rem;
    font-weight: 700;
    color: #c8b0e8;
    white-space: nowrap
}

.trust-badge.age {
    background: #d1210d;
    color: #fff;
    border-color: #d1210d
}

.footer-socials {
    display: flex;
    gap: 10px;
    align-items: center
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    text-decoration: none
}

.social-link:hover {
    background: #7bdb00
}

.social-link svg {
    color: #e8e0ff
}

.social-link:hover svg {
    color: #0a0520
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between
}

.footer-legal {
    font-size: .72rem;
    color: #8860c8;
    line-height: 1.6;
    max-width: 700px
}

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

.footer-copy {
    font-size: .75rem;
    color: #a890d8;
    white-space: nowrap
}

.footer-au {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #a890d8
}

.bonus-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: linear-gradient(90deg, #1a0060, #452271, #1a0060);
    border-top: 2px solid #7bdb00;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5)
}

.widget-text {
    font-size: .88rem;
    color: #fff;
    font-weight: 600
}

.widget-text strong {
    color: #7bdb00
}

.widget-close {
    background: none;
    border: none;
    color: #a89fd0;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color .15s
}

.widget-close:hover {
    color: #fff
}

.widget-link {
    text-decoration: none
}

.breadcrumbs {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem
}

.breadcrumbs a {
    color: #a89fd0;
    text-decoration: none;
    transition: color .2s
}

.breadcrumbs a:hover {
    color: #7bdb00
}

.breadcrumbs span {
    color: #6850a8
}

.breadcrumbs .bc-current {
    color: #e8e0ff
}

.rating-stars {
    display: flex;
    gap: 2px;
    color: #ffd700;
    font-size: 1rem
}

.faq-block {
    margin-top: 8px
}

.faq-item {
    border: 1px solid rgba(69, 34, 113, .5);
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden
}

.faq-q {
    width: 100%;
    background: rgba(69, 34, 113, .25);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: #e8e0ff;
    text-align: left;
    transition: background .2s
}

.faq-q:hover {
    background: rgba(69, 34, 113, .4)
}

.faq-q .faq-arrow {
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 10px
}

.faq-q.open .faq-arrow {
    transform: rotate(180deg)
}

.faq-a {
    display: none;
    padding: 14px 18px;
    font-size: .88rem;
    color: #c0b0e0;
    line-height: 1.6;
    background: rgba(13, 4, 64, .5)
}

.faq-a.open {
    display: block
}

.info-page {
    padding: 50px 0
}

.info-page h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px
}

.info-page h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4c8f0;
    margin: 24px 0 10px
}

.info-page h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #c8b0e8;
    margin: 16px 0 8px
}

.info-page p {
    margin-bottom: 12px;
    font-size: .9rem;
    color: #c0b0e0;
    line-height: 1.7
}

.info-page ul, .info-page ol {
    margin: 10px 0 12px 22px
}

.info-page li {
    font-size: .9rem;
    color: #c0b0e0;
    margin-bottom: 5px;
    line-height: 1.6
}

.info-page a {
    color: #d1210d
}

.info-page a:hover {
    color: #7bdb00
}

.info-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px auto;
    text-align: left
}

.info-page th {
    background: #1a0870;
    color: #d4c8f0;
    padding: 9px 12px;
    border: 1px solid #452271;
    font-size: .83rem
}

.info-page td {
    padding: 8px 12px;
    border: 1px solid #2d1580;
    font-size: .83rem;
    color: #c0b0e0
}

.info-page tr:nth-child(even) td {
    background: rgba(69, 34, 113, .15)
}

.wp-post-image {
    border-radius: 8px
}

.entry-content {
    color: #c0b0e0
}

.elementor-widget-container {
    display: block
}

.wc-block-components-formatted-money-amount {
    font-weight: 700
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

.animate-fade-up {
    animation: fadeInUp .55s both
}

.delay-1 {
    animation-delay: .1s
}

.delay-2 {
    animation-delay: .2s
}

.delay-3 {
    animation-delay: .3s
}

.delay-4 {
    animation-delay: .4s
}

.divider-wave {
    position: relative;
    height: 56px;
    overflow: hidden;
    margin-top: -1px
}

.divider-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%
}

@media (max-width: 1024px) {
    .header-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .header-inner {
        flex-wrap: nowrap
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 360px
    }

    .hero-tiles {
        gap: 8px
    }

    .hero-tile {
        min-width: 110px;
        padding: 10px 12px
    }

    .winners-head, .winner-row {
        grid-template-columns:36px 1fr 120px;
    }

    .winner-game {
        display: none
    }

    .strategies-grid .strategy-card {
        flex: 1 1 100%
    }

    .footer-top {
        gap: 20px
    }

    .review-block {
        padding: 20px
    }

    .info-page {
        padding: 30px 0
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem
    }

    .hero-btns {
        flex-direction: column
    }

    .btn--xl {
        width: 100%;
        text-align: center
    }

    .header-logo img {
        height: 38px
    }

    .adv-card {
        flex: 1 1 100%
    }

    .similar-card {
        flex: 1 1 100%
    }

    .bonus-widget {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }
}

.p4f7x2 {
    display: none;
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px
}

.q8m3n1 {
    word-spacing: normal;
    letter-spacing: normal
}

.r9k5j6 {
    font-variant: normal;
    text-transform: none
}
