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

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

:root {
    --clr-bg: #1a0a03;
    --clr-header: #371d10;
    --clr-header-dark: #2a1509;
    --clr-btn-primary: #25690e;
    --clr-btn-primary-hover: #2e7f10;
    --clr-btn-secondary: #680f09;
    --clr-btn-secondary-hover: #7d1410;
    --clr-gold: #c9953a;
    --clr-gold-light: #e8b85a;
    --clr-gold-dim: #9a7030;
    --clr-text: #f0e6d3;
    --clr-text-muted: #b89f85;
    --clr-text-dark: #7a5c3e;
    --clr-border: #4a2a15;
    --clr-border-gold: #6b4a20;
    --clr-card: #241208;
    --clr-card-hover: #2e1a0c;
    --clr-overlay: rgba(26, 10, 3, 0.82);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Open Sans', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.55);
    --shadow-btn: 0 2px 12px rgba(0, 0, 0, 0.4);
    --transition: 0.25s ease;
}

html {
    background: var(--clr-bg);
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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 {
    font-family: var(--font-heading);
    color: var(--clr-gold);
    line-height: 1.25;
}

p {
    margin-bottom: 0.85em;
}

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

li {
    margin-bottom: 0.3em;
}

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

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

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

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

.section {
    padding: 60px 0;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 0.04em;
}

.section-subtitle {
    text-align: center;
    color: var(--clr-text-muted);
    margin-bottom: 36px;
    font-size: 0.97rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-btn);
    white-space: nowrap;
    line-height: 1;
}

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

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

.btn--primary {
    background: linear-gradient(135deg, var(--clr-btn-primary), #1e5a0c);
    color: #fff;
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--clr-btn-primary-hover), #267010);
    color: #fff;
}

.btn--secondary {
    background: linear-gradient(135deg, var(--clr-btn-secondary), #540d08);
    color: #fff;
}

.btn--secondary:hover {
    background: linear-gradient(135deg, var(--clr-btn-secondary-hover), #650f09);
    color: #fff;
}

.btn--gold {
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dim));
    color: #1a0a03;
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
    color: #1a0a03;
}

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

.btn--sm {
    font-size: 0.78rem;
    padding: 8px 16px;
}

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

.header {
    background: linear-gradient(180deg, var(--clr-header-dark) 0%, var(--clr-header) 100%);
    border-bottom: 2px solid var(--clr-border-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.header .container {
    padding-top: 0;
    padding-bottom: 0;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    min-height: 68px;
}

.header-logo a {
    display: flex;
    align-items: center;
}

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

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

.header-nav a {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--clr-text);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-nav a:hover {
    color: var(--clr-gold);
    background: rgba(201, 149, 58, 0.1);
}

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

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

.header-online {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.header-online-dot {
    width: 7px;
    height: 7px;
    background: #3ddb44;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

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

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

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

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

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

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-header-dark);
    border-top: 1px solid var(--clr-border);
    border-bottom: 2px solid var(--clr-border-gold);
    padding: 16px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

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

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

.mobile-menu-nav a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--clr-text);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(74, 42, 21, 0.4);
}

.mobile-menu-nav a:last-child {
    border-bottom: none;
}

.mobile-menu-nav a:hover {
    color: var(--clr-gold);
    background: rgba(201, 149, 58, 0.08);
}

.mobile-menu-nav a svg {
    width: 16px;
    height: 16px;
}

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

.mobile-menu-actions .btn {
    flex: 1;
    min-width: 100px;
    justify-content: center;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/b-wild.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 10, 3, 0.88) 0%, rgba(55, 29, 16, 0.75) 50%, rgba(26, 10, 3, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.hero-text h1 {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    color: var(--clr-gold-light);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    margin-bottom: 14px;
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--clr-text);
    max-width: 520px;
    margin-bottom: 24px;
}

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

.bonus-card {
    background: linear-gradient(145deg, #2c1508, #1e0d04);
    border: 2px solid var(--clr-gold);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    min-width: 240px;
    box-shadow: 0 0 40px rgba(201, 149, 58, 0.2), var(--shadow-card);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.bonus-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(201, 149, 58, 0.08) 0%, transparent 70%);
}

.bonus-card-label {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-heading);
    margin-bottom: 6px;
}

.bonus-card-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--clr-gold-light);
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(201, 149, 58, 0.4);
}

.bonus-card-spins {
    font-size: 0.9rem;
    color: var(--clr-text);
    margin: 8px 0 18px;
}

.bonus-card-spins strong {
    color: var(--clr-gold);
}

.bonus-card-badge {
    display: inline-block;
    background: rgba(201, 149, 58, 0.15);
    border: 1px solid var(--clr-border-gold);
    color: var(--clr-text-muted);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
}

.pros-cons-section {
    padding: 56px 0;
}

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

.pros-cons-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
}

.pros-cons-card.pros {
    border-top: 3px solid #25690e;
}

.pros-cons-card.cons {
    border-top: 3px solid var(--clr-btn-secondary);
}

.pros-cons-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.pros-cons-header svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

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

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(74, 42, 21, 0.4);
    font-size: 0.93rem;
    color: var(--clr-text);
}

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

.pros-cons-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.pros-cons-card.pros li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%2325690e'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

.pros-cons-card.cons li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23680f09'/%3E%3Cpath d='M6 6l6 6M12 6l-6 6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

.video-section {
    padding: 56px 0;
}

.video-wrapper {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px;
    overflow: hidden;
}

.video-ratio {
    position: relative;
    padding-top: 56.25%;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.games-section {
    padding: 56px 0;
}

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

.game-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-color: var(--clr-border-gold);
}

.game-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c1508, #1e0d04);
    border: 2px solid var(--clr-border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.game-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.game-logo svg {
    width: 36px;
    height: 36px;
}

.game-name {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: var(--clr-gold);
    letter-spacing: 0.03em;
}

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

.games-slider-container {
    display: none;
}

.demo-section {
    padding: 56px 0;
}

.demo-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}

.demo-frame-wrapper {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 18px;
}

.demo-ratio {
    position: relative;
    padding-top: 56.25%;
    border-radius: var(--radius-sm);
    background: #0d0604;
}

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

.demo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-game-select {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.demo-game-select label {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: var(--clr-gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.demo-game-select select {
    width: 100%;
    background: #1a0a03;
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

.demo-game-select select:focus {
    border-color: var(--clr-gold);
}

.demo-cta-card {
    background: linear-gradient(145deg, #2c1508, #1e0d04);
    border: 1px solid var(--clr-border-gold);
    border-radius: var(--radius-md);
    padding: 22px;
    text-align: center;
}

.demo-cta-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.demo-cta-card p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.review-content {
    padding: 56px 0;
}

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

.content-block h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.content-block h3 {
    font-size: 1.25rem;
    margin: 24px 0 12px;
}

.content-block h4 {
    font-size: 1.05rem;
    margin: 18px 0 10px;
    color: var(--clr-gold-dim);
}

.content-block p {
    color: var(--clr-text);
    font-size: 0.97rem;
    line-height: 1.7;
}

.content-block ul, .content-block ol {
    color: var(--clr-text);
    font-size: 0.97rem;
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 0.93rem;
}

.content-block th {
    background: var(--clr-header);
    color: var(--clr-gold);
    font-family: var(--font-heading);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
}

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

.content-block tr:nth-child(even) td {
    background: rgba(55, 29, 16, 0.25);
}

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

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

.content-block blockquote {
    border-left: 3px solid var(--clr-gold);
    padding-left: 16px;
    margin: 16px 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.reviews-section {
    padding: 56px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color var(--transition);
}

.review-card:hover {
    border-color: var(--clr-border-gold);
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-header);
    border: 2px solid var(--clr-border-gold);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--clr-gold);
}

.review-meta h4 {
    font-size: 0.9rem;
    margin: 0;
    color: var(--clr-text);
    font-family: var(--font-heading);
}

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

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

.review-stars svg {
    width: 15px;
    height: 15px;
}

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

.review-form-wrapper {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 32px;
    max-width: 600px;
    margin: 0 auto;
}

.review-form-title {
    font-size: 1.2rem;
    margin-bottom: 22px;
    text-align: center;
}

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

.form-field label {
    font-size: 0.82rem;
    color: var(--clr-gold);
    font-family: var(--font-heading);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-field input, .form-field textarea {
    background: #1a0a03;
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}

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

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

.form-success {
    display: none;
    text-align: center;
    padding: 28px;
}

.form-success svg {
    width: 48px;
    height: 48px;
    color: #25690e;
    margin: 0 auto 12px;
}

.form-success h3 {
    color: var(--clr-gold);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.author-section {
    padding: 56px 0;
}

.author-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 32px;
}

.author-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: start;
}

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

.author-info h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.author-position {
    font-size: 0.82rem;
    color: var(--clr-gold);
    font-family: var(--font-heading);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.author-bio {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.author-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    background: rgba(74, 42, 21, 0.3);
    border: 1px solid var(--clr-border);
    padding: 6px 12px;
    border-radius: 20px;
    transition: border-color var(--transition), color var(--transition);
}

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

.author-link svg {
    width: 14px;
    height: 14px;
}

.author-dates {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

.author-dates span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-dates svg {
    width: 13px;
    height: 13px;
}

.footer {
    background: linear-gradient(180deg, var(--clr-header) 0%, var(--clr-header-dark) 100%);
    border-top: 2px solid var(--clr-border-gold);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.footer-brand-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

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

.footer-flag svg {
    width: 24px;
    height: 16px;
    border-radius: 2px;
}

.footer-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(74, 42, 21, 0.4);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), background var(--transition);
}

.footer-social-link:hover {
    border-color: var(--clr-gold);
    background: rgba(201, 149, 58, 0.1);
}

.footer-social-link svg {
    width: 15px;
    height: 15px;
    color: var(--clr-text-muted);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: var(--clr-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

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

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

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

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    color: var(--clr-text-muted);
    margin-top: 8px;
}

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

.footer-contact svg {
    width: 14px;
    height: 14px;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 28px 0;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 24px;
}

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

.footer-badges-label {
    font-size: 0.72rem;
    color: var(--clr-text-dark);
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    min-width: 80px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(55, 29, 16, 0.5);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.74rem;
    color: var(--clr-text-muted);
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.footer-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-badge--trust {
    border-color: #25690e;
    color: #4a9e2d;
}

.footer-badge--payment {
    border-color: var(--clr-border-gold);
    color: var(--clr-gold-dim);
}

.footer-legal {
    font-size: 0.76rem;
    color: var(--clr-text-dark);
    line-height: 1.6;
    text-align: center;
}

.footer-legal a {
    color: var(--clr-text-dark);
    text-decoration: underline;
}

.footer-legal a:hover {
    color: var(--clr-text-muted);
}

.footer-copyright {
    text-align: center;
    font-size: 0.78rem;
    color: var(--clr-text-dark);
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--clr-border);
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: linear-gradient(90deg, var(--clr-header-dark), #2a1a08, var(--clr-header-dark));
    border-top: 2px solid var(--clr-border-gold);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    padding: 10px 18px;
}

.sticky-widget-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    max-width: 1180px;
    margin: 0 auto;
}

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

.sticky-widget-text strong {
    color: var(--clr-gold);
    font-family: var(--font-heading);
}

.sticky-widget-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-text-muted);
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
    line-height: 1;
}

.sticky-widget-close:hover {
    color: var(--clr-text);
}

.sticky-widget-close svg {
    width: 18px;
    height: 18px;
    display: block;
}

.info-page-content {
    padding: 56px 0;
}

.info-page-content h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 24px;
}

.info-page-content h2 {
    font-size: 1.3rem;
    margin: 28px 0 12px;
}

.info-page-content p {
    color: var(--clr-text);
    margin-bottom: 14px;
    font-size: 0.96rem;
}

.info-page-content ul, .info-page-content ol {
    color: var(--clr-text);
    font-size: 0.96rem;
    margin-bottom: 14px;
}

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

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

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

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

.wp-content {
    display: none;
}

.elementor-widget-wrap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bonus-card {
        min-width: auto;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

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

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

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

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

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

    .burger {
        display: flex;
    }

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

    .games-grid {
        display: none;
    }

    .games-slider-container {
        display: block;
        position: relative;
        overflow: hidden;
    }

    .games-slider {
        display: flex;
        gap: 16px;
        transition: transform 0.3s ease;
    }

    .games-slider .game-card {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }

    .slider-controls {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 16px;
    }

    .slider-btn {
        background: rgba(74, 42, 21, 0.5);
        border: 1px solid var(--clr-border);
        color: var(--clr-text);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border-color var(--transition);
    }

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

    .slider-btn svg {
        width: 16px;
        height: 16px;
    }

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

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

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

    .author-photo {
        width: 80px;
        height: 80px;
    }

    .section {
        padding: 40px 0;
    }

    .sticky-widget-inner {
        flex-wrap: wrap;
    }

    .sticky-widget-text {
        font-size: 0.78rem;
    }

    .hero {
        min-height: 420px;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .games-slider .game-card {
        flex: 0 0 calc(75% - 8px);
        min-width: calc(75% - 8px);
    }

    .header-inner {
        gap: 8px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
    }

    .bonus-card-amount {
        font-size: 1.8rem;
    }
}

.c8f2a1b {
    display: none !important;
}

.x9d3e7f {
    visibility: hidden;
}

div[data-uid="wp-7f3a"] {
    display: none;
}

.bscdd {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1180px;
    min-width: 0;
    margin: 32px auto;
    padding: 32px;
    background: linear-gradient(145deg, rgba(46, 26, 12, .96), rgba(26, 10, 3, .98));
    border: 1px solid var(--clr-border-gold, #6b4a20);
    border-radius: var(--radius-md, 12px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(232, 184, 90, .08);
    color: var(--clr-text, #f0e6d3);
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.bscdd::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-gold, #c9953a), transparent);
}

.bscdd > * {
    max-width: 100%;
    min-width: 0;
}

.bscdd h1,
.bscdd h2,
.bscdd h3,
.bscdd h4,
.bscdd h5,
.bscdd h6 {
    overflow-wrap: anywhere;
}

.bscdd h1 {
    font-size: clamp(1.55rem, 4vw, 2.3rem);
    margin-bottom: 18px;
}

.bscdd h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin: 28px 0 14px;
}

.bscdd h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    margin: 22px 0 12px;
}

.bscdd p,
.bscdd li,
.bscdd blockquote,
.bscdd a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.bscdd p {
    line-height: 1.75;
}

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

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

.bscdd iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 8px;
}

.bscdd-table-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid var(--clr-border, #4a2a15);
    border-radius: 8px;
    -webkit-overflow-scrolling: touch;
}

.bscdd table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.bscdd th,
.bscdd td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border, #4a2a15);
    overflow-wrap: anywhere;
}

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

.bscdd button,
.bscdd .btn,
.bscdd input[type=submit] {
    max-width: 100%;
    white-space: normal;
}

.bscdd pre {
    width: 100%;
    overflow-x: auto;
    padding: 16px;
    background: #120703;
    border: 1px solid var(--clr-border, #4a2a15);
    border-radius: 8px;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .bscdd {
        width: calc(100% - 24px);
        margin: 20px 12px;
        padding: 22px 18px;
    }

    .bscdd::before {
        left: 16px;
        right: 16px;
    }

    .bscdd iframe {
        min-height: 300px;
    }

    .bscdd button,
    .bscdd .btn,
    .bscdd input[type=submit] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .bscdd {
        width: calc(100% - 16px);
        margin: 16px 8px;
        padding: 18px 14px;
        border-radius: 8px;
    }

    .bscdd h1 {
        font-size: 1.45rem;
    }

    .bscdd h2 {
        font-size: 1.25rem;
    }

    .bscdd h3 {
        font-size: 1.05rem;
    }

    .bscdd ul,
    .bscdd ol {
        padding-left: 1.1rem;
    }

    .bscdd iframe {
        min-height: 220px;
    }

    .bscdd table {
        min-width: 500px;
    }

    .bscdd th,
    .bscdd td {
        padding: 8px 10px;
        font-size: .82rem;
    }
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}