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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background: #3e4464
}

body {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #e8eaf6;
    background: #3e4464;
    min-height: 100vh;
    overflow-x: hidden
}

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

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

a:hover {
    color: #c9a84c
}

ul, ol {
    padding-left: 1.5em
}

.bg-site {
    background: #3e4464
}

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

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

.site-header {
    background: #3a3e51;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .35);
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.hdr-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    min-height: 64px
}

.hdr-logo-wrap {
    flex-shrink: 0
}

.hdr-logo img {
    height: 44px;
    width: auto;
    object-fit: contain
}

.hdr-nav-wrap {
    flex: 1;
    display: flex;
    justify-content: center
}

.hdr-nav {
    display: flex;
    list-style: none;
    gap: 4px;
    padding: 0
}

.hdr-nav__item {
    display: flex
}

.hdr-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    color: #c8ccdf;
    font-size: .88rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background .2s, color .2s;
    white-space: nowrap
}

.hdr-nav__link:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff
}

.hdr-actions-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto
}

.hdr-lang-picker {
    position: relative
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #c8ccdf;
    font-family: inherit;
    font-size: .82rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s
}

.lang-btn:hover {
    background: rgba(255, 255, 255, .14)
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #2e3248;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    min-width: 150px;
    padding: 6px;
    list-style: none;
    z-index: 300;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
}

.lang-dropdown.open {
    display: block;
    animation: fadeDown .15s ease
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    font-size: .85rem;
    color: #c8ccdf;
    border-radius: 7px;
    cursor: pointer;
    transition: background .2s
}

.lang-option:hover, .lang-option--active {
    background: rgba(175, 140, 47, .15);
    color: #e2c76a
}

.lang-flag {
    font-size: 1rem
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    transition: all .2s ease;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .02em
}

.btn--green {
    background: #3d8f58;
    color: #fff
}

.btn--green:hover {
    background: #47a868;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(61, 143, 88, .4)
}

.btn--gold {
    background: #af8c2f;
    color: #fff
}

.btn--gold:hover {
    background: #c9a84c;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(175, 140, 47, .4)
}

.btn--ghost {
    background: transparent;
    color: #c8ccdf;
    border: 1.5px solid rgba(200, 204, 223, .3)
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(255, 255, 255, .4)
}

.btn--xs {
    padding: 5px 12px;
    font-size: .78rem;
    border-radius: 7px
}

.btn--sm {
    padding: 8px 16px;
    font-size: .85rem;
    border-radius: 8px
}

.btn--md {
    padding: 10px 20px;
    font-size: .95rem;
    border-radius: 10px
}

.btn--lg {
    padding: 13px 26px;
    font-size: 1rem;
    border-radius: 11px
}

.btn--full {
    width: 100%;
    justify-content: center
}

.hdr-cta-play, .hdr-cta-bonus {
    font-size: .82rem;
    padding: 7px 14px;
    border-radius: 8px
}

.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: none;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #c8ccdf;
    border-radius: 2px;
    transition: all .3s ease
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #2e3248;
    z-index: 190;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
    transform: translateY(-10px);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
    pointer-events: none
}

.mobile-menu.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all
}

.mobile-menu__inner {
    padding: 16px 18px 20px
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin-bottom: 16px
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.mobile-nav__link {
    display: block;
    padding: 12px 4px;
    color: #c8ccdf;
    font-size: .95rem;
    font-weight: 500;
    transition: color .2s
}

.mobile-nav__link:hover {
    color: #fff
}

.mobile-menu__ctas {
    display: flex;
    gap: 10px
}

.mobile-menu__ctas .btn {
    flex: 1;
    justify-content: center
}

.mobile-menu__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 180
}

.mobile-menu__overlay.open {
    display: block
}

.hero-section {
    background: #3a3e51;
    background-image: linear-gradient(135deg, #2d3147 0%, #3a3e51 50%, #2d3147 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/hero-banner.jpg') center/cover no-repeat;
    opacity: .12;
    pointer-events: none
}

.hero-inner {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero-eyebrow {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #af8c2f;
    margin-bottom: 10px
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #b8bcd4;
    line-height: 1.6;
    margin-bottom: 24px
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 28px
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 10px 18px
}

.hero-stat__value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #c9a84c
}

.hero-stat__label {
    font-size: .72rem;
    color: #9095b0;
    text-transform: uppercase;
    letter-spacing: .05em
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-iframe-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #1e2132;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .6);
    border: 1px solid rgba(255, 255, 255, .1)
}

.hero-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block
}

.hero-iframe__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 33, 50, .85);
    backdrop-filter: blur(4px);
    transition: opacity .3s
}

.hero-iframe__overlay.hidden {
    opacity: 0;
    pointer-events: none
}

.site-main {
    padding: 32px 0
}

.site-main--info {
    padding: 40px 0
}

.breadcrumbs-wrap {
    margin-bottom: 20px
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    padding: 0;
    font-size: .83rem
}

.breadcrumbs__link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #9095b0;
    transition: color .2s
}

.breadcrumbs__link:hover {
    color: #c9a84c
}

.breadcrumbs__sep {
    color: #5a5f7a
}

.breadcrumbs__item--current {
    color: #c8ccdf
}

.card-block {
    background: #3a3e51;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, .07);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .2)
}

.block-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.block-subtitle {
    font-size: .95rem;
    color: #9095b0;
    margin-bottom: 24px
}

.page-h1-wrap {
    margin-bottom: 8px
}

.page-h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
    text-wrap: balance
}

.demo-iframe-container {
    position: relative;
    border-radius: 12px;
    aspect-ratio: 16/9;
    background: #1e2132;
    border: 1px solid rgba(255, 255, 255, .08)
}

.demo-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block
}

.demo-iframe__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #1e2132
}

.demo-iframe__placeholder img {
    opacity: .6
}

.demo-iframe__placeholder p {
    color: #9095b0;
    font-size: .9rem
}

.demo-block__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap
}

.demo-disclaimer {
    font-size: .78rem;
    color: #7076a0
}

.proscons-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 20px
}

.proscons-col {
    border-radius: 12px;
    padding: 20px 24px
}

.proscons-col--pros {
    background: rgba(61, 143, 88, .1);
    border: 1px solid rgba(61, 143, 88, .25)
}

.proscons-col--cons {
    background: rgba(200, 50, 50, .08);
    border: 1px solid rgba(200, 80, 80, .2)
}

.proscons-col__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px
}

.proscons-col--pros .proscons-col__title {
    color: #5dbf7a
}

.proscons-col--cons .proscons-col__title {
    color: #e07070
}

.proscons-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.proscons-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .9rem;
    color: #b8bcd4;
    line-height: 1.5
}

.proscons-col--pros .proscons-item svg {
    color: #5dbf7a;
    flex-shrink: 0;
    margin-top: 3px
}

.proscons-col--cons .proscons-item svg {
    color: #e07070;
    flex-shrink: 0;
    margin-top: 3px
}

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

.jackpot-card {
    background: #2e3248;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform .2s, box-shadow .2s
}

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

.jackpot-card--major {
    border-color: rgba(175, 140, 47, .4);
    background: linear-gradient(160deg, #2e3248 0%, #372e18 100%)
}

.jackpot-card--grand {
    border-color: rgba(61, 143, 88, .35);
    background: linear-gradient(160deg, #2e3248 0%, #1a3a28 100%)
}

.jackpot-card__badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .1);
    color: #c8ccdf;
    align-self: center
}

.jackpot-card__badge--featured {
    background: rgba(175, 140, 47, .25);
    color: #e2c76a
}

.jackpot-card__badge--grand {
    background: rgba(61, 143, 88, .25);
    color: #5dbf7a
}

.jackpot-card__amount {
    font-size: 2rem;
    font-weight: 900;
    color: #c9a84c;
    line-height: 1
}

.jackpot-card--grand .jackpot-card__amount {
    color: #5dbf7a
}

.jackpot-card__label {
    font-size: .78rem;
    color: #7076a0;
    text-transform: uppercase;
    letter-spacing: .04em
}

.jackpot-card__winners {
    text-align: left;
    background: rgba(0, 0, 0, .2);
    border-radius: 9px;
    padding: 12px
}

.jackpot-card__winners-title {
    font-size: .75rem;
    font-weight: 600;
    color: #7076a0;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 8px
}

.jackpot-winners-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.jackpot-winner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    color: #b8bcd4;
    gap: 8px
}

.jackpot-winner__nick {
    font-weight: 500;
    color: #c8ccdf;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 110px
}

.jackpot-winner__amount {
    font-weight: 700;
    color: #c9a84c;
    flex-shrink: 0
}

@keyframes jpTick {
    from {
        color: #c9a84c
    }
    to {
        color: #fff
    }
}

.video-iframe-container {
    position: relative;
    border-radius: 12px;
    aspect-ratio: 16/9;
    background: #1e2132;
    border: 1px solid rgba(255, 255, 255, .08)
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block
}

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

.bonus-card {
    background: #2e3248;
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden
}

.bonus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35)
}

.bonus-card--featured {
    border-color: rgba(175, 140, 47, .4)
}

.bonus-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #af8c2f;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .04em
}

.bonus-card__header {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.bonus-card__rank {
    font-size: .75rem;
    font-weight: 600;
    color: #7076a0;
    text-transform: uppercase;
    letter-spacing: .04em
}

.bonus-card__casino-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff
}

.bonus-card__rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: .88rem
}

.star-filled {
    color: #c9a84c
}

.star-half {
    color: #c9a84c;
    opacity: .6
}

.star-empty {
    color: #4a4f6a
}

.rating-val {
    font-size: .8rem;
    font-weight: 600;
    color: #9095b0;
    margin-left: 4px
}

.bonus-card__offer {
}

.bonus-card__amount {
    font-size: 1.7rem;
    font-weight: 900;
    color: #5dbf7a;
    line-height: 1.1
}

.bonus-card__desc {
    font-size: .85rem;
    color: #9095b0;
    margin-top: 4px;
    line-height: 1.5
}

.bonus-card__features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: .82rem;
    color: #b8bcd4
}

.bonus-card__features li::before {
    content: '✓ ';
    color: #5dbf7a;
    font-weight: 700
}

.bonus-card__disclaimer {
    font-size: .72rem;
    color: #5a5f7a;
    line-height: 1.4
}

.review-author {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #2e3248;
    border-radius: 11px;
    padding: 18px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.review-author__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3d8f58, #af8c2f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.review-author__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.review-author__name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff
}

.review-author__title {
    font-size: .82rem;
    color: #9095b0
}

.review-author__link {
    font-size: .82rem;
    color: #af8c2f;
    margin-top: 2px
}

.review-author__link:hover {
    color: #c9a84c
}

.review-author__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0
}

.review-updated {
    font-size: .78rem;
    color: #7076a0
}

.review-content-wrap {
}

.cms-content {
    line-height: 1.75;
    color: #c0c4d8
}

.cms-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px
}

.cms-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e0e4f4;
    margin: 20px 0 10px
}

.cms-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #c8ccdf;
    margin: 16px 0 8px
}

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

.cms-content ul, .cms-content ol {
    margin-bottom: 14px;
    padding-left: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.cms-content li {
    line-height: 1.6
}

.cms-content a {
    color: #af8c2f;
    text-decoration: underline;
    text-underline-offset: 3px
}

.cms-content a:hover {
    color: #c9a84c
}

.cms-content strong {
    color: #e0e4f4;
    font-weight: 600
}

.cms-content em {
    font-style: italic;
    color: #b8bcd4
}

.cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: .9rem;
    overflow-x: auto;
    display: block
}

.cms-content thead th {
    background: #2e3248;
    color: #c8ccdf;
    font-weight: 600;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .1)
}

.cms-content tbody td {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    color: #b8bcd4;
    vertical-align: top
}

.cms-content tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03)
}

.cms-content blockquote {
    border-left: 3px solid #af8c2f;
    padding: 12px 18px;
    background: rgba(175, 140, 47, .08);
    border-radius: 0 8px 8px 0;
    margin-bottom: 14px;
    font-style: italic;
    color: #b8bcd4
}

.cms-content code {
    background: #2e3248;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: .88em;
    color: #c9a84c
}

.cms-content pre {
    background: #2e3248;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 14px
}

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

.cms-content img {
    border-radius: 8px;
    margin: 12px 0
}

.similar-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px
}

.similar-card {
    background: #2e3248;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, .07);
    transition: transform .2s, border-color .2s
}

.similar-card:hover {
    transform: translateY(-2px);
    border-color: rgba(175, 140, 47, .3)
}

.similar-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff
}

.similar-card__icon--aviator {
    background: linear-gradient(135deg, #1a4bce, #0d2b7a)
}

.similar-card__icon--mines {
    background: linear-gradient(135deg, #8b1a1a, #4a0d0d)
}

.similar-card__icon--jetx {
    background: linear-gradient(135deg, #1a7a4b, #0d4a2b)
}

.similar-card__icon--cr2 {
    background: linear-gradient(135deg, #7a4b1a, #4a2b0d)
}

.similar-card__icon--pilot {
    background: linear-gradient(135deg, #4b1a7a, #2b0d4a)
}

.similar-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.similar-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff
}

.similar-card__desc {
    font-size: .82rem;
    color: #9095b0;
    line-height: 1.5;
    flex: 1
}

.similar-card__btns {
    display: flex;
    gap: 8px;
    margin-top: 4px
}

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

.faq-item {
    background: #2e3248;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .07);
    overflow: hidden
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: none;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background .2s
}

.faq-item__question:hover {
    background: rgba(255, 255, 255, .04)
}

.faq-item__question[aria-expanded=true] {
    background: rgba(175, 140, 47, .08)
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform .25s ease;
    color: #af8c2f
}

.faq-item__question[aria-expanded=true] .faq-arrow {
    transform: rotate(180deg)
}

.faq-item__answer {
    display: none;
    padding: 0 20px 18px;
    color: #b8bcd4;
    font-size: .9rem;
    line-height: 1.7
}

.faq-item__answer.open {
    display: block;
    animation: fadeIn .2s ease
}

.faq-item__answer p {
    margin: 0
}

.site-footer {
    background: #3a3e51;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 40px 0 24px
}

.ftr-inner {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.ftr-top {
    display: grid;
    grid-template-columns:1.4fr 1fr 1fr 1.2fr;
    gap: 32px
}

.ftr-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px
}

.ftr-tagline {
    font-size: .82rem;
    color: #7076a0;
    line-height: 1.6;
    margin-bottom: 12px
}

.ftr-flag {
    display: flex;
    align-items: center;
    gap: 8px
}

.ftr-flag-label {
    font-size: .82rem;
    color: #9095b0
}

.ftr-col__title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #7076a0;
    margin-bottom: 12px
}

.ftr-col__title--mt {
    margin-top: 20px
}

.ftr-nav {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ftr-nav__link {
    font-size: .85rem;
    color: #9095b0;
    transition: color .2s
}

.ftr-nav__link:hover {
    color: #c9a84c
}

.ftr-email {
    font-size: .88rem;
    color: #af8c2f;
    word-break: break-all
}

.ftr-email:hover {
    color: #c9a84c
}

.ftr-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.ftr-social {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9095b0;
    transition: all .2s
}

.ftr-social:hover {
    background: rgba(175, 140, 47, .2);
    border-color: rgba(175, 140, 47, .4);
    color: #c9a84c
}

.ftr-payments {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 24px
}

.ftr-payments__label, .ftr-trust__label, .ftr-provider__label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #7076a0;
    margin-bottom: 10px
}

.ftr-payments__logos, .ftr-trust__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.payment-badge, .trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 500;
    color: #9095b0
}

.trust-badge--age {
    background: rgba(175, 140, 47, .15);
    border-color: rgba(175, 140, 47, .3);
    color: #c9a84c;
    font-weight: 700
}

.ftr-trust {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 24px
}

.ftr-provider {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 16px
}

.ftr-provider__link img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(.8)
}

.ftr-provider__link:hover img {
    filter: brightness(1)
}

.ftr-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 20px
}

.ftr-legal {
    font-size: .78rem;
    color: #5a5f7a;
    line-height: 1.7;
    margin-bottom: 8px
}

.ftr-legal a {
    color: #7076a0
}

.ftr-legal a:hover {
    color: #9095b0
}

.ftr-copyright {
    font-size: .78rem;
    color: #5a5f7a
}

.ftr-copyright a {
    color: #7076a0
}

.ftr-copyright a:hover {
    color: #9095b0
}

.casino-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 500;
    background: #3a3e51;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    min-width: 240px;
    max-width: 280px;
    overflow: hidden
}

.casino-widget__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: .88rem;
    font-weight: 700;
    color: #c9a84c;
    cursor: pointer;
    transition: background .2s
}

.casino-widget__toggle:hover {
    background: rgba(255, 255, 255, .05)
}

.casino-widget__toggle svg:first-child {
    color: #c9a84c
}

.widget-arrow {
    margin-left: auto;
    transition: transform .25s
}

.casino-widget__toggle[aria-expanded=false] .widget-arrow {
    transform: rotate(180deg)
}

.casino-widget__body {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    transition: all .2s
}

.casino-widget__body.collapsed {
    display: none
}

.widget-casino-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.widget-casino-item:last-child {
    border-bottom: none
}

.widget-casino__rank {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(175, 140, 47, .2);
    color: #c9a84c;
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.widget-casino__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0
}

.widget-casino__name {
    font-size: .82rem;
    font-weight: 600;
    color: #e0e4f4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.widget-casino__bonus {
    font-size: .72rem;
    color: #5dbf7a
}

.content-info {
    max-width: 800px;
    margin: 0 auto
}

.author-profile-block {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #2e3248;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, .07)
}

.author-avatar--lg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3d8f58, #af8c2f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.author-profile-info {
    flex: 1
}

.author-profile-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px
}

.author-profile-title {
    font-size: .82rem;
    color: #af8c2f;
    margin-bottom: 8px;
    display: block
}

.author-profile-link {
    font-size: .82rem;
    color: #af8c2f;
    margin-top: 10px;
    display: inline-block
}

.author-profile-link:hover {
    color: #c9a84c
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 560px;
    margin-top: 24px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-label {
    font-size: .88rem;
    font-weight: 600;
    color: #c8ccdf
}

.form-label span {
    color: #e07070
}

.form-input, .form-select, .form-textarea {
    background: #2e3248;
    border: 1.5px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 11px 14px;
    color: #e0e4f4;
    font-family: 'Rubik', sans-serif;
    font-size: .95rem;
    width: 100%;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    resize: none
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #5a5f7a
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: #3d8f58;
    box-shadow: 0 0 0 3px rgba(61, 143, 88, .15)
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239095b0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center
}

.form-select option {
    background: #2e3248;
    color: #e0e4f4
}

.form-note {
    font-size: .78rem;
    color: #5a5f7a
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

.xz99p {
    display: none
}

.wp-block-separator {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .07);
    margin: 20px 0
}

.elementor-invisible {
    visibility: hidden
}

.wp-block-columns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.4rem
    }

    .jackpot-grid {
        grid-template-columns:repeat(3, 1fr)
    }

    .bonus-grid {
        grid-template-columns:repeat(3, 1fr)
    }

    .ftr-top {
        grid-template-columns:1fr 1fr
    }

    .ftr-top .ftr-col:nth-child(3), .ftr-top .ftr-col:nth-child(4) {
        grid-column: auto
    }
}

@media (max-width: 768px) {
    .hdr-nav-wrap {
        display: none
    }

    .burger-btn {
        display: flex
    }

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

    .hero-iframe-wrap {
        order: -1
    }

    .hero-title {
        font-size: 2rem
    }

    .hero-stats {
        justify-content: center
    }

    .hero-ctas {
        justify-content: center
    }

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

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

    .bonus-grid {
        grid-template-columns:1fr;
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 12px
    }

    .bonus-card {
        min-width: 280px;
        scroll-snap-align: start
    }

    .ftr-top {
        grid-template-columns:1fr
    }

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

    .casino-widget {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 14px 14px 0 0
    }

    .card-block {
        padding: 22px 16px
    }
}

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

    .hero-subtitle {
        font-size: .92rem
    }

    .hero-section {
        padding: 32px 0
    }

    .hdr-logo img {
        height: 34px
    }

    .block-title {
        font-size: 1.3rem
    }

    .jackpot-card__amount {
        font-size: 1.6rem
    }

    .review-author {
        flex-direction: column
    }

    .review-author__meta {
        align-items: flex-start
    }
}
