@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap');

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

:root {
    --c-bg: #114E37;
    --c-header: #1A654A;
    --c-btn-login: #21825F;
    --c-btn-reg: #FECE08;
    --c-text: #f0f4f2;
    --c-text-dark: #0d3326;
    --c-card: #16603f;
    --c-card2: #1a7049;
    --c-border: #2a8a62;
    --c-accent: #FECE08;
    --c-shadow: rgba(0, 0, 0, .35);
    --radius: 10px;
    --trans: .25s ease
}

html {
    scroll-behavior: smooth;
    background: var(--c-bg)
}

body {
    font-family: 'Roboto', 'Open Sans', Arial, Helvetica, sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden
}

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

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

.container--full {
    width: 100%;
    padding: 0
}

a {
    color: var(--c-accent);
    text-decoration: none;
    transition: color var(--trans)
}

a:hover {
    color: #fff
}

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

.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: all var(--trans);
    text-decoration: none;
    white-space: nowrap
}

.btn--login {
    background: var(--c-btn-login);
    color: #fff
}

.btn--login:hover {
    background: #1a6e4e;
    color: #fff
}

.btn--reg {
    background: var(--c-btn-reg);
    color: var(--c-text-dark)
}

.btn--reg:hover {
    background: #e6b800;
    color: var(--c-text-dark)
}

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

.btn--bonus {
    background: var(--c-btn-reg);
    color: var(--c-text-dark);
    font-weight: 700
}

.btn--bonus:hover {
    background: #e6b800
}

.site-header {
    background: var(--c-header);
    box-shadow: 0 2px 12px var(--c-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0
}

.header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px
}

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

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

.header-nav a {
    color: var(--c-text);
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 5px;
    transition: background var(--trans)
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(255, 255, 255, .12);
    color: #fff
}

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

.header-online {
    font-size: 12px;
    color: #a8d8c0;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap
}

.header-online .dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite
}

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

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--trans)
}

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

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

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

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

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 460px
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
    display: flex;
    align-items: center
}

.hero-slide.active {
    opacity: 1;
    position: relative
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0
}

.hero-slide__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 78, 55, .92) 0%, rgba(17, 78, 55, .55) 60%, transparent 100%)
}

.hero-slide__content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    max-width: 560px
}

.hero-slide__content h1, .hero-slide__content h2 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-wrap: balance;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .4)
}

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

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: background var(--trans)
}

.hero-dot.active {
    background: var(--c-accent)
}

.section {
    padding: 48px 0
}

.section-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    text-wrap: balance
}

.section-title--center {
    text-align: center
}

.card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform var(--trans), box-shadow var(--trans)
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px var(--c-shadow)
}

.card2 {
    background: var(--c-card2);
    border-radius: var(--radius);
    padding: 20px
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden
}

.info-table th, .info-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px
}

.info-table th {
    background: rgba(0, 0, 0, .25);
    color: #a8d8c0;
    font-weight: 600;
    white-space: nowrap;
    width: 40%
}

.info-table td {
    color: var(--c-text)
}

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

.info-table tr:hover td, .info-table tr:hover th {
    background: rgba(255, 255, 255, .04)
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--c-border)
}

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

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

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

.screenshot-img {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--c-border)
}

.screenshot-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s ease
}

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

.tournament-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.tournament-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff
}

.tournament-card__desc {
    font-size: .9rem;
    color: #a8d8c0;
    line-height: 1.5
}

.tournament-card__prize {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-accent)
}

.tournament-timer {
    display: flex;
    gap: 8px
}

.timer-block {
    background: rgba(0, 0, 0, .3);
    border-radius: 6px;
    padding: 8px 12px;
    text-align: center;
    min-width: 54px
}

.timer-block__num {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff
}

.timer-block__label {
    display: block;
    font-size: 10px;
    color: #a8d8c0;
    text-transform: uppercase
}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: #000
}

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

.slot-machine {
    background: var(--c-card);
    border: 2px solid var(--c-border);
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 24px 0
}

.slot-reel {
    width: 72px;
    height: 88px;
    background: #0d3326;
    border: 2px solid var(--c-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    overflow: hidden;
    position: relative
}

.slot-reel.spinning {
    animation: spinReel .15s linear infinite
}

@keyframes spinReel {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
    100% {
        transform: translateY(0)
    }
}

.slot-result {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600
}

.slot-result.win {
    color: var(--c-accent)
}

.slot-result.lose {
    color: #ef4444
}

.reviews-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px
}

.review-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-border)
}

.review-card__name {
    font-weight: 600;
    color: #fff;
    font-size: .95rem
}

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

.review-stars svg {
    width: 16px;
    height: 16px
}

.review-card__text {
    font-size: .88rem;
    color: #c8e8d8;
    line-height: 1.6
}

.review-form {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
    max-width: 560px;
    margin-top: 32px
}

.review-form h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

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

.form-group label {
    font-size: .88rem;
    color: #a8d8c0;
    font-weight: 500
}

.form-group input, .form-group textarea {
    background: #0d3326;
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 11px 14px;
    color: #fff;
    font-size: .95rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color var(--trans)
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--c-accent)
}

.form-success {
    display: none;
    background: rgba(34, 197, 94, .15);
    border: 1px solid #22c55e;
    border-radius: 8px;
    padding: 16px;
    color: #86efac;
    font-size: .95rem;
    text-align: center;
    margin-top: 12px
}

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

.content-text h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #c8e8d8;
    margin: 20px 0 10px
}

.content-text p {
    color: #c8e8d8;
    line-height: 1.7;
    margin-bottom: 14px;
    font-size: .97rem
}

.content-text ul, .content-text ol {
    margin: 10px 0 16px 22px;
    color: #c8e8d8;
    line-height: 1.7
}

.content-text li {
    margin-bottom: 6px;
    font-size: .97rem
}

.content-text a {
    color: var(--c-accent)
}

.content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border-radius: 8px;
    overflow: hidden
}

.content-text table th {
    background: rgba(0, 0, 0, .3);
    color: #a8d8c0;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    font-size: .9rem
}

.content-text table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--c-border);
    color: #c8e8d8;
    font-size: .9rem
}

.content-text table tr:last-child td {
    border-bottom: none
}

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

.content-text blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 10px 16px;
    background: rgba(254, 206, 8, .06);
    border-radius: 0 6px 6px 0;
    margin: 16px 0
}

.site-footer {
    background: var(--c-header);
    padding: 40px 0 24px;
    margin-top: auto
}

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

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

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-nav a {
    color: #a8d8c0;
    font-size: .9rem;
    transition: color var(--trans)
}

.footer-nav a:hover {
    color: #fff
}

.footer-nav-title {
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px
}

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

.footer-logo-item {
    background: rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .78rem;
    font-weight: 600;
    color: #c8e8d8;
    white-space: nowrap
}

.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center
}

.footer-legal-links a {
    color: #6b9e85;
    font-size: .8rem
}

.footer-legal-links a:hover {
    color: #a8d8c0
}

.footer-copy {
    font-size: .8rem;
    color: #6b9e85
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(135deg, #1A654A, #114E37);
    border-top: 2px solid var(--c-accent);
    padding: 10px 0
}

.sticky-widget__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.sticky-widget__text {
    font-size: .9rem;
    color: #c8e8d8;
    flex: 1
}

.sticky-widget__text strong {
    color: var(--c-accent)
}

.sticky-widget__close {
    background: none;
    border: none;
    color: #6b9e85;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    line-height: 1
}

.sticky-widget__close:hover {
    color: #fff
}

.breadcrumb {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap
}

.breadcrumb a, .breadcrumb span {
    font-size: .85rem;
    color: #a8d8c0
}

.breadcrumb a:hover {
    color: #fff
}

.breadcrumb-sep {
    color: #4a7f65;
    font-size: .8rem
}

.bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.bonus-card__icon {
    font-size: 2.2rem;
    width: 52px;
    height: 52px;
    background: rgba(254, 206, 8, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

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

.bonus-card__amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c-accent)
}

.bonus-card__desc {
    font-size: .88rem;
    color: #a8d8c0;
    line-height: 1.5
}

.bonus-card .btn {
    align-self: flex-start
}

.promo-block {
    background: linear-gradient(135deg, rgba(254, 206, 8, .12), rgba(254, 206, 8, .04));
    border: 2px solid var(--c-accent);
    border-radius: 14px;
    padding: 32px;
    text-align: center
}

.promo-block__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.promo-block__subtitle {
    font-size: .9rem;
    color: #a8d8c0;
    margin-bottom: 20px
}

.promo-code {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #0d3326;
    border: 2px dashed var(--c-accent);
    border-radius: 10px;
    padding: 14px 24px
}

.promo-code__text {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--c-accent)
}

.promo-code__copy {
    background: var(--c-accent);
    color: var(--c-text-dark);
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 700;
    cursor: pointer;
    font-size: .88rem;
    transition: background var(--trans)
}

.promo-code__copy:hover {
    background: #e6b800
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden
}

.compare-table th, .compare-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    font-size: .9rem
}

.compare-table thead th {
    background: rgba(0, 0, 0, .3);
    color: #a8d8c0;
    font-weight: 600
}

.compare-table tbody tr:hover td {
    background: rgba(255, 255, 255, .04)
}

.compare-table .check {
    color: #4ade80;
    font-size: 1.1rem
}

.compare-table .cross {
    color: #ef4444
}

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

.faq-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden
}

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

.faq-question:hover {
    background: rgba(255, 255, 255, .06)
}

.faq-question .faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--trans);
    color: #a8d8c0
}

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

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

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

.faq-answer__inner {
    padding: 0 20px 16px;
    color: #a8d8c0;
    font-size: .93rem;
    line-height: 1.7
}

.mirror-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden
}

.mirror-table th, .mirror-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--c-border);
    font-size: .9rem;
    text-align: left
}

.mirror-table thead th {
    background: rgba(0, 0, 0, .3);
    color: #a8d8c0;
    font-weight: 600
}

.mirror-table .status-active {
    color: #4ade80;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px
}

.mirror-table .status-active::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block
}

.mirror-date {
    font-size: .8rem;
    color: #a8d8c0;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.mirror-actions {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px
}

.mirror-action-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center
}

.mirror-action-card__icon {
    font-size: 2rem
}

.mirror-action-card__title {
    font-weight: 700;
    color: #fff;
    font-size: .95rem
}

.mirror-action-card__desc {
    font-size: .82rem;
    color: #a8d8c0
}

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

.slot-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans)
}

.slot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--c-shadow)
}

.slot-card__img {
    width: 100%;
    height: 140px;
    object-fit: cover
}

.slot-card__body {
    padding: 14px
}

.slot-card__name {
    font-weight: 700;
    color: #fff;
    font-size: .95rem;
    margin-bottom: 8px
}

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

.rtp-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden
}

.rtp-table th, .rtp-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--c-border);
    font-size: .9rem;
    text-align: left
}

.rtp-table thead th {
    background: rgba(0, 0, 0, .3);
    color: #a8d8c0;
    font-weight: 600
}

.rtp-bar {
    height: 6px;
    background: var(--c-border);
    border-radius: 3px;
    overflow: hidden;
    min-width: 80px
}

.rtp-bar__fill {
    height: 100%;
    background: var(--c-accent);
    border-radius: 3px
}

.author-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.author-block__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-border);
    flex-shrink: 0
}

.author-block__name {
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 4px
}

.author-block__role {
    font-size: .82rem;
    color: var(--c-accent);
    margin-bottom: 10px
}

.author-block__bio {
    font-size: .88rem;
    color: #a8d8c0;
    line-height: 1.6;
    margin-bottom: 12px
}

.author-block__links {
    display: flex;
    gap: 10px
}

.author-block__links a {
    background: rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .8rem;
    color: #c8e8d8;
    transition: background var(--trans)
}

.author-block__links a:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff
}

.app-specs {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 16px
}

.app-spec-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px
}

.app-spec-card__os {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px
}

.app-spec-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.app-spec-card__list li {
    display: flex;
    justify-content: space-between;
    font-size: .88rem;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.app-spec-card__list li:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.app-spec-card__list li span:first-child {
    color: #a8d8c0
}

.app-spec-card__list li span:last-child {
    color: #fff;
    font-weight: 500
}

.technical-content {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px
}

.technical-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

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

.technical-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #c8e8d8;
    margin: 18px 0 8px
}

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

.technical-content ul, .technical-content ol {
    margin: 10px 0 16px 22px;
    color: #a8d8c0;
    line-height: 1.7
}

.technical-content li {
    margin-bottom: 6px;
    font-size: .95rem
}

.technical-content strong {
    color: #fff
}

.mobile-slider {
    position: relative;
    overflow: hidden
}

.mobile-slider-track {
    display: flex;
    transition: transform .4s ease
}

.mobile-slider .card, .mobile-slider .bonus-card, .mobile-slider .tournament-card, .mobile-slider .slot-card {
    flex-shrink: 0
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

.slider-nav button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c-border);
    border: none;
    cursor: pointer;
    transition: background var(--trans)
}

.slider-nav button.active {
    background: var(--c-accent)
}

.tag {
    display: inline-block;
    background: rgba(254, 206, 8, .12);
    color: var(--c-accent);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: .78rem;
    font-weight: 600
}

.d9f3k2 {
    display: none;
    visibility: hidden
}

.wp8j1x {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none
}

.kx72mq {
    height: 0;
    overflow: hidden
}

@media (max-width: 1024px) {
    .cards-grid-3, .screenshots-grid {
        grid-template-columns:repeat(2, 1fr)
    }

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

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

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

    .app-specs {
        grid-template-columns:1fr
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns:auto auto;
        grid-template-rows:auto auto
    }

    .header-nav {
        display: none;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: var(--c-header);
        z-index: 999;
        justify-content: center;
        align-items: center;
        gap: 16px;
        padding: 40px 24px
    }

    .header-nav.open {
        display: flex
    }

    .header-nav a {
        font-size: 1.1rem;
        padding: 10px 20px
    }

    .burger {
        display: flex;
        z-index: 1001
    }

    .header-cta {
        display: flex
    }

    .cards-grid-3, .screenshots-grid, .slots-grid {
        grid-template-columns:1fr
    }

    .mirror-actions {
        grid-template-columns:1fr
    }

    .footer-inner {
        grid-template-columns:1fr;
        gap: 20px
    }

    .app-specs {
        grid-template-columns:1fr
    }

    .hero-slide__content h1, .hero-slide__content h2 {
        font-size: 1.5rem
    }

    .sticky-widget__text {
        font-size: .8rem
    }

    .author-block {
        flex-direction: column
    }

    .author-block__photo {
        width: 64px;
        height: 64px
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px
    }

    .section {
        padding: 32px 0
    }

    .hero {
        min-height: 360px
    }

    .hero-slider {
        min-height: 360px
    }

    .hero-slide__content {
        padding: 40px 0
    }

    .promo-code {
        flex-direction: column;
        gap: 8px
    }

    .bonus-card__amount {
        font-size: 1.4rem
    }

    .slot-reels {
        gap: 8px
    }

    .slot-reel {
        width: 60px;
        height: 72px;
        font-size: 2rem
    }
}

.bw91f4z {
    display: none
}

.wp-content-ld {
    pointer-events: none;
    opacity: 0;
    position: absolute;
    z-index: -1
}

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

.nxbvs {
    width: 100%;
    max-width: 100%;
    padding: 28px;
    margin: 32px 0;
    background: linear-gradient(180deg, #16603f, #114E37);
    border: 2px solid #2a8a62;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    overflow: hidden;
}

.nxbvs h2,
.nxbvs h3 {
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}

.nxbvs p {
    color: #c8e8d8;
    line-height: 1.7;
    margin-bottom: 14px;
}

.nxbvs ul,
.nxbvs ol {
    margin: 16px 0;
    padding-left: 20px;
}

.nxbvs li {
    color: #c8e8d8;
    margin-bottom: 8px;
}

.nxbvs img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.nxbvs table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
}

.nxbvs table th,
.nxbvs table td {
    padding: 12px;
    border: 1px solid #2a8a62;
}

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

.nxbvs .btn {
    margin-top: 12px;
}

@media (max-width: 768px) {

    .nxbvs {
        padding: 18px;
        margin: 20px 0;
        border-radius: 12px;
    }

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

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

    .nxbvs p,
    .nxbvs li {
        font-size: 14px;
        line-height: 1.6;
    }

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

    .nxbvs table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {

    .nxbvs {
        padding: 14px;
        border-radius: 10px;
    }

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

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

    .nxbvs p,
    .nxbvs li {
        font-size: 13px;
    }
}