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

:root {
    --clr-bg: #151028;
    --clr-header: #231d47;
    --clr-btn-white: #ffffff;
    --clr-btn-purple: #8a46f6;
    --clr-btn-purple-hover: #9d5cf7;
    --clr-text: #e8e0f5;
    --clr-text-muted: #a398c0;
    --clr-accent: #8a46f6;
    --clr-accent2: #f6a446;
    --clr-success: #2ec06b;
    --clr-warning: #f6a446;
    --clr-error: #f64646;
    --clr-border: rgba(138, 70, 246, 0.25);
    --clr-card: rgba(35, 29, 71, 0.85);
    --clr-card2: rgba(30, 24, 60, 0.9);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 24px rgba(138, 70, 246, 0.35);
    --font: 'Inter', 'SF Pro Display', system-ui, sans-serif;
    --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
}

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

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

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

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.wrapper {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}

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

.xb4r9-hidden {
    display: none !important;
}

.xb4r9-vis {
    visibility: hidden;
}

.zq7m2-spacer {
    height: 0;
    overflow: hidden;
    position: absolute;
    width: 0;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--clr-border);
}

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

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-text);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.header-nav a:hover {
    background: rgba(138, 70, 246, 0.18);
    color: #fff;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    background: rgba(138, 70, 246, 0.1);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    padding: 4px 10px;
    white-space: nowrap;
}

.online-dot {
    width: 7px;
    height: 7px;
    background: var(--clr-success);
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 192, 107, 0.7);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(46, 192, 107, 0);
    }
}

.lang-dropdown {
    position: relative;
}

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

.lang-btn:hover {
    background: rgba(138, 70, 246, 0.18);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--clr-header);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    min-width: 130px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 6px;
    z-index: 200;
}

.lang-dropdown-menu.open {
    display: flex;
}

.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--clr-text);
    transition: background var(--transition);
}

.lang-dropdown-menu a:hover {
    background: rgba(138, 70, 246, 0.18);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none !important;
}

.btn--white {
    background: var(--clr-btn-white);
    color: #231d47;
}

.btn--white:hover {
    background: #e8e0f5;
    transform: translateY(-1px);
}

.btn--purple {
    background: var(--clr-btn-purple);
    color: #fff;
    box-shadow: 0 4px 18px rgba(138, 70, 246, 0.45);
}

.btn--purple:hover {
    background: var(--clr-btn-purple-hover);
    box-shadow: 0 6px 24px rgba(138, 70, 246, 0.6);
    transform: translateY(-2px);
}

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

.btn--outline:hover {
    background: rgba(138, 70, 246, 0.1);
    border-color: var(--clr-accent);
}

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

.btn--sm {
    padding: 6px 12px;
    font-size: 0.8rem;
}

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

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

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

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

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

.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0e0a20 0%, #1a1035 40%, #231d47 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/lucky-jet-banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 16, 40, 0.92) 0%, rgba(35, 29, 71, 0.7) 60%, rgba(138, 70, 246, 0.15) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text {
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(138, 70, 246, 0.2);
    border: 1px solid rgba(138, 70, 246, 0.4);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #c79fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

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

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

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

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

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

.hero-stat-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    margin-top: 2px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow), var(--shadow-glow);
    width: 100%;
    max-width: 380px;
    animation: float-card 4s ease-in-out infinite;
}

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

.hero-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-card-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
}

.hero-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.hero-card-sub {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

.multiplier-display {
    background: linear-gradient(135deg, rgba(138, 70, 246, 0.2), rgba(246, 164, 70, 0.1));
    border: 1px solid rgba(138, 70, 246, 0.3);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    margin-bottom: 16px;
}

.multiplier-val {
    font-size: 3rem;
    font-weight: 900;
    color: var(--clr-accent2);
    line-height: 1;
    text-shadow: 0 0 30px rgba(246, 164, 70, 0.5);
    animation: flicker 2s ease-in-out infinite alternate;
}

@keyframes flicker {
    0% {
        text-shadow: 0 0 20px rgba(246, 164, 70, 0.4);
    }
    100% {
        text-shadow: 0 0 40px rgba(246, 164, 70, 0.8);
    }
}

.multiplier-label {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

.hero-card-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hero-card-info-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    padding: 10px;
}

.hci-label {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    margin-bottom: 2px;
}

.hci-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

/* ===== SECTIONS ===== */
.section {
    padding: 64px 0;
}

.section-sm {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(138, 70, 246, 0.15);
    border: 1px solid rgba(138, 70, 246, 0.3);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #c79fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow), 0 0 30px rgba(138, 70, 246, 0.3);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(138, 70, 246, 0.05));
    pointer-events: none;
}

.jackpot-card--gold {
    border-color: rgba(246, 164, 70, 0.4);
}

.jackpot-card--gold::before {
    background: linear-gradient(135deg, transparent, rgba(246, 164, 70, 0.06));
}

.jackpot-card--silver {
    border-color: rgba(180, 180, 200, 0.4);
}

.jackpot-card--silver::before {
    background: linear-gradient(135deg, transparent, rgba(180, 180, 200, 0.06));
}

.jackpot-card--bronze {
    border-color: rgba(180, 100, 40, 0.4);
}

.jackpot-card--bronze::before {
    background: linear-gradient(135deg, transparent, rgba(180, 100, 40, 0.06));
}

.jackpot-icon {
    font-size: 2.8rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 12px rgba(246, 164, 70, 0.4));
}

.jackpot-level {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.jackpot-card--gold .jackpot-level {
    color: var(--clr-accent2);
}

.jackpot-card--silver .jackpot-level {
    color: #b4b4c8;
}

.jackpot-card--bronze .jackpot-level {
    color: #c86428;
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.jackpot-card--gold .jackpot-amount {
    color: var(--clr-accent2);
    text-shadow: 0 0 20px rgba(246, 164, 70, 0.4);
}

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

.jackpot-winners {
    border-top: 1px solid var(--clr-border);
    padding-top: 14px;
}

.jackpot-winners-title {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
}

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

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

.jw-prize {
    color: var(--clr-success);
    font-weight: 700;
}

.app-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.app-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.app-info p {
    color: var(--clr-text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.app-table th, .app-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
}

.app-table th {
    color: var(--clr-text-muted);
    font-weight: 500;
    width: 45%;
}

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

.app-table tr:last-child th, .app-table tr:last-child td {
    border-bottom: none;
}

.download-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(138, 70, 246, 0.1);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    color: var(--clr-text);
    text-decoration: none !important;
    transition: all var(--transition);
}

.download-btn:hover {
    background: rgba(138, 70, 246, 0.2);
    border-color: var(--clr-accent);
    transform: translateX(4px);
}

.download-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--clr-accent);
}

.download-btn-text {
    display: flex;
    flex-direction: column;
}

.download-btn-sub {
    font-size: 0.68rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.download-btn-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
}

.app-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-mockup {
    background: linear-gradient(135deg, rgba(138, 70, 246, 0.15), rgba(246, 164, 70, 0.08));
    border: 1px solid var(--clr-border);
    border-radius: 28px;
    padding: 24px;
    text-align: center;
    max-width: 280px;
    width: 100%;
}

.app-mockup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--clr-accent), #6020c0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 24px rgba(138, 70, 246, 0.4);
}

.app-mockup h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.app-mockup p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.app-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--clr-accent2);
}

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

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

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow), var(--shadow-glow);
}

.bonus-card-header {
    background: linear-gradient(135deg, rgba(138, 70, 246, 0.3), rgba(138, 70, 246, 0.1));
    padding: 20px;
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    gap: 14px;
}

.casino-logo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--clr-accent), #6020c0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

.casino-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--clr-accent2);
}

.bonus-card-body {
    padding: 20px;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-accent);
    margin-bottom: 4px;
}

.bonus-label {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    color: var(--clr-text);
}

.bonus-feature::before {
    content: '';
    width: 16px;
    height: 16px;
    background: rgba(46, 192, 107, 0.2);
    border: 1px solid rgba(46, 192, 107, 0.4);
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%232ec06b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

.bonus-promo {
    background: rgba(138, 70, 246, 0.1);
    border: 1px dashed rgba(138, 70, 246, 0.4);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 0.8rem;
    color: #c79fff;
    margin-bottom: 14px;
}

.bonus-promo span {
    font-weight: 700;
    color: var(--clr-accent);
}

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

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

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--clr-border);
    background: rgba(138, 70, 246, 0.08);
}

.demo-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.demo-meta {
    display: flex;
    gap: 16px;
}

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

.demo-meta-item span {
    color: var(--clr-success);
    font-weight: 600;
}

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #0a0818;
}

.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;
    border-top: 1px solid var(--clr-border);
    flex-wrap: wrap;
    gap: 12px;
}

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

.demo-footer .btn {
    min-width: 180px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.faq-item.open {
    border-color: var(--clr-accent);
}

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

.faq-question:hover {
    background: rgba(138, 70, 246, 0.07);
}

.faq-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(138, 70, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
}

.faq-arrow svg {
    width: 12px;
    height: 12px;
    color: var(--clr-accent);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    background: rgba(138, 70, 246, 0.3);
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.75;
}

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

.content-block {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.content-block .author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(138, 70, 246, 0.07);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 28px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent), #6020c0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    margin-bottom: 4px;
}

.author-link a {
    font-size: 0.75rem;
    color: var(--clr-accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition);
}

.author-link a:hover {
    color: var(--clr-btn-purple-hover);
}

.content-inner h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 12px;
}

.content-inner h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #e8e0f5;
    margin: 20px 0 10px;
}

.content-inner p {
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

.content-inner ul, .content-inner ol {
    margin: 12px 0 16px 20px;
}

.content-inner ul {
    list-style: disc;
}

.content-inner ol {
    list-style: decimal;
}

.content-inner li {
    color: var(--clr-text-muted);
    line-height: 1.75;
    margin-bottom: 6px;
}

.content-inner a {
    color: var(--clr-accent);
    transition: color var(--transition);
}

.content-inner a:hover {
    color: var(--clr-btn-purple-hover);
}

.content-inner strong {
    color: var(--clr-text);
    font-weight: 600;
}

.content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block;
}

.content-inner th, .content-inner td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.content-inner th {
    background: rgba(138, 70, 246, 0.12);
    color: var(--clr-text);
    font-weight: 600;
}

.content-inner td {
    color: var(--clr-text-muted);
}

.content-inner tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.pros-box, .cons-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 18px;
}

.pros-box {
    border: 1px solid rgba(46, 192, 107, 0.25);
}

.cons-box {
    border: 1px solid rgba(246, 70, 70, 0.25);
}

.pros-box h4 {
    color: var(--clr-success);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cons-box h4 {
    color: var(--clr-error);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.pros-box li {
    color: var(--clr-text-muted) !important;
    font-size: 0.83rem !important;
    list-style: none !important;
    margin-bottom: 6px !important;
    padding-left: 16px !important;
    position: relative;
}

.pros-box li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--clr-success);
    font-weight: 700;
}

.cons-box li {
    color: var(--clr-text-muted) !important;
    font-size: 0.83rem !important;
    list-style: none !important;
    margin-bottom: 6px !important;
    padding-left: 16px !important;
    position: relative;
}

.cons-box li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--clr-error);
    font-weight: 700;
}

/* =====  ===== */
.site-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 48px 0 24px;
    margin-top: 24px;
}

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

.footer-brand .footer-logo img {
    height: 34px;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

.footer-payments {
    border-top: 1px solid var(--clr-border);
    padding: 24px 0;
    margin-bottom: 20px;
}

.footer-payments-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.payment-logo {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-badge svg {
    width: 14px;
    height: 14px;
    color: var(--clr-success);
}

.footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding-top: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    max-width: 580px;
}

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

.footer-provider span {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
}

.provider-logo {
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-text-muted);
}

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

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

.slider-track .bonus-card {
    min-width: 85vw;
    margin-right: 16px;
    flex-shrink: 0;
}

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

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

.technical-content {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 40px 0;
}

.technical-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.technical-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.technical-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e8e0f5;
    margin: 20px 0 8px;
}

.technical-content p {
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

.technical-content ul {
    margin: 10px 0 16px 24px;
    list-style: disc;
}

.technical-content li {
    color: var(--clr-text-muted);
    line-height: 1.75;
    margin-bottom: 6px;
}

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

.technical-content a:hover {
    text-decoration: underline;
}

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

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

.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
    margin: 4px 0;
    opacity: 0.3;
}

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

.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.has-small-font-size {
    font-size: 13px;
}

.entry-content {
    display: block;
}

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

.e-con-inner {
    display: block;
}

.wp-site-blocks {
    display: block;
}

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

    .jackpots-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .slider-controls {
        display: flex;
    }

    .slider-track .bonus-card {
        min-width: calc(100vw - 48px);
    }
}

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

    .header-nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--clr-header);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 4px;
        z-index: 999;
        border-top: 1px solid var(--clr-border);
        overflow-y: auto;
    }

    .header-nav.open {
        display: flex;
    }

    .header-nav a {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }

    .burger {
        display: flex;
    }

    .online-badge {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 48px 20px;
    }

    .hero-visual {
        display: none;
    }

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

    .app-block {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .app-visual {
        display: none;
    }

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

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .bonuses-grid {
        display: none;
    }

    .bonuses-slider-wrap {
        display: block;
    }

    .bonus-widget {
        flex-wrap: wrap;
        padding: 10px 16px;
    }

    .content-block {
        padding: 24px 18px;
    }

    .technical-content {
        padding: 24px 18px;
        margin: 20px 0;
    }

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

    .section {
        padding: 40px 0;
    }

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

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .demo-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .demo-footer .btn {
        width: 100%;
    }

    .bonus-widget .btn {
        flex: 1;
        text-align: center;
    }

    .header-right {
        gap: 6px;
    }

    .header-right .btn--sm {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

.bonuses-slider-wrap {
    display: none;
}

@media (max-width: 768px) {
    .bonuses-slider-wrap {
        display: block;
        overflow: hidden;
        position: relative;
    }
}

.header-mobile-btns {
    display: none;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .header-mobile-btns {
        display: flex;
    }

    .header-desktop-btns {
        display: none;
    }
}

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

.oersc {
    width: 100%;
    max-width: 1120px;
    margin: 40px auto;
    padding: 34px 30px;
    background: linear-gradient(145deg, rgba(35, 29, 71, 0.96), rgba(21, 16, 40, 0.98));
    border: 1px solid rgba(138, 70, 246, 0.42);
    border-radius: 22px;
    box-shadow: 0 12px 42px rgba(0, 0, 0, 0.38), 0 0 32px rgba(138, 70, 246, 0.14);
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.oersc * {
    max-width: 100%;
}

.oersc h1,
.oersc h2,
.oersc h3 {
    color: #ffffff;
    line-height: 1.22;
}

.oersc h1 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 24px;
}

.oersc h2 {
    font-size: clamp(22px, 3vw, 30px);
    margin: 34px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(138, 70, 246, 0.28);
}

.oersc h3 {
    font-size: clamp(18px, 2.4vw, 23px);
    margin: 24px 0 12px;
    color: #e8e0f5;
}

.oersc p {
    margin-bottom: 16px;
    color: #cfc6e8;
    font-size: 16px;
    line-height: 1.78;
}

.oersc ul,
.oersc ol {
    margin: 18px 0 22px;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.oersc li {
    position: relative;
    padding: 12px 14px 12px 38px;
    color: #e8e0f5;
    background: rgba(138, 70, 246, 0.08);
    border: 1px solid rgba(138, 70, 246, 0.18);
    border-radius: 12px;
    line-height: 1.55;
}

.oersc li::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 1.15em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8a46f6;
    box-shadow: 0 0 10px rgba(138, 70, 246, 0.8);
}

.oersc a {
    color: #b98cff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.oersc a:hover {
    color: #ffffff;
}

.oersc img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.oersc table {
    width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
}

@media (max-width: 768px) {
    .oersc {
        margin: 26px auto;
        padding: 24px 18px;
        border-radius: 18px;
    }

    .oersc h1 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .oersc h2 {
        font-size: 22px;
        margin: 28px 0 14px;
    }

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

    .oersc p {
        font-size: 15px;
        line-height: 1.72;
    }

    .oersc li {
        padding: 11px 12px 11px 34px;
        font-size: 15px;
    }

    .oersc li::before {
        left: 13px;
    }
}

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

    .oersc h1 {
        font-size: 24px;
    }

    .oersc h2 {
        font-size: 20px;
    }

    .oersc h3 {
        font-size: 17px;
    }

    .oersc p,
    .oersc li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    /* ===== HERO ===== */
    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 36px 14px;
        gap: 24px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-stats {
        gap: 14px;
        justify-content: space-between;
    }

    .hero-stat {
        flex: 1 1 calc(50% - 10px);
    }

    .hero-stat-val {
        font-size: 22px;
    }

    /* ===== BUTTONS ===== */
    .btn,
    .btn--lg,
    .btn--sm {
        min-height: 46px;
    }

    .hero-btns {
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }

    /* ===== SECTION ===== */
    .section {
        padding: 36px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .section-desc {
        font-size: 15px;
    }

    /* ===== CARDS ===== */
    .jackpot-card,
    .bonus-card,
    .content-block,
    .technical-content,
    .demo-block,
    .app-block,
    .oersc {
        border-radius: 18px;
    }

    .jackpot-card {
        padding: 22px 16px;
    }

    .jackpot-amount {
        font-size: 30px;
    }

    .bonus-card-body {
        padding: 18px;
    }

    .bonus-amount {
        font-size: 28px;
    }

    .bonus-feature {
        font-size: 14px;
        line-height: 1.45;
    }

    /* ===== APP ===== */
    .app-block {
        padding: 20px 16px;
        gap: 24px;
    }

    .app-info h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .download-btn {
        padding: 12px 14px;
    }

    .download-btn-name {
        font-size: 14px;
    }

    /* ===== DEMO ===== */
    .demo-header {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .demo-meta {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }

    .demo-footer {
        padding: 16px;
    }

    .demo-note {
        font-size: 13px;
        line-height: 1.5;
    }

    /* ===== FAQ ===== */
    .faq-question {
        padding: 16px;
        font-size: 15px;
        line-height: 1.4;
        gap: 12px;
    }

    .faq-answer {
        padding: 0 16px 16px;
        font-size: 14px;
        line-height: 1.65;
    }

    /* ===== CONTENT ===== */
    .content-block,
    .technical-content {
        padding: 22px 16px;
    }

    .content-inner h2,
    .technical-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .content-inner h3,
    .technical-content h3 {
        font-size: 20px;
    }

    .content-inner p,
    .technical-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    /* ===== TABLES ===== */
    .table-scroll,
    .content-inner table,
    .oersc table {
        overflow-x: auto;
        display: block;
        width: 100%;
    }

    .app-table {
        min-width: 520px;
    }

    /* ===== FOOTER ===== */
    .site-footer {
        padding-top: 36px;
    }

    .footer-grid {
        gap: 20px;
    }

    .footer-col ul {
        gap: 10px;
    }

    .footer-bottom {
        gap: 14px;
    }

    .footer-copyright {
        font-size: 13px;
        line-height: 1.6;
    }

    .payment-logos {
        gap: 8px;
    }

    .payment-logo {
        font-size: 12px;
        padding: 6px 10px;
    }

    /* ===== HEADER ===== */
    .header-inner {
        padding: 10px 14px;
        gap: 10px;
    }

    .header-logo img {
        height: 32px;
    }

    .header-mobile-btns .btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .header-nav {
        top: 60px;
        padding: 14px;
    }

    /* ===== SLIDER ===== */
    .slider-track .bonus-card {
        min-width: calc(100vw - 28px);
        margin-right: 12px;
    }
}


@media (max-width: 480px) {

    .hero h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
    }

    .hero-desc,
    .section-desc,
    .content-inner p,
    .technical-content p {
        font-size: 14px;
    }

    .hero-stat {
        flex: 1 1 100%;
    }

    .hero-stat-val {
        font-size: 20px;
    }

    .jackpot-amount {
        font-size: 26px;
    }

    .bonus-amount {
        font-size: 24px;
    }

    .app-info h2 {
        font-size: 24px;
    }

    .demo-title {
        font-size: 18px;
    }

    .faq-question {
        font-size: 14px;
    }

    .content-block,
    .technical-content,
    .oersc {
        padding: 18px 14px;
    }

    .jackpot-card,
    .bonus-card-body {
        padding-left: 14px;
        padding-right: 14px;
    }

    .download-btn {
        gap: 10px;
    }

    .download-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    body {
        min-width: 0;
    }

    .wrapper,
    main,
    .site-header,
    .hero,
    .section,
    .container {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .container {
        padding-left: 14px;
        padding-right: 14px;
        overflow: visible;
    }

    .header-inner {
        width: 100%;
        max-width: 100%;
        grid-template-columns: auto 1fr auto;
        padding: 10px 12px;
        gap: 8px;
    }

    .header-logo {
        min-width: 0;
        flex-shrink: 1;
    }

    .header-logo img {
        width: 34px;
        height: auto;
    }

    .header-right {
        min-width: 0;
        gap: 6px;
        justify-content: flex-end;
    }


    .header-mobile-btns {
        display: flex !important;
        gap: 6px;
        min-width: 0;
    }

    .header-mobile-btns .btn {
        padding: 6px 8px;
        font-size: 11px;
        min-height: 34px;
        max-width: 86px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .lang-dropdown {
        display: none;
    }

    .burger {
        display: flex;
        flex-shrink: 0;
    }

    .hero {
        min-height: auto;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        padding: 36px 14px;
        gap: 22px;
        overflow: visible;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero h1,
    .hero-desc,
    .section-title,
    .section-desc {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.18;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-btns {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 100%;
        white-space: normal;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    .hero-stat {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--clr-border);
        border-radius: 12px;
        padding: 10px;
    }

    .hero-visual {
        display: none;
    }

    .section {
        padding: 34px 0;
        overflow: hidden;
    }

    .section-header {
        width: 100%;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .jackpots-grid,
    .bonuses-grid,
    .footer-grid,
    .pros-cons-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }

    .jackpot-card,
    .bonus-card,
    .app-block,
    .content-block,
    .technical-content,
    .oersc {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-left: 16px;
        padding-right: 16px;
        overflow: hidden;
    }

    .demo-header,
    .demo-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .demo-meta {
        flex-direction: column;
        gap: 6px;
    }

    .demo-iframe-wrap {
        height: 560px;
        padding-bottom: 0;
    }

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

    .app-block {
        grid-template-columns: 1fr;
        padding: 20px 16px;
    }

    .app-visual {
        display: none;
    }

    .table-scroll,
    .content-inner table,
    .technical-content table,
    .oersc table {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .app-table {
        min-width: 520px;
    }

    a,
    p,
    li,
    span,
    div {
        overflow-wrap: anywhere;
    }

    .btn,
    .download-btn {
        max-width: 100%;
        white-space: normal;
    }
}

@media (max-width: 420px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero h1 {
        font-size: 24px;
    }

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

    .header-mobile-btns .btn {
        max-width: 72px;
        font-size: 10px;
        padding: 6px;
    }

    .demo-iframe-wrap {
        height: 620px;
    }
}

@media (max-width: 768px) {

    #app {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #app .container {
        min-width: 620px;
    }
}