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

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

html {
    scroll-behavior: smooth;
    background: #0d0d0d
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d;
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden
}

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

a:hover {
    color: #ff8c33
}

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

ul {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif
}

input, textarea {
    font-family: 'Poppins', sans-serif
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all .25s;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    text-decoration: none
}

.btn--orange {
    background: #ff6b00;
    color: #fff
}

.btn--orange:hover {
    background: #e05e00;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 107, 0, .4)
}

.btn--green {
    background: #22c55e;
    color: #fff
}

.btn--green:hover {
    background: #16a34a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(34, 197, 94, .4)
}

.btn--outline {
    background: transparent;
    color: #ff6b00;
    border: 1.5px solid #ff6b00
}

.btn--outline:hover {
    background: #ff6b00;
    color: #fff
}

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

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

.box {
    background: #141414;
    border-radius: 12px;
    padding: 20px
}

.xp7k2 {
    display: none;
    height: 0;
    overflow: hidden;
    visibility: hidden
}

.q9m3f {
    width: 0;
    height: 0;
    position: absolute;
    top: -9999px
}

header {
    background: #141414;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px
}

.header-logo {
    flex-shrink: 0
}

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

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

.header-nav a {
    color: #c0c0c0;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 11px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all .25s;
    white-space: nowrap
}

.header-nav a:hover {
    color: #fff;
    background: #1e1e1e
}

.header-nav a svg {
    flex-shrink: 0
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #888;
    font-size: 12px;
    padding: 6px 10px;
    background: #1a1a1a;
    border-radius: 20px;
    white-space: nowrap
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .6;
        transform: scale(1.3)
    }
}

.lang-dropdown {
    position: relative
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #1e1e1e;
    border: 1px solid #333;
    color: #ccc;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all .25s
}

.lang-btn:hover {
    border-color: #ff6b00;
    color: #fff
}

.lang-btn svg {
    transition: transform .25s
}

.lang-dropdown.open .lang-btn svg {
    transform: rotate(180deg)
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 140px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all .2s;
    z-index: 200
}

.lang-dropdown.open .lang-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0)
}

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

.lang-menu a:hover {
    background: #252525;
    color: #fff
}

.lang-flag {
    font-size: 16px;
    line-height: 1
}

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

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

.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-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #141414;
    z-index: 999;
    overflow-y: auto;
    padding: 72px 20px 40px
}

.mobile-menu.active {
    display: block
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px
}

.mobile-menu-nav a {
    color: #c0c0c0;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .25s
}

.mobile-menu-nav a:hover {
    background: #1e1e1e;
    color: #fff
}

.mobile-menu-btns {
    display: flex;
    flex-direction: column;
    gap: 10px
}

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

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 13, 13, .92) 45%, rgba(13, 13, 13, .4) 100%)
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 0, .15);
    border: 1px solid rgba(255, 107, 0, .35);
    color: #ff8c33;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.hero-title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff
}

.hero-title span {
    color: #ff6b00
}

.hero-text {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.7
}

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

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 36px;
    flex-wrap: wrap
}

.hero-stat {
    text-align: center
}

.hero-stat-val {
    font-size: 22px;
    font-weight: 700;
    color: #ff6b00
}

.hero-stat-lbl {
    font-size: 12px;
    color: #888
}

.section {
    padding: 56px 0
}

.section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.section-subtitle {
    color: #888;
    font-size: 14px;
    margin-bottom: 32px
}

.toc-block {
    background: #141414;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
    border: 1px solid #1e1e1e
}

.toc-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.toc-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    background: #1a1a1a;
    border-radius: 8px;
    color: #c0c0c0;
    font-size: 13px;
    font-weight: 500;
    transition: all .25s;
    border: 1px solid transparent
}

.toc-item:hover {
    border-color: #ff6b00;
    color: #ff6b00;
    background: #1e1600
}

.toc-item svg {
    flex-shrink: 0;
    color: #ff6b00
}

.casino-rating {
    margin-bottom: 40px
}

.casino-card {
    background: #141414;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid #1e1e1e;
    transition: border-color .25s;
    position: relative;
    overflow: hidden
}

.casino-card:hover {
    border-color: #333
}

.casino-card--top3 {
    border-color: #ff6b00
}

.casino-card--top3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b00, #ffaa00)
}

.casino-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap
}

.casino-num {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    min-width: 36px;
    padding-top: 4px
}

.casino-card--top3 .casino-num {
    color: #ff6b00
}

.casino-logo-wrap {
    width: 80px;
    height: 60px;
    background: #1e1e1e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 8px
}

.casino-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

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

.casino-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px
}

.casino-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff
}

.casino-country {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #888
}

.casino-rating-val {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #ffd700
}

.casino-bonus {
    background: rgba(34, 197, 94, .12);
    border: 1px solid rgba(34, 197, 94, .25);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 12px;
    color: #22c55e;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px
}

.casino-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #1a1a1a;
    border-radius: 6px;
    padding: 5px 9px;
    font-size: 12px;
    color: #b0b0b0
}

.casino-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px
}

.casino-meta-item {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px
}

.casino-meta-item strong {
    color: #aaa
}

.casino-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 12px
}

.casino-badge-top {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff6b00;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.load-more-wrap {
    text-align: center;
    margin-top: 20px
}

.hidden-casino {
    display: none
}

.demo-block {
    background: #141414;
    border-radius: 14px;
    margin-bottom: 40px;
    border: 1px solid #1e1e1e
}

.demo-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-bottom: 1px solid #1e1e1e
}

.demo-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px
}

.demo-frame {
    position: relative;
    width: 100%;
    background: #000;
    aspect-ratio: 16/9;
    max-height: 560px
}

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

.demo-footer {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    background: #0f0f0f
}

.demo-info {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.demo-info-item {
    font-size: 12px;
    color: #666
}

.demo-info-item strong {
    color: #aaa;
    display: block
}

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

.strategy-card {
    background: #141414;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #1e1e1e;
    transition: all .3s
}

.strategy-card:hover {
    border-color: #ff6b00;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .4)
}

.strategy-img {
    height: 160px;
    background: #0a0a0a;
    overflow: hidden;
    position: relative
}

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

.strategy-card:hover .strategy-img img {
    transform: scale(1.05)
}

.strategy-body {
    padding: 18px
}

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

.strategy-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 14px
}

.reviews-block {
    margin-bottom: 40px
}

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

.review-card {
    background: #141414;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #1e1e1e
}

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

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1e1e1e;
    overflow: hidden;
    flex-shrink: 0
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.review-author {
    flex: 1
}

.review-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px
}

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

.review-stars svg {
    color: #ffd700
}

.review-date {
    font-size: 11px;
    color: #555;
    margin-top: 2px
}

.review-text {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7
}

.review-form {
    background: #141414;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #1e1e1e
}

.review-form-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #aaa;
    margin-bottom: 6px
}

.form-input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #e8e8e8;
    padding: 11px 14px;
    font-size: 14px;
    transition: border-color .25s;
    outline: none
}

.form-input:focus {
    border-color: #ff6b00
}

.form-input::placeholder {
    color: #555
}

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

.form-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px
}

.form-success {
    display: none;
    background: rgba(34, 197, 94, .12);
    border: 1px solid rgba(34, 197, 94, .3);
    border-radius: 8px;
    padding: 14px 18px;
    color: #22c55e;
    font-size: 14px;
    align-items: center;
    gap: 8px;
    margin-top: 14px
}

.form-success.show {
    display: flex
}

.faq-block {
    margin-bottom: 40px
}

.faq-item {
    background: #141414;
    border-radius: 10px;
    margin-bottom: 8px;
    border: 1px solid #1e1e1e;
    overflow: hidden
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    color: #e0e0e0;
    font-size: 15px;
    font-weight: 500;
    transition: color .25s;
    user-select: none;
    gap: 12px
}

.faq-question:hover {
    color: #fff
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    color: #ff6b00
}

.faq-item.open .faq-icon {
    background: #ff6b00;
    color: #fff;
    transform: rotate(180deg)
}

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

.faq-answer-inner {
    padding: 0 20px 16px;
    color: #999;
    font-size: 14px;
    line-height: 1.7
}

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

.author-block {
    background: #141414;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 40px;
    border: 1px solid #1e1e1e;
    display: flex;
    align-items: flex-start;
    gap: 20px
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #ff6b00
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

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

.author-title {
    font-size: 13px;
    color: #ff6b00;
    margin-bottom: 8px
}

.author-bio {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 10px
}

.author-link {
    font-size: 13px;
    color: #ff6b00;
    display: flex;
    align-items: center;
    gap: 5px
}

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

.game-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto 40px;
    background: #141414;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #1e1e1e
}

.game-info-table th, .game-info-table td {
    padding: 12px 18px;
    text-align: left;
    border-bottom: 1px solid #1e1e1e;
    font-size: 14px
}

.game-info-table th {
    background: #1a1a1a;
    color: #888;
    font-weight: 500;
    width: 40%
}

.game-info-table td {
    color: #e0e0e0
}

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

.content-review {
    margin-bottom: 40px
}

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

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

.content-review p {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 14px
}

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

.content-review li {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 6px
}

.content-review a {
    color: #ff6b00
}

.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #1e1e1e
}

.content-review table th {
    background: #1a1a1a;
    color: #aaa;
    padding: 10px 14px;
    text-align: left;
    font-size: 14px
}

.content-review table td {
    padding: 10px 14px;
    border-bottom: 1px solid #1e1e1e;
    color: #b0b0b0;
    font-size: 14px
}

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

.content-review strong {
    color: #e8e8e8
}

.pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px;
    margin-bottom: 28px
}

.pros-card, .cons-card {
    background: #141414;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #1e1e1e
}

.pros-card {
    border-top: 3px solid #22c55e
}

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

.pros-cons-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px
}

.pros-card .pros-cons-title {
    color: #22c55e
}

.cons-card .pros-cons-title {
    color: #ef4444
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 8px
}

.pros-cons-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0
}

.pros-card .pros-cons-list li::before {
    background: #22c55e
}

.cons-card .pros-cons-list li::before {
    background: #ef4444
}

footer {
    background: #141414;
    border-top: 1px solid #1e1e1e;
    padding: 40px 0 20px;
    margin-top: auto
}

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

.footer-brand {
}

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

.footer-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 16px
}

.footer-links-title {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.footer-links a {
    font-size: 13px;
    color: #666;
    transition: color .2s
}

.footer-links a:hover {
    color: #ff6b00
}

.footer-payments {
    margin-bottom: 20px
}

.footer-payments-label {
    font-size: 12px;
    color: #555;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .06em
}

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

.payment-logo {
    background: #1e1e1e;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #888
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px
}

.trust-badge {
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 11px;
    color: #666
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px
}

.footer-provider span {
    font-size: 12px;
    color: #555
}

.footer-provider img {
    height: 24px;
    opacity: .6
}

.footer-divider {
    border: none;
    border-top: 1px solid #1e1e1e;
    margin: 20px 0
}

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

.footer-copy {
    font-size: 12px;
    color: #555;
    line-height: 1.6
}

.footer-legal {
    font-size: 11px;
    color: #444;
    line-height: 1.5;
    max-width: 600px;
    text-align: right
}

.footer-18 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #1e1e1e;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    border: 1px solid #333;
    flex-shrink: 0
}


.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 0;
    font-size: 13px;
    color: #555;
    flex-wrap: wrap
}

.breadcrumb a {
    color: #666;
    transition: color .2s
}

.breadcrumb a:hover {
    color: #ff6b00
}

.breadcrumb-sep {
    color: #333
}

.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: #ff6b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
    z-index: 700;
    box-shadow: 0 4px 14px rgba(255, 107, 0, .4)
}

.scroll-top.show {
    opacity: 1;
    pointer-events: all
}

.scroll-top:hover {
    background: #e05e00;
    transform: translateY(-2px)
}

.technical-content {
    padding: 40px 0;
    max-width: 860px;
    margin: 0 auto
}

.technical-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 10px;
    padding-top: 10px
}

.technical-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #e0e0e0;
    margin: 20px 0 8px
}

.technical-content p {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 12px
}

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

.technical-content li {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 5px
}

.technical-content h1 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px
}

.page-hero {
    background: #141414;
    border-bottom: 1px solid #1e1e1e;
    padding: 28px 0
}

.page-hero h1 {
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 800;
    color: #fff
}

.page-hero p {
    font-size: 14px;
    color: #777;
    margin-top: 6px
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.anim-up {
    animation: fadeInUp .5s ease both
}

.anim-up:nth-child(2) {
    animation-delay: .1s
}

.anim-up:nth-child(3) {
    animation-delay: .2s
}

.wp-content-hidden {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none
}

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

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

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

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

    .burger {
        display: flex
    }

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

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

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

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

    .form-row {
        grid-template-columns:1fr
    }

    .hero-content {
        padding: 40px 0
    }

    .casino-card-inner {
        gap: 12px
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }

    .footer-legal {
        text-align: left
    }

    .demo-frame {
        aspect-ratio: 4/3
    }

    .author-block {
        flex-direction: column
    }

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column
    }

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

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

    .casino-logo-wrap {
        width: 60px;
        height: 48px
    }

    .header-actions .btn {
        padding: 8px 12px;
        font-size: 13px
    }
}

.pldmd {
    max-width: 920px;
    margin: 0 auto;
    padding-top: 48px;
    padding-bottom: 56px
}

.pldmd h1 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px
}

.pldmd h2 {
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.25;
    font-weight: 750;
    color: #fff;
    margin: 42px 0 16px;
    padding-top: 4px
}

.pldmd h3 {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.3;
    font-weight: 700;
    color: #f2f2f2;
    margin: 28px 0 12px
}

.pldmd p {
    font-size: 16px;
    line-height: 1.85;
    color: #b8b8b8;
    margin-bottom: 18px
}

.pldmd ul,
.pldmd ol {
    margin: 18px 0 24px;
    padding-left: 0;
    display: grid;
    gap: 10px
}

.pldmd li {
    position: relative;
    font-size: 16px;
    line-height: 1.75;
    color: #b8b8b8;
    padding-left: 28px
}

.pldmd ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: .75em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff6b00;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, .12)
}

.pldmd ol {
    counter-reset: pldmd-counter
}

.pldmd ol li {
    counter-increment: pldmd-counter
}

.pldmd ol li::before {
    content: counter(pldmd-counter);
    position: absolute;
    left: 0;
    top: .22em;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff6b00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center
}

.pldmd a {
    color: #ff6b00;
    overflow-wrap: anywhere;
    word-break: break-word
}

.pldmd a:hover {
    color: #ff8c33
}

.pldmd strong {
    color: #fff
}

.pldmd table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #141414;
    border: 1px solid #252525;
    border-radius: 12px;
    overflow: hidden
}

.pldmd th,
.pldmd td {
    padding: 14px 16px;
    border-bottom: 1px solid #252525;
    color: #b8b8b8;
    font-size: 15px;
    text-align: left;
    vertical-align: top
}

.pldmd th {
    color: #fff;
    background: #1a1a1a;
    font-weight: 700
}

.pldmd tr:last-child th,
.pldmd tr:last-child td {
    border-bottom: 0
}

@media (max-width: 768px) {
    .pldmd {
        max-width: 100%;
        padding: 32px 16px 40px
    }

    .pldmd h1 {
        font-size: 28px;
        margin-bottom: 20px
    }

    .pldmd h2 {
        font-size: 22px;
        margin: 34px 0 14px
    }

    .pldmd h3 {
        font-size: 18px;
        margin: 24px 0 10px
    }

    .pldmd p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 16px
    }

    .pldmd li {
        font-size: 15px;
        line-height: 1.65;
        padding-left: 24px
    }

    .pldmd ul,
    .pldmd ol {
        gap: 8px;
        margin: 16px 0 22px
    }

    .pldmd table {
        display: block;
        overflow-x: auto;
        white-space: nowrap
    }
}

@media (max-width: 480px) {
    .pldmd {
        padding: 26px 14px 34px
    }

    .pldmd h1 {
        font-size: 24px;
        line-height: 1.2
    }

    .pldmd h2 {
        font-size: 20px;
        line-height: 1.25
    }

    .pldmd h3 {
        font-size: 17px
    }

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

    .pldmd th,
    .pldmd td {
        padding: 10px 12px;
        font-size: 13px
    }
}

.pldmd {
    max-width: 920px;
    margin: 0 auto;
    padding: 48px 32px 56px;
    background: #141414;
    border: 1px solid #262626;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35)
}

@media (max-width: 768px) {
    .pldmd {
        padding: 32px 16px 40px;
        border-radius: 16px;
        margin: 0 12px
    }
}

@media (max-width: 480px) {
    .pldmd {
        padding: 26px 14px 34px;
        border-radius: 14px;
        margin: 0 8px
    }
}