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

:root {
    --clr-primary: #CB1213;
    --clr-primary-dark: #a00e0f;
    --clr-primary-light: #e41a1b;
    --clr-bg: #650664;
    --clr-bg-dark: #4a044a;
    --clr-bg-light: #7a0879;
    --clr-btn-gold: #E7C800;
    --clr-btn-gold-hover: #c9ae00;
    --clr-btn-green: #6FF800;
    --clr-btn-green-hover: #58c800;
    --clr-text: #ffffff;
    --clr-text-muted: rgba(255, 255, 255, 0.75);
    --clr-text-dark: #1a1a1a;
    --clr-card-bg: rgba(255, 255, 255, 0.07);
    --clr-card-border: rgba(255, 255, 255, 0.12);
    --clr-gold: #E7C800;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-btn: 0 4px 16px rgba(0, 0, 0, 0.3);
    --font-heading: 'Oswald', 'Montserrat', sans-serif;
    --font-body: 'Poppins', 'Roboto', sans-serif;
    --transition: 0.25s ease;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.65;
    font-size: 15px;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--clr-btn-gold-hover);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--clr-text);
    font-weight: 700;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1em;
}

ul, ol {
    padding-left: 1.5em;
}

li {
    margin-bottom: 0.4em;
}

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

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

.section {
    padding: 56px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--clr-text);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--clr-btn-gold);
    margin-top: 10px;
    border-radius: 2px;
}

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

.section-title.centered::after {
    margin: 10px auto 0;
}

.box {
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-card-border);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition);
    box-shadow: var(--shadow-btn);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px) scale(1.03);
    text-decoration: none;
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn--gold {
    background: var(--clr-btn-gold);
    color: #1a1a1a;
}

.btn--gold:hover {
    background: var(--clr-btn-gold-hover);
    color: #111;
    box-shadow: 0 6px 24px rgba(231, 200, 0, 0.45);
}

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

.btn--green:hover {
    background: var(--clr-btn-green-hover);
    color: #0a2200;
    box-shadow: 0 6px 24px rgba(111, 248, 0, 0.4);
}

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

.btn--red:hover {
    background: var(--clr-primary-dark);
    box-shadow: 0 6px 24px rgba(203, 18, 19, 0.45);
}

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

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

.btn--lg {
    padding: 14px 34px;
    font-size: 1.05rem;
}

.btn--sm {
    padding: 7px 16px;
    font-size: 0.85rem;
}

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

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.header-logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.1;
}

.header-logo-sub {
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    letter-spacing: 0.12em;
}

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

.header-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

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

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

.online-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.4);
    }
}

.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    transition: background var(--transition);
    text-transform: uppercase;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lang-btn svg {
    transition: transform var(--transition);
}

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

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #3a0039;
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    min-width: 140px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 200;
    overflow: hidden;
}

.lang-dropdown.visible {
    display: block;
    animation: fadeInDown 0.2s ease;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: var(--clr-text);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background var(--transition);
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.flag {
    font-size: 1.1rem;
}

/* BURGER */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

.burger-btn span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(101, 6, 100, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 80px 24px 40px;
    animation: fadeIn 0.2s ease;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    transition: background var(--transition);
    width: 100%;
    max-width: 320px;
    justify-content: center;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
}

/* HERO */
.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #4a0049 0%, var(--clr-bg) 50%, #300030 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-sliz.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(60, 0, 60, 0.92) 0%, rgba(101, 6, 100, 0.7) 60%, rgba(101, 6, 100, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 64px 16px;
    max-width: 620px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(231, 200, 0, 0.15);
    border: 1px solid rgba(231, 200, 0, 0.35);
    color: var(--clr-btn-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    font-family: var(--font-heading);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    color: var(--clr-btn-gold);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    line-height: 1.7;
}

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

.hero-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-badge-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-btn-gold);
    line-height: 1;
}

.hero-badge-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.info-table {
    width: 100%;
    min-width: 580px;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.info-table th, .info-table td {
    padding: 13px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
    line-height: 1.5;
}

.info-table th {
    background: rgba(203, 18, 19, 0.25);
    color: var(--clr-btn-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    width: 42%;
}

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

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

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

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

.jackpot-card {
    border-radius: var(--radius-xl);
    padding: 28px 22px;
    text-align: center;
    border: 2px solid;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-card);
}

.jackpot-card:hover {
    transform: translateY(-4px);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.jackpot-card--bronze {
    background: linear-gradient(145deg, #4a2000, #2a1000);
    border-color: #cd7f32;
}

.jackpot-card--silver {
    background: linear-gradient(145deg, #2a3040, #141a26);
    border-color: #c0c0c0;
}

.jackpot-card--gold {
    background: linear-gradient(145deg, #3a2a00, #1e1500);
    border-color: #E7C800;
}

.jackpot-tier {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.85;
}

.jackpot-card--bronze .jackpot-tier {
    color: #cd7f32;
}

.jackpot-card--silver .jackpot-tier {
    color: #c0c0c0;
}

.jackpot-card--gold .jackpot-tier {
    color: #E7C800;
}

.jackpot-icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
    display: block;
}

.jackpot-amount {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

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

.jackpot-card--silver .jackpot-amount {
    color: #c0c0c0;
}

.jackpot-card--gold .jackpot-amount {
    color: #E7C800;
}

.jackpot-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.jackpot-winners {
    list-style: none;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 14px;
}

.jackpot-winners li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.8);
}

.jackpot-winners li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.winner-nick {
    font-weight: 600;
}

.winner-amount {
    color: var(--clr-btn-gold);
    font-weight: 700;
    font-family: var(--font-heading);
}

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

.bonus-card {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-xl);
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

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

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--clr-btn-gold);
}

.bonus-casino {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.casino-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-btn-gold);
    flex-shrink: 0;
    overflow: hidden;
}

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

.casino-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.75rem;
    color: var(--clr-btn-gold);
    margin-top: 2px;
}

.bonus-value {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--clr-btn-green);
    margin-bottom: 6px;
    line-height: 1.1;
}

.bonus-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
    line-height: 1.5;
    flex: 1;
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.bonus-features li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bonus-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--clr-btn-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

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

.bonus-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--clr-primary);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
}

/* DEMO */
.demo-section {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.demo-header {
    background: rgba(203, 18, 19, 0.2);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-header h2 {
    font-size: 1.3rem;
    margin: 0;
}

.demo-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.demo-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

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

.demo-disclaimer {
    padding: 14px 28px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* CONTENT REVIEW */
.content-review {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-card);
}

.content-review h2 {
    color: var(--clr-btn-gold);
    margin-bottom: 18px;
}

.content-review h3 {
    color: #fff;
    margin: 24px 0 12px;
}

.content-review h4 {
    color: rgba(255, 255, 255, 0.9);
    margin: 18px 0 8px;
}

.content-review p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 1em;
}

.content-review ul, .content-review ol {
    padding-left: 1.6em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1em;
}

.content-review li {
    margin-bottom: 6px;
    line-height: 1.6;
}

.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    overflow-x: auto;
    display: block;
}

.content-review th {
    background: rgba(203, 18, 19, 0.25);
    color: var(--clr-btn-gold);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--font-heading);
}

.content-review td {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

.content-review tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.04);
}

.content-review a {
    color: var(--clr-btn-gold);
    text-decoration: underline;
}

.content-review a:hover {
    color: var(--clr-btn-gold-hover);
}

.content-review strong {
    color: #fff;
}

.content-review em {
    color: rgba(255, 255, 255, 0.9);
}

.content-review blockquote {
    border-left: 4px solid var(--clr-btn-gold);
    padding: 12px 20px;
    margin: 16px 0;
    background: rgba(231, 200, 0, 0.07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.content-review hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

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

.pros-box, .cons-box {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-xl);
    padding: 24px;
}

.pros-box {
    border-top: 4px solid var(--clr-btn-green);
}

.cons-box {
    border-top: 4px solid var(--clr-primary);
}

.pros-box h3, .cons-box h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-box h3 {
    color: var(--clr-btn-green);
}

.cons-box h3 {
    color: #ff6666;
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
}

.pros-list li, .cons-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

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

.pros-list li::before {
    content: '✓';
    color: var(--clr-btn-green);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.cons-list li::before {
    content: '✗';
    color: #ff6666;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

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

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

.faq-item.open {
    border-color: rgba(231, 200, 0, 0.35);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    user-select: none;
    transition: background var(--transition);
}

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

.faq-q svg {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--clr-btn-gold);
}

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

.faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

.faq-item.open .faq-a {
    display: block;
    animation: fadeIn 0.2s ease;
}

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

.review-card {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--transition);
}

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

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-bg-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.review-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

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

.star {
    color: var(--clr-btn-gold);
    font-size: 0.9rem;
}

.star.empty {
    color: rgba(255, 255, 255, 0.25);
}

.review-text {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    flex: 1;
}

.review-game {
    font-size: 0.75rem;
    color: var(--clr-btn-gold);
    font-weight: 600;
}

/* AUTHOR */
.author-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-card);
}

.author-photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-bg-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    border: 3px solid var(--clr-btn-gold);
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.82rem;
    color: var(--clr-btn-gold);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.author-bio {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 12px;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--clr-btn-gold);
    font-weight: 600;
}

.author-link:hover {
    color: var(--clr-btn-gold-hover);
}

/* FOOTER */
.site-footer {
    background: var(--clr-primary);
    border-top: 3px solid rgba(0, 0, 0, 0.3);
    padding: 48px 0 24px;
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 240px 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

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

.footer-links a {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--clr-btn-gold);
}

.footer-middle {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logos-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.trust-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
}

.provider-icon {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--clr-btn-gold);
    font-family: var(--font-heading);
    letter-spacing: 0.06em;
}

.footer-bottom {
    text-align: center;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.copyright a {
    color: rgba(255, 255, 255, 0.75);
}

.copyright a:hover {
    color: var(--clr-btn-gold);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: var(--font-heading);
    border: 2px solid rgba(255, 255, 255, 0.4);
    vertical-align: middle;
    margin-left: 6px;
}

.breadcrumb {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a:hover {
    color: var(--clr-btn-gold);
}

.breadcrumb-sep {
    opacity: 0.4;
    font-size: 0.7rem;
}

.breadcrumb-current {
    color: var(--clr-btn-gold);
    font-weight: 600;
}

/* TECHNICAL PAGES */
.tech-content {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-card);
}

.tech-content h2 {
    font-size: 1.3rem;
    color: var(--clr-btn-gold);
    margin: 28px 0 12px;
}

.tech-content h2:first-child {
    margin-top: 0;
}

.tech-content h3 {
    font-size: 1.05rem;
    color: #fff;
    margin: 20px 0 8px;
}

.tech-content p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin-bottom: 1em;
}

.tech-content ul, .tech-content ol {
    color: rgba(255, 255, 255, 0.82);
    padding-left: 1.6em;
    margin-bottom: 1em;
}

.tech-content li {
    margin-bottom: 5px;
    line-height: 1.6;
}

.tech-content strong {
    color: #fff;
}

.tech-content a {
    color: var(--clr-btn-gold);
    text-decoration: underline;
}

.tech-content a:hover {
    color: var(--clr-btn-gold-hover);
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.animated {
    animation: fadeIn 0.4s ease;
}

/* SECTION DIVIDER */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(231, 200, 0, 0.3), transparent);
    margin: 4px 0;
}

.swiper-container {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.35s ease;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
}

.swiper-dots {
    display: none;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.swiper-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.swiper-dot.active {
    background: var(--clr-btn-gold);
    transform: scale(1.2);
}

/* SCROLL PROGRESS */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--clr-btn-gold);
    z-index: 2000;
    width: 0%;
    transition: width 0.1s linear;
}

#wp-toolbar {
    display: none !important;
}

.entry-meta {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .jackpots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .bonuses-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

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

    .footer-top > :first-child {
        grid-column: 1 / -1;
    }
}

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

    .online-count {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .header-actions .lang-switcher {
        display: none;
    }

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

    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .swiper-dots {
        display: flex;
    }

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

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

    .author-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-photo {
        margin: 0 auto;
    }

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

    .footer-top > :first-child {
        grid-column: 1;
    }

    .hero-content {
        padding: 48px 0;
    }

    .section {
        padding: 36px 0;
    }

    .content-review {
        padding: 24px 18px;
    }

    .tech-content {
        padding: 24px 18px;
    }

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

@media (max-width: 480px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
        padding: 8px 12px;
    }

    .header-logo-text {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .jackpot-amount {
        font-size: 1.4rem;
    }

    .sticky-widget {
        padding: 10px 44px 10px 16px;
    }

    .widget-text {
        font-size: 0.82rem;
    }

    .info-table th, .info-table td {
        padding: 10px 12px;
    }
}

/* UNUSED STYLES FOR UNIQUENESS */
.xk7r2p {
    display: none;
}

.qm9v3n {
    visibility: hidden;
}

.hz4b8w {
    opacity: 0;
    pointer-events: none;
}

.ts1j6f:hover::after {
    content: none;
}

.nw5e4q {
    transform: none;
}

.vp2m7s {
    transition: none;
}

.entry-footer {
    display: none;
}

.wp-block-separator {
    border: none;
}

.wp-post-image {
    display: inline;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
}

.alignright {
    float: right;
}

.wp-caption {
    max-width: 100%;
}

.screen-reader-text {
    display: none;
}

.rtm4kp {
    height: 0;
    overflow: hidden;
}

.yx8n2v {
    width: 0;
}

.cg6w3d {
    max-height: 0;
}

.lmdbncb {
    max-width: 980px;
    margin: 48px auto 56px;
    padding: 42px 38px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .045));
    border: 1px solid rgba(231, 200, 0, .34);
    border-radius: 24px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .38), inset 0 0 0 1px rgba(255, 255, 255, .05);
    position: relative;
    overflow: hidden
}

.lmdbncb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(231, 200, 0, .12), transparent 34%), radial-gradient(circle at bottom left, rgba(111, 248, 0, .08), transparent 30%);
    pointer-events: none
}

.lmdbncb > * {
    position: relative;
    z-index: 1
}

.lmdbncb h1 {
    font-size: clamp(30px, 4.6vw, 50px);
    line-height: 1.08;
    color: var(--clr-btn-gold);
    margin-bottom: 26px;
    text-transform: uppercase;
    letter-spacing: .02em
}

.lmdbncb h2 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.18;
    color: #fff;
    margin: 42px 0 16px;
    padding-left: 18px;
    position: relative
}

.lmdbncb h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: .16em;
    width: 6px;
    height: .95em;
    border-radius: 20px;
    background: var(--clr-btn-gold);
    box-shadow: 0 0 18px rgba(231, 200, 0, .35)
}

.lmdbncb h3 {
    font-size: clamp(19px, 2.3vw, 25px);
    line-height: 1.25;
    color: var(--clr-btn-gold);
    margin: 30px 0 12px
}

.lmdbncb p {
    font-size: 16px;
    line-height: 1.86;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 18px
}

.lmdbncb ul,
.lmdbncb ol {
    display: grid;
    gap: 12px;
    margin: 22px 0 28px;
    padding-left: 0;
    list-style: none
}

.lmdbncb li {
    position: relative;
    padding: 14px 16px 14px 48px;
    color: rgba(255, 255, 255, .86);
    line-height: 1.68;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 15px
}

.lmdbncb ul li::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 21px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--clr-btn-green);
    box-shadow: 0 0 0 5px rgba(111, 248, 0, .12)
}

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

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

.lmdbncb ol li::before {
    content: counter(lmdbncb-counter);
    position: absolute;
    left: 14px;
    top: 14px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--clr-btn-gold);
    color: var(--clr-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800
}

.lmdbncb a {
    color: var(--clr-btn-gold);
    text-decoration: underline;
    word-break: break-word;
    overflow-wrap: anywhere
}

.lmdbncb a:hover {
    color: var(--clr-btn-green)
}

.lmdbncb strong {
    color: #fff
}

.lmdbncb img {
    max-width: 260px;
    margin: 26px auto;
    padding: 12px;
    background: rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .25)
}

.lmdbncb table {
    width: 100%;
    border-collapse: collapse;
    margin: 26px 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(231, 200, 0, .24);
    background: rgba(0, 0, 0, .16)
}

.lmdbncb th,
.lmdbncb td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    text-align: left;
    vertical-align: top;
    font-size: 15px
}

.lmdbncb th {
    color: var(--clr-btn-gold);
    background: rgba(203, 18, 19, .22);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em
}

.lmdbncb td {
    color: rgba(255, 255, 255, .84)
}

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

.lmdbncb blockquote {
    margin: 26px 0;
    padding: 18px 22px;
    color: rgba(255, 255, 255, .84);
    background: rgba(231, 200, 0, .07);
    border-left: 4px solid var(--clr-btn-gold);
    border-radius: 0 16px 16px 0;
    font-style: italic
}

@media (max-width: 768px) {
    .lmdbncb {
        max-width: calc(100% - 24px);
        margin: 32px auto 42px;
        padding: 30px 20px;
        border-radius: 18px
    }

    .lmdbncb h1 {
        font-size: 29px;
        margin-bottom: 22px
    }

    .lmdbncb h2 {
        font-size: 23px;
        margin: 34px 0 14px;
        padding-left: 15px
    }

    .lmdbncb h3 {
        font-size: 19px;
        margin: 24px 0 10px
    }

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

    .lmdbncb li {
        font-size: 15px;
        line-height: 1.64;
        padding: 13px 14px 13px 42px
    }

    .lmdbncb ul li::before {
        left: 16px;
        top: 20px;
        width: 10px;
        height: 10px
    }

    .lmdbncb img {
        max-width: 220px;
        margin: 22px auto
    }

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

@media (max-width: 480px) {
    .lmdbncb {
        max-width: calc(100% - 14px);
        margin: 24px auto 34px;
        padding: 24px 14px;
        border-radius: 16px
    }

    .lmdbncb h1 {
        font-size: 24px
    }

    .lmdbncb h2 {
        font-size: 20px
    }

    .lmdbncb h3 {
        font-size: 18px
    }

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

    .lmdbncb li {
        padding: 12px 12px 12px 38px
    }

    .lmdbncb ol li::before {
        width: 22px;
        height: 22px;
        font-size: 11px
    }

    .lmdbncb th,
    .lmdbncb td {
        padding: 11px 12px;
        font-size: 13px
    }

    .lmdbncb blockquote {
        padding: 16px 18px;
        font-size: 14px
    }
}
