@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&family=Marcellus&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --clr-bg: #553622;
    --clr-nav: #543622;
    --clr-nav-dark: #3a2415;
    --clr-nav-border: #6b4530;
    --clr-gold: #CB8E01;
    --clr-gold-light: #e8a50a;
    --clr-gold-dark: #a87200;
    --clr-green: #4E854C;
    --clr-green-light: #5fa05d;
    --clr-green-dark: #3a6338;
    --clr-text: #f5e8d0;
    --clr-text-muted: #c9aa87;
    --clr-text-dark: #1a0e05;
    --clr-card: #3d2514;
    --clr-card-alt: #4a2e1a;
    --clr-border: #7a5035;
    --clr-border-gold: #8a6520;
    --clr-overlay: rgba(30, 15, 5, 0.72);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-gold: 0 4px 24px rgba(203, 142, 1, 0.18);
    --shadow-card: 0 4px 18px rgba(0, 0, 0, 0.35);
    --transition: 0.25s ease;
}

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

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    font-size: 16px;
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: var(--clr-gold);
    line-height: 1.25;
    text-wrap: balance;
}

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

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

h3 {
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-gold-light);
}

p {
    margin-bottom: 0.9rem;
    color: var(--clr-text);
}

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

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

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

ul, ol {
    padding-left: 1.4rem;
}

li {
    margin-bottom: 0.35rem;
}

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

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

.container--wide {
    max-width: 1440px;
}

.box {
    border-radius: var(--radius-md);
}

.section {
    padding: 52px 0;
}

.section--sm {
    padding: 32px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    color: #1a0e05;
    box-shadow: 0 3px 12px rgba(203, 142, 1, 0.3);
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
    color: #1a0e05;
    box-shadow: 0 5px 20px rgba(203, 142, 1, 0.5);
    transform: translateY(-1px);
}

.btn--green {
    background: linear-gradient(135deg, var(--clr-green-light), var(--clr-green));
    color: #fff;
    box-shadow: 0 3px 12px rgba(78, 133, 76, 0.3);
}

.btn--green:hover {
    background: linear-gradient(135deg, #6dbf6a, var(--clr-green-light));
    color: #fff;
    box-shadow: 0 5px 20px rgba(78, 133, 76, 0.5);
    transform: translateY(-1px);
}

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

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

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

.btn--sm {
    padding: 7px 15px;
    font-size: 0.8rem;
}

.bxr-a1 {
    display: none;
}

.bxr-b7 {
    visibility: hidden;
    position: absolute;
}

.bxr-c3 {
    height: 0;
    overflow: hidden;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-nav);
    border-bottom: 2px solid var(--clr-nav-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header__logo img {
    height: 44px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.header__nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 11px;
    color: var(--clr-text-muted);
    font-size: 0.83rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.header__nav a:hover, .header__nav a.active {
    color: var(--clr-gold);
    background: rgba(203, 142, 1, 0.1);
}

.header__nav svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.header__online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    background: rgba(0, 0, 0, 0.25);
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid var(--clr-border);
}

.header__online-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

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

.lang-switcher {
    position: relative;
}

.lang-switcher__btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.82rem;
    font-family: 'Poppins', sans-serif;
    transition: all var(--transition);
}

.lang-switcher__btn:hover {
    border-color: var(--clr-gold);
    color: var(--clr-gold);
}

.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--clr-nav-dark);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-width: 130px;
    display: none;
    z-index: 200;
    box-shadow: var(--shadow-card);
}

.lang-switcher__dropdown.open {
    display: block;
}

.lang-switcher__dropdown a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    color: var(--clr-text-muted);
    font-size: 0.82rem;
    transition: all var(--transition);
}

.lang-switcher__dropdown a:hover {
    background: rgba(203, 142, 1, 0.1);
    color: var(--clr-gold);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 7px;
    flex-shrink: 0;
    transition: all var(--transition);
}

.burger span {
    width: 100%;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--clr-nav-dark);
    border-bottom: 2px solid var(--clr-nav-border);
    z-index: 999;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.mobile-menu__nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-menu__nav a:hover {
    color: var(--clr-gold);
    background: rgba(203, 142, 1, 0.1);
}

.mobile-menu__nav svg {
    width: 17px;
    height: 17px;
}

.mobile-menu__btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mobile-menu__btns .btn {
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-nav-dark);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/book-of-ra-banner.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transition: transform 8s ease;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 12, 3, 0.88) 0%, rgba(30, 12, 3, 0.45) 60%, rgba(30, 12, 3, 0.1) 100%);
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(203, 142, 1, 0.15);
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero__title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero__title span {
    color: var(--clr-gold);
}

.hero__desc {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    line-height: 1.65;
    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 {
    display: flex;
    flex-direction: column;
}

.hero__stat-val {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-gold);
}

.hero__stat-label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    text-align: center;
    margin-bottom: 36px;
}

.section-title h2 {
    margin-bottom: 10px;
}

.section-title p {
    color: var(--clr-text-muted);
    max-width: 580px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.section-title__line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-gold), transparent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.jackpots {
    background: var(--clr-nav-dark);
    padding: 52px 0;
}

.jackpots__grid {
    display: flex;
    gap: 18px;
}

.jackpot-card {
    flex: 1;
    background: linear-gradient(135deg, var(--clr-card), var(--clr-card-alt));
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

.jackpot-card--grand::before {
    background: linear-gradient(90deg, #e0a800, #f5d060, #e0a800);
}

.jackpot-card--major::before {
    background: linear-gradient(90deg, #c0c0c0, #e8e8e8, #c0c0c0);
}

.jackpot-card--mini::before {
    background: linear-gradient(90deg, #cd7f32, #e8a45a, #cd7f32);
}

.jackpot-card__label {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.jackpot-card--grand .jackpot-card__label {
    color: #f5d060;
}

.jackpot-card--major .jackpot-card__label {
    color: #c8c8c8;
}

.jackpot-card--mini .jackpot-card__label {
    color: #e8a45a;
}

.jackpot-card__icon {
    font-size: 2.5rem;
    margin-bottom: 6px;
}

.jackpot-card__amount {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--clr-gold);
    margin-bottom: 18px;
    transition: all 0.4s ease;
}

.jackpot-card__players {
    border-top: 1px solid var(--clr-border);
    padding-top: 14px;
}

.jackpot-card__players-title {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 9px;
}

.jackpot-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.8rem;
}

.jackpot-player__ava {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
    color: #1a0e05;
}

.jackpot-player__name {
    color: var(--clr-text-muted);
    flex: 1;
    text-align: left;
}

.jackpot-player__val {
    color: var(--clr-gold);
    font-weight: 600;
}

.video-section {
    padding: 52px 0;
    background: var(--clr-bg);
}

.video-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.video-tab {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid var(--clr-border);
    background: transparent;
    color: var(--clr-text-muted);
    font-size: 0.82rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all var(--transition);
}

.video-tab.active, .video-tab:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: #1a0e05;
    font-weight: 600;
}

.video-wrap {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--clr-border-gold);
    box-shadow: var(--shadow-gold);
    background: #000;
    aspect-ratio: 16/9;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.bonuses {
    padding: 52px 0;
    background: var(--clr-nav-dark);
}

.bonuses__grid {
    display: flex;
    gap: 18px;
}

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

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

.bonus-card__head {
    padding: 20px;
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.bonus-card__casino-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--clr-card-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--clr-gold);
    flex-shrink: 0;
    border: 1px solid var(--clr-border-gold);
}

.bonus-card__casino-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--clr-text);
}

.bonus-card__casino-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.75rem;
    color: var(--clr-gold);
}

.bonus-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonus-card__amount {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--clr-gold);
    line-height: 1.1;
}

.bonus-card__type {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.bonus-card__perks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
}

.bonus-card__perk {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.83rem;
    color: var(--clr-text-muted);
}

.bonus-card__perk-icon {
    color: var(--clr-green);
    flex-shrink: 0;
}

.bonus-card__footer {
    padding: 16px 20px;
    border-top: 1px solid var(--clr-border);
}

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

.demo-section {
    padding: 52px 0;
    background: var(--clr-bg);
}

.demo-wrap {
    border: 2px solid var(--clr-border-gold);
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    box-shadow: var(--shadow-gold);
}

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

.demo-cta {
    text-align: center;
    padding: 20px;
    background: var(--clr-card);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    border-top: 1px solid var(--clr-border);
}

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

.reviews {
    padding: 52px 0;
    background: var(--clr-nav-dark);
}

.reviews__grid {
    display: flex;
    gap: 18px;
    margin-bottom: 36px;
}

.review-card {
    flex: 1;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: transform var(--transition);
}

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

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

.review-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a0e05;
    flex-shrink: 0;
}

.review-card__name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--clr-text);
}

.review-card__date {
    font-size: 0.73rem;
    color: var(--clr-text-muted);
}

.review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.review-card__stars svg {
    width: 16px;
    height: 16px;
}

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

.review-form-wrap {
    max-width: 560px;
    margin: 0 auto;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.review-form-wrap h3 {
    margin-bottom: 20px;
    text-align: center;
}

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

.form-field label {
    font-size: 0.83rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.form-field input, .form-field textarea {
    background: var(--clr-nav-dark);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    padding: 10px 14px;
    transition: border-color var(--transition);
    outline: none;
}

.form-field input:focus, .form-field textarea:focus {
    border-color: var(--clr-gold);
}

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

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.form-success {
    display: none;
    background: rgba(78, 133, 76, 0.15);
    border: 1px solid var(--clr-green);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
    color: #7bd87a;
    font-size: 0.9rem;
    margin-top: 12px;
}

.content-review {
    padding: 52px 0;
    background: var(--clr-bg);
}

.content-review__inner {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.content-review__inner h2 {
    margin-bottom: 16px;
}

.content-review__inner h3 {
    margin: 24px 0 10px;
}

.content-review__inner p {
    color: var(--clr-text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.content-review__inner ul {
    padding-left: 1.4rem;
    margin-bottom: 12px;
}

.content-review__inner li {
    color: var(--clr-text-muted);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.content-review__inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 0.9rem;
    overflow-x: auto;
    display: block;
}

.content-review__inner table th {
    background: var(--clr-nav-dark);
    color: var(--clr-gold);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
}

.content-review__inner table td {
    padding: 9px 14px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    vertical-align: top;
}

.content-review__inner table tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.12);
}

.author-block {
    background: var(--clr-card-alt);
    border: 1px solid var(--clr-border-gold);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 32px;
}

.author-block__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #1a0e05;
    flex-shrink: 0;
}

.author-block__name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--clr-text);
    margin-bottom: 2px;
}

.author-block__title {
    font-size: 0.8rem;
    color: var(--clr-gold);
    margin-bottom: 8px;
}

.author-block__bio {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.author-block__link {
    font-size: 0.82rem;
    color: var(--clr-gold);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.author-block__link:hover {
    text-decoration: underline;
}

.faq-section {
    padding: 52px 0;
    background: var(--clr-nav-dark);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.faq-item__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: var(--clr-text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
}

.faq-item__q:hover {
    color: var(--clr-gold);
}

.faq-item__q svg {
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

.faq-item.open .faq-item__q {
    color: var(--clr-gold);
}

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

.faq-item.open .faq-item__a {
    max-height: 300px;
    padding: 0 20px 16px;
}

.faq-item__a p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.footer {
    background: var(--clr-nav-dark);
    border-top: 2px solid var(--clr-nav-border);
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer__top {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--clr-border);
}

.footer__brand {
    flex: 0 0 200px;
}

.footer__logo {
    margin-bottom: 12px;
}

.footer__logo img {
    height: 40px;
}

.footer__tagline {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.footer__col {
    flex: 1;
    min-width: 140px;
}

.footer__col-title {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 7px;
    list-style: none;
    padding: 0;
}

.footer__links a {
    color: var(--clr-text-muted);
    font-size: 0.83rem;
    transition: color var(--transition);
}

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

.footer__mid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 20px;
}

.footer__badges-label {
    font-size: 0.73rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.footer__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.footer__badge {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    font-family: 'Cinzel', serif;
    letter-spacing: 0.04em;
}

.footer__payments {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.footer__payment {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.footer__bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__legal {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 640px;
}

.footer__copy {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    flex-shrink: 0;
}

.footer__18plus {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--clr-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    flex-shrink: 0;
}

.pros-cons {
    padding: 52px 0;
    background: var(--clr-bg);
}

.pros-cons__grid {
    display: flex;
    gap: 18px;
}

.pros-cons__col {
    flex: 1;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.pros-cons__col--pros {
    border-top: 3px solid var(--clr-green);
}

.pros-cons__col--cons {
    border-top: 3px solid #c0392b;
}

.pros-cons__title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    margin-bottom: 16px;
}

.pros-cons__col--pros .pros-cons__title {
    color: var(--clr-green-light);
}

.pros-cons__col--cons .pros-cons__title {
    color: #e74c3c;
}

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

.pros-cons__item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.88rem;
    color: var(--clr-text-muted);
}

.pros-cons__item-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.pros-cons__col--pros .pros-cons__item-icon {
    color: var(--clr-green);
}

.pros-cons__col--cons .pros-cons__item-icon {
    color: #e74c3c;
}

.stats-bar {
    background: var(--clr-nav-dark);
    padding: 28px 0;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.stats-bar__grid {
    display: flex;
    gap: 0;
}

.stats-bar__item {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    border-right: 1px solid var(--clr-border);
}

.stats-bar__item:last-child {
    border-right: none;
}

.stats-bar__val {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-gold);
}

.stats-bar__label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breadcrumbs {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--clr-text-muted);
}

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

.breadcrumbs span {
    color: var(--clr-text-muted);
}

.text {
    line-height: 1.7;
}

.text h2 {
    margin-bottom: 14px;
}

.text h3 {
    margin-bottom: 10px;
    margin-top: 22px;
}

.text p {
    margin-bottom: 10px;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.text ul, .text ol {
    margin-bottom: 12px;
}

.text li {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.games-section {
    padding: 42px 0;
    background: var(--clr-nav-dark);
}

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

.game-tile {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 160px;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.game-tile:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-gold);
}

.game-tile__thumb {
    height: 90px;
    background: linear-gradient(135deg, var(--clr-card-alt), var(--clr-nav-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.game-tile__name {
    padding: 8px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-text);
    text-align: center;
}

@media (max-width: 900px) {
    .header__nav {
        display: none;
    }

    .header__online {
        display: none;
    }

    .lang-switcher {
        display: none;
    }

    .burger {
        display: flex;
    }

    .jackpots__grid {
        flex-direction: column;
    }

    .bonuses__grid {
        overflow-x: auto;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .bonus-card {
        min-width: 270px;
    }

    .reviews__grid {
        flex-direction: column;
    }

    .pros-cons__grid {
        flex-direction: column;
    }

    .stats-bar__grid {
        flex-wrap: wrap;
    }

    .stats-bar__item {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid var(--clr-border);
    }

    .footer__top {
        flex-direction: column;
    }

    .footer__brand {
        flex: none;
    }

    .hero__content {
        max-width: 100%;
    }

    .demo-wrap iframe {
        height: 320px;
    }

    .author-block {
        flex-direction: column;
    }

    .content-review__inner {
        padding: 22px;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 420px;
    }

    .hero__btns {
        flex-direction: column;
    }

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

    .hero__stats {
        gap: 16px;
    }

    .video-tabs {
        gap: 5px;
    }

    .widget {
        padding: 10px 48px 10px 18px;
    }

    .widget__text {
        display: none;
    }

    .section {
        padding: 36px 0;
    }

    .jackpot-card__amount {
        font-size: 1.5rem;
    }

    .bonuses__grid {
        flex-direction: column;
    }

    .bonus-card {
        min-width: auto;
    }

    .games-section__grid {
        justify-content: center;
    }

    .game-tile {
        width: 140px;
    }

    .review-form-wrap {
        padding: 20px;
    }

    .footer__mid {
        flex-direction: column;
    }
}

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

.elementor-invisible {
    visibility: hidden;
    height: 0;
}

.et_pb_section {
    margin: 0;
}

.entry-content {
    color: inherit;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--clr-nav-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--clr-border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--clr-gold-dark);
}
