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

html {
    scroll-behavior: smooth;
    background: #012f53
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #012f53;
    color: #e8f4fd;
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh
}

a {
    color: #00b4ff;
    text-decoration: none;
    transition: color .25s
}

a:hover {
    color: #11dbe8
}

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

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

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

.box {
    padding: 0
}

.site-header {
    background: #11dbe8;
    position: sticky;
    top: 0;
    z-index: 9000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .4)
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 68px;
    flex-wrap: nowrap
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0
}

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #012f53;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background .2s
}

.header-nav a:hover {
    background: rgba(1, 47, 83, .15);
    color: #012f53
}

.header-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #012f53;
    background: rgba(1, 47, 83, .12);
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00c853;
    animation: pulse 2s infinite
}

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

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

.lang-dropdown {
    position: relative;
    flex-shrink: 0
}

.lang-btn {
    background: rgba(1, 47, 83, .15);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #012f53;
    transition: background .2s
}

.lang-btn:hover {
    background: rgba(1, 47, 83, .25)
}

.lang-btn svg {
    width: 14px;
    height: 14px
}

.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: #012f53;
    border: 1px solid rgba(17, 219, 232, .3);
    border-radius: 8px;
    min-width: 130px;
    padding: 4px 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
}

.lang-menu.open {
    display: block
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: #e8f4fd;
    font-size: 13px;
    transition: background .2s
}

.lang-menu a:hover {
    background: rgba(17, 219, 232, .12)
}

.lang-flag {
    font-size: 16px
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(1, 47, 83, .15);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0
}

.burger span {
    display: block;
    height: 2px;
    background: #012f53;
    border-radius: 2px;
    transition: all .3s
}

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #012f53;
    z-index: 8999;
    overflow-y: auto;
    padding: 20px 16px;
    flex-direction: column;
    gap: 8px
}

.mobile-nav.open {
    display: flex
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e8f4fd;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(17, 219, 232, .2);
    transition: background .2s
}

.mobile-nav a:hover {
    background: rgba(17, 219, 232, .1)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s, filter .15s;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.1)
}

.btn:active {
    transform: translateY(0)
}

.btn-demo {
    background: #00b4ff;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 180, 255, .4)
}

.btn-money {
    background: #ffea00;
    color: #012f53;
    box-shadow: 0 4px 14px rgba(255, 234, 0, .4)
}

.btn-reg {
    background: #ffea00;
    color: #012f53;
    box-shadow: 0 4px 14px rgba(255, 234, 0, .4)
}

.btn-login {
    background: #00b4ff;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 180, 255, .35)
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 10px
}

.btn-sm {
    padding: 7px 14px;
    font-size: 12px
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/hero-banner.jpg') center/cover no-repeat;
    z-index: 0
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 47, 83, .88) 0%, rgba(1, 47, 83, .55) 60%, rgba(0, 0, 0, .3) 100%);
    z-index: 1
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(17, 219, 232, .2);
    border: 1px solid #11dbe8;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #11dbe8;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.hero h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
    text-wrap: balance
}

.hero-sub {
    font-size: 16px;
    color: rgba(232, 244, 253, .85);
    margin-bottom: 28px;
    line-height: 1.6
}

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

.hero-stat {
    text-align: center
}

.hero-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #ffea00
}

.hero-stat span {
    font-size: 12px;
    color: rgba(232, 244, 253, .7)
}

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

.hero-rtp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    color: rgba(232, 244, 253, .6)
}

.section {
    margin-bottom: 48px
}

.section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-wrap: balance
}

.section-sub {
    font-size: 14px;
    color: rgba(232, 244, 253, .65);
    margin-bottom: 24px
}

.divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #11dbe8, #00b4ff);
    border-radius: 2px;
    margin-bottom: 20px
}

.card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(17, 219, 232, .18);
    border-radius: 14px;
    padding: 24px;
    backdrop-filter: blur(4px)
}

.card-accent {
    border-top: 3px solid #11dbe8
}

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

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px
}

.info-table th, .info-table td {
    padding: 11px 16px;
    text-align: left;
    border: 1px solid rgba(17, 219, 232, .2)
}

.info-table th {
    background: rgba(17, 219, 232, .15);
    color: #11dbe8;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap
}

.info-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03)
}

.info-table tr:hover td {
    background: rgba(17, 219, 232, .07);
    transition: background .2s
}

.info-table td:first-child {
    color: rgba(232, 244, 253, .7);
    font-size: 13px;
    width: 45%
}

.info-table td:last-child {
    color: #e8f4fd;
    font-weight: 600
}

.badge-val {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(17, 219, 232, .12);
    color: #11dbe8;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700
}

.badge-rtp {
    background: rgba(0, 200, 83, .12);
    color: #00c853
}

.winners-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px
}

.winner-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(17, 219, 232, .15);
    border-radius: 10px;
    padding: 10px 14px;
    transition: transform .2s, box-shadow .2s
}

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

.winner-rank {
    font-size: 11px;
    font-weight: 800;
    color: rgba(232, 244, 253, .5);
    width: 22px;
    flex-shrink: 0;
    text-align: center
}

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

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

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

.winner-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #11dbe8, #00b4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #012f53;
    flex-shrink: 0
}

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

.winner-name {
    font-size: 13px;
    font-weight: 700;
    color: #e8f4fd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.winner-amount {
    font-size: 12px;
    color: #ffea00;
    font-weight: 700
}

.winner-time {
    font-size: 11px;
    color: rgba(232, 244, 253, .45)
}

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

.app-info {
    flex: 1;
    min-width: 260px
}

.app-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(17, 219, 232, .25);
    border-radius: 12px;
    padding: 12px 20px;
    color: #e8f4fd;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s, transform .2s;
    min-width: 200px
}

.app-btn:hover {
    background: rgba(17, 219, 232, .15);
    transform: translateX(4px);
    color: #e8f4fd
}

.app-btn svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px
}

.app-btn-label {
    display: flex;
    flex-direction: column;
    gap: 1px
}

.app-btn-label small {
    font-size: 10px;
    font-weight: 400;
    opacity: .7
}

.app-btn-label strong {
    font-size: 14px
}

.demo-wrap {
    position: relative;
    border-radius: 16px;
    border: 2px solid rgba(17, 219, 232, .3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .5)
}

.demo-frame {
    width: 100%;
    height: 560px;
    display: block;
    border: none
}

.demo-footer {
    background: rgba(1, 47, 83, .8);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

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

.faq-item {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(17, 219, 232, .2);
    border-radius: 12px;
    overflow: hidden
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #e8f4fd;
    font-size: 15px;
    font-weight: 700;
    transition: background .2s
}

.faq-q:hover {
    background: rgba(17, 219, 232, .07)
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(17, 219, 232, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s;
    color: #11dbe8;
    font-size: 14px;
    font-weight: 900
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.faq-item.open .faq-a {
    max-height: 500px
}

.faq-a-inner {
    padding: 4px 20px 18px;
    color: rgba(232, 244, 253, .8);
    font-size: 14px;
    line-height: 1.7
}

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

.review-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #11dbe8;
    margin: 22px 0 10px
}

.review-content p {
    color: rgba(232, 244, 253, .85);
    line-height: 1.75;
    margin-bottom: 14px
}

.review-content ul, .review-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
    color: rgba(232, 244, 253, .85);
    line-height: 1.75
}

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

.review-content a {
    color: #00b4ff;
    text-decoration: underline
}

.review-content strong, .review-content b {
    color: #fff
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0
}

.review-content table th, .review-content table td {
    padding: 10px 14px;
    border: 1px solid rgba(17, 219, 232, .2);
    text-align: left
}

.review-content table th {
    background: rgba(17, 219, 232, .12);
    color: #11dbe8
}

.review-content blockquote {
    border-left: 3px solid #11dbe8;
    padding: 8px 16px;
    margin: 16px 0;
    background: rgba(17, 219, 232, .06);
    border-radius: 0 8px 8px 0;
    color: rgba(232, 244, 253, .8);
    font-style: italic
}

.author-card {
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid #11dbe8;
    flex-shrink: 0;
    object-fit: cover
}

.author-info h4 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px
}

.author-info .author-title {
    font-size: 13px;
    color: #11dbe8;
    font-weight: 600;
    margin-bottom: 8px
}

.author-info p {
    font-size: 13px;
    color: rgba(232, 244, 253, .75);
    line-height: 1.6;
    margin-bottom: 8px
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #00b4ff;
    font-size: 13px;
    font-weight: 600;
    transition: color .2s
}

.author-link:hover {
    color: #11dbe8
}

/**/
.site-footer {
    background: #0a2238;
    border-top: 1px solid rgba(17, 219, 232, .2);
    padding: 40px 0 24px;
    margin-top: auto
}

.footer-grid {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    color: #11dbe8;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 14px
}

.footer-col a {
    display: block;
    color: rgba(232, 244, 253, .65);
    font-size: 13px;
    margin-bottom: 8px;
    transition: color .2s
}

.footer-col a:hover {
    color: #11dbe8
}

.footer-logo img {
    height: 40px;
    margin-bottom: 12px
}

.footer-legal {
    font-size: 12px;
    color: rgba(232, 244, 253, .45);
    line-height: 1.6
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px
}

.pay-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(232, 244, 253, .7)
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px
}

.trust-badge {
    background: rgba(17, 219, 232, .1);
    border: 1px solid rgba(17, 219, 232, .25);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #11dbe8
}

.footer-bottom {
    border-top: 1px solid rgba(17, 219, 232, .12);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center
}

.footer-copyright {
    font-size: 12px;
    color: rgba(232, 244, 253, .4);
    line-height: 1.6
}

.tech-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 48px 0
}

.tech-content h1 {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    text-wrap: balance
}

.tech-content .lead {
    font-size: 16px;
    color: rgba(232, 244, 253, .75);
    margin-bottom: 32px;
    line-height: 1.7
}

.tech-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 32px 0 12px
}

.tech-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #11dbe8;
    margin: 22px 0 10px
}

.tech-content p {
    color: rgba(232, 244, 253, .82);
    line-height: 1.75;
    margin-bottom: 14px
}

.tech-content ul, .tech-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
    color: rgba(232, 244, 253, .82);
    line-height: 1.75
}

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

.tech-content a {
    color: #00b4ff;
    text-decoration: underline
}

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease
}

.fade-up.visible {
    opacity: 1;
    transform: none
}

.wp-block-group {
    display: block
}

.entry-content {
    display: block
}

.wp-block-separator {
    display: none
}

.wp-caption {
    display: block
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden
}

.post-thumbnail {
    display: block
}

.widget-area {
    display: none
}

.site-info {
    display: none
}

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

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

    .burger {
        display: flex
    }

    .online-counter {
        display: none
    }

    .hero {
        min-height: 360px
    }

    .hero-content {
        padding: 40px 0
    }

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

    .demo-frame {
        height: 400px
    }

    .app-flex {
        flex-direction: column
    }

    .author-card {
        flex-direction: column
    }

    .winners-grid {
        grid-template-columns:repeat(auto-fill, minmax(160px, 1fr))
    }
}

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

    .hero-stats {
        gap: 16px
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 14px
    }

    .demo-frame {
        height: 320px
    }

    .bottom-widget {
        flex-direction: column;
        gap: 8px;
        padding: 10px 40px 10px 16px
    }
}
