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

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

:root {
    --c-bg: #114E37;
    --c-hdr: #1A654A;
    --c-btn-login: #21825F;
    --c-btn-reg: #FECE08;
    --c-text: #f0f0f0;
    --c-text-dark: #1a1a1a;
    --c-accent: #FECE08;
    --c-accent2: #21825F;
    --c-card: #1a5e43;
    --c-border: #2a7a58;
    --c-muted: #8fbfa8;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .35);
    --trans: .25s ease
}

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

body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

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

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

a:hover {
    color: #fff
}

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

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

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

/* ====== */
.site-header {
    background: var(--c-hdr);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .4);
    position: sticky;
    top: 0;
    z-index: 1000
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto
}

.hdr-logo a {
    display: flex;
    align-items: center;
    text-decoration: none
}

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

.hdr-logo .logo-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--c-accent);
    letter-spacing: 1px;
    text-decoration: none
}

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

.hdr-nav a {
    color: var(--c-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background var(--trans), color var(--trans)
}

.hdr-nav a:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--c-accent)
}

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

.hdr-online {
    font-size: 12px;
    color: var(--c-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px
}

.hdr-online::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    animation: pulse 2s infinite
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    padding: 9px 18px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--trans), box-shadow var(--trans), filter var(--trans);
    white-space: nowrap
}

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

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

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

.btn--login:hover {
    background: #27a075;
    color: #fff
}

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

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

.btn--bonus {
    background: linear-gradient(135deg, #fece08, #f5a623);
    color: var(--c-text-dark);
    font-size: 15px;
    padding: 10px 22px
}

.btn--bonus:hover {
    filter: brightness(1.08);
    color: var(--c-text-dark)
}

.btn--ghost {
    background: transparent;
    border: 2px solid var(--c-btn-login);
    color: var(--c-btn-login)
}

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

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

.btn--sm {
    font-size: 13px;
    padding: 6px 14px
}

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

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

.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)
}

/* ===HERO=== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: var(--c-bg)
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0
}

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

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 580px;
    padding: 60px 0
}

.hero__badge {
    display: inline-block;
    background: rgba(254, 206, 8, .15);
    border: 1px solid var(--c-accent);
    color: var(--c-accent);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: .5px
}

.hero__title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff
}

.hero__title span {
    color: var(--c-accent)
}

.hero__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 28px;
    line-height: 1.65
}

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

.slider-hero {
    position: relative;
    overflow: hidden;
    min-height: 480px
}

.slider-hero .slides {
    display: flex;
    transition: transform .5s ease
}

.slider-hero .slide {
    min-width: 100%;
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center
}

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

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

.slider-hero .slide__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 16px;
    width: 100%
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    background: var(--c-hdr)
}

.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    border: none;
    cursor: pointer;
    transition: background var(--trans)
}

.slider-dots button.active {
    background: var(--c-accent);
    width: 28px;
    border-radius: 5px
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, .4);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--trans)
}

.slider-prev {
    left: 12px
}

.slider-next {
    right: 12px
}

.slider-prev:hover, .slider-next:hover {
    background: var(--c-accent);
    color: var(--c-text-dark)
}

/* ===SECTIONS=== */
.section {
    padding: 48px 0
}

.section--alt {
    background: rgba(0, 0, 0, .15)
}

.section__title {
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff
}

.section__subtitle {
    color: var(--c-muted);
    font-size: 15px;
    margin-bottom: 28px
}

.section__hdr {
    margin-bottom: 28px
}

/* ===CONTENT BLOCK=== */
.content-block {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 28px 24px;
    margin-bottom: 20px;
    border: 1px solid var(--c-border);
    transition: box-shadow var(--trans)
}

.content-block:hover {
    box-shadow: var(--shadow)
}

/* ===TABLE OF CONTENTS=== */
.toc-block {
    background: var(--c-card);
    border-left: 4px solid var(--c-accent);
    border-radius: var(--radius);
    padding: 20px 24px
}

.toc-block h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-accent);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.toc-list {
    list-style: none;
    columns: 2;
    gap: 20px
}

.toc-list li {
    break-inside: avoid;
    margin-bottom: 6px
}

.toc-list a {
    color: var(--c-text);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 0;
    transition: color var(--trans)
}

.toc-list a::before {
    content: '#';
    color: var(--c-accent);
    font-weight: 700
}

.toc-list a:hover {
    color: var(--c-accent)
}

/* ===TABLES=== */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius)
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-card);
    font-size: 14px
}

table th {
    background: var(--c-hdr);
    color: var(--c-text);
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 2px solid var(--c-accent)
}

table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text);
    text-align: left;
    vertical-align: middle
}

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

table tr:nth-child(even) td {
    background: rgba(0, 0, 0, .1)
}

table tr:hover td {
    background: rgba(254, 206, 8, .05)
}

table td:first-child {
    font-weight: 600;
    color: var(--c-muted);
    white-space: nowrap
}

table td:last-child {
    color: #fff
}

.table-centered {
    margin: 0 auto
}

/* ===PROS/CONS=== */
.pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px
}

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

.pros-card {
    border-top: 3px solid #4caf50
}

.cons-card {
    border-top: 3px solid #f44336
}

.pros-card h3 {
    color: #4caf50;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px
}

.cons-card h3 {
    color: #f44336;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px
}

.pros-card ul, .cons-card ul {
    list-style: none
}

.pros-card li, .cons-card li {
    padding: 7px 0 7px 24px;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px;
    position: relative;
    line-height: 1.5
}

.pros-card li:last-child, .cons-card li:last-child {
    border-bottom: none
}

.pros-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700
}

.cons-card li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: 700
}

/* ===MIRRORS=== */
.mirror-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-muted);
    margin-bottom: 14px
}

.mirror-time strong {
    color: var(--c-accent)
}

.mirror-badge {
    display: inline-block;
    background: #4caf50;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    vertical-align: middle;
    margin-left: 6px
}

/* ===GAMES GRID=== */
.games-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px
}

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

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

.game-card__img {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative
}

.game-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease
}

.game-card:hover .game-card__img img {
    transform: scale(1.06)
}

.game-card__info {
    padding: 12px
}

.game-card__name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.game-card__provider {
    font-size: 12px;
    color: var(--c-muted)
}

.game-card__btn {
    width: 100%;
    margin-top: 10px
}

/* ===SLOT MACHINE=== */
.slot-machine {
    background: linear-gradient(135deg, #0d3d2a, #1a5e43);
    border: 3px solid var(--c-accent);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto
}

.slot-machine__title {
    font-size: 20px;
    font-weight: 900;
    color: var(--c-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px
}

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

.slot-reel {
    width: 80px;
    height: 90px;
    background: #0a2d1e;
    border: 2px solid var(--c-border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    transition: all .1s;
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, .5)
}

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

@keyframes reelSpin {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-8px)
    }
    100% {
        transform: translateY(0)
    }
}

.slot-win {
    background: rgba(254, 206, 8, .12);
    border: 1px solid var(--c-accent);
    border-radius: 10px;
    padding: 16px 20px;
    margin: 16px 0;
    display: none;
    animation: fadeIn .4s ease
}

.slot-win.show {
    display: block
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(.95)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.slot-win__text {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-accent);
    margin-bottom: 8px
}

.slot-win__sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 12px
}

.spin-btn {
    background: linear-gradient(135deg, var(--c-accent), #f5a623);
    color: var(--c-text-dark);
    font-size: 18px;
    font-weight: 900;
    padding: 14px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: transform var(--trans), box-shadow var(--trans);
    text-transform: uppercase
}

.spin-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(254, 206, 8, .4)
}

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

/* ===REVIEWS=== */
.reviews-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px
}

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

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

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-hdr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--c-accent);
    flex-shrink: 0
}

.review-card__name {
    font-weight: 600;
    font-size: 15px
}

.review-card__date {
    font-size: 12px;
    color: var(--c-muted)
}

.review-stars {
    color: #FECE08;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 8px
}

.review-card__text {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .85)
}

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

.review-form h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--c-accent)
}

.form-group {
    margin-bottom: 16px
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .4px
}

.form-group input, .form-group textarea {
    width: 100%;
    background: #0d3d2a;
    border: 1px solid var(--c-border);
    color: var(--c-text);
    padding: 11px 14px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color var(--trans)
}

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

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

.form-success {
    background: rgba(76, 175, 80, .12);
    border: 1px solid #4caf50;
    color: #4caf50;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    display: none;
    margin-top: 12px
}

.form-success.show {
    display: block
}

/* ===BONUS CARDS=== */
.bonus-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px
}

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

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.bonus-card__icon {
    font-size: 38px;
    margin-bottom: 12px
}

.bonus-card__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff
}

.bonus-card__amount {
    font-size: 24px;
    font-weight: 900;
    color: var(--c-accent);
    margin-bottom: 8px
}

.bonus-card__desc {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.55;
    margin-bottom: 14px
}

.bonus-card--featured {
    border-color: var(--c-accent);
    border-width: 2px;
    background: linear-gradient(135deg, rgba(254, 206, 8, .08), var(--c-card))
}

/* ===PROMO CODE=== */
.promo-block {
    background: linear-gradient(135deg, rgba(254, 206, 8, .12), rgba(33, 130, 95, .15));
    border: 2px solid var(--c-accent);
    border-radius: 16px;
    padding: 28px;
    text-align: center
}

.promo-block__label {
    font-size: 13px;
    color: var(--c-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .8px
}

.promo-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
    flex-wrap: wrap
}

.promo-code {
    font-size: 28px;
    font-weight: 900;
    color: var(--c-accent);
    letter-spacing: 4px;
    font-family: monospace;
    background: #0a2d1e;
    border: 2px dashed var(--c-accent);
    padding: 10px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: background var(--trans)
}

.promo-code:hover {
    background: #0d3d2a
}

.copy-btn {
    background: var(--c-accent);
    color: var(--c-text-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: transform var(--trans)
}

.copy-btn:hover {
    transform: scale(1.04)
}

.copy-msg {
    font-size: 13px;
    color: #4caf50;
    margin-top: 6px;
    min-height: 18px;
    transition: opacity var(--trans)
}

/* ===BONUS REGISTER=== */
.bonus-reg {
    background: linear-gradient(135deg, var(--c-hdr), #0d3d2a);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.bonus-reg__icon {
    font-size: 48px;
    flex-shrink: 0
}

.bonus-reg__content {
    flex: 1;
    min-width: 200px
}

.bonus-reg__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-accent);
    margin-bottom: 4px
}

.bonus-reg__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .8)
}

.bonus-reg__action {
    flex-shrink: 0
}

/* ===SECURITY BLOCK=== */
.security-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px
}

.security-item {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 18px;
    border: 1px solid var(--c-border);
    text-align: center
}

.security-item__icon {
    font-size: 32px;
    margin-bottom: 10px
}

.security-item__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.security-item__desc {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.5
}

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

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

.author-block__content {
    flex: 1
}

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

.author-block__title {
    font-size: 13px;
    color: var(--c-accent);
    font-weight: 600;
    margin-bottom: 8px
}

.author-block__bio {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
    margin-bottom: 10px
}

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

.author-socials a {
    color: var(--c-muted);
    font-size: 13px;
    text-decoration: none;
    transition: color var(--trans)
}

.author-socials a:hover {
    color: var(--c-accent)
}

/* ===FAQ=== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

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

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

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

.faq-q svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    transition: transform var(--trans);
    fill: none;
    stroke: var(--c-accent);
    stroke-width: 2;
    stroke-linecap: round
}

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

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

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

.faq-a__inner {
    padding: 0 20px 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.65
}

/* ===SLOTS PAGE=== */
.slot-cats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.slot-cat-btn {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: background var(--trans), border-color var(--trans)
}

.slot-cat-btn:hover, .slot-cat-btn.active {
    background: var(--c-accent);
    color: var(--c-text-dark);
    border-color: var(--c-accent)
}

.demo-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.demo-popup.open {
    opacity: 1;
    pointer-events: all
}

.demo-popup__inner {
    background: var(--c-hdr);
    border-radius: 14px;
    padding: 20px;
    max-width: 900px;
    width: 100%;
    position: relative
}

.demo-popup__close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: var(--c-text);
    font-size: 24px;
    cursor: pointer;
    line-height: 1
}

.demo-popup__close:hover {
    color: var(--c-accent)
}

.demo-game-frame {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 8px;
    background: #000
}

.bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1a5e43, #114E37);
    border-top: 2px solid var(--c-accent);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .4)
}

.bottom-widget__text {
    font-size: 14px;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
    flex: 1;
    min-width: 160px
}

.bottom-widget__bonus {
    font-size: 16px;
    font-weight: 900;
    color: var(--c-accent)
}

.bottom-widget__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0
}

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

.site-footer {
    background: var(--c-hdr);
    border-top: 2px solid var(--c-border);
    margin-top: auto
}

.footer-top {
    padding: 40px 0 24px;
    display: grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap: 28px
}

.footer-brand__logo {
    height: 36px;
    width: auto;
    margin-bottom: 12px
}

.footer-brand__desc {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.6;
    max-width: 260px
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-accent);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.footer-col a {
    display: block;
    color: var(--c-muted);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 7px;
    transition: color var(--trans)
}

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

.footer-payments {
    padding: 16px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border)
}

.footer-payments h4 {
    font-size: 13px;
    color: var(--c-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.payment-logos, .provider-logos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center
}

.payment-logo, .provider-logo {
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--c-muted);
    white-space: nowrap
}

.footer-bottom {
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap
}

.footer-legal {
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
    max-width: 700px;
    line-height: 1.5
}

.footer-copyright {
    font-size: 12px;
    color: var(--c-muted);
    white-space: nowrap
}

.cms-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
    border-left: 4px solid var(--c-accent);
    padding-left: 12px
}

.cms-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    margin: 22px 0 10px
}

.cms-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--c-accent);
    margin: 16px 0 8px
}

.cms-content p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 14px
}

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

.cms-content li {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 4px
}

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

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

.cms-content table {
    margin: 16px 0 20px
}

.cms-content table th, .cms-content table td {
    font-size: 14px
}

.cms-content blockquote {
    border-left: 4px solid var(--c-accent);
    padding: 12px 16px;
    background: rgba(254, 206, 8, .06);
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    font-style: italic;
    color: rgba(255, 255, 255, .8)
}

/* ====== */
.technical-content {
    max-width: 800px;
    margin: 0 auto
}

.technical-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--c-border);
    padding-bottom: 14px
}

.technical-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 22px 0 10px;
    color: rgba(255, 255, 255, .9)
}

.technical-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 16px 0 8px;
    color: rgba(255, 255, 255, .85)
}

.technical-content p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 12px
}

.technical-content ul, .technical-content ol {
    padding-left: 20px;
    margin-bottom: 12px
}

.technical-content li {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 4px
}

/* ===MOBILE SLIDER=== */
.mobile-slider {
    position: relative;
    overflow: hidden
}

.mobile-slider__track {
    display: flex;
    gap: 16px;
    transition: transform .35s ease
}

.mobile-slider__nav {
    display: none;
    justify-content: center;
    gap: 8px;
    padding: 14px 0
}

.mobile-slider__nav button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    border: none;
    cursor: pointer;
    transition: background var(--trans)
}

.mobile-slider__nav button.active {
    background: var(--c-accent)
}

/* ===BREADCRUMB=== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--c-muted);
    padding: 12px 0
}

.breadcrumb a {
    color: var(--c-muted);
    text-decoration: none
}

.breadcrumb a:hover {
    color: var(--c-accent)
}

.breadcrumb span {
    color: rgba(255, 255, 255, .5)
}

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

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

.app-spec-col h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px
}

.app-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: 13px
}

.app-spec-row:last-child {
    border-bottom: none
}

.app-spec-row span:first-child {
    color: var(--c-muted)
}

.app-spec-row span:last-child {
    font-weight: 600;
    color: #fff
}

/* ====== */
.accent-section {
    background: linear-gradient(135deg, rgba(254, 206, 8, .1), rgba(33, 130, 95, .12));
    border: 1px solid rgba(254, 206, 8, .3);
    border-radius: var(--radius);
    padding: 24px
}

.online-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(76, 175, 80, .12);
    border: 1px solid rgba(76, 175, 80, .3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    color: #4caf50;
    font-weight: 600
}

.online-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4caf50;
    animation: pulse 2s infinite
}

.wp-block-group__inner-container {
    display: block
}

.wp-block-separator {
    border: none;
    border-top: 2px solid transparent
}

.entry-content .wp-block-image {
    display: flex
}

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

.widget_text .textwidget p {
    margin: 0 0 1.5em
}

.wp-block-latest-posts__list {
    list-style: none
}

.wpcf7-form-control-wrap {
    position: relative
}

.elementor-element {
    position: relative
}

.elementor-widget-wrap {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start
}

.elementor-section-wrap {
    display: block
}

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

    .footer-brand {
        grid-column: 1/-1
    }

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

@media (max-width: 768px) {
    .hdr-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--c-hdr);
        flex-direction: column;
        align-items: flex-start;
        padding: 70px 20px 20px;
        gap: 0;
        z-index: 999;
        overflow-y: auto
    }

    .hdr-nav.open {
        display: flex
    }

    .hdr-nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--c-border);
        width: 100%;
        font-size: 16px
    }

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

    .hdr-inner {
        flex-wrap: nowrap
    }

    .hdr-logo img {
        height: 36px
    }

    .hdr-online {
        display: none
    }

    .hero {
        min-height: 380px
    }

    .hero__content {
        padding: 40px 0
    }

    .pros-cons {
        grid-template-columns:1fr
    }

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

    .toc-list {
        columns: 1
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .bottom-widget {
        padding: 8px 12px
    }

    .mobile-slider__nav {
        display: flex
    }

    .review-form {
        max-width: 100%
    }

    .author-block {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .author-socials {
        justify-content: center
    }

    .slider-prev, .slider-next {
        width: 36px;
        height: 36px;
        font-size: 16px
    }
}

@media (max-width: 480px) {
    .section {
        padding: 32px 0
    }

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

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

    .hdr-actions .btn--login {
        display: none
    }

    .slot-reel {
        width: 66px;
        height: 78px;
        font-size: 36px
    }

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

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

.game-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1b664b 0%, #114e37 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    transition: .3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
    border-color: var(--clr-accent);
}

.game-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.game-card__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(17, 78, 55, .85) 0%,
            rgba(17, 78, 55, 0) 45%
    );
}

.game-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.game-card:hover .game-card__img img {
    transform: scale(1.08);
}

.game-card__info {
    padding: 20px;
}

.game-card__name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.game-card__provider {
    font-size: .85rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 18px;
}

.game-card__btn {
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    font-size: .9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.game-card::before {
    content: "TOP";
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: var(--clr-accent);
    color: #111;
    font-size: .7rem;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 999px;
}

.section__hdr {
    text-align: center;
    margin-bottom: 40px;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.section__subtitle {
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
}

@media (max-width: 991px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 576px) {
    .games-grid {
        display: flex;
        gap: 14px;
    }

    .game-card {
        min-width: 280px;
        flex: 0 0 280px;
    }

    .mobile-slider__nav {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .mobile-slider__nav button {
        width: 10px;
        height: 10px;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, .25);
    }

    .mobile-slider__nav button.active {
        background: var(--clr-accent);
    }
}

.slot-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.slot-cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(135deg, #1b664b 0%, #114e37 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    text-decoration: none;
    overflow: hidden;
    transition: .35s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.slot-cat-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-accent);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .45);
}

.slot-cat-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    top: -70px;
    right: -70px;
    border-radius: 50%;
    background: rgba(254, 206, 8, .08);
    transition: .35s ease;
}

.slot-cat-card:hover::before {
    transform: scale(1.3);
}

.slot-cat-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 206, 8, .12);
    color: var(--clr-accent);
    margin-bottom: 20px;
    transition: .35s ease;
}

.slot-cat-card:hover .slot-cat-card__icon {
    background: var(--clr-accent);
    color: #111;
    transform: rotate(8deg) scale(1.08);
}

.slot-cat-card__icon svg {
    width: 34px;
    height: 34px;
}

.slot-cat-card__name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.slot-cat-card__count {
    font-size: .92rem;
    color: rgba(255, 255, 255, .65);
}

.slot-cat-card::after {
    content: "→";
    position: absolute;
    right: 24px;
    bottom: 22px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: .3s ease;
}

.slot-cat-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .slot-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .slot-categories {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .slot-cat-card {
        padding: 22px;
    }

    .slot-cat-card__icon {
        width: 60px;
        height: 60px;
    }

    .slot-cat-card__name {
        font-size: 1rem;
    }
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.info-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1b664b 0%, #114e37 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    overflow: hidden;
    transition: .35s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--clr-accent);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .45);
}

.info-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -90px;
    right: -90px;
    border-radius: 50%;
    background: rgba(254, 206, 8, .08);
    transition: .35s ease;
}

.info-card:hover::before {
    transform: scale(1.25);
}

.info-card__icon {
    width: 78px;
    height: 78px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 206, 8, .12);
    color: var(--clr-accent);
    margin-bottom: 22px;
    transition: .35s ease;
}

.info-card:hover .info-card__icon {
    background: var(--clr-accent);
    color: #111;
    transform: scale(1.08) rotate(5deg);
}

.info-card__icon svg {
    width: 34px;
    height: 34px;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.info-card p {
    color: rgba(255, 255, 255, .72);
    font-size: .95rem;
    line-height: 1.7;
    margin: 0;
}

.info-card::after {
    content: "";
    position: absolute;
    left: 28px;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--clr-accent);
    transition: .35s ease;
}

.info-card:hover::after {
    width: calc(100% - 56px);
}

@media (max-width: 992px) {
    .cards-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .info-card {
        padding: 24px;
    }

    .info-card__icon {
        width: 64px;
        height: 64px;
    }

    .info-card h3 {
        font-size: 1.05rem;
    }

    .info-card p {
        font-size: .9rem;
    }
}

@media (max-width: 576px) {
    #games {
        overflow: hidden;
    }

    #games .container {
        padding-left: 14px;
        padding-right: 0;
    }

    #games .section__hdr {
        padding-right: 14px;
        margin-bottom: 18px;
        text-align: left;
    }

    #games .section__title {
        font-size: 1.45rem;
        line-height: 1.2;
    }

    #games .section__subtitle {
        font-size: .9rem;
        margin-top: 6px;
    }

    #games [data-mslider] {
        overflow: hidden;
        width: 100%;
    }

    #games .games-grid {
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 14px;
        padding: 2px 14px 10px 0;
        -webkit-overflow-scrolling: touch;
    }

    #games .games-grid::-webkit-scrollbar {
        display: none;
    }

    #games .game-card {
        flex: 0 0 155px;
        width: 155px;
        min-width: 155px;
        border-radius: 14px;
        scroll-snap-align: start;
    }

    #games .game-card__img {
        aspect-ratio: 1 / 1;
        height: auto;
    }

    #games .game-card__info {
        padding: 10px;
    }

    #games .game-card__name {
        font-size: .82rem;
        line-height: 1.25;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 4px;
    }

    #games .game-card__provider {
        font-size: .72rem;
        margin-bottom: 9px;
    }

    #games .game-card__btn {
        min-height: 34px;
        width: 100%;
        padding: 7px 10px;
        border-radius: 9px;
        font-size: .72rem;
    }

    #games .game-card::before {
        top: 8px;
        right: 8px;
        font-size: .55rem;
        padding: 3px 7px;
    }

    #games .mobile-slider__nav {
        display: flex;
        justify-content: center;
        gap: 7px;
        padding: 10px 14px 0 0;
    }

    #games .mobile-slider__nav button {
        width: 7px;
        height: 7px;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, .3);
    }

    #games .mobile-slider__nav button.active {
        width: 20px;
        border-radius: 999px;
        background: var(--clr-accent);
    }
}

@media (max-width: 576px) {
    #get-bonus {
        padding: 24px 0;
    }

    #get-bonus .bonus-reg {
        padding: 20px 16px;
        border-radius: 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    #get-bonus .bonus-reg__icon {
        font-size: 2.8rem;
        line-height: 1;
        margin: 0;
    }

    #get-bonus .bonus-reg__content {
        width: 100%;
        min-width: 0;
    }

    #get-bonus .bonus-reg__title {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    #get-bonus .bonus-reg__desc {
        font-size: .9rem;
        line-height: 1.6;
        margin: 0;
    }

    #get-bonus .bonus-reg__action {
        width: 100%;
    }

    #get-bonus .btn--bonus {
        width: 100%;
        min-height: 48px;
        font-size: .95rem;
        padding: 12px 20px;
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .bonus-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 2px 14px 12px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .bonus-grid::-webkit-scrollbar {
        display: none;
    }

    .bonus-card {
        flex: 0 0 280px;
        min-width: 280px;
        padding: 20px 16px;
        border-radius: 16px;
        scroll-snap-align: start;
        text-align: center;
    }

    .bonus-card__icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .bonus-card__title {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .bonus-card__amount {
        font-size: 1.5rem;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .bonus-card__desc {
        font-size: .85rem;
        line-height: 1.6;
        margin-bottom: 16px;
        min-height: 82px;
    }

    .bonus-card .btn {
        width: 100%;
        min-height: 42px;
        font-size: .85rem;
        border-radius: 10px;
    }

    .bonus-card--featured {
        border-width: 2px;
        box-shadow: 0 12px 30px rgba(254, 206, 8, .15);
    }

    .mobile-slider__nav {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
    }

    .mobile-slider__nav button {
        width: 8px;
        height: 8px;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, .25);
        transition: .3s;
    }

    .mobile-slider__nav button.active {
        width: 22px;
        border-radius: 999px;
        background: var(--clr-accent);
    }
}

.bcvsf {
    background: rgba(26, 94, 67, .72);
    border: 1px solid rgba(254, 206, 8, .28);
    border-radius: 18px;
    padding: 34px 30px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .28);
    overflow: hidden;
}

.bcvsf h1 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    line-height: 1.18;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.bcvsf h2 {
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    line-height: 1.25;
    font-weight: 850;
    color: #fff;
    margin: 34px 0 14px;
    padding-left: 14px;
    border-left: 4px solid var(--clr-accent);
}

.bcvsf p {
    color: rgba(255, 255, 255, .78);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.bcvsf p:last-child {
    margin-bottom: 0;
}

.bcvsf a {
    color: var(--clr-accent);
    font-weight: 700;
}

@media (max-width: 768px) {
    .bcvsf {
        padding: 24px 18px;
        border-radius: 16px;
        border: 1px solid rgba(254, 206, 8, .35);
        box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
    }

    .bcvsf h1 {
        font-size: 1.65rem;
        line-height: 1.22;
        margin-bottom: 18px;
    }

    .bcvsf h2 {
        font-size: 1.25rem;
        line-height: 1.3;
        margin: 28px 0 12px;
        padding-left: 12px;
        border-left-width: 3px;
    }

    .bcvsf p {
        font-size: .94rem;
        line-height: 1.72;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .bcvsf {
        margin: 0 12px;
        padding: 20px 16px;
        border-radius: 14px;
    }

    .bcvsf h1 {
        font-size: 1.42rem;
    }

    .bcvsf h2 {
        font-size: 1.12rem;
    }

    .bcvsf p {
        font-size: .9rem;
    }
}

.bcvsf table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(254, 206, 8, .18);
    background: rgba(255, 255, 255, .02);
}

.bcvsf th {
    background: linear-gradient(
            135deg,
            rgba(254, 206, 8, .15),
            rgba(254, 206, 8, .08)
    );
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid rgba(254, 206, 8, .15);
}

.bcvsf td {
    padding: 15px 16px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.bcvsf tr:last-child td {
    border-bottom: 0;
}

.bcvsf tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

.bcvsf tr:hover td {
    background: rgba(254, 206, 8, .05);
}

.bcvsf td:first-child {
    font-weight: 700;
    color: #fff;
    width: 180px;
}

@media (max-width: 768px) {
    .bcvsf table,
    .bcvsf thead,
    .bcvsf tbody,
    .bcvsf th,
    .bcvsf td,
    .bcvsf tr {
        display: block;
    }

    .bcvsf table {
        border: 0;
        background: transparent;
    }

    .bcvsf thead {
        display: none;
    }

    .bcvsf tr {
        margin-bottom: 14px;
        border-radius: 14px;
        overflow: hidden;
        background: rgba(255, 255, 255, .03);
        border: 1px solid rgba(254, 206, 8, .15);
    }

    .bcvsf td {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        text-align: right;
    }

    .bcvsf td:last-child {
        border-bottom: 0;
    }

    .bcvsf td::before {
        content: attr(data-label);
        text-align: left;
        color: var(--clr-accent);
        font-weight: 700;
        flex-shrink: 0;
        max-width: 120px;
    }
}