:root {
    --clr-bg: #0d0d0d;
    --clr-nav: #141414;
    --clr-orange: #ff6b00;
    --clr-green: #22c55e;
    --clr-text: #e8e8e8;
    --clr-muted: #9ca3af;
    --clr-border: #2a2a2a;
    --clr-card: #1a1a1a;
    --clr-card2: #1e1e1e;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --gap: 1rem;
    --tr: 0.25s ease
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%
}

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    width: 100%
}

.wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: 100%
}

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

a {
    color: var(--clr-orange);
    text-decoration: none;
    transition: color var(--tr)
}

a:hover {
    color: #ff8c33
}

ul {
    list-style: none
}

.x7k2a {
    display: none
}


.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem
}

/* HEADER */
.site-header {
    background: var(--clr-nav);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
    width: 100%
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: .75rem 1rem;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%
}

.header-logo {
    flex-shrink: 0
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-self: center
}

.header-nav a {
    color: var(--clr-text);
    font-size: .85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .35rem;
    transition: color var(--tr);
    white-space: nowrap
}

.header-nav a:hover {
    color: var(--clr-orange)
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-shrink: 0
}

.online-count {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    color: var(--clr-muted);
    white-space: nowrap
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-green);
    animation: pulse 1.8s infinite;
    flex-shrink: 0
}

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

.lang-select {
    position: relative
}

.lang-btn {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    border-radius: var(--radius-sm);
    padding: .35rem .6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color var(--tr)
}

.lang-btn:hover {
    border-color: var(--clr-orange)
}

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

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

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .75rem;
    font-size: .8rem;
    color: var(--clr-text);
    transition: background var(--tr)
}

.lang-dropdown a:hover {
    background: rgba(255, 107, 0, .1);
    color: var(--clr-orange)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--tr);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1
}

.btn-sm {
    padding: .5rem .9rem;
    font-size: .78rem
}

.btn-md {
    padding: .65rem 1.2rem;
    font-size: .85rem
}

.btn-lg {
    padding: .85rem 1.8rem;
    font-size: .95rem
}

.btn-xl {
    padding: 1rem 2.2rem;
    font-size: 1rem
}

.btn-orange {
    background: var(--clr-orange);
    color: #fff
}

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

.btn-green {
    background: var(--clr-green);
    color: #fff
}

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--clr-border);
    color: var(--clr-text)
}

.btn-outline:hover {
    border-color: var(--clr-orange);
    color: var(--clr-orange)
}

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

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

.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-section {
    position: relative;
    overflow: hidden;
    background: #000;
    width: 100%
}

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

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

.hero-slide.active {
    opacity: 1
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.55)
}

.hero-slide:nth-child(1) .hero-slide-bg {
    background-image: url('/hero-chick.jpg')
}

.hero-slide:nth-child(2) .hero-slide-bg {
    background-image: url('/hero-chick.jpg')
}

.hero-slide:nth-child(3) .hero-slide-bg {
    background-image: url('/hero-chick.jpg')
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 107, 0, .15);
    border: 1px solid rgba(255, 107, 0, .4);
    border-radius: 20px;
    padding: .3rem .75rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--clr-orange);
    margin-bottom: 1rem
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: .75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .6)
}

.hero-title span {
    color: var(--clr-orange)
}

.hero-desc {
    font-size: clamp(.9rem, 2vw, 1.05rem);
    color: rgba(255, 255, 255, .8);
    margin-bottom: 1.5rem;
    max-width: 520px;
    line-height: 1.6
}

.hero-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 5
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: all var(--tr);
    padding: 0
}

.hero-dot.active {
    background: var(--clr-orange);
    width: 22px;
    border-radius: 4px
}

/* SECTIONS */
.section {
    padding: 4rem 0;
    width: 100%
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    margin-bottom: .5rem;
    line-height: 1.2
}

.section-title span {
    color: var(--clr-orange)
}

.section-sub {
    color: var(--clr-muted);
    font-size: .9rem;
    margin-bottom: 2rem
}

.section-head {
    margin-bottom: 2rem
}

.divider {
    width: 48px;
    height: 3px;
    background: var(--clr-orange);
    border-radius: 2px;
    margin: .5rem 0 1rem
}

/* JACKPOTS */
.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    width: 100%
}

.jackpot-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr)
}

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

.jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, .07) 0%, transparent 60%);
    pointer-events: none
}

.jackpot-card.gold {
    border-color: rgba(255, 200, 0, .4)
}

.jackpot-card.gold::before {
    background: linear-gradient(135deg, rgba(255, 200, 0, .1) 0%, transparent 60%)
}

.jackpot-card.silver {
    border-color: rgba(192, 192, 192, .35)
}

.jackpot-card.bronze {
    border-color: rgba(205, 127, 50, .35)
}

.jackpot-icon {
    font-size: 2.2rem;
    margin-bottom: .5rem
}

.jackpot-label {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-muted);
    margin-bottom: .25rem
}

.jackpot-card.gold .jackpot-label {
    color: #ffc800
}

.jackpot-card.silver .jackpot-label {
    color: #c0c0c0
}

.jackpot-card.bronze .jackpot-label {
    color: #cd7f32
}

.jackpot-amount {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem
}

.jackpot-card.gold .jackpot-amount {
    color: #ffc800
}

.jackpot-card.silver .jackpot-amount {
    color: #d0d0d0
}

.jackpot-card.bronze .jackpot-amount {
    color: #cd7f32
}

.jackpot-players {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.jackpot-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .04);
    border-radius: var(--radius-sm);
    padding: .4rem .65rem;
    font-size: .78rem
}

.jackpot-player-nick {
    color: var(--clr-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.jackpot-player-win {
    font-weight: 700;
    color: var(--clr-green);
    flex-shrink: 0;
    margin-left: .5rem
}

/* VIDEO */
.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
    border: 1px solid var(--clr-border);
    width: 100%
}

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

.video-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    width: 100%
}

.video-stat {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: .85rem 1rem;
    text-align: center
}

.video-stat-val {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-orange)
}

.video-stat-label {
    font-size: .75rem;
    color: var(--clr-muted);
    margin-top: .2rem
}

/* BONUSES */
.bonus-slider-wrap {
    position: relative;
    width: 100%
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    width: 100%
}

.bonus-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr);
    display: flex;
    flex-direction: column
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(34, 197, 94, .15)
}

.bonus-card-head {
    background: linear-gradient(135deg, #1e2e1e 0%, #0d1a0d 100%);
    padding: 1.25rem;
    border-bottom: 1px solid var(--clr-border)
}

.bonus-casino-name {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: .25rem
}

.bonus-tag {
    display: inline-block;
    background: rgba(34, 197, 94, .15);
    border: 1px solid rgba(34, 197, 94, .35);
    color: var(--clr-green);
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 600;
    padding: .15rem .55rem
}

.bonus-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .85rem
}

.bonus-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-green)
}

.bonus-desc {
    font-size: .82rem;
    color: var(--clr-muted);
    line-height: 1.5
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: var(--clr-text)
}

.bonus-feature::before {
    content: '✓';
    color: var(--clr-green);
    font-weight: 700;
    flex-shrink: 0
}

.bonus-card-foot {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--clr-border)
}

.bonus-disclaimer {
    font-size: .68rem;
    color: var(--clr-muted);
    margin-top: .5rem;
    line-height: 1.4
}

.rating-stars {
    color: #ffc800;
    font-size: .85rem;
    letter-spacing: .05em
}

.bonus-slider-controls {
    display: none;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem
}

.bonus-slider-btn {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--tr)
}

.bonus-slider-btn:hover {
    border-color: var(--clr-orange);
    color: var(--clr-orange)
}

/* DEMO */
.demo-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a00 50%, #0d0d0d 100%)
}

.demo-wrap {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    background: #000;
    width: 100%;
}

.demo-toolbar {
    background: var(--clr-nav);
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--clr-border);
    flex-wrap: wrap;
    gap: .5rem
}

.demo-toolbar-left {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--clr-muted)
}

.demo-live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: pulse 1.5s infinite;
    flex-shrink: 0
}

.demo-frame-wrap {
    position: relative;
    padding-top: 56.25%;
    background: #111;
    width: 100%
}

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

.demo-cta-bar {
    background: var(--clr-nav);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--clr-border);
    gap: 1rem;
    flex-wrap: wrap
}

.demo-cta-text {
    font-size: .85rem;
    color: var(--clr-muted)
}

.demo-cta-text strong {
    color: var(--clr-text)
}

/* CONTENT BLOCK */
.content-section {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
    width: 100%;
    overflow-x: auto
}

.content-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.5rem 0 .75rem;
    color: var(--clr-text)
}

.content-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1.25rem 0 .5rem;
    color: var(--clr-text)
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--clr-muted);
    font-size: .92rem
}

.content-section ul, .content-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem
}

.content-section li {
    margin-bottom: .4rem;
    line-height: 1.6;
    color: var(--clr-muted);
    font-size: .92rem
}

.content-section ul li {
    list-style: disc
}

.content-section ol li {
    list-style: decimal
}

.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    display: table
}

.content-section table th, .content-section table td {
    padding: .65rem 1rem;
    border: 1px solid var(--clr-border);
    text-align: left;
    font-size: .85rem
}

.content-section table th {
    background: rgba(255, 107, 0, .1);
    color: var(--clr-orange);
    font-weight: 600
}

.content-section table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.content-section a {
    color: var(--clr-orange)
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    width: 100%
}

.faq-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--tr)
}

.faq-item.open {
    border-color: rgba(255, 107, 0, .4)
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--clr-text);
    text-align: left;
    padding: 1rem 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    transition: color var(--tr)
}

.faq-question:hover {
    color: var(--clr-orange)
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--tr);
    color: var(--clr-orange)
}

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

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

.faq-answer-inner {
    padding: 0 1.25rem 1rem;
    color: var(--clr-muted);
    font-size: .875rem;
    line-height: 1.7
}

/* PROS/CONS */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    width: 100%
}

.pros-card, .cons-card {
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 1.25rem;
    border-top: 3px solid
}

.pros-card {
    border-color: var(--clr-green)
}

.cons-card {
    border-color: #ef4444
}

.pros-cons-title {
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: .85rem;
    display: flex;
    align-items: center;
    gap: .4rem
}

.pros-list, .cons-list {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.pros-list li, .cons-list li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .82rem;
    color: var(--clr-muted);
    line-height: 1.5
}

.pros-list li::before {
    content: '✓';
    color: var(--clr-green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .05rem
}

.cons-list li::before {
    content: '✗';
    color: #ef4444;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .05rem
}

/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    width: 100%
}

.review-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: transform var(--tr)
}

.review-card:hover {
    transform: translateY(-3px)
}

.review-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .85rem
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-orange), #ffab00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0
}

.review-name {
    font-weight: 600;
    font-size: .88rem
}

.review-date {
    font-size: .72rem;
    color: var(--clr-muted)
}

.review-text {
    font-size: .82rem;
    color: var(--clr-muted);
    line-height: 1.6
}

/* AUTHOR */
.author-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b00, #ff9500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .25rem
}

.author-role {
    font-size: .78rem;
    color: var(--clr-orange);
    font-weight: 600;
    margin-bottom: .5rem
}

.author-bio {
    font-size: .82rem;
    color: var(--clr-muted);
    line-height: 1.6
}

.author-linkedin {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .5rem;
    font-size: .78rem;
    color: var(--clr-orange)
}

/* GAME INFO TABLE */
.game-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0
}

.game-table tr {
    transition: background var(--tr)
}

.game-table tr:hover td {
    background: rgba(255, 107, 0, .05)
}

.game-table td {
    padding: .6rem 1rem;
    border: 1px solid var(--clr-border);
    font-size: .85rem;
    vertical-align: middle
}

.game-table td:first-child {
    color: var(--clr-muted);
    width: 45%;
    font-weight: 500
}

.game-table td:last-child {
    color: var(--clr-text);
    font-weight: 600
}

.tbl-wrap {
    overflow-x: auto;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    width: 100%
}

/* FOOTER */
.site-footer {
    background: var(--clr-nav);
    border-top: 1px solid var(--clr-border);
    padding: 3rem 0 1.5rem;
    width: 100%
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%
}

.footer-col-title {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-muted);
    margin-bottom: .85rem
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.footer-links a {
    color: var(--clr-muted);
    font-size: .82rem;
    transition: color var(--tr)
}

.footer-links a:hover {
    color: var(--clr-orange)
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center
}

.footer-badge {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: .4rem .75rem;
    font-size: .72rem;
    font-weight: 600;
    color: var(--clr-muted);
    display: flex;
    align-items: center;
    gap: .35rem
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 1.5rem 0
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%
}

.footer-logo img {
    height: 36px;
    width: auto;
    margin-bottom: .5rem
}

.footer-copy {
    font-size: .75rem;
    color: var(--clr-muted);
    line-height: 1.6;
    max-width: 560px
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    flex-shrink: 0
}

.technical-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 1rem 4rem;
    width: 100%
}

.technical-content h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2
}

.technical-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 2rem 0 .75rem;
    color: var(--clr-text)
}

.technical-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0 .5rem;
    color: var(--clr-text)
}

.technical-content p {
    font-size: .9rem;
    color: var(--clr-muted);
    line-height: 1.75;
    margin-bottom: 1rem
}

.technical-content ul, .technical-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem
}

.technical-content li {
    font-size: .9rem;
    color: var(--clr-muted);
    line-height: 1.6;
    margin-bottom: .4rem
}

.technical-content ul li {
    list-style: disc
}

.technical-content ol li {
    list-style: decimal
}

/* MOBILE NAV */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all var(--tr)
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: var(--clr-nav);
    z-index: 95;
    transition: left var(--tr);
    overflow-y: auto;
    padding: 1rem
}

.mobile-nav.open {
    left: 0
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--clr-border)
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--clr-text);
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: .25rem
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem .5rem;
    color: var(--clr-text);
    font-size: .88rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background var(--tr)
}

.mobile-nav-links a:hover {
    background: rgba(255, 107, 0, .1);
    color: var(--clr-orange)
}

/* MISC */
.gradient-text {
    background: linear-gradient(90deg, var(--clr-orange), #ffab00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.tag {
    display: inline-block;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .6rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

.tag-orange {
    background: rgba(255, 107, 0, .15);
    color: var(--clr-orange);
    border: 1px solid rgba(255, 107, 0, .3)
}

.tag-green {
    background: rgba(34, 197, 94, .15);
    color: var(--clr-green);
    border: 1px solid rgba(34, 197, 94, .3)
}

.rtp-bar {
    height: 8px;
    background: var(--clr-border);
    border-radius: 4px;
    overflow: hidden;
    margin: .35rem 0
}

.rtp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--clr-orange), var(--clr-green));
    border-radius: 4px
}

.section-bg-alt {
    background: var(--clr-card2)
}

.section-bg-dark {
    background: var(--clr-nav)
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* TABLETS (≤1024px) */
@media (max-width: 1024px) {
    .jackpot-grid {
        grid-template-columns: repeat(3, 1fr)
    }

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

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

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

    .hero-slider {
        height: 460px
    }

    .section {
        padding: 3rem 0
    }
}

/* MOBILE (≤768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem
    }

    /* Header */
    .header-inner {
        grid-template-columns: auto 1fr auto;
        padding: .6rem 1rem;
        gap: .75rem
    }

    .header-logo img {
        height: 38px
    }

    .header-nav {
        display: none !important
    }

    .header-right {
        gap: .5rem
    }

    .online-count {
        font-size: .7rem
    }

    .online-count span:not(.online-dot):not(.online-count-val) {
        display: none
    }

    .burger {
        display: flex !important
    }

    /* Hero */
    .hero-slider {
        height: 420px
    }

    .hero-badge {
        font-size: .7rem;
        padding: .25rem .65rem
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem)
    }

    .hero-desc {
        font-size: clamp(.85rem, 2.5vw, .95rem);
        margin-bottom: 1.25rem
    }

    .hero-btns {
        gap: .6rem
    }

    .hero-dots {
        bottom: 1rem
    }

    /* Sections */
    .section {
        padding: 2.5rem 0
    }

    .section-head {
        margin-bottom: 1.5rem
    }

    .section-sub {
        font-size: .85rem
    }

    /* Jackpots */
    .jackpot-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem
    }

    .jackpot-card {
        padding: 1.25rem
    }

    /* Video */
    .video-meta {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem
    }

    /* Bonuses */
    .bonus-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem
    }

    .bonus-slider-controls {
        display: flex !important
    }

    .bonus-card-head,
    .bonus-card-body,
    .bonus-card-foot {
        padding: 1rem
    }

    /* Demo */
    .demo-toolbar {
        padding: .65rem .85rem
    }

    .demo-cta-bar {
        flex-direction: column;
        align-items: stretch;
        padding: .85rem 1rem;
        text-align: center
    }

    .demo-cta-bar > div:last-child {
        width: 100%;
        display: flex;
        gap: .6rem
    }

    /* Content */
    .content-section {
        padding: 1.5rem
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem
    }

    /* Pros/Cons */
    .pros-cons-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem
    }

    /* FAQ */
    .faq-question {
        padding: .85rem 1rem;
        font-size: .85rem
    }

    .faq-answer-inner {
        padding: 0 1rem .85rem
    }

    /* Author */
    .author-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem
    }

    /* Footer */
    .site-footer {
        padding: 2rem 0 1.5rem
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem
    }
}

/* SMALL MOBILE (≤480px) */
@media (max-width: 480px) {
    html {
        font-size: 15px
    }

    .container {
        padding: 0 .85rem
    }

    /* Header */
    .header-inner {
        padding: .5rem .75rem;
        gap: .5rem
    }

    .header-logo img {
        height: 34px
    }

    .btn-sm {
        padding: .45rem .7rem;
        font-size: .75rem
    }

    .online-count-val {
        font-size: .7rem
    }

    /* Hero */
    .hero-slider {
        height: 360px
    }

    .hero-content {
        padding: 0 .85rem
    }

    .hero-title {
        font-size: clamp(1.4rem, 7vw, 2rem)
    }

    .hero-btns {
        flex-direction: column;
        width: 100%
    }

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

    /* Sections */
    .section {
        padding: 2rem 0
    }

    .section-title {
        font-size: clamp(1.25rem, 5vw, 1.6rem)
    }

    /* Jackpots */
    .jackpot-card {
        padding: 1rem
    }

    .jackpot-icon {
        font-size: 1.8rem
    }

    .jackpot-amount {
        font-size: 1.3rem
    }

    /* Video */
    .video-meta {
        grid-template-columns: 1fr 1fr;
        gap: .65rem
    }

    .video-stat {
        padding: .65rem .75rem
    }

    /* Bonuses */
    .bonus-card-head,
    .bonus-card-body,
    .bonus-card-foot {
        padding: .85rem
    }

    .bonus-amount {
        font-size: 1.3rem
    }

    /* Demo */
    .demo-cta-bar > div:last-child {
        flex-direction: column
    }

    /* Content */
    .content-section {
        padding: 1.25rem
    }

    .content-section table {
        font-size: .75rem
    }

    .content-section table th,
    .content-section table td {
        padding: .45rem .6rem
    }

    /* Reviews */
    .review-card {
        padding: .85rem
    }

    /* Game Table */
    .game-table td {
        padding: .45rem .65rem;
        font-size: .76rem
    }

    /* Footer */
    .footer-badge {
        font-size: .65rem;
        padding: .3rem .55rem
    }

    .footer-copy {
        font-size: .72rem
    }

    .age-badge {
        width: 28px;
        height: 28px;
        font-size: .68rem
    }
}

.container,
.header-inner,
.hero-content,
.section,
.jackpot-grid,
.bonus-grid,
.reviews-grid,
.pros-cons-grid,
.footer-grid,
.video-meta,
.jackpot-card,
.bonus-card,
.review-card,
.pros-card,
.cons-card,
.content-section,
.tbl-wrap,
.demo-wrap {
    min-width: 0
}

p,
li,
td,
th,
span,
a,
div {
    overflow-wrap: anywhere
}

@media (max-width: 768px) {
    .section-bg-alt .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important
    }

    .game-table {
        table-layout: fixed
    }

    .game-table td:first-child {
        width: 42%
    }

    .content-section {
        overflow-x: visible
    }

    .tbl-wrap {
        overflow-x: auto
    }
}