:root {
    --color-header: #D6B25D;
    --color-header-dark: #c4a04a;
    --color-btn-login: #CA9B05;
    --color-btn-login-hover: #b88a04;
    --color-btn-reg: #C0F022;
    --color-btn-reg-hover: #aade0f;
    --color-bg: #989255;
    --color-bg-dark: #7a7540;
    --color-bg-section: #877f4a;
    --color-bg-card: #b0a960;
    --color-bg-card-dark: #9a9352;
    --color-text-light: #fff9ee;
    --color-text-dark: #1a1600;
    --color-text-muted: #f5edd5;
    --color-text-accent: #ffe082;
    --color-border: rgba(214, 178, 93, 0.4);
    --color-border-strong: rgba(214, 178, 93, 0.8);
    --color-jackpot-gold: #FFD700;
    --color-jackpot-silver: #C0C0C0;
    --color-jackpot-bronze: #cd7f32;
    --color-star: #FFD700;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Poppins', 'Lato', sans-serif;
    --font-ui: 'Montserrat', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.25);
    --shadow-btn: 0 2px 12px rgba(202, 155, 5, 0.4);
    --transition: 0.25s ease;
    --container-max: 1200px;
}

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

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

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

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

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-demo {
    background: var(--color-btn-login);
    color: var(--color-text-dark);
    box-shadow: var(--shadow-btn);
}

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

.btn-play {
    background: var(--color-btn-reg);
    color: var(--color-text-dark);
    box-shadow: 0 2px 12px rgba(192, 240, 34, 0.4);
}

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

.btn-demo-hero {
    background: var(--color-btn-login);
    color: var(--color-text-dark);
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(202, 155, 5, 0.5);
}

.btn-demo-hero:hover {
    background: var(--color-btn-login-hover);
    transform: translateY(-3px);
}

.btn-play-hero {
    background: var(--color-btn-reg);
    color: var(--color-text-dark);
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(192, 240, 34, 0.4);
}

.btn-play-hero:hover {
    background: var(--color-btn-reg-hover);
    transform: translateY(-3px);
}

.btn-jackpot {
    background: linear-gradient(135deg, var(--color-btn-login), var(--color-btn-login-hover));
    color: var(--color-text-dark);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    width: 100%;
    justify-content: center;
}

.btn-bonus-card {
    background: var(--color-btn-reg);
    color: var(--color-text-dark);
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    width: 100%;
    justify-content: center;
    margin-top: 0.75rem;
    box-shadow: 0 2px 10px rgba(192, 240, 34, 0.35);
}

.btn-bonus-card:hover {
    background: var(--color-btn-reg-hover);
}

.btn-play-money {
    background: var(--color-btn-reg);
    color: var(--color-text-dark);
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(192, 240, 34, 0.4);
}

.btn-play-money:hover {
    background: var(--color-btn-reg-hover);
    transform: translateY(-2px);
}

.btn-demo-launch {
    background: var(--color-btn-login);
    color: var(--color-text-dark);
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(202, 155, 5, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform var(--transition), background var(--transition);
}

.btn-demo-launch:hover {
    background: var(--color-btn-login-hover);
    transform: translateY(-2px);
}

.btn-widget-reg {
    background: var(--color-btn-reg);
    color: var(--color-text-dark);
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 12px rgba(192, 240, 34, 0.4);
    white-space: nowrap;
    text-decoration: none;
}

.btn-widget-reg:hover {
    background: var(--color-btn-reg-hover);
    transform: translateY(-1px);
}

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

.header-nav {
    padding: 0;
}

.hdr-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    flex-wrap: nowrap;
    min-height: 70px;
}

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

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

.hdr-nav-wrap {
    flex: 1 1 auto;
    min-width: 0;
}

.hdr-nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.hdr-nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.hdr-nav-link:hover {
    background: rgba(0, 0, 0, 0.12);
    color: var(--color-text-dark);
}

.nav-icon {
    flex-shrink: 0;
    color: var(--color-text-dark);
}

.hdr-actions-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.hdr-lang-select {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.7rem;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: background var(--transition);
}

.lang-btn:hover {
    background: rgba(0, 0, 0, 0.2);
}

.lang-code {
    font-weight: 700;
}

.flag-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.lang-dropdown-list {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--color-header);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    min-width: 140px;
    z-index: 200;
    padding: 0.3rem 0;
}

.lang-dropdown-list.open {
    display: block;
}

.lang-opt {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: background var(--transition);
}

.lang-opt:hover {
    background: rgba(0, 0, 0, 0.1);
}

.lang-opt.active {
    font-weight: 700;
}

.lang-opt a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hdr-online-count {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: var(--color-text-dark);
    font-weight: 600;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 100px;
}

.online-num {
    font-family: var(--font-ui);
    font-weight: 700;
}

.hdr-cta-btns {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

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

.burger-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

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

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

.burger-btn.open .burger-line:nth-child(2) {
    opacity: 0;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-header);
    z-index: 999;
    flex-direction: column;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    display: flex;
    transform: translateX(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0.5rem;
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition);
    text-decoration: none;
}

.mobile-nav-link:hover {
    color: var(--color-text-dark);
    opacity: 0.7;
}

.mobile-lang-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.mobile-lang-opt {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--color-text-dark);
    font-weight: 600;
    text-decoration: none;
}

.mobile-lang-opt.active {
    background: rgba(0, 0, 0, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-text-accent);
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-wrap: balance;
}

.section-sub {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    text-wrap: pretty;
}

.section-wrap {
    padding: 3.5rem 0;
    position: relative;
}

.section-wrap:nth-child(even) {
    background: var(--color-bg-section);
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-dark);
    min-height: 480px;
    margin-bottom: 0;
}

.hero-slider-wrap {
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.hero-slides-inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.hero-slide {
    min-width: 100%;
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

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

.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 3rem 2rem 3rem 3rem;
}

.hero-badge {
    display: inline-block;
    background: var(--color-btn-login);
    color: var(--color-text-dark);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--color-text-accent);
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    text-wrap: balance;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    text-wrap: pretty;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(214, 178, 93, 0.8);
    border: none;
    color: var(--color-text-dark);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), transform var(--transition);
}

.hero-arrow:hover {
    background: var(--color-header);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev {
    left: 1rem;
}

.hero-arrow-next {
    right: 1rem;
}

.hero-slider-dots {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

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

.hero-dot.active {
    background: var(--color-header);
    transform: scale(1.3);
}

.jackpot-section {
    background: var(--color-bg-dark);
}

.jackpot-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.jackpot-card {
    flex: 1 1 280px;
    max-width: 340px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 2px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.jackpot-gold {
    border-color: var(--color-jackpot-gold);
}

.jackpot-gold .jackpot-crown {
    color: var(--color-jackpot-gold);
}

.jackpot-gold .jackpot-amount {
    color: var(--color-jackpot-gold);
}

.jackpot-silver {
    border-color: var(--color-jackpot-silver);
}

.jackpot-silver .jackpot-crown {
    color: var(--color-jackpot-silver);
}

.jackpot-silver .jackpot-amount {
    color: var(--color-jackpot-silver);
}

.jackpot-bronze {
    border-color: var(--color-jackpot-bronze);
}

.jackpot-bronze .jackpot-crown {
    color: var(--color-jackpot-bronze);
}

.jackpot-bronze .jackpot-amount {
    color: var(--color-jackpot-bronze);
}

.jackpot-tier {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.jackpot-amount {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 900;
    letter-spacing: 0.02em;
}

.jackpot-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.jackpot-winners-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.jackpot-winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0.75rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
}

.jw-nick {
    color: var(--color-text-light);
    font-weight: 500;
}

.jw-sum {
    color: var(--color-text-accent);
    font-weight: 700;
}

.winners-section {
    background: var(--color-bg);
}

.winners-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.winners-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.winners-table th {
    background: var(--color-header);
    color: var(--color-text-dark);
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 2px solid var(--color-border-strong);
}

.winners-table td {
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
    text-align: left;
}

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

.winners-table tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.1);
}

.winners-table tr:hover td {
    background: rgba(214, 178, 93, 0.15);
}

.table-rank-1 td:first-child {
    color: var(--color-jackpot-gold);
    font-weight: 700;
}

.table-rank-2 td:first-child {
    color: var(--color-jackpot-silver);
    font-weight: 700;
}

.table-rank-3 td:first-child {
    color: var(--color-jackpot-bronze);
    font-weight: 700;
}

.win-amount {
    color: var(--color-btn-reg);
    font-weight: 700;
    font-family: var(--font-ui);
}

.multiplier-badge {
    display: inline-block;
    background: var(--color-btn-login);
    color: var(--color-text-dark);
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.table-loading {
    text-align: center;
    color: var(--color-text-muted);
    font-style: italic;
}

.bonus-section {
    background: var(--color-bg-section);
}

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

.bonus-slides {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bonus-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 280px;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.casino-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.casino-logo-placeholder {
    width: 80px;
    height: 80px;
    background: var(--color-btn-login);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-text-dark);
}

.casino-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-accent);
    text-align: center;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
}

.stars {
    color: var(--color-star);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
}

.rating-num {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.casino-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bonus-headline {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-btn-reg);
    text-align: center;
    text-wrap: balance;
}

.bonus-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.4;
}

.bonus-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.bonus-features li {
    font-size: 0.82rem;
    color: var(--color-text-light);
    padding-left: 1rem;
    position: relative;
}

.bonus-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-btn-reg);
    font-weight: 700;
}

.bonus-disclaimer-small {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    opacity: 0.7;
    text-align: center;
}

.bonus-slider-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.bonus-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(214, 178, 93, 0.4);
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}

.bonus-dot.active {
    background: var(--color-header);
}

.demo-section {
    background: var(--color-bg-dark);
}

.demo-frame-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    background: #0a0a0a;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.demo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: opacity 0.4s ease;
}

.demo-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.demo-overlay-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.demo-game-icon {
    color: var(--color-header);
    opacity: 0.9;
}

.demo-overlay-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-accent);
}

.demo-overlay-sub {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.game-iframe {
    display: block;
    width: 100%;
    height: 550px;
    border: none;
}

.demo-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.demo-info-text {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-family: var(--font-ui);
}

.reviews-section {
    background: var(--color-bg);
}

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

.review-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform var(--transition);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-btn-login);
    color: var(--color-text-dark);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.review-stars {
    color: var(--color-star);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

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

.review-date {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    opacity: 0.7;
}

.author-section {
    background: var(--color-bg-section);
}

.author-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    max-width: 800px;
    margin: 0 auto;
}

.author-avatar-wrap {
    flex-shrink: 0;
}

.author-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--color-btn-login);
    color: var(--color-text-dark);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-border-strong);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.author-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    opacity: 0.8;
    font-weight: 600;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-accent);
}

.author-title {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.author-bio {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.65;
    text-wrap: pretty;
}

.author-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: #0077B5;
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background var(--transition);
    margin-top: 0.25rem;
    text-decoration: none;
    width: fit-content;
}

.author-linkedin:hover {
    background: #005885;
}

.faq-section {
    background: var(--color-bg);
}

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

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 1rem;
    transition: background var(--transition);
    line-height: 1.4;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.1);
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-text-accent);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    text-wrap: pretty;
}

.article-content-wrap {
    padding: 3rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.article-h2-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 700;
    color: var(--color-text-accent);
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.article-text-content {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.article-text-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-accent);
    margin: 2rem 0 0.75rem;
}

.article-text-content h3 {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin: 1.5rem 0 0.5rem;
}

.article-text-content p {
    margin-bottom: 1rem;
    text-wrap: pretty;
}

.article-text-content ul, .article-text-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.article-text-content ul {
    list-style: disc;
}

.article-text-content ol {
    list-style: decimal;
}

.article-text-content li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.article-text-content a {
    color: var(--color-text-accent);
    text-decoration: underline;
}

.article-text-content strong {
    font-weight: 700;
    color: var(--color-text-accent);
}

.article-text-content em {
    font-style: italic;
    color: var(--color-text-muted);
}

.article-text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.article-text-content th {
    background: var(--color-header);
    color: var(--color-text-dark);
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 700;
    border: 1px solid var(--color-border-strong);
}

.article-text-content td {
    padding: 0.65rem 1rem;
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
}

.article-text-content tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.1);
}

.footer-wrap {
    background: var(--color-header);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.footer-col-title {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.82rem;
    color: var(--color-text-dark);
    line-height: 1.55;
    margin-top: 0.75rem;
    text-wrap: pretty;
    opacity: 0.85;
}

.footer-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-text-dark);
    color: var(--color-text-accent);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.75rem;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-link {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    opacity: 0.85;
    transition: opacity var(--transition);
    text-decoration: none;
}

.footer-link:hover {
    opacity: 1;
}

.footer-provider-link {
    display: inline-block;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    margin-top: 0.25rem;
}

.footer-payments, .footer-trust {
    margin-bottom: 2rem;
}

.payments-logos, .trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.payment-badge {
    background: var(--color-bg-card);
    color: var(--color-text-dark);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.9rem;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    border: 1px solid var(--color-border);
}

.pay-text {
    font-size: 0.78rem;
}

.trust-badge {
    background: rgba(0, 0, 0, 0.15);
    color: var(--color-text-dark);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.9rem;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid var(--color-border);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    font-weight: 600;
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: var(--color-text-dark);
    opacity: 0.75;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
    text-wrap: pretty;
}

.footer-host {
    font-size: 0.75rem;
    color: var(--color-text-dark);
    opacity: 0.6;
}


.technical-box {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}

.breadcrumb-nav {
    margin-bottom: 1.5rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    color: var(--color-text-muted);
    opacity: 0.6;
}

.breadcrumb-item a {
    color: var(--color-text-accent);
    text-decoration: none;
    transition: opacity var(--transition);
}

.breadcrumb-item a:hover {
    opacity: 0.75;
}

.technical-h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-text-accent);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
    text-wrap: balance;
}

.technical-text {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.technical-text h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-accent);
    margin: 2rem 0 0.75rem;
}

.technical-text h3 {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin: 1.5rem 0 0.5rem;
}

.technical-text p {
    margin-bottom: 1rem;
    text-wrap: pretty;
}

.technical-text ul, .technical-text ol {
    padding-left: 1.75rem;
    margin-bottom: 1rem;
}

.technical-text ul {
    list-style: disc;
}

.technical-text ol {
    list-style: decimal;
}

.technical-text li {
    margin-bottom: 0.35rem;
    line-height: 1.6;
}

.technical-text a {
    color: var(--color-text-accent);
    text-decoration: underline;
}

.technical-text strong {
    font-weight: 700;
}

.page-technical .main-content {
    padding-bottom: 2rem;
}

.wp-hidden-data {
    display: none !important;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.jackpot-amount {
    animation: pulse 2.5s ease-in-out infinite;
}

.section-wrap {
    animation: fadeInUp 0.6s ease both;
}

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

    .burger-btn {
        display: flex;
    }

    .bonus-card {
        flex: 0 0 85vw;
        min-width: 260px;
    }

    .bonus-slides {
        gap: 1rem;
    }

    .bonus-slider-dots {
        display: flex;
    }

    .jackpot-grid {
        flex-direction: column;
        align-items: center;
    }

    .jackpot-card {
        max-width: 100%;
        width: 100%;
    }

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

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

    .author-linkedin {
        align-self: center;
    }

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

@media (max-width: 600px) {
    .hero-slide-content {
        padding: 2rem 1rem 2rem 1.2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .technical-box {
        padding: 1.5rem 1rem;
    }

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

    .hdr-inner {
        gap: 0.5rem;
    }

    .hdr-cta-btns {
        gap: 0.3rem;
    }

    .btn-demo, .btn-play {
        padding: 0.5rem 0.85rem;
        font-size: 0.78rem;
    }

    .hdr-online-count {
        display: none;
    }

    .widget-inner {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .widget-bonus-amount {
        font-size: 0.85rem;
    }

    .game-iframe {
        height: 350px;
    }

    .section-wrap {
        padding: 2.5rem 0;
    }
}

.d-none {
    display: none !important;
}

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

.mt1 {
    margin-top: 1rem;
}

.mb1 {
    margin-bottom: 1rem;
}

.wp-noscript {
    display: none !important;
}

.e8f3a2b {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.qedsxs {
    width: 100%;
    max-width: 1280px;
    margin: 40px auto;
    padding: 32px;
    background: linear-gradient(180deg, #7a7542 0%, #5e5a32 100%);
    border: 2px solid rgba(214, 178, 93, 0.28);
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    color: var(--color-text-light);
}

.qedsxs * {
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.qedsxs h1,
.qedsxs h2,
.qedsxs h3,
.qedsxs h4,
.qedsxs h5,
.qedsxs h6 {
    color: var(--color-gold-light);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

.qedsxs h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 28px;
}

.qedsxs h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin: 38px 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(214, 178, 93, 0.2);
}

.qedsxs h3 {
    font-size: 1.2rem;
    margin: 28px 0 14px;
}

.qedsxs p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 18px;
}

.qedsxs strong {
    color: var(--color-accent);
    font-weight: 700;
}

.qedsxs em {
    color: var(--color-gold-light);
}

.qedsxs a {
    color: var(--color-gold-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
    word-break: break-word;
}

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

.qedsxs img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid rgba(214, 178, 93, 0.25);
    background: rgba(255, 255, 255, 0.04);
    padding: 10px;
    margin: 20px auto;
}

.qedsxs ul,
.qedsxs ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.qedsxs li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.qedsxs table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    border-radius: 18px;
    margin: 28px 0;
    border: 1px solid rgba(214, 178, 93, 0.2);
    background: rgba(0, 0, 0, 0.12);
}

.qedsxs th {
    background: rgba(214, 178, 93, 0.16);
    color: var(--color-gold-light);
    padding: 14px 18px;
    text-align: left;
    font-size: 0.95rem;
    white-space: nowrap;
}

.qedsxs td {
    padding: 14px 18px;
    border-top: 1px solid rgba(214, 178, 93, 0.12);
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.03);
}

.qedsxs iframe,
.qedsxs video {
    width: 100%;
    max-width: 100%;
    border: none;
    border-radius: 18px;
    overflow: hidden;
}

.qedsxs pre {
    width: 100%;
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(214, 178, 93, 0.18);
    border-radius: 16px;
    padding: 18px;
}

.qedsxs code {
    color: var(--color-accent);
    word-break: break-word;
}

@media (max-width: 768px) {
    .qedsxs {
        margin: 18px 10px;
        padding: 22px 16px;
        border-radius: 20px;
    }

    .qedsxs h1 {
        font-size: 1.9rem;
    }

    .qedsxs h2 {
        font-size: 1.45rem;
        margin-top: 30px;
    }

    .qedsxs h3 {
        font-size: 1.12rem;
    }

    .qedsxs p,
    .qedsxs li {
        font-size: 0.94rem;
        line-height: 1.72;
    }

    .qedsxs table {
        overflow-x: auto;
        white-space: nowrap;
    }

    .qedsxs img {
        border-radius: 14px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .qedsxs {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .qedsxs h1 {
        font-size: 1.65rem;
    }

    .qedsxs h2 {
        font-size: 1.28rem;
    }

    .qedsxs p,
    .qedsxs li {
        font-size: 0.9rem;
    }
}