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

:root {
    --c-bg: #0a0a0a;
    --c-header: #111111;
    --c-gold: #ffd700;
    --c-red: #ff1744;
    --c-text: #e8e8e8;
    --c-text-muted: #a0a0a0;
    --c-border: #2a2a2a;
    --c-card: #161616;
    --c-card2: #1a1a1a;
    --radius: 10px;
    --radius-sm: 6px;
    --transition: 0.25s ease
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

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

a:hover {
    color: #fff
}

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

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

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

.box {
    width: 100%
}

main {
    flex: 1
}

/* ---- HEADER ---- */
.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6)
}

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

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-muted);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap
}

.header-nav a:hover, .header-nav a.active {
    color: var(--c-gold);
    background: rgba(255, 215, 0, 0.08)
}

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

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

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

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

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4)
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(0, 230, 118, 0)
    }
}

.lang-select {
    position: relative
}

.lang-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    color: var(--c-text);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
    font-family: 'Montserrat', sans-serif
}

.lang-btn:hover {
    border-color: var(--c-gold);
    color: var(--c-gold)
}

.lang-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    min-width: 130px;
    z-index: 200;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all var(--transition)
}

.lang-select.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 13px;
    cursor: pointer;
    transition: background var(--transition)
}

.lang-option:hover {
    background: rgba(255, 215, 0, 0.08);
    color: var(--c-gold)
}

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

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

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.97);
    z-index: 999;
    overflow-y: auto;
    padding: 20px 16px;
    flex-direction: column;
    gap: 8px
}

.mobile-menu.active {
    display: flex
}

.mobile-menu .header-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%
}

.mobile-menu .header-nav a {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border)
}

.mobile-menu .header-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin-top: 12px
}

.mobile-menu .header-actions .btn {
    width: 100%;
    justify-content: center
}

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

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.3px
}

.btn--gold {
    background: var(--c-gold);
    color: #111;
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.3)
}

.btn--gold:hover {
    background: #ffe033;
    color: #111;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-1px)
}

.btn--red {
    background: var(--c-red);
    color: #fff;
    box-shadow: 0 2px 12px rgba(255, 23, 68, 0.3)
}

.btn--red:hover {
    background: #ff4569;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 23, 68, 0.5);
    transform: translateY(-1px)
}

.btn--outline {
    background: transparent;
    color: var(--c-gold);
    border: 1.5px solid var(--c-gold)
}

.btn--outline:hover {
    background: var(--c-gold);
    color: #111
}

.btn--lg {
    padding: 14px 32px;
    font-size: 15px;
    border-radius: var(--radius)
}

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

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.65) 60%, rgba(10, 10, 10, 0.3) 100%)
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px
}

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

.hero h1 span {
    color: var(--c-gold)
}

.hero-desc {
    font-size: 16px;
    color: var(--c-text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 480px
}

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

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

.hero-stat {
    text-align: center
}

.hero-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--c-gold)
}

.hero-stat span {
    font-size: 12px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px
}

/* ---- SECTION ---- */
.section {
    padding: 56px 0
}

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

.section-title span {
    color: var(--c-gold)
}

.section-subtitle {
    color: var(--c-text-muted);
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 1.6
}

.section-header {
    margin-bottom: 36px
}

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

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px
}

.info-table th {
    background: var(--c-header);
    color: var(--c-gold);
    font-weight: 700;
    font-size: 13px;
    padding: 12px 16px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--c-border)
}

.info-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px;
    vertical-align: middle
}

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

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

.info-table tr:hover td {
    background: rgba(255, 215, 0, 0.04)
}

.info-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 600;
    width: 42%
}

.info-table td:last-child {
    color: var(--c-text);
    font-weight: 500
}

.badge-val {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--c-gold);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 700
}

.badge-rtp {
    background: rgba(0, 230, 118, 0.1);
    color: #00e676
}

.badge-vol {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800
}

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

.jackpot-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition)
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4)
}

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

.jackpot-card.mini::before {
    background: var(--c-gold)
}

.jackpot-card.major::before {
    background: linear-gradient(90deg, #ff9800, var(--c-red))
}

.jackpot-card.grand::before {
    background: linear-gradient(90deg, var(--c-red), #cc00ff)
}

.jackpot-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px
}

.jackpot-card.mini .jackpot-label {
    color: var(--c-gold)
}

.jackpot-card.major .jackpot-label {
    color: #ff9800
}

.jackpot-card.grand .jackpot-label {
    color: var(--c-red)
}

.jackpot-icon {
    font-size: 28px;
    margin-bottom: 10px
}

.jackpot-amount {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums
}

.jackpot-card.mini .jackpot-amount {
    color: var(--c-gold)
}

.jackpot-card.major .jackpot-amount {
    color: #ff9800
}

.jackpot-card.grand .jackpot-amount {
    color: var(--c-red)
}

.jackpot-players {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.jackpot-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    padding: 8px 12px
}

.jackpot-player-nick {
    color: var(--c-text-muted);
    font-weight: 600
}

.jackpot-player-win {
    font-weight: 700
}

.jackpot-card.mini .jackpot-player-win {
    color: var(--c-gold)
}

.jackpot-card.major .jackpot-player-win {
    color: #ff9800
}

.jackpot-card.grand .jackpot-player-win {
    color: var(--c-red)
}

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

.screenshot-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--c-border);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    aspect-ratio: 16/10
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease
}

.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15)
}

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

.screenshots-slider {
    display: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius)
}

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

.slider-slide {
    flex: 0 0 100%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--c-border)
}

.slider-slide img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover
}

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

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    cursor: pointer;
    transition: background var(--transition)
}

.slider-dot.active {
    background: var(--c-gold)
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 2
}

.slider-nav:hover {
    background: var(--c-gold);
    color: #111;
    border-color: var(--c-gold)
}

.slider-prev {
    left: 10px
}

.slider-next {
    right: 10px
}

/* ---- DEMO ---- */
.demo-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
}

.demo-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    gap: 12px;
    flex-wrap: wrap
}

.demo-bar-title {
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px
}

.demo-bar-title svg {
    color: var(--c-gold)
}

.demo-frame-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden
}

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

.demo-notice {
    padding: 10px 20px;
    font-size: 12px;
    color: var(--c-text-muted);
    text-align: center;
    border-top: 1px solid var(--c-border);
    background: rgba(0, 0, 0, 0.3)
}

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

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

.review-card:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.1)
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-gold), #ff6d00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: #111;
    flex-shrink: 0
}

.review-meta {
    flex: 1
}

.review-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 3px
}

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

.review-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--c-gold)
}

.review-date {
    font-size: 11px;
    color: var(--c-text-muted);
    margin-top: 2px
}

.review-text {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.65
}

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

.review-form-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px
}

.review-form-subtitle {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 24px
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-muted)
}

.form-input, .form-textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 14px;
    color: var(--c-text);
    font-family: 'Montserrat', sans-serif;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--c-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1)
}

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

.form-success {
    display: none;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: #00e676;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    margin-top: 4px
}

.form-success.show {
    display: block
}

/* ---- CONTENT BLOCK ---- */
.content-block .text h2 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--c-text);
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--c-border)
}

.content-block .text h3 {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    color: var(--c-gold);
    margin: 22px 0 10px
}

.content-block .text h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 18px 0 8px
}

.content-block .text p {
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.72
}

.content-block .text ul, .content-block .text ol {
    margin: 10px 0 14px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.content-block .text li {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.6
}

.content-block .text a {
    color: var(--c-gold);
    text-decoration: underline
}

.content-block .text table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden
}

.content-block .text th {
    background: var(--c-header);
    color: var(--c-gold);
    padding: 10px 14px;
    text-align: left;
    font-size: 13px
}

.content-block .text td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--c-border);
    font-size: 14px
}

.content-block .text blockquote {
    border-left: 3px solid var(--c-gold);
    padding: 12px 18px;
    margin: 16px 0;
    background: rgba(255, 215, 0, 0.04);
    color: var(--c-text-muted);
    font-style: italic
}

.content-block .text strong {
    color: var(--c-text);
    font-weight: 700
}

/* ---- AUTHOR ---- */
.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-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c63ff, var(--c-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0
}

.author-info {
    flex: 1
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px
}

.author-role {
    font-size: 12px;
    color: var(--c-gold);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.author-bio {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 10px
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    transition: all var(--transition)
}

.author-link:hover {
    background: rgba(255, 215, 0, 0.1)
}

/* ---- 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)
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: color var(--transition)
}

.faq-question:hover {
    color: var(--c-gold)
}

.faq-question.active {
    color: var(--c-gold)
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition)
}

.faq-question.active .faq-icon {
    transform: rotate(45deg)
}

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

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

.faq-answer-inner {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.7
}

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

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

.pros-card {
    border-top: 3px solid #00e676
}

.cons-card {
    border-top: 3px solid var(--c-red)
}

.pros-cons-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.pros-card .pros-cons-title {
    color: #00e676
}

.cons-card .pros-cons-title {
    color: var(--c-red)
}

.pros-cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.5
}

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

.pros-card li::before {
    background: rgba(0, 230, 118, 0.15);
    content: '✓';
    color: #00e676;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800
}

.cons-card li::before {
    background: rgba(255, 23, 68, 0.15);
    content: '✗';
    color: var(--c-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800
}

/* ---- CASINO CARDS ---- */
.casino-cards {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px
}

.casino-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition)
}

.casino-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5)
}

.casino-card-header {
    display: flex;
    align-items: center;
    gap: 12px
}

.casino-card-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--c-gold);
    border: 1px solid var(--c-border);
    flex-shrink: 0
}

.casino-card-name {
    font-weight: 700;
    font-size: 15px
}

.casino-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--c-gold);
    font-weight: 600
}

.casino-card-bonus {
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid rgba(255, 23, 68, 0.25);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-red)
}

.casino-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.casino-card-features li {
    font-size: 12px;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 6px
}

.casino-card-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--c-gold);
    border-radius: 50%;
    flex-shrink: 0
}

/* ---- FOOTER ---- */
.site-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    margin-top: auto
}

.footer-main {
    padding: 48px 0 32px;
    display: grid;
    grid-template-columns:2fr 1fr 1fr;
    gap: 40px
}

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

.footer-brand p {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.7;
    max-width: 280px
}

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

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-links a {
    font-size: 13px;
    color: var(--c-text-muted);
    transition: color var(--transition)
}

.footer-links a:hover {
    color: var(--c-gold)
}

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

.footer-logos-row img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition);
    filter: grayscale(0.3)
}

.footer-logos-row img:hover {
    opacity: 1
}

.payment-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-text-muted);
    letter-spacing: 0.3px
}

.trust-badge {
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-gold);
    letter-spacing: 0.3px
}

.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap
}

.footer-copyright {
    font-size: 12px;
    color: var(--c-text-muted);
    line-height: 1.6
}

.footer-legal {
    font-size: 11px;
    color: rgba(160, 160, 160, 0.6);
    margin-top: 4px
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--c-text-muted)
}

.footer-provider img {
    height: 24px;
    width: auto;
    opacity: 0.7
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.lightbox.open {
    display: flex
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8)
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all var(--transition)
}

.lightbox-close:hover {
    background: var(--c-red)
}

/* ---- TECHNICAL PAGE ---- */
.technical-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0
}

.technical-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--c-text);
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--c-border)
}

.technical-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--c-gold);
    margin: 20px 0 8px
}

.technical-content p {
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.72;
    margin-bottom: 14px
}

.technical-content ul, .technical-content ol {
    margin: 10px 0 14px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.technical-content li {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.6
}

.technical-content a {
    color: var(--c-gold);
    text-decoration: underline
}

.technical-content strong {
    color: var(--c-text)
}

/* ---- UTILS ---- */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 40px 0
}

.text-gold {
    color: var(--c-gold)
}

.text-red {
    color: var(--c-red)
}

.mt-8 {
    margin-top: 8px
}

.mt-16 {
    margin-top: 16px
}

.mb-8 {
    margin-bottom: 8px
}

.mb-16 {
    margin-bottom: 16px
}

.d-flex {
    display: flex
}

.gap-8 {
    gap: 8px
}

.gap-16 {
    gap: 16px
}

.align-center {
    align-items: center
}

.flex-wrap {
    flex-wrap: wrap
}

.text-center {
    text-align: center
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--c-text-muted);
    margin-bottom: 20px;
    flex-wrap: wrap
}

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

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

.breadcrumb span {
    color: var(--c-border)
}

/* ---- FADE ANIMATIONS ---- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0)
}

/* ---- SHIMMER unused ---- */
.shimmer-fx {
    background-size: 200% 100%;
    animation: shimmer-anim 2s infinite linear
}

@keyframes shimmer-anim {
    0% {
        background-position: 200% 0
    }
    100% {
        background-position: -200% 0
    }
}

.ghost-el, .wp-seo-block, .yoast-hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden
}

.elementor-hidden-widget {
    display: none
}

.wpcf7-hidden, .wpcf7-response-output {
    display: none
}

[data-revslider-initialised] {
    display: none
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .jackpots-grid {
        grid-template-columns:1fr 1fr
    }

    .casino-cards {
        grid-template-columns:1fr 1fr
    }

    .footer-main {
        grid-template-columns:1fr 1fr;
        gap: 28px
    }
}

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

    .burger {
        display: flex
    }

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

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

    .screenshots-grid {
        display: none
    }

    .screenshots-slider {
        display: block
    }

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

    .casino-cards {
        grid-template-columns:1fr
    }

    .footer-main {
        grid-template-columns:1fr;
        gap: 24px
    }

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

    .hero-btns {
        flex-direction: column;
        align-items: flex-start
    }

    .sticky-widget {
        flex-wrap: wrap
    }

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

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

    .hero-content {
        padding: 40px 0
    }

    .hero-stats {
        gap: 16px
    }

    .demo-bar {
        flex-direction: column;
        align-items: flex-start
    }
}

.hgf {
    width: 100%;
    max-width: 1240px;
    margin: 40px auto;
    padding: 48px;
    background: linear-gradient(180deg, #161616 0%, #0f0f0f 100%);
    border: 1px solid var(--c-border);
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
    overflow: hidden;
}

.hgf h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
}

.hgf h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    line-height: 1.3;
    color: var(--c-gold);
    margin: 42px 0 18px;
    position: relative;
    padding-bottom: 12px;
}

.hgf h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--c-gold), var(--c-red));
}

.hgf p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 18px;
    overflow-wrap: break-word;
}

.hgf strong {
    color: #fff;
}

.hgf a {
    color: var(--c-gold);
    text-decoration: underline;
    transition: .25s ease;
    overflow-wrap: anywhere;
}

.hgf a:hover {
    color: #fff;
}

.hgf ul,
.hgf ol {
    padding-left: 24px;
    margin-bottom: 24px;
}

.hgf li {
    color: rgba(255, 255, 255, .78);
    line-height: 1.75;
    margin-bottom: 10px;
}

.hgf img {
    max-width: 100%;
    border-radius: 18px;
    display: block;
}

.hgf table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    overflow-x: auto;
    border: 1px solid var(--c-border);
}

.hgf table::-webkit-scrollbar {
    height: 6px;
}

.hgf table::-webkit-scrollbar-thumb {
    background: var(--c-gold);
    border-radius: 20px;
}

.hgf th {
    background: #111;
    color: var(--c-gold);
    padding: 14px 18px;
    font-size: .85rem;
    text-align: left;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.hgf td {
    padding: 14px 18px;
    color: rgba(255, 255, 255, .8);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .02);
    min-width: 180px;
    font-size: .92rem;
}

.hgf tr:last-child td {
    border-bottom: none;
}

.hgf blockquote {
    margin: 30px 0;
    padding: 22px 26px;
    border-left: 4px solid var(--c-gold);
    background: rgba(255, 215, 0, .05);
    border-radius: 18px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
}

.hgf iframe {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.hgf hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 40px 0;
}

@media (max-width: 768px) {
    .hgf {
        margin: 20px 10px;
        padding: 28px 18px;
        border-radius: 22px;
    }

    .hgf h1 {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .hgf h2 {
        font-size: 1.2rem;
        margin: 32px 0 14px;
        padding-bottom: 10px;
    }

    .hgf h2::after {
        width: 54px;
    }

    .hgf p,
    .hgf li {
        font-size: .94rem;
        line-height: 1.75;
    }

    .hgf th,
    .hgf td {
        padding: 12px 14px;
        font-size: .82rem;
    }

    .hgf blockquote {
        padding: 18px;
        border-radius: 14px;
        font-size: .9rem;
    }
}

@media (max-width: 480px) {
    .hgf {
        padding: 20px 14px;
        margin: 14px 6px;
        border-radius: 18px;
    }

    .hgf h1 {
        font-size: 1.55rem;
    }

    .hgf h2 {
        font-size: 1.05rem;
    }

    .hgf p,
    .hgf li {
        font-size: .88rem;
    }

    .hgf ul,
    .hgf ol {
        padding-left: 18px;
    }

    .hgf th,
    .hgf td {
        padding: 10px 12px;
        font-size: .76rem;
    }

    .hgf blockquote {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 9999;
    }

    .header-inner {
        min-height: 64px;
        gap: 8px;
    }

    .header-logo img {
        height: 34px;
        max-width: 120px;
    }

    .header-inner > .header-nav {
        display: none;
    }

    .online-count {
        display: none;
    }

    .mobile-btns {
        display: flex;
        gap: 6px;
    }

    .mobile-btns .btn {
        padding: 7px 10px;
        font-size: 11px;
    }

    .burger {
        display: flex;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        border: 1px solid var(--c-border);
        border-radius: 8px;
        background: rgba(255, 255, 255, .06);
        flex-shrink: 0;
    }

    .burger span {
        width: 22px;
        height: 2px;
        background: var(--c-text);
        border-radius: 2px;
        transition: .25s ease;
    }

    .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 {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 16px;
        background: rgba(10, 10, 10, .98);
        border-top: 1px solid var(--c-border);
        z-index: 9998;
        overflow-y: auto;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: .3s ease;
    }

    .mobile-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu .header-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .mobile-menu .header-nav a {
        width: 100%;
        min-height: 48px;
        padding: 13px 14px;
        border: 1px solid var(--c-border);
        border-radius: 10px;
        background: var(--c-card);
        color: var(--c-text);
        font-size: 14px;
        font-weight: 600;
    }

    .mobile-menu .header-nav svg {
        width: 18px;
        height: 18px;
        color: var(--c-gold);
        flex-shrink: 0;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 420px) {
    .mobile-btns .btn--gold {
        display: none;
    }

    .header-logo img {
        max-width: 105px;
    }

    .mobile-menu {
        top: 60px;
    }
}