@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;600;700&display=swap');

:root {
    --clr-header: #1f1f1f;
    --clr-footer: #161616;
    --clr-bg: #681d4b;
    --clr-bg-dark: #4e1538;
    --clr-bg-card: #7c2459;
    --clr-btn-gold: #ffbd78;
    --clr-btn-gold-hover: #ffa94d;
    --clr-btn-green: #00b862;
    --clr-btn-green-hover: #00993f;
    --clr-text: #f5e6d3;
    --clr-text-muted: #c9a88a;
    --clr-accent: #ffbd78;
    --clr-border: rgba(255, 189, 120, 0.25);
    --font-heading: 'Bebas Neue', 'Arial Narrow', sans-serif;
    --font-body: 'Open Sans', Arial, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --transition: 0.22s ease;
}

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

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    line-height: 1.15;
    color: var(--clr-text);
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4em;
    text-shadow: 0 2px 12px rgba(255, 189, 120, 0.3);
}

.section-sub {
    color: var(--clr-text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-transform: uppercase;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.97);
}

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

.btn--gold:hover {
    background: var(--clr-btn-gold-hover);
    color: #1f1f1f;
    box-shadow: 0 0 16px rgba(255, 189, 120, 0.5);
}

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

.btn--green:hover {
    background: var(--clr-btn-green-hover);
    color: #fff;
    box-shadow: 0 0 16px rgba(0, 184, 98, 0.5);
}

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

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

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

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

.btn--pulse {
    animation: btnPulse 2.2s infinite;
}

@keyframes btnPulse {
    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);
    }
}

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

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 12px;
    flex-wrap: nowrap;
}

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

.hdr-logo img {
    height: 48px;
    width: auto;
}

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

.hdr-nav a {
    color: var(--clr-text-muted);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.hdr-nav a:hover {
    color: var(--clr-accent);
    background: rgba(255, 189, 120, 0.08);
}

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

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

.hdr-lang {
    position: relative;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background var(--transition);
}

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

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--clr-header);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    min-width: 120px;
    display: none;
    z-index: 200;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.lang-dropdown.active {
    display: block;
}

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

.lang-dropdown a:hover {
    background: rgba(255, 189, 120, 0.1);
    color: var(--clr-accent);
}

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

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

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 6, 14, 0.97);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 80px 24px 40px;
}

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

.mobile-menu a {
    color: var(--clr-text);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    width: 100%;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover {
    background: rgba(255, 189, 120, 0.1);
    color: var(--clr-accent);
}

.mobile-menu .mob-btns {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.mobile-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    color: var(--clr-text);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.hero-section {
    background: var(--clr-header);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/wolf-gold-hero.png');
    background-size: cover;
    background-position: center top;
    opacity: 0.38;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(31, 31, 31, 0.95) 0%, rgba(31, 31, 31, 0.7) 55%, rgba(31, 31, 31, 0.3) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 48px 0 52px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 189, 120, 0.12);
    border: 1px solid rgba(255, 189, 120, 0.3);
    border-radius: 30px;
    padding: 4px 14px;
    font-size: 0.78rem;
    color: var(--clr-accent);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    color: #fff;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--clr-accent);
}

.hero-desc {
    color: var(--clr-text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-accent);
}

.hero-stat span {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.hero-frame-wrap {
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    aspect-ratio: 16/10;
}

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

.page-section {
    padding: 52px 0;
}

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

.page-section--darker {
    background: var(--clr-header);
}

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

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

.demo-iframe-wrap {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}

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

.demo-footer {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.4);
    flex-wrap: wrap;
    gap: 10px;
}

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

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.adv-tile {
    background: var(--clr-bg-card);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    text-align: center;
    border: 1px solid var(--clr-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.adv-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.adv-tile svg {
    width: 36px;
    height: 36px;
    margin: 0 auto 12px;
    color: var(--clr-accent);
}

.adv-tile h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--clr-accent);
    margin-bottom: 6px;
}

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

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

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

.jackpot-card {
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    border: 2px solid var(--clr-border);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition);
}

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

.jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    z-index: 0;
}

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

.jackpot-card--mini {
    background: linear-gradient(135deg, #3a1a2a, #2a0f1e);
    border-color: rgba(200, 150, 80, 0.3);
}

.jackpot-card--major {
    background: linear-gradient(135deg, #1a2a3a, #0f1e2a);
    border-color: rgba(100, 180, 255, 0.3);
}

.jackpot-card--mega {
    background: linear-gradient(135deg, #2a1a0a, #3a2a00);
    border-color: rgba(255, 189, 120, 0.5);
}

.jackpot-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.jackpot-card--mini .jackpot-label {
    color: #c8967a;
}

.jackpot-card--major .jackpot-label {
    color: #64b4ff;
}

.jackpot-card--mega .jackpot-label {
    color: var(--clr-accent);
}

.jackpot-amount {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.jackpot-card--mini .jackpot-amount {
    color: #e8b090;
}

.jackpot-card--major .jackpot-amount {
    color: #90d0ff;
}

.jackpot-card--mega .jackpot-amount {
    color: #ffe090;
}

.jackpot-currency {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.jackpot-winners {
    margin-top: 14px;
    text-align: left;
}

.jackpot-winner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
}

.jackpot-winner:last-child {
    border-bottom: none;
}

.winner-nick {
    color: var(--clr-text-muted);
}

.winner-amt {
    color: var(--clr-accent);
    font-weight: 600;
}

.jackpot-crown {
    font-size: 1.5rem;
    margin-bottom: 6px;
    display: block;
}

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

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

.review-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius-md);
    padding: 22px;
    border: 1px solid var(--clr-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

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

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-btn-gold), var(--clr-bg-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--clr-header);
    flex-shrink: 0;
    font-weight: bold;
}

.review-meta strong {
    display: block;
    font-size: 0.95rem;
    color: var(--clr-text);
}

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

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

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

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

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

.review-form-wrap h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(255, 189, 120, 0.15);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    background: rgba(0, 184, 98, 0.12);
    border: 1px solid rgba(0, 184, 98, 0.3);
    border-radius: var(--radius-sm);
    color: #6ee7b7;
    font-size: 0.95rem;
}

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

.review-form-inner.hidden {
    display: none;
}

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

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.screenshots-grid img {
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.screenshots-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

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

.slider-track {
    display: flex;
    transition: transform 0.38s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.slider-item {
    flex: 0 0 100%;
    padding: 0 4px;
}

.slider-item img {
    width: 100%;
    border-radius: var(--radius-md);
    aspect-ratio: 16/10;
    object-fit: cover;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.slider-btn {
    background: rgba(255, 189, 120, 0.12);
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--clr-accent);
    transition: background var(--transition);
}

.slider-btn:hover {
    background: rgba(255, 189, 120, 0.25);
}

.slider-dots {
    display: flex;
    gap: 7px;
}

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

.slider-dot.active {
    background: var(--clr-accent);
}

.bonuses-section {
    padding: 52px 0;
}

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

.bonus-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    border: 1px solid var(--clr-border);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.bonus-badge {
    position: absolute;
    top: 14px;
    right: -22px;
    background: var(--clr-btn-green);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bonus-casino-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--clr-accent);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bonus-offer {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--clr-btn-green);
    margin: 8px 0;
    text-shadow: 0 0 18px rgba(0, 184, 98, 0.3);
}

.bonus-desc {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    line-height: 1.55;
}

.bonus-features {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.bonus-features li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    padding: 3px 0;
}

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

.bonus-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.bonus-rating strong {
    color: var(--clr-accent);
    font-size: 1.1rem;
}

.bonus-tnc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
}

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

.author-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 28px;
    border: 1px solid var(--clr-border);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-btn-gold), var(--clr-bg-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--clr-header);
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    color: var(--clr-text);
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.author-info a {
    font-size: 0.8rem;
    color: var(--clr-accent);
}

.review-content-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--clr-border);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--clr-text);
}

.review-content-block h1, .review-content-block h2, .review-content-block h3,
.review-content-block h4, .review-content-block h5, .review-content-block h6 {
    font-family: var(--font-heading);
    color: var(--clr-accent);
    margin: 1.4em 0 0.5em;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.review-content-block p {
    margin: 0 0 1em;
}

.review-content-block ul, .review-content-block ol {
    margin: 0.8em 0 1em 1.5em;
}

.review-content-block ul li, .review-content-block ol li {
    margin-bottom: 0.4em;
}

.review-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: 0.9rem;
    text-align: left;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: block;
    overflow-x: auto;
}

.review-content-block th {
    background: rgba(0, 0, 0, 0.5);
    color: var(--clr-accent);
    padding: 10px 14px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--clr-border);
}

.review-content-block td {
    padding: 9px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--clr-text-muted);
}

.review-content-block tr:last-child td {
    border-bottom: none;
}

.review-content-block tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

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

.review-content-block strong {
    color: var(--clr-text);
}

.review-content-block blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 10px 20px;
    margin: 1em 0;
    background: rgba(255, 189, 120, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.review-content-block img {
    border-radius: var(--radius-sm);
    margin: 1em 0;
}

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

.similar-section {
    padding: 52px 0;
}

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

.similar-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.similar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.similar-thumb {
    background: var(--clr-bg-dark);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--clr-accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--clr-border);
    position: relative;
    overflow: hidden;
}

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

.similar-thumb span {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.similar-body {
    padding: 18px;
}

.similar-provider {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.similar-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--clr-text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.similar-desc {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
    line-height: 1.55;
}

.similar-btns {
    display: flex;
    gap: 8px;
}

.ftr83k {
    background: var(--clr-footer);
    padding: 48px 0 0;
    margin-top: 60px;
}

.ftr-top {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ftr-logo img {
    height: 44px;
    margin-bottom: 14px;
}

.ftr-logo p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
}

.ftr-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

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

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

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

.ftr-col ul li a:hover {
    color: var(--clr-accent);
}

.ftr-mid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.payment-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.ftr-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: background var(--transition), color var(--transition);
}

.social-link:hover {
    background: rgba(255, 189, 120, 0.15);
    color: var(--clr-accent);
}

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

.ftr-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: border-color var(--transition), color var(--transition);
}

.trust-badge:hover {
    border-color: rgba(255, 189, 120, 0.3);
    color: rgba(255, 255, 255, 0.6);
}

.trust-badge svg {
    width: 13px;
    height: 13px;
}

.ftr-bottom {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.ftr-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.ftr-legal {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.22);
    max-width: 900px;
    line-height: 1.7;
}

.ftr-email {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.35);
}

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

.ftr-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.ftr-provider img {
    height: 28px;
    opacity: 0.5;
    filter: grayscale(1);
    transition: opacity var(--transition), filter var(--transition);
}

.ftr-provider img:hover {
    opacity: 0.8;
    filter: grayscale(0);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.au-flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.wgt-casino {
    position: fixed;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    width: 180px;
}

.wgt-casino-inner {
    background: var(--clr-header);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.wgt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255, 189, 120, 0.08);
    border-bottom: 1px solid var(--clr-border);
}

.wgt-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.wgt-toggle {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color var(--transition);
}

.wgt-toggle:hover {
    color: var(--clr-accent);
}

.wgt-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.wgt-casino.collapsed .wgt-toggle svg {
    transform: rotate(180deg);
}

.wgt-body {
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: 400px;
}

.wgt-casino.collapsed .wgt-body {
    max-height: 0;
}

.wgt-item {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wgt-item:last-child {
    border-bottom: none;
}

.wgt-rank {
    font-size: 0.68rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
}

.wgt-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--clr-text);
    margin-bottom: 4px;
}

.wgt-bonus {
    font-size: 0.73rem;
    color: var(--clr-btn-green);
    margin-bottom: 8px;
}

.wgt-btn {
    display: block;
    width: 100%;
    text-align: center;
}

.breadcrumb {
    padding: 10px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

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

.breadcrumb span {
    margin: 0 6px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.spec-table td {
    padding: 9px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
}

.spec-table td:first-child {
    color: var(--clr-text-muted);
    width: 45%;
}

.spec-table td:last-child {
    color: var(--clr-text);
    font-weight: 600;
}

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

.info-page-content {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--clr-border);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--clr-text);
}

.info-page-content h1, .info-page-content h2, .info-page-content h3 {
    font-family: var(--font-heading);
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 1.2em 0 0.5em;
}

.info-page-content p {
    margin: 0 0 1em;
}

.info-page-content ul, .info-page-content ol {
    margin: 0.8em 0 1em 1.6em;
}

.info-page-content li {
    margin-bottom: 0.4em;
}

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

.info-page-content strong {
    color: var(--clr-text);
}

.info-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    overflow-x: auto;
    display: block;
}

.info-page-content table th {
    background: rgba(255, 189, 120, 0.12);
    color: var(--clr-accent);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    text-align: left;
}

.info-page-content table td {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--clr-text);
    font-size: 0.9rem;
    vertical-align: top;
}

.info-page-content table tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.15);
}

.info-page-content form .form-group {
    margin-bottom: 16px;
}

.info-page-content form label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    font-weight: 600;
}

.info-page-content form input, .info-page-content form textarea {
    width: 100%;
    padding: 11px 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition);
}

.info-page-content form input:focus, .info-page-content form textarea:focus {
    border-color: var(--clr-accent);
}

.info-page-content form textarea {
    min-height: 110px;
    resize: vertical;
}

.info-page-content .breadcrumb {
    margin-bottom: 0;
}

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

.fade-in.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1100px) {
    .wgt-casino {
        display: none;
    }
}

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

    .burger {
        display: flex;
    }

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

    .hero-frame-wrap {
        max-width: 480px;
        margin: 0 auto;
    }

    .jackpot-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 28px auto 0;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 28px auto 0;
    }

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

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

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider {
        display: block;
    }
}

@media (max-width: 640px) {
    .hdr-lang {
        display: none;
    }

    .hero-stats {
        gap: 12px;
    }

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

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

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

    .review-content-block {
        padding: 20px;
    }

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

    .bonuses-section .bonuses-grid {
        display: none;
    }

    .bonuses-slider {
        display: block !important;
        margin-top: 28px;
    }
}

@media (min-width: 641px) {
    .screenshots-slider {
        display: none;
    }

    .bonuses-slider {
        display: none;
    }
}

.d8f3a {
    display: none;
}

.wp-block-group {
}

.wp-block-columns {
}

.elementor-widget-wrap {
}

.entry-content {
}

.wp-caption {
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 189, 120, 0.25);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 189, 120, 0.4);
}

::selection {
    background: rgba(255, 189, 120, 0.25);
    color: #fff;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.shimmer-text {
    background: linear-gradient(90deg, var(--clr-accent) 0%, #ffe4b5 40%, var(--clr-accent) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
