@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&family=Rubik:wght@400;500;600;700&display=swap');

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

:root {
    --clr-header: #954D27;
    --clr-header-dark: #7a3d1e;
    --clr-btn-login: #762F2D;
    --clr-btn-reg: #00B862;
    --clr-bg: #D99340;
    --clr-bg-light: #e8a85a;
    --clr-bg-dark: #c47d2a;
    --clr-text-light: #fff8f0;
    --clr-text-dark: #1a0e00;
    --clr-text-muted: #f5e6d0;
    --clr-card-bg: #fff8f0;
    --clr-card-border: #c47d2a;
    --clr-accent: #00B862;
    --clr-accent2: #762F2D;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.10);
    --transition: 0.25s ease;
    --font-heading: 'Baloo 2', 'Rubik', sans-serif;
    --font-body: 'Poppins', 'Rubik', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

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

.btn--login:hover {
    background: #5e2422;
    color: #fff;
}

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

.btn--reg:hover {
    background: #009a50;
    color: #fff;
}

.btn--demo {
    background: #fff8f0;
    color: var(--clr-btn-login);
    border: 2px solid var(--clr-btn-login);
}

.btn--demo:hover {
    background: var(--clr-btn-login);
    color: #fff;
}

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

.btn--pulse {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 184, 98, 0.5);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 184, 98, 0);
    }
}

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

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

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

.header-logo img {
    height: 44px;
    width: auto;
    border-radius: var(--radius-sm);
}

.header-logo span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--clr-text-light);
    letter-spacing: 0.5px;
}

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

.header-nav a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--clr-text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.header-nav a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

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

.header-online {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.header-online .dot {
    width: 8px;
    height: 8px;
    background: var(--clr-accent);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: 0.3
    }
}

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

.lang-drop {
    position: relative;
}

.lang-drop button {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 0.85rem;
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background var(--transition);
}

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

.lang-drop .drop-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--clr-header-dark);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    min-width: 130px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition);
    z-index: 200;
}

.lang-drop.open .drop-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.lang-drop .drop-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: var(--clr-text-muted);
    font-size: 0.88rem;
    transition: background var(--transition);
    text-decoration: none;
}

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.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-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 18px 16px;
    background: var(--clr-header-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.open {
    display: flex;
    animation: slideDown 0.25s ease;
}

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

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

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

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

.mobile-nav .btn {
    margin: 4px 0;
    justify-content: center;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.hero-slide {
    display: none;
    position: relative;
    min-height: 420px;
    background: linear-gradient(135deg, #7a3d1e 0%, #954D27 40%, #c47d2a 100%);
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    display: flex;
    animation: fadeInSlide 0.6s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: scale(1.02)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: var(--clr-btn-reg);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    margin-bottom: 14px;
    text-balance: balance;
}

.hero-content p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    background: var(--clr-header);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.main-content {
    padding: 24px 0 40px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.84rem;
    color: #7a3d1e;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
}

.breadcrumbs a {
    color: var(--clr-btn-login);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .sep {
    color: #c47d2a;
}

.toc-block {
    background: var(--clr-card-bg);
    border: 1.5px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 22px 26px;
    margin-bottom: 26px;
    box-shadow: var(--shadow-sm);
}

.toc-block h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-btn-login);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px 16px;
    list-style: none;
}

.toc-list li a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--clr-text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.toc-list li a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: var(--clr-btn-login);
}

.toc-list li a:hover {
    background: rgba(149, 77, 39, 0.1);
    color: var(--clr-btn-login);
}

.section-block {
    background: var(--clr-card-bg);
    border: 1.5px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 28px 30px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    animation: fadeUp 0.4s ease both;
}

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

.section-block h2 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--clr-btn-login);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-block h2 svg {
    width: 22px;
    height: 22px;
    fill: var(--clr-btn-login);
}

.section-block h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-header);
    margin: 18px 0 8px;
}

.section-block p {
    color: #3a2210;
    line-height: 1.7;
    margin-bottom: 10px;
}

.section-block ul, .section-block ol {
    padding-left: 22px;
    margin-bottom: 12px;
}

.section-block li {
    margin-bottom: 6px;
    color: #3a2210;
    line-height: 1.65;
}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-md);
}

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

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

.bonus-card {
    background: linear-gradient(135deg, var(--clr-header) 0%, #7a3d1e 100%);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
    color: #fff;
}

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

.bonus-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.bonus-card .casino-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
    margin-bottom: 6px;
}

.bonus-card .bonus-amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffe083;
    line-height: 1.1;
    margin-bottom: 6px;
}

.bonus-card .bonus-desc {
    font-size: 0.88rem;
    opacity: 0.88;
    margin-bottom: 16px;
    line-height: 1.5;
}

.bonus-card .bonus-tag {
    display: inline-block;
    background: rgba(0, 184, 98, 0.2);
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}

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

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

.bonuses-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(149, 77, 39, 0.3);
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}

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

.demo-block-inner {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 24px;
    align-items: start;
}

.demo-frame-wrap {
    position: relative;
    background: #000;
    border-radius: var(--radius-md);
    aspect-ratio: 16/9;
}

.demo-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: var(--radius-md);
}

.demo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(119, 47, 45, 0.92), rgba(149, 77, 39, 0.88));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: opacity var(--transition);
}

.demo-overlay .play-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-overlay .play-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-left: 4px;
}

.demo-overlay p {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.demo-info {
    background: var(--clr-header);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    color: var(--clr-text-light);
}

.demo-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.demo-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
}

.demo-info-row:last-of-type {
    border-bottom: none;
}

.demo-info-row .label {
    opacity: 0.75;
}

.demo-info-row .value {
    font-weight: 600;
    color: #ffe083;
}

.demo-info .btn {
    width: 100%;
    justify-content: center;
    margin-top: 14px;
}

.game-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gi-item {
    background: #fff3e8;
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.gi-item .gi-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #7a3d1e;
    font-weight: 600;
}

.gi-item .gi-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text-dark);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.pros-box, .cons-box {
    border-radius: var(--radius-md);
    padding: 18px 20px;
}

.pros-box {
    background: #e8faf2;
    border: 1.5px solid #00B862;
}

.cons-box {
    background: #fdf0ef;
    border: 1.5px solid #c0392b;
}

.pros-box h3 {
    color: #00813f;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cons-box h3 {
    color: #c0392b;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.pros-box li, .cons-box li {
    padding: 5px 0 5px 22px;
    position: relative;
    font-size: 0.92rem;
    line-height: 1.55;
}

.pros-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00813f;
    font-weight: 700;
}

.cons-box li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: 700;
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px;
}

table {
    width: 100%;
    min-width: 400px;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0 auto;
    border-radius: var(--radius-sm);
    overflow: hidden;
    font-size: 0.9rem;
}

table thead {
    background: var(--clr-header);
    color: #fff;
}

table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    font-family: var(--font-heading);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

table td {
    padding: 11px 16px;
    text-align: left;
    border-bottom: 1px solid #e8c99a;
    background: var(--clr-card-bg);
}

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

table tr:hover td {
    background: #fff3e8;
}

.faq-item {
    border: 1.5px solid var(--clr-card-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    background: #fff8f0;
    font-weight: 600;
    font-size: 0.95rem;
    user-select: none;
    transition: background var(--transition);
}

.faq-q:hover {
    background: #fff0e0;
}

.faq-q .faq-arrow {
    transition: transform 0.3s;
    font-size: 1.1rem;
    color: var(--clr-btn-login);
    flex-shrink: 0;
}

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

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

.faq-a.open {
    max-height: 400px;
}

.faq-a-inner {
    padding: 14px 18px;
    font-size: 0.92rem;
    color: #3a2210;
    line-height: 1.7;
    border-top: 1px solid #e8c99a;
    background: var(--clr-card-bg);
}

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

.review-card {
    background: var(--clr-card-bg);
    border: 1.5px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
}

.review-stars {
    color: #f5a623;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.review-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #3a2210;
    margin-bottom: 12px;
    font-style: italic;
}

.review-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-header);
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--clr-header);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.related-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}

.related-game-card {
    background: var(--clr-header);
    border-radius: var(--radius-md);
    padding: 16px 14px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    display: block;
}

.related-game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    color: #ffe083;
}

.related-game-card .game-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.related-game-card .game-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}

.related-game-card .game-provider {
    font-size: 0.75rem;
    opacity: 0.75;
    margin-top: 3px;
}

.related-game-card .game-rtp {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 0.75rem;
    margin-top: 6px;
    display: inline-block;
}

.author-block {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 22px;
    align-items: start;
}

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

.author-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--clr-header);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    border: 4px solid var(--clr-bg-dark);
    flex-shrink: 0;
}

.author-meta h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--clr-btn-login);
    margin-bottom: 4px;
}

.author-meta .author-role {
    font-size: 0.83rem;
    color: #7a3d1e;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-meta p {
    font-size: 0.92rem;
    color: #3a2210;
    line-height: 1.7;
}

.author-links {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.author-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--clr-header);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition);
}

.author-links a:hover {
    background: var(--clr-header-dark);
    color: #fff;
}

.content-body {
    font-size: 0.97rem;
    color: #3a2210;
    line-height: 1.75;
}

.content-body h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-btn-login);
    margin: 24px 0 12px;
}

.content-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-header);
    margin: 18px 0 8px;
}

.content-body p {
    margin-bottom: 12px;
}

.content-body ul, .content-body ol {
    padding-left: 22px;
    margin-bottom: 12px;
}

.content-body li {
    margin-bottom: 6px;
    line-height: 1.65;
}

.content-body table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 16px 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.content-body table th {
    background: var(--clr-header);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
}

.content-body table td {
    padding: 10px 14px;
    border-bottom: 1px solid #e8c99a;
    background: var(--clr-card-bg);
}

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

.content-body a:hover {
    color: var(--clr-accent);
}

.content-body blockquote {
    border-left: 4px solid var(--clr-header);
    margin: 16px 0;
    padding: 10px 18px;
    background: #fff3e8;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 240px 1fr 1fr;
    gap: 32px;
    padding: 36px 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo-wrap img {
    height: 44px;
    width: auto;
    border-radius: var(--radius-sm);
}

.footer-logo-wrap .footer-desc {
    font-size: 0.83rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 7px;
}

.footer-col ul li a {
    color: var(--clr-text-muted);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

.footer-trust-item svg {
    width: 18px;
    height: 18px;
    fill: #ffe083;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    font-weight: 600;
}

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.6;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.technical-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 28px 30px;
}

.technical-content h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-btn-login);
    margin: 22px 0 10px;
}

.technical-content h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-header);
    margin: 16px 0 7px;
}

.technical-content p {
    margin-bottom: 12px;
    color: #3a2210;
    line-height: 1.75;
    font-size: 0.95rem;
}

.technical-content ul, .technical-content ol {
    padding-left: 22px;
    margin-bottom: 12px;
}

.technical-content li {
    margin-bottom: 6px;
    color: #3a2210;
    line-height: 1.65;
    font-size: 0.95rem;
}

.text h1, .text > h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--clr-btn-login);
    margin-bottom: 20px;
    line-height: 1.25;
}

.wp-nv-dg83 {
    display: none;
}

.wpc-block-x8f2 {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

@media (max-width: 900px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

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

    .bonuses-dots {
        display: flex;
    }

    .demo-block-inner {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 640px) {
    .header-inner {
        padding: 8px 14px;
    }

    .header-logo span {
        display: none;
    }

    .hero-slide {
        min-height: 280px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .section-block {
        padding: 18px 16px;
    }

    .toc-list {
        grid-template-columns: 1fr 1fr;
    }

    .game-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .author-block {
        grid-template-columns: 1fr;
    }

    .author-avatar, .author-avatar-placeholder {
        margin: 0 auto;
    }

    .header-actions .btn--login {
        display: none;
    }


    .widget-actions {
        width: 100%;
        justify-content: center;
    }

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

@media (max-width: 400px) {
    .toc-list {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 28px 16px;
    }
}

@media (max-width: 768px) {
    a,
    p,
    li,
    span,
    div,
    td,
    th {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .container,
    .lohtfvw,
    .bxvcsd,
    .content-block,
    .technical-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .content-block a,
    .technical-content a,
    .lohtfvw a,
    .bxvcsd a {
        display: inline-block;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    img,
    iframe,
    table {
        max-width: 100%;
    }

    table {
        display: block;
        overflow-x: auto;
    }

    pre,
    code {
        white-space: pre-wrap;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    a {
        word-break: break-all;
    }
}

@media (max-width: 900px) {
    .demo-block-inner {
        grid-template-columns:1fr;
    }

    .demo-frame-wrap {
        position: relative;
        width: 100%;
        aspect-ratio: auto;
        height: 520px;
        min-height: 520px;
        touch-action: auto;
    }

    .demo-frame-wrap iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
        pointer-events: auto;
        touch-action: auto;
        z-index: 2;
    }

    .demo-info {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 640px) {
    .demo-frame-wrap {
        height: 580px;
        min-height: 580px;
    }
}

@media (max-width: 420px) {
    .demo-frame-wrap {
        height: 540px;
        min-height: 540px;
    }
}

@media (max-width: 900px) {
    .demo-frame-wrap {
        position: relative;
        height: 75svh;
        min-height: 560px;
        max-height: none;
        overflow: visible;
        background: transparent;
        touch-action: auto;
        -webkit-overflow-scrolling: touch;
    }

    .demo-frame-wrap iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
        pointer-events: auto;
        touch-action: auto;
        z-index: 50;
    }

    .demo-block-inner,
    .section-block {
        overflow: visible;
    }

    .demo-info {
        position: relative;
        z-index: 1;
        margin-top: 16px;
    }
}

@media (max-width: 767px) {
    .demo-section-zx9k4m7p {
        min-height: 100svh;
        display: flex;
        align-items: stretch;
        padding: 0;
    }

    .demo-section-zx9k4m7p > .container-fluid.vh8p3k1x {
        width: 100%;
        display: flex;
        flex-direction: column;
        min-height: 100svh;
        padding: 18px 14px 20px;
    }

    .demo-wrapper-lv8k3m2p {
        flex: 1;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }

    .demo-iframe-container-nz5k2m8p {
        flex: 1;
        width: 100%;
        padding-bottom: 0;
        min-height: 0;
        border-radius: 14px;
    }

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

    .demo-px2k8m5t {
        margin-top: 14px;
    }

    .btn-demo-play-kz9m3p7x {
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 767px) {
    .demo-iframe-container-nz5k2m8p {
        touch-action: manipulation;
    }

    .demo-iframe-qx7k4m9p {
        pointer-events: auto;
        touch-action: manipulation;
    }

    .demo-overlay-px2k8m5t {
        pointer-events: none;
    }

    .demo-px2k8m5t {
        position: relative;
        z-index: 5;
        pointer-events: auto;
    }
}

.fixed-widget-bottom-zx9k4m2p {
    pointer-events: none;
}

.fixed-widget-bottom-zx9k4m2p * {
    pointer-events: auto;
}


.demo-wrapper-lv8k3m2p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.demo-description-mx7k9p4t {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.demo-iframe-container-nz5k2m8p {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: linear-gradient(145deg, #2d1b5e 0%, #3e2875 100%);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.demo-overlay-px2k8m5t {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
}

.btn-demo-play-kz9m3p7x {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-btn-signup);
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 10px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-demo-play-kz9m3p7x:hover {
    background: #ffe092;
    transform: scale(1.1);
}