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

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

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

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

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

a:hover {
    opacity: .85
}

ul, ol {
    list-style: none
}

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

table {
    border-collapse: collapse;
    width: 100%
}

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

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

.site-header-c4p {
    background: #01281D;
    position: sticky;
    top: 0;
    z-index: 900;
    border-bottom: 1px solid rgba(246, 235, 181, .12);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .35)
}

.hdr-x9k2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 68px;
    flex-wrap: nowrap
}

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

.hdr-logo-link img {
    height: 44px;
    width: auto
}

.hdr-center-nav {
    flex: 1;
    overflow: hidden
}

.nav-list-m7p {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap
}

.nav-link-r4x {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    color: rgba(255, 255, 255, .82);
    font-size: .875rem;
    font-weight: 500;
    border-radius: 7px;
    white-space: nowrap;
    transition: background .2s, color .2s
}

.nav-link-r4x:hover {
    background: rgba(246, 235, 181, .1);
    color: #F6EBB5;
    opacity: 1
}

.nav-link-r4x svg {
    flex-shrink: 0;
    opacity: .75
}

.hdr-right-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.hdr-online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .65);
    white-space: nowrap
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite
}

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

.btn-hdr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: transform .15s, box-shadow .15s, opacity .15s;
    border: none;
    cursor: pointer;
    letter-spacing: .02em
}

.btn-login {
    background: transparent;
    color: #F6EBB5;
    border: 1.5px solid rgba(246, 235, 181, .4)
}

.btn-login:hover {
    border-color: #F6EBB5;
    background: rgba(246, 235, 181, .08);
    opacity: 1
}

.btn-signup {
    background: #F6EBB5;
    color: #01281D
}

.btn-signup:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(246, 235, 181, .35);
    opacity: 1
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 12px 18px
}

.burger-btn-z3m {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 6px;
    border-radius: 6px
}

.burger-line {
    width: 22px;
    height: 2px;
    background: #F6EBB5;
    border-radius: 2px;
    transition: transform .25s, opacity .25s
}

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

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

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

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 1000;
    opacity: 0;
    transition: opacity .3s
}

.mobile-menu-overlay.open {
    display: block;
    opacity: 1
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 90vw;
    height: 100vh;
    background: #01281D;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: right .3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0, 0, 0, .4)
}

.mobile-menu-drawer.open {
    right: 0
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .7);
    padding: 4px;
    border-radius: 5px
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1
}

.mobile-nav-link {
    display: block;
    padding: 12px 14px;
    color: rgba(255, 255, 255, .82);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background .2s, color .2s
}

.mobile-nav-link:hover {
    background: rgba(246, 235, 181, .1);
    color: #F6EBB5;
    opacity: 1
}

.mobile-menu-footer-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(246, 235, 181, .12)
}

.btn-primary-x9k {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #F6EBB5;
    color: #01281D;
    border: none;
    border-radius: 9px;
    padding: 12px 26px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, opacity .15s;
    letter-spacing: .02em;
    white-space: nowrap;
    text-decoration: none
}

.btn-primary-x9k:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(246, 235, 181, .4);
    opacity: 1
}

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

.btn-xl {
    padding: 15px 34px;
    font-size: 1.05rem
}

.btn-secondary-x9k {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: #F6EBB5;
    border: 2px solid #F6EBB5;
    border-radius: 9px;
    padding: 12px 26px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .15s;
    letter-spacing: .02em;
    white-space: nowrap;
    text-decoration: none
}

.btn-secondary-x9k:hover {
    background: rgba(246, 235, 181, .1);
    transform: translateY(-2px);
    opacity: 1
}

.hero-section-f3x {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    background: url('/images/hero-rich.jpg') center center/cover no-repeat;
    overflow: hidden
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 40, 29, .88) 0%, rgba(0, 69, 52, .7) 60%, rgba(0, 40, 30, .82) 100%);
    z-index: 1
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(246, 235, 181, .15);
    border: 1px solid rgba(246, 235, 181, .3);
    color: #F6EBB5;
    font-size: .8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.hero-heading {
    font-size: clamp(1.8rem, 4vw, 2.9rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
    text-wrap: balance;
    max-width: 720px
}

.hero-subtext {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 32px;
    max-width: 560px;
    line-height: 1.65
}

.hero-subtext strong {
    color: #F6EBB5
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px
}

.hero-cta-main {
    font-size: 1.1rem;
    padding: 16px 36px;
    box-shadow: 0 4px 24px rgba(246, 235, 181, .3)
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.hero-trust-row span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 500
}

.hero-trust-row svg {
    opacity: .75
}

.section-wrap-m8j {
    padding: 64px 0
}

.section-alt-bg {
    background: #013828
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 40px
}

.section-heading {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #F6EBB5;
    margin-bottom: 10px;
    text-wrap: balance
}

.section-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .65);
    max-width: 540px;
    margin: 0 auto
}

.card-b4x {
    background: #013525;
    border: 1px solid rgba(246, 235, 181, .1);
    border-radius: 14px;
    overflow: hidden
}

.overview-table-block {
    padding: 0
}

.ov-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.ov-table-q7k {
    width: 100%;
    border-collapse: collapse
}

.ov-table-q7k tr {
    border-bottom: 1px solid rgba(246, 235, 181, .07);
    transition: background .15s
}

.ov-table-q7k tr:last-child {
    border-bottom: none
}

.ov-table-q7k tr:hover {
    background: rgba(246, 235, 181, .04)
}

.ov-table-q7k th, .ov-table-q7k td {
    padding: 14px 20px;
    text-align: left;
    font-size: .92rem;
    line-height: 1.5
}

.ov-table-q7k th {
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
    white-space: nowrap;
    width: 260px;
    display: flex;
    align-items: center;
    gap: 10px
}

.ov-table-q7k td {
    color: #e8f5f1;
    font-weight: 400
}

.ov-table-q7k td strong {
    color: #F6EBB5;
    font-weight: 700
}

.ov-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(246, 235, 181, .1);
    border-radius: 6px;
    flex-shrink: 0;
    color: #F6EBB5
}

.ov-table-cta {
    padding: 20px;
    text-align: center;
    background: #01281D;
    border-top: 1px solid rgba(246, 235, 181, .1)
}

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

.screenshot-item-v8p {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    aspect-ratio: 16/10
}

.screenshot-item-v8p img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s
}

.screenshot-item-v8p:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .4)
}

.screenshot-item-v8p:hover img {
    transform: scale(1.04)
}

.screenshot-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(1, 40, 29, .9));
    padding: 20px 12px 10px;
    font-size: .82rem;
    font-weight: 600;
    color: #F6EBB5;
    text-align: center
}

.screenshots-slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(246, 235, 181, .3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s
}

.slider-dot.active {
    background: #F6EBB5;
    transform: scale(1.3)
}

.winners-block-c7n {
    padding: 0
}

.winners-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.winners-table-x2p {
    width: 100%;
    border-collapse: collapse
}

.winners-table-x2p thead tr {
    background: #01281D;
    border-bottom: 2px solid rgba(246, 235, 181, .2)
}

.winners-table-x2p th {
    padding: 13px 18px;
    text-align: left;
    font-size: .82rem;
    font-weight: 700;
    color: #F6EBB5;
    text-transform: uppercase;
    letter-spacing: .06em
}

.winners-table-x2p td {
    padding: 12px 18px;
    font-size: .9rem;
    color: #e8f5f1;
    border-bottom: 1px solid rgba(246, 235, 181, .07)
}

.winners-table-x2p tbody tr:hover {
    background: rgba(246, 235, 181, .04)
}

.winners-table-x2p tbody tr:nth-child(-n+3) .win-amount {
    color: #F6EBB5;
    font-weight: 700
}

.winner-rank {
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    width: 40px
}

.winner-rank.top3 {
    color: #F6EBB5
}

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

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

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

.win-amount {
    font-weight: 600
}

.winner-game {
    color: rgba(255, 255, 255, .65);
    font-size: .85rem
}

.app-block-p9x {
    display: flex;
    gap: 40px;
    align-items: flex-start
}

.app-info-side {
    flex: 1;
    min-width: 0
}

.app-img-side {
    flex-shrink: 0;
    width: 240px;
    text-align: center
}

.app-img-side img {
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
    margin: 0 auto
}

.app-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 24px
}

.app-table-r3v {
    border: 1px solid rgba(246, 235, 181, .12);
    border-radius: 10px;
    overflow: hidden
}

.app-table-r3v th {
    background: #01281D;
    padding: 12px 18px;
    text-align: left;
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    white-space: nowrap;
    width: 180px
}

.app-table-r3v td {
    padding: 12px 18px;
    font-size: .9rem;
    color: #e8f5f1;
    border-bottom: 1px solid rgba(246, 235, 181, .07)
}

.app-table-r3v tr:last-child td {
    border-bottom: none
}

.app-table-r3v tr:hover td {
    background: rgba(246, 235, 181, .03)
}

.app-download-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.btn-app-dl {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
    font-family: inherit
}

.btn-app-store {
    background: #F6EBB5;
    color: #01281D
}

.btn-play-store {
    background: #F6EBB5;
    color: #01281D
}

.btn-apk-dl {
    background: rgba(246, 235, 181, .12);
    color: #F6EBB5;
    border: 1.5px solid rgba(246, 235, 181, .3)
}

.btn-app-dl:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(246, 235, 181, .25);
    opacity: 1
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2
}

.app-btn-sub {
    font-size: .7rem;
    font-weight: 400;
    opacity: .8
}

.app-btn-main {
    font-size: .95rem;
    font-weight: 700
}

.slot-machine-block {
    padding: 32px;
    max-width: 560px;
    margin: 0 auto
}

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

.reel-container-x8p {
    flex: 1;
    max-width: 120px
}

.reel-window {
    height: 100px;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid rgba(246, 235, 181, .25);
    background: #011f17;
    position: relative
}

.reel-window::before, .reel-window::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 28px;
    z-index: 2;
    pointer-events: none
}

.reel-window::before {
    top: 0;
    background: linear-gradient(#011f17, transparent)
}

.reel-window::after {
    bottom: 0;
    background: linear-gradient(transparent, #011f17)
}

.reel-strip {
    transition: transform .4s cubic-bezier(.22, .61, .36, 1)
}

.reel-symbol {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    line-height: 1
}

.slot-payline {
    height: 3px;
    background: rgba(246, 235, 181, .3);
    border-radius: 2px;
    margin: -10px 0 10px;
    position: relative
}

.slot-controls {
    text-align: center;
    margin-top: 18px
}

.btn-spin {
    padding: 15px 50px;
    font-size: 1.1rem;
    letter-spacing: .06em
}

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

.slot-result-wrap {
    margin-top: 22px;
    text-align: center;
    animation: fade-in-up .4s ease
}

.slot-result-inner {
    padding: 20px 24px;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.6
}

.slot-win {
    background: rgba(74, 222, 128, .12);
    border: 1px solid rgba(74, 222, 128, .35);
    color: #4ade80
}

.slot-loss {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .7)
}

.slot-win-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 8px
}

.slot-win-claim {
    margin-top: 14px;
    display: inline-flex
}

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

.review-content-block {
    padding: 32px
}

.review-author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #01281D;
    border-radius: 10px;
    margin-bottom: 28px;
    border: 1px solid rgba(246, 235, 181, .1)
}

.author-avatar-wrap img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(246, 235, 181, .3);
    flex-shrink: 0
}

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

.author-title {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 8px
}

.author-bio {
    font-size: .875rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.55;
    margin-bottom: 10px
}

.author-linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: #F6EBB5;
    border: 1px solid rgba(246, 235, 181, .3);
    border-radius: 6px;
    padding: 5px 12px;
    transition: background .2s
}

.author-linkedin-link:hover {
    background: rgba(246, 235, 181, .08);
    opacity: 1
}

.review-text-content {
    color: #d4eadf;
    line-height: 1.75;
    font-size: .95rem
}

.review-text-content h2, .review-text-content h3 {
    color: #F6EBB5;
    font-weight: 700;
    margin: 1.8rem 0 .8rem;
    line-height: 1.3
}

.review-text-content h2 {
    font-size: 1.3rem
}

.review-text-content h3 {
    font-size: 1.1rem
}

.review-text-content p {
    margin-bottom: 1.1rem
}

.review-text-content ul, .review-text-content ol {
    margin: 1rem 0 1.1rem 1.4rem;
    list-style: disc
}

.review-text-content ol {
    list-style: decimal
}

.review-text-content li {
    margin-bottom: .5rem
}

.review-text-content table {
    border: 1px solid rgba(246, 235, 181, .2);
    border-radius: 8px;
    overflow: hidden;
    margin: 1.2rem 0;
    width: 100%
}

.review-text-content th {
    background: #01281D;
    padding: 10px 14px;
    text-align: left;
    color: #F6EBB5;
    font-size: .88rem
}

.review-text-content td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(246, 235, 181, .08);
    font-size: .88rem
}

.review-text-content strong {
    color: #e8f5f1;
    font-weight: 700
}

.review-text-content a {
    color: #F6EBB5;
    text-decoration: underline;
    text-decoration-style: dotted
}

.review-text-content a:hover {
    text-decoration-style: solid;
    opacity: 1
}

.review-text-content blockquote {
    border-left: 3px solid #F6EBB5;
    padding: 10px 18px;
    background: rgba(246, 235, 181, .06);
    border-radius: 0 8px 8px 0;
    margin: 1.2rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, .8)
}

.faq-block-n7x {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 820px;
    margin: 0 auto
}

.faq-item-p4k {
    background: #013525;
    border: 1px solid rgba(246, 235, 181, .1);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s
}

.faq-item-p4k:hover {
    border-color: rgba(246, 235, 181, .25)
}

.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    background: transparent;
    border: none;
    text-align: left;
    color: #e8f5f1;
    font-size: .97rem;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: color .2s
}

.faq-question-btn:hover, .faq-question-btn[aria-expanded="true"] {
    color: #F6EBB5
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform .3s ease
}

.faq-question-btn[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg)
}

.faq-answer-wrap {
    padding: 0 22px 18px;
    color: rgba(255, 255, 255, .75);
    font-size: .9rem;
    line-height: 1.7;
    border-top: 1px solid rgba(246, 235, 181, .08)
}

.faq-answer-wrap p {
    margin-top: 14px
}

.faq-answer-wrap strong {
    color: #e8f5f1
}

.faq-answer-wrap[hidden] {
    display: none
}

.site-footer-r2x {
    background: #01281D;
    border-top: 1px solid rgba(246, 235, 181, .1);
    padding: 48px 0 24px
}

.ftr-x8n2 {
    width: 100%
}

.ftr-top-row {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
    flex-wrap: wrap
}

.ftr-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 200px;
    flex: 1
}

.ftr-logo-link img {
    height: 44px;
    width: auto
}

.ftr-country-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .65)
}

.ftr-social-links {
    display: flex;
    gap: 10px
}

.ftr-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(246, 235, 181, .08);
    color: rgba(255, 255, 255, .65);
    transition: background .2s, color .2s
}

.ftr-social-link:hover {
    background: rgba(246, 235, 181, .15);
    color: #F6EBB5;
    opacity: 1
}

.ftr-email {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .55)
}

.ftr-email a {
    color: #F6EBB5
}

.ftr-nav-col {
    flex: 1;
    min-width: 160px
}

.ftr-col-title {
    font-size: .78rem;
    font-weight: 700;
    color: #F6EBB5;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px
}

.ftr-nav-list {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.ftr-nav-list a {
    font-size: .87rem;
    color: rgba(255, 255, 255, .6);
    transition: color .2s
}

.ftr-nav-list a:hover {
    color: #F6EBB5;
    opacity: 1
}

.ftr-trust-col {
    flex: 1;
    min-width: 200px
}

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

.ftr-badge-item {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(246, 235, 181, .06);
    border: 1px solid rgba(246, 235, 181, .12);
    border-radius: 7px;
    padding: 7px 12px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 500
}

.ftr-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2.5px solid #F6EBB5;
    color: #F6EBB5;
    font-size: 1rem;
    font-weight: 800
}

.ftr-providers-row, .ftr-payments-row {
    margin-bottom: 20px
}

.ftr-section-label {
    font-size: .75rem;
    font-weight: 700;
    color: #F6EBB5;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px
}

.ftr-logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.ftr-provider-pill, .ftr-payment-pill {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .76rem;
    font-weight: 600;
    background: rgba(246, 235, 181, .07);
    border: 1px solid rgba(246, 235, 181, .12);
    color: rgba(255, 255, 255, .7)
}

.ftr-disclaimer {
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.65;
    border-top: 1px solid rgba(246, 235, 181, .08);
    padding-top: 18px;
    margin-top: 8px
}

.ftr-disclaimer p {
    margin-bottom: .6rem
}

.ftr-disclaimer a {
    color: rgba(246, 235, 181, .6)
}

.ftr-copyright {
    font-size: .78rem;
    color: rgba(255, 255, 255, .3);
    text-align: center;
    padding-top: 14px;
    border-top: 1px solid rgba(246, 235, 181, .06);
    margin-top: 14px
}

.sticky-widget-k9m {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 800;
    max-width: 280px;
    width: calc(100vw - 36px);
    transform: translateY(0);
    transition: transform .3s, opacity .3s;
    opacity: 1
}

.sticky-widget-k9m.hidden {
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none
}

.sticky-widget-inner {
    background: #01281D;
    border: 1.5px solid rgba(246, 235, 181, .25);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .55);
    position: relative
}

.sticky-widget-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, .08);
    border: none;
    color: rgba(255, 255, 255, .6);
    border-radius: 5px;
    padding: 4px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s
}

.sticky-widget-close:hover {
    background: rgba(255, 255, 255, .15)
}

.sticky-promo-content {
    text-align: center
}

.sticky-promo-badge {
    display: inline-block;
    background: rgba(246, 235, 181, .15);
    color: #F6EBB5;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px
}

.sticky-promo-title {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 4px
}

.sticky-promo-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #F6EBB5;
    margin-bottom: 12px
}

.sticky-promo-code-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(246, 235, 181, .07);
    border: 1px dashed rgba(246, 235, 181, .3);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 14px
}

.sticky-promo-code-label {
    font-size: .72rem;
    color: rgba(255, 255, 255, .55)
}

.sticky-promo-code {
    font-size: .95rem;
    font-weight: 700;
    color: #F6EBB5;
    letter-spacing: .06em
}

.sticky-copy-btn {
    background: transparent;
    border: none;
    color: rgba(246, 235, 181, .6);
    padding: 2px;
    line-height: 1;
    cursor: pointer;
    transition: color .2s
}

.sticky-copy-btn:hover {
    color: #F6EBB5
}

.sticky-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 11px 18px;
    font-size: .92rem
}

.info-page-main {
    padding-top: 0
}

.info-page-hero {
    background: #01281D;
    padding: 24px 0
}

.breadcrumbs-x3k {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .5)
}

.breadcrumbs-x3k a {
    color: #F6EBB5
}

.breadcrumbs-x3k svg {
    opacity: .5
}

.info-content-wrap {
    padding: 36px 20px
}

.info-content-card {
    padding: 36px
}

.info-page-h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #F6EBB5;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(246, 235, 181, .12)
}

.info-text-content {
    color: #d4eadf;
    line-height: 1.75;
    font-size: .95rem
}

.info-text-content h2 {
    color: #F6EBB5;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.8rem 0 .8rem
}

.info-text-content h3 {
    color: #e8f5f1;
    font-size: 1rem;
    font-weight: 700;
    margin: 1.4rem 0 .6rem
}

.info-text-content p {
    margin-bottom: 1rem
}

.info-text-content ul, .info-text-content ol {
    margin: 1rem 0 1rem 1.4rem;
    list-style: disc
}

.info-text-content ol {
    list-style: decimal
}

.info-text-content li {
    margin-bottom: .45rem
}

.info-text-content strong {
    color: #e8f5f1;
    font-weight: 700
}

.info-text-content a {
    color: #F6EBB5;
    text-decoration: underline;
    text-decoration-style: dotted
}

.info-text-content a:hover {
    text-decoration-style: solid;
    opacity: 1
}

.info-text-content table {
    border: 1px solid rgba(246, 235, 181, .2);
    border-radius: 8px;
    overflow: hidden;
    margin: 1.2rem 0;
    width: 100%;
    display: block;
    overflow-x: auto
}

.info-text-content th {
    background: #01281D;
    padding: 10px 14px;
    text-align: left;
    color: #F6EBB5;
    font-size: .88rem;
    white-space: nowrap
}

.info-text-content td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(246, 235, 181, .08);
    font-size: .88rem
}

.c4p-hidden {
    display: none
}

.wp-placeholder-div {
    display: none;
    visibility: hidden;
    height: 0;
    overflow: hidden
}

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

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

    .burger-btn-z3m {
        display: flex
    }

    .hdr-online-count {
        display: none
    }

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

    .app-block-p9x {
        flex-direction: column
    }

    .app-img-side {
        width: 100%;
        max-width: 240px;
        margin: 0 auto
    }

    .ftr-top-row {
        gap: 24px
    }
}

@media (max-width: 640px) {
    .hdr-x9k2 {
        height: 58px
    }

    .hdr-logo-link img {
        height: 36px
    }

    .btn-hdr {
        padding: 7px 14px;
        font-size: .8rem
    }

    .hero-section-f3x {
        min-height: 420px
    }

    .hero-cta-row {
        flex-direction: column
    }

    .hero-cta-row .btn-xl {
        width: 100%;
        justify-content: center
    }

    .section-wrap-m8j {
        padding: 44px 0
    }

    .screenshots-grid-k3x {
        grid-template-columns:1fr;
        gap: 14px
    }

    .screenshots-slider-dots {
        display: flex
    }

    .screenshot-item-v8p.hidden-mobile {
        display: none
    }

    .ov-table-q7k th {
        width: 190px
    }

    .winners-table-x2p .winner-game {
        display: none
    }

    .review-author-box {
        flex-direction: column;
        gap: 14px
    }

    .review-content-block {
        padding: 20px
    }

    .faq-question-btn {
        padding: 15px 16px;
        font-size: .9rem
    }

    .faq-answer-wrap {
        padding: 0 16px 15px
    }

    .sticky-widget-k9m {
        max-width: 260px
    }

    .info-content-card {
        padding: 22px 18px
    }

    .ftr-top-row {
        flex-direction: column;
        gap: 28px
    }
}

@media (max-width: 400px) {
    .btn-xl {
        padding: 13px 22px;
        font-size: .95rem
    }

    .slot-machine-block {
        padding: 20px 16px
    }

    .reel-symbol {
        font-size: 2.2rem
    }
}
