*, *::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: 'Inter', sans-serif;
    color: #1a2340;
    background: #fff;
    line-height: 1.6;
    min-width: 320px
}

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

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

a:hover {
    color: #e09f46
}

ul {
    list-style: none
}

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

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

.site-header {
    background: #081259;
    box-shadow: 0 2px 16px rgba(8, 18, 89, .18);
    position: sticky;
    top: 0;
    z-index: 100
}

.header-box {
    padding: 0
}

.hdr-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    flex-wrap: nowrap
}

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

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

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

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

.hdr-nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #c7d4f5;
    font-size: .82rem;
    font-weight: 500;
    padding: 6px 9px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background .2s, color .2s
}

.hdr-nav-link:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

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

.hdr-casino-status {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #4ade80;
    font-size: .78rem;
    font-weight: 600;
    background: rgba(74, 222, 128, .1);
    padding: 4px 9px;
    border-radius: 20px
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 2px rgba(74, 222, 128, .3);
    animation: pulse-dot 1.5s infinite
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(74, 222, 128, .3)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(74, 222, 128, .1)
    }
}

.hdr-players {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #c7d4f5;
    font-size: .78rem;
    white-space: nowrap
}

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

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 6px;
    border-radius: 6px;
    transition: background .2s
}

.burger-btn:hover {
    background: rgba(255, 255, 255, .1)
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s
}

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

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

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

.mobile-menu {
    display: none;
    background: #081259;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.mobile-menu.open {
    display: block
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 8px 0
}

.mobile-nav-link {
    display: block;
    padding: 11px 20px;
    color: #c7d4f5;
    font-size: .9rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: background .15s, color .15s
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s, filter .15s;
    white-space: nowrap;
    line-height: 1
}

.btn:active {
    transform: scale(.97)
}

.btn-login {
    background: #e09f46;
    color: #fff;
    font-size: .82rem;
    padding: 8px 14px
}

.btn-login:hover {
    filter: brightness(1.1);
    color: #fff
}

.btn-signup {
    background: #079bfa;
    color: #fff;
    font-size: .82rem;
    padding: 8px 16px
}

.btn-signup:hover {
    filter: brightness(1.1);
    color: #fff
}

.btn-primary {
    background: #079bfa;
    color: #fff;
    padding: 12px 22px;
    font-size: .95rem
}

.btn-primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 20px rgba(7, 155, 250, .35);
    color: #fff
}

.btn-secondary {
    background: #e09f46;
    color: #fff;
    padding: 12px 22px;
    font-size: .95rem
}

.btn-secondary:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 20px rgba(224, 159, 70, .35);
    color: #fff
}

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

.hero-section {
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 540px;
    display: flex;
    align-items: center
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 18, 89, .92) 0%, rgba(8, 18, 89, .7) 60%, rgba(7, 155, 250, .15) 100%)
}

.hero-content-wrap {
    position: relative;
    z-index: 1;
    padding: 60px 20px
}

.hero-content {
    max-width: 600px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(224, 159, 70, .15);
    border: 1px solid rgba(224, 159, 70, .3);
    color: #e09f46;
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px
}

.hero-title {
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px
}

.hero-highlight {
    color: #079bfa
}

.hero-sub {
    color: #c7d4f5;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px
}

.hero-promo-box {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: inline-block
}

.hero-promo-label {
    color: #c7d4f5;
    font-size: .78rem;
    margin-bottom: 8px
}

.hero-promo-code-row {
    display: flex;
    align-items: center;
    gap: 10px
}

.hero-promo-code {
    color: #e09f46;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: 'Inter', monospace
}

.btn-copy-code {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all .2s;
    font-family: 'Inter', sans-serif
}

.btn-copy-code:hover {
    background: rgba(255, 255, 255, .2)
}

.btn-copy-code.copied {
    background: #27ae60;
    border-color: #27ae60
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

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

.hero-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #c7d4f5;
    font-size: .82rem
}

.content-box {
    padding: 0
}

.section-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #081259;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px
}

.section-sub {
    color: #5a6a8a;
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 28px
}

.jackpots-block {
    padding: 48px 0 36px
}

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

.jackpot-card {
    flex: 1 1 200px;
    background: #fff;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(8, 18, 89, .08);
    border: 1px solid rgba(8, 18, 89, .07);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px
}

.jk-mega::before {
    background: linear-gradient(90deg, #e09f46, #f5c76a)
}

.jk-major::before {
    background: linear-gradient(90deg, #079bfa, #34d0fa)
}

.jk-minor::before {
    background: linear-gradient(90deg, #e09f46, #f5a623)
}

.jk-daily::before {
    background: linear-gradient(90deg, #27ae60, #2ecc71)
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(8, 18, 89, .13)
}

.jackpot-icon {
    margin: 0 auto 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center
}

.jackpot-label {
    font-size: .78rem;
    font-weight: 600;
    color: #5a6a8a;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px
}

.jackpot-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: #081259;
    margin-bottom: 4px
}

.jackpot-game {
    font-size: .75rem;
    color: #8a9ab5
}

.app-block {
    padding: 36px 0
}

.app-content-wrap {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap
}

.app-table-wrap {
    flex: 1 1 340px;
    overflow-x: auto
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dde3ef;
    border-radius: 10px;
    overflow: hidden;
    font-size: .9rem
}

.app-table th, .app-table td {
    padding: 11px 14px;
    text-align: left;
    border-bottom: 1px solid #eef0f6
}

.app-table th {
    background: #f4f6fb;
    color: #5a6a8a;
    font-weight: 600;
    font-size: .82rem;
    width: 45%
}

.app-table td {
    color: #1a2340;
    font-weight: 500
}

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

.app-table tr:hover td {
    background: #f9faff
}

.app-download-wrap {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.app-mockup {
    background: #f4f6fb;
    border-radius: 20px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.app-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px
}

.btn-app {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .2s;
    border: 1px solid transparent
}

.btn-appstore {
    background: #000;
    color: #fff
}

.btn-appstore:hover {
    background: #1a1a1a;
    color: #fff
}

.btn-googleplay {
    background: #fff;
    color: #1a2340;
    border-color: #dde3ef
}

.btn-googleplay:hover {
    background: #f4f6fb;
    color: #1a2340
}

.btn-apk {
    background: #081259;
    color: #fff
}

.btn-apk:hover {
    background: #0d1a6b;
    color: #fff
}

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

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

.btn-app-main {
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.2
}

.bonuses-block {
    padding: 36px 0
}

.bonuses-slider-wrap {
    position: relative
}

.bonuses-track {
    display: flex;
    gap: 20px;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1)
}

.bonus-card {
    flex: 0 0 calc(33.333% - 14px);
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px;
    box-shadow: 0 2px 20px rgba(8, 18, 89, .09);
    border: 1px solid rgba(8, 18, 89, .08);
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 36px rgba(8, 18, 89, .14)
}

.bonus-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #079bfa;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px
}

.bonus-icon {
    margin-bottom: 14px
}

.bonus-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #081259;
    margin-bottom: 8px
}

.bonus-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: #079bfa;
    margin-bottom: 4px
}

.bonus-extra {
    font-size: .85rem;
    color: #e09f46;
    font-weight: 600;
    margin-bottom: 14px
}

.bonus-list {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.bonus-list li {
    font-size: .85rem;
    color: #5a6a8a;
    padding-left: 14px;
    position: relative
}

.bonus-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #079bfa
}

.bonus-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto
}

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

.bonus-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dde3ef;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0
}

.bonus-dot.active {
    background: #079bfa;
    transform: scale(1.3)
}

.slot-block {
    padding: 36px 0
}

.slot-machine {
    background: linear-gradient(135deg, #081259 0%, #0d1a6b 100%);
    border-radius: 20px;
    padding: 32px 24px;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(8, 18, 89, .25);
    text-align: center
}

.slot-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px
}

.slot-brand {
    color: #e09f46;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px
}

.slot-sub-label {
    color: rgba(255, 255, 255, .5);
    font-size: .8rem;
    background: rgba(255, 255, 255, .08);
    padding: 3px 8px;
    border-radius: 20px
}

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

.slot-reel {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, .07);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    position: relative
}

.slot-reel-inner {
    display: flex;
    flex-direction: column;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

.slot-symbol {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0
}

.slot-result-row {
    min-height: 28px;
    font-size: .9rem;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 16px
}

.slot-spin-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border-radius: 10px;
    justify-content: center
}

.slot-win-panel {
    margin-top: 20px;
    background: rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(74, 222, 128, .3)
}

.slot-win-icon {
    font-size: 2.5rem;
    margin-bottom: 8px
}

.slot-win-text {
    color: #4ade80;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px
}

.slot-win-bonus {
    color: rgba(255, 255, 255, .8);
    font-size: .85rem;
    margin-bottom: 16px;
    line-height: 1.5
}

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

.review-block {
    padding: 36px 0
}

.review-author-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f4f6fb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #dde3ef
}

.author-avatar {
    flex-shrink: 0
}

.author-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #081259;
    margin-bottom: 2px
}

.author-title {
    display: block;
    font-size: .82rem;
    color: #079bfa;
    font-weight: 600;
    margin-bottom: 6px
}

.author-bio {
    font-size: .85rem;
    color: #5a6a8a;
    line-height: 1.55;
    margin: 0
}

.author-link {
    color: #079bfa;
    font-weight: 600
}

.author-link:hover {
    color: #e09f46
}

.review-content-area.cms-content {
    padding: 0
}

.steps-block {
    padding: 36px 0
}

.steps-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.step-card {
    flex: 1 1 220px;
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 2px 16px rgba(8, 18, 89, .07);
    border: 1px solid rgba(8, 18, 89, .07);
    position: relative;
    transition: transform .2s, box-shadow .2s
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(8, 18, 89, .12)
}

.step-number {
    position: absolute;
    top: -14px;
    left: 20px;
    width: 32px;
    height: 32px;
    background: #081259;
    color: #fff;
    font-size: .85rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(8, 18, 89, .25)
}

.step-icon {
    margin-bottom: 12px;
    margin-top: 8px
}

.step-title {
    font-size: .98rem;
    font-weight: 700;
    color: #081259;
    margin-bottom: 8px
}

.step-desc {
    font-size: .85rem;
    color: #5a6a8a;
    line-height: 1.6
}

.steps-cta {
    text-align: center
}

.reviews-block {
    padding: 36px 0
}

.reviews-avg-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f4f6fb;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 28px;
    border: 1px solid #dde3ef;
    flex-wrap: wrap
}

.reviews-avg-score {
    font-size: 2.6rem;
    font-weight: 800;
    color: #081259;
    line-height: 1
}

.reviews-avg-stars {
    display: flex;
    gap: 3px
}

.reviews-avg-label {
    font-size: .85rem;
    color: #5a6a8a
}

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

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 2px 14px rgba(8, 18, 89, .07);
    border: 1px solid rgba(8, 18, 89, .07);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform .2s, box-shadow .2s
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(8, 18, 89, .11)
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 10px
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.rv-a1 {
    background: #081259
}

.rv-a2 {
    background: #079bfa
}

.rv-a3 {
    background: #e09f46
}

.rv-a4 {
    background: #8b5cf6
}

.rv-a5 {
    background: #ef4444
}

.rv-a6 {
    background: #10b981
}

.rv-a7 {
    background: #f59e0b
}

.rv-a8 {
    background: #3b82f6
}

.rv-a9 {
    background: #ec4899
}

.review-name {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: #081259
}

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

.review-text {
    font-size: .84rem;
    color: #5a6a8a;
    line-height: 1.6;
    flex: 1
}

.review-date {
    font-size: .75rem;
    color: #8a9ab5
}

.review-form-wrap {
    background: #f4f6fb;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #dde3ef;
    max-width: 560px
}

.review-form-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #081259;
    margin-bottom: 20px
}

.review-form-success {
    text-align: center;
    padding: 24px 0
}

.review-form-success h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #27ae60;
    margin: 12px 0 8px
}

.review-form-success p {
    font-size: .88rem;
    color: #5a6a8a;
    line-height: 1.6
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px
}

.form-label {
    font-size: .85rem;
    font-weight: 600;
    color: #1a2340
}

.form-label span {
    color: #ef4444
}

.form-input, .form-textarea {
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    color: #1a2340;
    background: #fff;
    border: 1.5px solid #dde3ef;
    border-radius: 8px;
    padding: 10px 14px;
    width: 100%;
    transition: border-color .2s, box-shadow .2s;
    outline: none
}

.form-input:focus, .form-textarea:focus {
    border-color: #079bfa;
    box-shadow: 0 0 0 3px rgba(7, 155, 250, .12)
}

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

.form-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px
}

.site-footer {
    background: #081259;
    color: #c7d4f5;
    margin-top: 0
}

.ftr-wrap {
    padding: 40px 0 20px
}

.ftr-top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.ftr-brand {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

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

.ftr-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: #c7d4f5;
    font-weight: 600
}

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

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

.ftr-social-link:hover {
    background: rgba(7, 155, 250, .2);
    color: #079bfa
}

.ftr-nav-cols {
    display: flex;
    flex: 1;
    gap: 24px;
    flex-wrap: wrap
}

.ftr-nav-col {
    flex: 1 1 140px
}

.ftr-nav-title {
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px
}

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

.ftr-nav-list a {
    font-size: .85rem;
    color: #c7d4f5;
    transition: color .15s
}

.ftr-nav-list a:hover {
    color: #e09f46
}

.ftr-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin: 20px 0
}

.ftr-section-label {
    font-size: .78rem;
    font-weight: 600;
    color: #8a9ab5;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px
}

.ftr-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

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

.ftr-payment-badge, .ftr-trust-badge {
    opacity: .85;
    transition: opacity .2s;
    cursor: default
}

.ftr-payment-badge:hover, .ftr-trust-badge:hover {
    opacity: 1
}

.ftr-provider-badge {
    background: rgba(255, 255, 255, .07);
    color: #c7d4f5;
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .1)
}

.ftr-legal {
    text-align: center
}

.ftr-legal-text {
    font-size: .78rem;
    color: #8a9ab5;
    line-height: 1.55;
    margin-bottom: 10px
}

.ftr-legal-text a {
    color: #8a9ab5;
    text-decoration: underline
}

.ftr-legal-text a:hover {
    color: #c7d4f5
}

.ftr-copyright {
    font-size: .75rem;
    color: #5a6a8a;
    margin-top: 10px
}

.promo-widget {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 200;
    pointer-events: none;
    padding: 0 16px;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .35s
}

.promo-widget.hidden {
    transform: translateY(120%);
    opacity: 0
}

.widget-inner {
    background: #081259;
    border-radius: 14px;
    box-shadow: 0 6px 32px rgba(8, 18, 89, .3);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: all;
    flex-wrap: wrap;
    max-width: 640px;
    border: 1px solid rgba(7, 155, 250, .3);
    position: relative
}

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

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

.widget-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    font-weight: 700;
    color: #e09f46;
    text-transform: uppercase;
    letter-spacing: .5px
}

.widget-promo-row {
    display: flex;
    align-items: center;
    gap: 8px
}

.widget-promo-code {
    color: #e09f46;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: rgba(224, 159, 70, .12);
    padding: 5px 10px;
    border-radius: 6px;
    font-family: 'Inter', monospace
}

.widget-copy-btn {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all .2s;
    font-family: 'Inter', sans-serif
}

.widget-copy-btn:hover {
    background: rgba(255, 255, 255, .2)
}

.widget-copy-btn.copied {
    background: #27ae60;
    border-color: #27ae60
}

.widget-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .75)
}

.widget-cta {
    padding: 9px 18px;
    font-size: .85rem
}

.info-main {
    padding: 40px 0
}

.info-content-box {
    background: #fff;
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(8, 18, 89, .07);
    border: 1px solid rgba(8, 18, 89, .07)
}

.cms-content h1, .cms-content h2, .cms-content h3, .cms-content h4 {
    color: #081259;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 28px;
    margin-bottom: 12px
}

.cms-content h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: 0
}

.cms-content h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem)
}

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

.cms-content h4 {
    font-size: 1rem
}

.cms-content p {
    font-size: .95rem;
    color: #3a4a6a;
    line-height: 1.7;
    margin-bottom: 14px
}

.cms-content ul, .cms-content ol {
    padding-left: 22px;
    margin-bottom: 14px
}

.cms-content ul li {
    list-style: disc;
    font-size: .95rem;
    color: #3a4a6a;
    line-height: 1.65;
    margin-bottom: 5px
}

.cms-content ol li {
    list-style: decimal;
    font-size: .95rem;
    color: #3a4a6a;
    line-height: 1.65;
    margin-bottom: 5px
}

.cms-content a {
    color: #079bfa;
    text-decoration: underline
}

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

.cms-content strong, .cms-content b {
    font-weight: 700;
    color: #1a2340
}

.cms-content em, .cms-content i {
    font-style: italic
}

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

.cms-content table th, .cms-content table td {
    padding: 10px 14px;
    border: 1px solid #dde3ef;
    text-align: left
}

.cms-content table th {
    background: #f4f6fb;
    font-weight: 600;
    color: #5a6a8a
}

.cms-content table tr:hover td {
    background: #f9faff
}

.cms-content blockquote {
    border-left: 4px solid #079bfa;
    background: #f4f6fb;
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    color: #3a4a6a;
    font-style: italic
}

.cms-content hr {
    border: none;
    border-top: 1px solid #eef0f6;
    margin: 24px 0
}

.contact-form {
    margin-top: 16px
}

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

    .hdr-status-wrap {
        display: none
    }

    .burger-btn {
        display: flex
    }

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

    .bonuses-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px
    }

    .bonus-card {
        flex: 0 0 85%;
        scroll-snap-align: start
    }

    .bonuses-dots {
        display: flex
    }

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

    .ftr-brand {
        flex: none
    }
}

@media (max-width: 640px) {
    .hero-bg {
        min-height: auto
    }

    .hero-content-wrap {
        padding: 40px 0
    }

    .hero-buttons {
        flex-direction: column
    }

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

    .jackpots-grid {
        flex-direction: column
    }

    .steps-grid {
        flex-direction: column
    }

    .app-content-wrap {
        flex-direction: column
    }

    .app-download-wrap {
        width: 100%;
        align-items: flex-start
    }

    .app-btns {
        flex-direction: row;
        flex-wrap: wrap
    }

    .widget-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .hdr-players {
        display: none
    }

    .hdr-buttons {
        gap: 6px
    }

    .bonus-card {
        flex: 0 0 90%
    }

    .info-content-box {
        padding: 20px 16px
    }
}

/* ---- FAQ ---- */
.faq-block {
    margin: 40px 0
}

.faq-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(8, 18, 89, .1);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .2s
}

.faq-item:hover, .faq-item:focus-within {
    box-shadow: 0 4px 18px rgba(7, 155, 250, .12)
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 20px;
    font-size: .95rem;
    font-weight: 600;
    color: #081259;
    text-align: left;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    transition: color .2s
}

.faq-question:hover {
    color: #079bfa
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform .25s
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-answer.open {
    max-height: 400px
}

.faq-answer-inner {
    padding: 0 20px 18px;
    font-size: .9rem;
    color: #3a4a6a;
    line-height: 1.7
}

@media print {
    .promo-widget, .burger-btn, .mobile-menu, .site-header {
        display: none !important
    }
}

.wecscs {
    background: #fff;
    border: 1px solid #dde3ef;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 10px 35px rgba(8, 18, 89, .08);
    overflow: hidden;
    position: relative;
}

.wecscs *,
.wecscs *::before,
.wecscs *::after {
    box-sizing: border-box;
    max-width: 100%;
}

.wecscs h1,
.wecscs h2,
.wecscs h3,
.wecscs h4,
.wecscs h5,
.wecscs h6 {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.wecscs p,
.wecscs li,
.wecscs td,
.wecscs th {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.wecscs img,
.wecscs svg,
.wecscs video {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.wecscs iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 16px;
}

.wecscs table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
}

.wecscs table tbody,
.wecscs table thead {
    width: 100%;
}

.wecscs th,
.wecscs td {
    min-width: 160px;
    white-space: normal;
}

.wecscs ul,
.wecscs ol {
    padding-left: 22px;
}

.wecscs pre,
.wecscs code {
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.wecscs a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.wecscs blockquote {
    overflow: hidden;
}

@media (max-width: 991px) {

    .wecscs {
        padding: 26px 20px;
    }

}

@media (max-width: 768px) {

    .wecscs {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .wecscs h1 {
        font-size: 30px;
    }

    .wecscs h2 {
        font-size: 24px;
    }

    .wecscs h3 {
        font-size: 20px;
    }

    .wecscs p,
    .wecscs li {
        font-size: 15px;
        line-height: 1.7;
    }

    .wecscs table {
        min-width: 560px;
    }

    .wecscs iframe {
        min-height: 260px;
    }

}

@media (max-width: 480px) {

    .wecscs {
        padding: 16px 12px;
        border-radius: 16px;
    }

    .wecscs h1 {
        font-size: 26px;
    }

    .wecscs h2 {
        font-size: 22px;
    }

    .wecscs h3 {
        font-size: 18px;
    }

    .wecscs p,
    .wecscs li {
        font-size: 14px;
    }

    .wecscs img {
        border-radius: 12px;
    }

    .wecscs iframe {
        min-height: 220px;
    }

}