@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

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

:root {
    --clr-bg: #2d1401;
    --clr-bg-alt: #3a1c05;
    --clr-bg-card: #3f1e06;
    --clr-header: #c67200;
    --clr-header-dark: #a85f00;
    --clr-btn-primary: #062d4a;
    --clr-btn-primary-hover: #0a3d63;
    --clr-btn-play: #448d17;
    --clr-btn-play-hover: #56b31d;
    --clr-gold: #f0c040;
    --clr-gold-light: #ffd966;
    --clr-text: #f5e8d0;
    --clr-text-muted: #c9aa80;
    --clr-text-dark: #7a4e2a;
    --clr-border: #6b3b10;
    --clr-border-light: #8b5020;
    --clr-plus: #56c928;
    --clr-minus: #e04040;
    --clr-white: #ffffff;
    --radius: 10px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --transition: 0.22s ease;
    --font: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.65;
    font-size: 16px;
}

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;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    color: var(--clr-gold);
    font-weight: 700;
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    margin-bottom: 0.85rem;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 0.9rem;
}

ul, ol {
    padding-left: 1.4em;
    margin-bottom: 0.9rem;
}

li {
    margin-bottom: 0.3rem;
}

.bx4r2k {
    display: block;
}

.qw9m3j {
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.zt6p1n {
    opacity: 0;
    pointer-events: none;
    height: 0;
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

.btn--primary {
    background: var(--clr-btn-primary);
    color: var(--clr-white);
}

.btn--primary:hover {
    background: var(--clr-btn-primary-hover);
    color: var(--clr-white);
}

.btn--play {
    background: var(--clr-btn-play);
    color: var(--clr-white);
}

.btn--play:hover {
    background: var(--clr-btn-play-hover);
    color: var(--clr-white);
}

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

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

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

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

.btn--full {
    width: 100%;
}

.btn--bonus {
    background: linear-gradient(135deg, #c67200, #e08800);
    color: var(--clr-white);
}

.btn--bonus:hover {
    background: linear-gradient(135deg, #e08800, #c67200);
    color: var(--clr-white);
}

.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

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

.header-logo {
    flex-shrink: 0;
}

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

.header-logo .logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-white);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.header-logo .logo-text span {
    color: var(--clr-gold-light);
}

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

.header-nav a {
    color: var(--clr-white);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background var(--transition), color var(--transition);
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--clr-gold-light);
}

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

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

.lang-picker {
    position: relative;
}

.lang-picker__btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--clr-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background var(--transition);
    font-family: var(--font);
}

.lang-picker__btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lang-picker__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #3a1c05;
    border: 1px solid var(--clr-border-light);
    border-radius: 8px;
    min-width: 130px;
    display: none;
    z-index: 200;
    box-shadow: var(--shadow);
}

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

.lang-picker__dropdown a {
    display: block;
    padding: 8px 14px;
    color: var(--clr-text);
    font-size: 0.82rem;
    font-weight: 500;
    transition: background var(--transition);
}

.lang-picker__dropdown a:hover {
    background: rgba(198, 114, 0, 0.3);
    color: var(--clr-gold);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.burger span {
    display: block;
    height: 2px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

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

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

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

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 900;
    backdrop-filter: blur(3px);
}

.mobile-nav-overlay.open {
    display: block;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--clr-header-dark);
    z-index: 950;
    padding: 80px 20px 30px;
    overflow-y: auto;
    transition: right 0.35s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 4px;
    color: var(--clr-white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition);
}

.mobile-nav ul li a:hover {
    color: var(--clr-gold-light);
}

.mobile-nav svg {
    width: 18px;
    height: 18px;
}

.mobile-nav__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a0900 0%, #3a1c05 50%, #2d1401 100%);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.45;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 8, 0, 0.82) 0%, rgba(20, 8, 0, 0.4) 60%, transparent 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 60px 16px;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--clr-header);
    color: var(--clr-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--clr-gold);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
    max-width: 600px;
}

.hero__subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--clr-text-muted);
    max-width: 480px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--clr-border);
    display: inline-flex;
}

.hero__stars {
    display: flex;
    gap: 2px;
}

.hero__stars svg {
    width: 20px;
    height: 20px;
    fill: var(--clr-gold);
}

.hero__ratinginfo {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.hero__ratinginfo strong {
    color: var(--clr-gold);
    font-size: 1.05rem;
}

.breadcrumbs {
    background: var(--clr-bg-alt);
    border-bottom: 1px solid var(--clr-border);
    padding: 10px 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.breadcrumbs li + li::before {
    content: '/';
    margin-right: 6px;
    color: var(--clr-border-light);
}

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

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

.breadcrumbs li:last-child {
    color: var(--clr-text);
}

.section {
    padding: 52px 0;
}

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

.section__header {
    text-align: center;
    margin-bottom: 2rem;
}

.section__header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section__header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-header), var(--clr-gold));
    border-radius: 2px;
    margin: 8px auto 0;
}

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

.card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--clr-border-light);
}

.game-demo__wrap {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.game-demo__iframe-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    min-height: 300px;
}

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

.game-demo__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 24px;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--clr-border);
}

.game-demo__info {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.game-demo__info strong {
    color: var(--clr-gold);
}

.pros-cons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pros-cons__col {
    flex: 1 1 280px;
}

.pros-cons__col h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

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

.pros-cons__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pros-cons__list--pros li {
    background: rgba(86, 201, 40, 0.1);
    border: 1px solid rgba(86, 201, 40, 0.25);
}

.pros-cons__list--pros li svg {
    fill: var(--clr-plus);
    flex-shrink: 0;
    margin-top: 2px;
}

.pros-cons__list--cons li {
    background: rgba(224, 64, 64, 0.1);
    border: 1px solid rgba(224, 64, 64, 0.25);
}

.pros-cons__list--cons li svg {
    fill: var(--clr-minus);
    flex-shrink: 0;
    margin-top: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.review-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.review-card__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-header);
    flex-shrink: 0;
    background: var(--clr-bg-alt);
}

.review-card__name {
    font-weight: 700;
    color: var(--clr-gold);
    font-size: 0.92rem;
}

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

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

.review-card__stars svg {
    width: 16px;
    height: 16px;
    fill: var(--clr-gold);
}

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

.review-form {
    max-width: 560px;
    margin: 0 auto;
}

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

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.form-group input, .form-group textarea {
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border-light);
    color: var(--clr-text);
    padding: 10px 14px;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 0.9rem;
    transition: border-color var(--transition);
    outline: none;
}

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

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

.form-success {
    display: none;
    background: rgba(86, 201, 40, 0.15);
    border: 1px solid var(--clr-plus);
    color: var(--clr-plus);
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-top: 12px;
}

.form-success.visible {
    display: block;
}

.video-wrap {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.video-iframe-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

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

.video-caption {
    padding: 14px 20px;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    border-top: 1px solid var(--clr-border);
}

.bonuses-slider {
    overflow: hidden;
    position: relative;
}

.bonuses-track {
    display: flex;
    gap: 18px;
    transition: transform 0.4s ease;
}

.bonus-card {
    flex: 0 0 calc(33.333% - 12px);
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-header), var(--clr-gold));
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--clr-border-light);
}

.bonus-card__badge {
    display: inline-flex;
    align-items: center;
    background: var(--clr-btn-play);
    color: var(--clr-white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.bonus-card__casino {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--clr-gold);
}

.bonus-card__offer {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--clr-white);
    line-height: 1.2;
}

.bonus-card__details {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.bonus-card__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.bonus-card__rating-stars {
    display: flex;
    gap: 1px;
}

.bonus-card__rating-stars svg {
    width: 13px;
    height: 13px;
    fill: var(--clr-gold);
}

.bonuses-nav {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.bonuses-nav button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border-light);
    color: var(--clr-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.bonuses-nav button:hover {
    background: var(--clr-header);
}

.bonuses-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.bonuses-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-border-light);
    cursor: pointer;
    transition: background 0.3s;
}

.bonuses-dot.active {
    background: var(--clr-gold);
}

.content-block {
    max-width: 860px;
    margin: 0 auto;
}

.content-block h2, .content-block h3, .content-block h4 {
    color: var(--clr-gold);
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.content-block p {
    color: var(--clr-text);
    margin-bottom: 0.9rem;
    line-height: 1.7;
}

.content-block ul, .content-block ol {
    color: var(--clr-text);
    padding-left: 1.5em;
    margin-bottom: 0.9rem;
}

.content-block li {
    margin-bottom: 0.35rem;
    line-height: 1.6;
}

.content-block a {
    color: var(--clr-gold);
}

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

.content-block strong, .content-block b {
    color: var(--clr-gold-light);
}

.content-block em, .content-block i {
    color: var(--clr-text-muted);
}

.content-block blockquote {
    border-left: 4px solid var(--clr-header);
    padding: 12px 18px;
    margin: 1rem 0;
    background: rgba(198, 114, 0, 0.08);
    border-radius: 0 8px 8px 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    overflow-x: auto;
    display: block;
}

.content-block table th {
    background: var(--clr-header);
    color: var(--clr-white);
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
}

.content-block table td {
    padding: 9px 14px;
    border: 1px solid var(--clr-border);
    font-size: 0.9rem;
}

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

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

.content-block img {
    border-radius: 8px;
    margin: 0.8rem 0;
}

.content-block code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.88em;
}

.content-block pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 14px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.author-bio {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.author-bio__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-header);
    flex-shrink: 0;
}

.author-bio__info {
    flex: 1;
    min-width: 200px;
}

.author-bio__name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--clr-gold);
    margin-bottom: 4px;
}

.author-bio__title {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
}

.author-bio__text {
    font-size: 0.87rem;
    color: var(--clr-text);
    line-height: 1.6;
}

.author-bio__links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.author-bio__links a {
    font-size: 0.8rem;
    color: var(--clr-gold);
    border: 1px solid var(--clr-border-light);
    padding: 3px 10px;
    border-radius: 20px;
}

.author-bio__links a:hover {
    background: var(--clr-header);
    color: var(--clr-white);
    border-color: var(--clr-header);
}

.similar-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.sim-game-card {
    display: flex;
    flex-direction: column;
}

.sim-game-card__thumb {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.sim-game-card__body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.sim-game-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-gold);
}

.sim-game-card__desc {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    flex: 1;
}

.sim-game-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.sim-game-card__actions .btn {
    flex: 1;
    font-size: 0.78rem;
    padding: 7px 8px;
}

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

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

.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 18px;
    cursor: pointer;
    font-weight: 700;
    color: var(--clr-text);
    transition: background var(--transition);
}

.faq-item__q:hover {
    background: rgba(198, 114, 0, 0.15);
}

.faq-item__q svg {
    flex-shrink: 0;
    transition: transform 0.3s;
    fill: var(--clr-gold);
    width: 18px;
    height: 18px;
}

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

.faq-item__a {
    display: none;
    padding: 0 18px 16px;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-item__a {
    display: block;
}

.site-footer {
    background: var(--clr-header-dark);
    margin-top: auto;
}

.footer-top {
    padding: 40px 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
}

.footer-col {
    flex: 1 1 180px;
    min-width: 140px;
}

.footer-col h4 {
    color: var(--clr-white);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.83rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--clr-gold-light);
}

.footer-logo {
    margin-bottom: 12px;
}

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

.footer-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 240px;
}

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

.footer-logos img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.65);
    transition: opacity 0.2s;
}

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

.footer-trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    transition: background var(--transition);
}

.footer-social a:hover {
    background: var(--clr-gold);
    color: var(--clr-bg);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    padding: 16px 0;
}

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

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

.footer-trust-badge--18 {
    background: var(--clr-btn-play);
    color: var(--clr-white);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
}

.footer-legal {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    max-width: 860px;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-flag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-au-flag {
    width: 24px;
    height: auto;
    border-radius: 3px;
}

.casino-widget {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 800;
    width: 220px;
    transition: transform 0.35s ease, right 0.35s ease;
}

.casino-widget.collapsed {
    right: -200px;
}

.casino-widget__toggle {
    position: absolute;
    left: -36px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 80px;
    background: var(--clr-header);
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.4);
    border: none;
    flex-direction: column;
    gap: 2px;
    padding: 0;
}

.casino-widget__toggle span {
    display: block;
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--clr-white);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    letter-spacing: 1px;
    line-height: 1;
}

.casino-widget__toggle svg {
    width: 16px;
    height: 16px;
    fill: var(--clr-white);
    transition: transform 0.3s;
}

.casino-widget.collapsed .casino-widget__toggle svg {
    transform: rotate(180deg);
}

.casino-widget__inner {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border-light);
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.casino-widget__header {
    background: var(--clr-header);
    padding: 10px 12px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-white);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.casino-widget__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.casino-widget__item {
    padding: 12px 12px 10px;
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.casino-widget__item:last-child {
    border-bottom: none;
}

.casino-widget__pos {
    font-size: 0.65rem;
    color: var(--clr-text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.casino-widget__name {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--clr-gold);
}

.casino-widget__offer {
    font-size: 0.78rem;
    color: var(--clr-text);
    line-height: 1.4;
}

.casino-widget__btn {
    width: 100%;
    padding: 7px;
    font-size: 0.78rem;
}

.info-page-content {
    max-width: 860px;
    margin: 40px auto;
    padding: 0 16px 60px;
}

.info-page-content h1 {
    margin-bottom: 1.5rem;
}

.info-page-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.info-page-content h2 {
    margin-top: 1.8rem;
    margin-bottom: 0.6rem;
}

.xp4f8q {
    display: none;
    font-size: 0;
}

.mb5r1h {
    margin: 0;
    padding: 0;
    border: 0;
}

.j9kw2z {
    color: transparent;
}

.wp-block-group {
    display: block;
}

.entry-content {
    display: block;
}

.wp-caption {
    display: block;
}

.elementor-widget-container {
    display: block;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.attachment-full {
    max-width: 100%;
}

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

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

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

    .burger {
        display: flex;
    }

    .casino-widget {
        display: none;
    }

    .bonus-card {
        flex: 0 0 calc(100% - 0px);
    }

    .bonuses-nav {
        display: flex;
    }

    .bonuses-dots {
        display: flex;
    }
}

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

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

    .footer-grid {
        gap: 22px;
    }

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

    .similar-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-demo__footer {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .author-bio__links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .similar-games-grid {
        grid-template-columns: 1fr;
    }

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

    .header-inner {
        gap: 8px;
    }

    .header-actions .btn--sm:not(.btn--play):not(.btn--bonus) {
        display: none;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 9px 12px;
    border: 1px solid var(--clr-border);
    text-align: left;
}

th {
    background: rgba(198, 114, 0, 0.3);
    color: var(--clr-gold);
    font-weight: 700;
}

tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bxvcs {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 24px 0;
    padding: 28px 30px;
    overflow: hidden;
    color: var(--clr-text, #f5e8d0);
    background: var(--clr-bg-card, #3f1e06);
    border: 1px solid var(--clr-border-light, #8b5020);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .04);
    overflow-wrap: anywhere;
    word-break: normal;
}

.bxvcs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
            90deg,
            var(--clr-header, #c67200),
            var(--clr-gold, #f0c040),
            var(--clr-header, #c67200)
    );
}

.bxvcs,
.bxvcs * {
    box-sizing: border-box;
    max-width: 100%;
}

.bxvcs > *:first-child {
    margin-top: 0;
}

.bxvcs > *:last-child {
    margin-bottom: 0;
}

.bxvcs h1,
.bxvcs h2,
.bxvcs h3,
.bxvcs h4,
.bxvcs h5,
.bxvcs h6 {
    max-width: 100%;
    margin-top: 1.35em;
    margin-bottom: .65em;
    overflow-wrap: anywhere;
    line-height: 1.25;
}

.bxvcs h1:first-child,
.bxvcs h2:first-child,
.bxvcs h3:first-child {
    margin-top: 0;
}

.bxvcs p,
.bxvcs li,
.bxvcs a,
.bxvcs span,
.bxvcs strong {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.bxvcs p {
    margin-bottom: 1em;
    line-height: 1.7;
}

.bxvcs ul,
.bxvcs ol {
    max-width: 100%;
    margin: 12px 0 18px;
    padding-left: 24px;
}

.bxvcs li {
    margin-bottom: 7px;
    padding-left: 2px;
}

.bxvcs img,
.bxvcs video,
.bxvcs canvas,
.bxvcs svg {
    display: block;
    max-width: 100%;
    height: auto;
}

.bxvcs iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 12px;
}

.bxvcs figure {
    width: 100%;
    max-width: 100%;
    margin: 18px 0;
}

.bxvcs pre {
    width: 100%;
    max-width: 100%;
    margin: 16px 0;
    padding: 14px 16px;
    overflow-x: auto;
    white-space: pre;
    border-radius: 10px;
    background: rgba(0, 0, 0, .32);
    -webkit-overflow-scrolling: touch;
}

.bxvcs code {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.bxvcs table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.bxvcs table th,
.bxvcs table td {
    padding: 10px 12px;
    border: 1px solid var(--clr-border, #6b3b10);
    text-align: left;
    vertical-align: top;
    white-space: normal;
    overflow-wrap: anywhere;
}

.bxvcs table th {
    background: rgba(198, 114, 0, .28);
    color: var(--clr-gold, #f0c040);
}

.bxvcs .table-wrap,
.bxvcs .table-scroll,
.bxvcs > table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bxvcs > table {
    display: block;
    max-width: 100%;
}

.bxvcs blockquote {
    max-width: 100%;
    margin: 18px 0;
    padding: 14px 18px;
    border-left: 4px solid var(--clr-gold, #f0c040);
    border-radius: 0 10px 10px 0;
    background: rgba(198, 114, 0, .1);
    overflow-wrap: anywhere;
}

.bxvcs input,
.bxvcs textarea,
.bxvcs select,
.bxvcs button {
    max-width: 100%;
}

@media (max-width: 768px) {
    .bxvcs {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 18px 0;
        padding: 22px 18px;
        border-radius: 14px;
        overflow: hidden;
    }

    .bxvcs h1 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .bxvcs h2 {
        font-size: clamp(20px, 6vw, 27px);
    }

    .bxvcs h3 {
        font-size: clamp(18px, 5vw, 23px);
    }

    .bxvcs p,
    .bxvcs li {
        font-size: 15px;
        line-height: 1.65;
    }

    .bxvcs ul,
    .bxvcs ol {
        padding-left: 20px;
    }

    .bxvcs iframe {
        min-height: 260px;
    }

    .bxvcs table {
        min-width: 540px;
        font-size: 14px;
    }

    .bxvcs table th,
    .bxvcs table td {
        padding: 9px 10px;
    }
}

@media (max-width: 480px) {
    .bxvcs {
        margin: 14px 0;
        padding: 18px 14px;
        border-radius: 12px;
    }

    .bxvcs::before {
        height: 3px;
    }

    .bxvcs h1 {
        font-size: 25px;
    }

    .bxvcs h2 {
        font-size: 21px;
    }

    .bxvcs h3 {
        font-size: 18px;
    }

    .bxvcs iframe {
        min-height: 220px;
        border-radius: 8px;
    }

    .bxvcs blockquote {
        padding: 12px 14px;
    }

    .bxvcs pre {
        padding: 12px;
        font-size: 13px;
    }
}

.bor-demo-k7 {
    position: relative;
    width: 100%;
    padding: 52px 0;
    background: #3a1c05;
}

.bor-demo-k7__container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

.bor-demo-k7__heading {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.bor-demo-k7__heading h2 {
    margin: 0 0 10px;
    color: #f0c040;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.2;
}

.bor-demo-k7__heading p {
    margin: 0;
    color: #c9aa80;
    font-size: 16px;
    line-height: 1.65;
}

.bor-demo-k7__card {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #1a0800;
    border: 2px solid #c67200;
    border-radius: 16px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, .42);
}

.bor-demo-k7__frame {
    display: block;
    width: 100%;
    height: 540px;
    margin: 0;
    padding: 0;
    border: 0;
    background: #000;
    pointer-events: auto;
    touch-action: auto;
}

.bor-demo-k7__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding: 16px 24px;
    background: #0f0500;
    border-top: 1px solid rgba(198, 114, 0, .45);
}

.bor-demo-k7__info {
    flex: 1 1 420px;
    min-width: 0;
    color: #a89070;
    font-size: 14px;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.bor-demo-k7__info strong {
    color: #f5c842;
}

.bor-demo-k7__info span {
    margin: 0 6px;
    color: #6b3b10;
}

.bor-demo-k7__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 11px 20px;
    border-radius: 9px;
    background: #448d17;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s ease, transform .2s ease;
}

.bor-demo-k7__button:hover {
    background: #56b31d;
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .bor-demo-k7 {
        padding: 32px 0;
    }

    .bor-demo-k7__container {
        padding: 0 12px;
    }

    .bor-demo-k7__heading {
        margin-bottom: 20px;
        padding: 0 4px;
    }

    .bor-demo-k7__heading h2 {
        font-size: 24px;
    }

    .bor-demo-k7__heading p {
        font-size: 14px;
    }

    .bor-demo-k7__card {
        border-radius: 12px;
    }

    .bor-demo-k7__frame {
        height: 72svh;
        min-height: 500px;
        max-height: 720px;
    }

    .bor-demo-k7__footer {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
    }

    .bor-demo-k7__info {
        flex: 0 1 auto;
        width: 100%;
        text-align: center;
        font-size: 13px;
    }

    .bor-demo-k7__info span {
        display: none;
    }

    .bor-demo-k7__button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .bor-demo-k7__container {
        padding: 0 8px;
    }

    .bor-demo-k7__card {
        border-width: 1px;
        border-radius: 10px;
    }

    .bor-demo-k7__frame {
        height: 68svh;
        min-height: 460px;
    }

    .bor-demo-k7__footer {
        padding: 12px;
    }
}

@media (max-width: 768px) {
   
    #demo {
        position: relative !important;
        z-index: 2147483000 !important;
        isolation: isolate !important;
        pointer-events: auto !important;
        transform: none !important;
        filter: none !important;
    }

    #demo .container,
    #demo .bor-demo-k7__card,
    #demo .demo-block,
    #demo .game-demo__wrap,
    #demo .game-demo__iframe-wrap {
        position: relative !important;
        z-index: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    #demo iframe {
        position: relative !important;
        z-index: 2147483647 !important;
        display: block !important;
        width: 100% !important;
        height: 600px !important;
        min-height: 600px !important;
        border: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
    }

    #demo::before,
    #demo::after,
    #demo .container::before,
    #demo .container::after,
    #demo .bor-demo-k7__card::before,
    #demo .bor-demo-k7__card::after,
    #demo .demo-block::before,
    #demo .demo-block::after,
    #demo .game-demo__wrap::before,
    #demo .game-demo__wrap::after,
    #demo .game-demo__iframe-wrap::before,
    #demo .game-demo__iframe-wrap::after {
        display: none !important;
        content: none !important;
        pointer-events: none !important;
    }

    .mobile-nav-overlay:not(.open),
    .mobile-menu-overlay:not(.open),
    .menu-overlay:not(.active),
    .overlay:not(.open):not(.active),
    .modal-backdrop:not(.show),
    .cookie-overlay:not(.active) {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .casino-widget,
    .sticky-widget,
    .floating-widget,
    .floating-button,
    .scroll-top,
    .scroll-top-btn {
        display: none !important;
    }
}