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

:root {
    --color-header: #543622;
    --color-header-dark: #3d2718;
    --color-btn-gold: #CB8E01;
    --color-btn-gold-hover: #e0a002;
    --color-btn-green: #4E854C;
    --color-btn-green-hover: #5d9e5b;
    --color-bg: #553622;
    --color-bg-dark: #3e2818;
    --color-bg-card: #4a2e1c;
    --color-bg-card2: #5e3d28;
    --color-text: #f5e6d0;
    --color-text-muted: #c9a87a;
    --color-text-light: #fff8f0;
    --color-border: #7a5030;
    --color-border-gold: #CB8E01;
    --color-accent: #CB8E01;
    --color-success: #4E854C;
    --color-warning: #d4a017;
    --color-error: #c0392b;
    --color-neutral-100: #f5e6d0;
    --color-neutral-200: #e0c9a0;
    --color-neutral-300: #c9a87a;
    --color-neutral-400: #a07850;
    --color-neutral-500: #7a5030;
    --color-neutral-600: #5e3d28;
    --color-neutral-700: #4a2e1c;
    --color-neutral-800: #3d2718;
    --color-neutral-900: #2a1a0e;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(203, 142, 1, 0.4);
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Cinzel', serif;
    --font-body: 'Marcellus', serif;
    --font-editorial: 'Playfair Display', serif;
    --transition: 0.28s cubic-bezier(0.4, 0, 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-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background var(--transition);
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.08);
}

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

.btn--gold {
    background: linear-gradient(135deg, #CB8E01 0%, #e8a800 50%, #CB8E01 100%);
    color: #1a0e00;
    box-shadow: 0 4px 15px rgba(203, 142, 1, 0.35);
}

.btn--gold:hover {
    box-shadow: 0 6px 25px rgba(203, 142, 1, 0.55);
    color: #1a0e00;
    transform: translateY(-1px);
}

.btn--green {
    background: linear-gradient(135deg, #4E854C 0%, #5d9e5b 50%, #4E854C 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(78, 133, 76, 0.35);
}

.btn--green:hover {
    box-shadow: 0 6px 25px rgba(78, 133, 76, 0.55);
    color: #fff;
    transform: translateY(-1px);
}

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

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

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

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

.btn--xl {
    padding: 18px 44px;
    font-size: 1.125rem;
    border-radius: var(--radius-xl);
    letter-spacing: 0.05em;
}

.xd7f2a {
    display: none;
}

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

/* ===== HEADER ===== */
.site-header {
    background: var(--color-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

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

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

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

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

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-btn-gold);
    letter-spacing: 0.05em;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-list a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: var(--color-neutral-200);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-list a:hover, .nav-list a.active {
    color: var(--color-btn-gold);
    background: rgba(203, 142, 1, 0.1);
}

.nav-list a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 6px #4caf50;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 6px #4caf50;
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 12px #4caf50;
    }
}

.lang-dropdown {
    position: relative;
}

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

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

.lang-btn svg {
    width: 14px;
    height: 14px;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--color-header-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    min-width: 130px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 200;
}

.lang-dropdown:hover .lang-menu,
.lang-dropdown.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: var(--color-text);
    font-size: 0.8rem;
    transition: background var(--transition);
    cursor: pointer;
}

.lang-item:hover {
    background: rgba(203, 142, 1, 0.15);
    color: var(--color-btn-gold);
}

.lang-item.active {
    color: var(--color-btn-gold);
}

.flag {
    font-size: 1.1rem;
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-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);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0e00 0%, #3e2818 40%, #2a1a0e 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner-ra.png');
    background-size: cover;
    background-position: center top;
    z-index: 0;
    opacity: 0.55;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 14, 0, 0.92) 0%, rgba(26, 14, 0, 0.6) 50%, rgba(26, 14, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(203, 142, 1, 0.18);
    border: 1px solid rgba(203, 142, 1, 0.5);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    color: var(--color-btn-gold);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-text-light);
    line-height: 1.15;
    max-width: 600px;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero h1 span {
    color: var(--color-btn-gold);
}

.hero p {
    font-size: 1.1rem;
    color: var(--color-neutral-200);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-btn-gold);
}

.hero-stat span {
    font-size: 0.8rem;
    color: var(--color-neutral-300);
}

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

.section + .section {
    padding-top: 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-btn-gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--color-text-light);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--color-neutral-300);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== JACKPOTS ===== */
.jackpots-section {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg) 100%);
    padding: 72px 0;
}

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

.jackpot-card {
    background: linear-gradient(145deg, var(--color-bg-card) 0%, var(--color-bg-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.jackpot-card.bronze::before {
    background: linear-gradient(90deg, #cd7f32, #e89b4e);
}

.jackpot-card.silver::before {
    background: linear-gradient(90deg, #a8a9ad, #d8d9dd);
}

.jackpot-card.gold::before {
    background: linear-gradient(90deg, #CB8E01, #ffd700);
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border-gold);
}

.jackpot-tier {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.jackpot-card.bronze .jackpot-tier {
    color: #e89b4e;
}

.jackpot-card.silver .jackpot-tier {
    color: #d8d9dd;
}

.jackpot-card.gold .jackpot-tier {
    color: #ffd700;
}

.jackpot-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.jackpot-label {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-neutral-200);
    margin-bottom: 16px;
}

.jackpot-amount {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 6px;
    transition: all 0.4s ease;
}

.jackpot-card.bronze .jackpot-amount {
    color: #e89b4e;
}

.jackpot-card.silver .jackpot-amount {
    color: #d8d9dd;
}

.jackpot-card.gold .jackpot-amount {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

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

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

.jackpot-winners-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.8rem;
}

.winner-nick {
    color: var(--color-neutral-200);
}

.winner-amount {
    color: var(--color-btn-gold);
    font-weight: 600;
}

/* ===== APP BLOCK ===== */
.app-section {
    background: var(--color-bg-card);
    padding: 72px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.app-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.app-info p {
    color: var(--color-neutral-300);
    margin-bottom: 28px;
    line-height: 1.7;
}

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

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    text-decoration: none;
    transition: all var(--transition);
    font-size: 0.85rem;
}

.app-download-btn:hover {
    border-color: var(--color-btn-gold);
    background: rgba(203, 142, 1, 0.1);
    color: var(--color-btn-gold);
    transform: translateY(-2px);
}

.app-download-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.app-download-btn .btn-text strong {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.app-download-btn .btn-text span {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.app-table-wrap {
    overflow-x: auto;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    min-width: 380px;
}

.app-table th {
    background: var(--color-header);
    color: var(--color-btn-gold);
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--color-border-gold);
}

.app-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    vertical-align: top;
}

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

.app-table tr:hover td {
    background: rgba(203, 142, 1, 0.05);
}

.app-table td:first-child {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* ===== DEMO GAME ===== */
.demo-section {
    padding: 72px 0;
}

.demo-wrapper {
    background: var(--color-bg-dark);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--color-header);
    border-bottom: 1px solid var(--color-border);
}

.demo-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-btn-gold);
}

.demo-frame-wrap {
    position: relative;
}

.demo-iframe {
    width: 100%;
    height: 520px;
    border: none;
    display: block;
    background: #000;
}

.demo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 14, 0, 0.92), rgba(62, 40, 24, 0.88));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
    transition: opacity var(--transition);
}

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

.demo-play-icon {
    font-size: 4rem;
}

.demo-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text-light);
    text-align: center;
}

.demo-overlay p {
    color: var(--color-neutral-300);
    text-align: center;
    max-width: 320px;
}

.demo-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

/* ===== STRATEGIES ===== */
.strategies-section {
    padding: 72px 0;
}

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

.strategy-card {
    background: linear-gradient(145deg, var(--color-bg-card) 0%, var(--color-bg-dark) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.strategy-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border-gold);
}

.strategy-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-dark), var(--color-header));
}

.strategy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.strategy-card:hover .strategy-img {
    transform: scale(1.08);
}

.strategy-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(203, 142, 1, 0.9);
    color: #1a0e00;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.strategy-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.strategy-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.strategy-desc {
    color: var(--color-neutral-300);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.strategy-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.strategy-meta span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 72px 0;
    background: var(--color-bg-card);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--color-bg-dark);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: var(--color-btn-gold);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-light);
    line-height: 1.4;
    font-family: var(--font-primary);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(203, 142, 1, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--color-btn-gold);
    transform: rotate(45deg);
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    color: var(--color-btn-gold);
}

.faq-item.open .faq-icon svg {
    color: #1a0e00;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding var(--transition);
}

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

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--color-neutral-300);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-header-dark);
    border-top: 2px solid var(--color-border);
    padding-top: 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
}

.footer-brand {
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo img {
    height: 38px;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-btn-gold);
}

.footer-brand-desc {
    color: var(--color-neutral-400);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--color-btn-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

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

.footer-links a {
    color: var(--color-neutral-400);
    font-size: 0.875rem;
    transition: color var(--transition);
}

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

.footer-payments {
    margin-top: 20px;
}

.footer-payments-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.payments-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.75rem;
    color: var(--color-neutral-300);
    font-weight: 500;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--color-neutral-500);
    line-height: 1.6;
}

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

.trust-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.7rem;
    color: var(--color-neutral-400);
    display: flex;
    align-items: center;
    gap: 5px;
}

.age-badge {
    width: 36px;
    height: 36px;
    background: var(--color-error);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

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

.content-inner {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
    border: 1px solid var(--color-border);
}

.content-inner h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-btn-gold);
    margin: 32px 0 12px;
}

.content-inner h3 {
    font-family: var(--font-editorial);
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin: 24px 0 8px;
}

.content-inner p {
    color: var(--color-neutral-300);
    line-height: 1.75;
    margin-bottom: 16px;
}

.content-inner ul, .content-inner ol {
    color: var(--color-neutral-300);
    padding-left: 24px;
    margin-bottom: 16px;
}

.content-inner li {
    margin-bottom: 6px;
    line-height: 1.7;
}

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

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

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

.content-inner a {
    color: var(--color-btn-gold);
    text-decoration: underline;
}

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

.content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.875rem;
    min-width: 360px;
}

.content-inner th {
    background: var(--color-header);
    color: var(--color-btn-gold);
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.content-inner td {
    padding: 10px 16px;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    vertical-align: top;
}

.content-inner tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

.content-inner blockquote {
    border-left: 4px solid var(--color-btn-gold);
    background: rgba(203, 142, 1, 0.08);
    padding: 16px 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 20px 0;
    font-style: italic;
    color: var(--color-neutral-200);
}

/* ===== AUTHOR BLOCK ===== */
.author-block {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-card) 100%);
    border-radius: var(--radius-xl);
    padding: 28px 32px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-btn-gold), var(--color-header));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid var(--color-btn-gold);
}

.author-info {
}

.author-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

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

.author-bio {
    font-size: 0.875rem;
    color: var(--color-neutral-300);
    line-height: 1.6;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--color-btn-gold);
    margin-top: 6px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

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

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

.breadcrumb-sep {
    color: var(--color-neutral-500);
}

/* ===== TECHNICAL PAGE ===== */
.technical-content {
    padding: 48px 0 72px;
}

.technical-inner {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
    border: 1px solid var(--color-border);
    max-width: 900px;
    margin: 0 auto;
}

.technical-inner h1 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-btn-gold);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.technical-inner h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin: 28px 0 12px;
}

.technical-inner h3 {
    font-family: var(--font-editorial);
    font-size: 1rem;
    color: var(--color-neutral-200);
    margin: 20px 0 8px;
}

.technical-inner p {
    color: var(--color-neutral-300);
    line-height: 1.75;
    margin-bottom: 14px;
}

.technical-inner ul, .technical-inner ol {
    color: var(--color-neutral-300);
    padding-left: 24px;
    margin-bottom: 14px;
}

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

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

.technical-inner li {
    margin-bottom: 6px;
    line-height: 1.7;
}

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

.technical-inner a {
    color: var(--color-btn-gold);
    text-decoration: underline;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 1024px) {
    .header-inner {
        grid-template-columns: auto auto 1fr;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-header-dark);
        z-index: 1001;
        flex-direction: column;
        justify-content: center;
        padding: 80px 40px;
        gap: 24px;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }

    .nav-list a {
        font-size: 1.1rem;
        padding: 14px 20px;
        width: 100%;
        border-radius: var(--radius-md);
    }

    .burger {
        display: flex;
        z-index: 1002;
        position: relative;
    }

    .nav-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--color-text);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 8px;
    }

    .mobile-nav-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 16px;
    }

    .mobile-nav-btns .btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 14px;
    }

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

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

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

    .app-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

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

    .header-actions .online-count {
        display: none;
    }

    .header-btn-mobile {
        display: flex !important;
    }

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

    .hero-stats {
        gap: 20px;
    }

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

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

    .demo-iframe {
        height: 340px;
    }

    .content-inner {
        padding: 24px 20px;
    }

    .technical-inner {
        padding: 24px 20px;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

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

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

    .app-download-btns {
        flex-direction: column;
    }

    .app-download-btn {
        width: 100%;
    }

    .sticky-widget-inner {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-border) 20%, var(--color-btn-gold) 50%, var(--color-border) 80%, transparent 100%);
    margin: 0 auto;
    max-width: 400px;
    opacity: 0.6;
}

/* WP decoy elements */
.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
}

.wp-block-column {
    flex: 1;
}

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

.entry-content {
    display: block;
}

.post-thumbnail {
    display: block;
}

.site-branding {
    display: flex;
    align-items: center;
}

.menu-item {
    display: inline-block;
}

.yoast-schema-graph {
    display: none;
}

/* Unique random IDs */
#xk3f9 {
    display: block;
}

.bv72w {
    position: relative;
}

.r8m4x {
    overflow: hidden;
}

.q91ns {
    display: flex;
}

.p3k7d {
    align-items: center;
}

.m6x2v {
    justify-content: center;
}

.w5t4b {
    flex-wrap: wrap;
}

.h2q8c {
    gap: 16px;
}

.n7j3a {
    padding: 0;
}

.f4s9e {
    margin: 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #3a2416, #2a170c);
    border-bottom: 1px solid var(--color-border);
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.nav-list {
    display: flex;
    gap: 6px;
    list-style: none;
}

.nav-list a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    color: var(--color-text);
    border-radius: 6px;
    transition: 0.25s;
}

.nav-list a:hover {
    background: rgba(203, 142, 1, 0.15);
    color: var(--color-gold-light);
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

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

.burger span {
    width: 22px;
    height: 2px;
    background: #fff;
}

.nav-close-btn {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100%;
        background: #2a170c;
        flex-direction: column;
        padding: 60px 20px;
        transition: 0.3s;
        z-index: 9999;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-list a {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }

    .mobile-nav-btns {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .burger {
        display: flex;
    }

    .nav-close-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 20px;
        color: #fff;
    }

    .header-actions .btn {
        display: none !important;
    }
}

body {
    padding-top: 76px;
}

.ra-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #3a2416, #241208);
    border-bottom: 1px solid rgba(203, 142, 1, .35);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .45);
    z-index: 9999;
}

.ra-header__inner {
    max-width: 1200px;
    height: 76px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.ra-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f0c040;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0;
}

.ra-header__logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.ra-header__logo span span {
    display: block;
    color: #f5e8d8;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

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

.ra-nav a {
    padding: 9px 12px;
    border-radius: 8px;
    color: #f5e8d8;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
}

.ra-nav a:hover {
    background: rgba(203, 142, 1, .16);
    color: #f0c040;
}

.ra-nav__close {
    display: none;
}

.ra-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.ra-online {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(203, 142, 1, .35);
    border-radius: 999px;
    background: rgba(0, 0, 0, .25);
    color: #c4a882;
    font-size: 12px;
    white-space: nowrap;
}

.ra-online span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: raPulse 1.6s infinite;
}

.ra-online strong {
    color: #f5e8d8;
}

.ra-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: .25s;
}

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

.ra-btn--gold {
    background: linear-gradient(135deg, #CB8E01, #f0c040);
    color: #1a0f08;
}

.ra-btn--green {
    background: linear-gradient(135deg, #4E854C, #67b864);
    color: #fff;
}

.ra-burger {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(203, 142, 1, .35);
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.ra-burger span {
    width: 22px;
    height: 2px;
    background: #f5e8d8;
    border-radius: 2px;
    transition: .25s;
}

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

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

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

.ra-overlay {
    display: none;
}

@keyframes raPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .45;
        transform: scale(1.35);
    }
}

@media (max-width: 900px) {
    body {
        padding-top: 68px;
    }

    .ra-header__inner {
        height: 68px;
        padding: 0 14px;
    }

    .ra-header__logo img {
        width: 40px;
        height: 40px;
    }

    .ra-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 86vw);
        height: 100vh;
        padding: 72px 18px 24px;
        background: linear-gradient(180deg, #3a2416, #1c0d05);
        border-left: 1px solid rgba(203, 142, 1, .35);
        box-shadow: -12px 0 30px rgba(0, 0, 0, .45);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        transition: right .3s ease;
        z-index: 10001;
    }

    .ra-nav.active {
        right: 0;
    }

    .ra-nav a {
        padding: 13px 14px;
        background: rgba(255, 255, 255, .05);
        font-size: 15px;
    }

    .ra-nav__close {
        display: block;
        position: absolute;
        top: 18px;
        right: 18px;
        width: 36px;
        height: 36px;
        border: 1px solid rgba(203, 142, 1, .35);
        border-radius: 10px;
        background: rgba(255, 255, 255, .06);
        color: #f5e8d8;
        font-size: 18px;
        cursor: pointer;
    }

    .ra-burger {
        display: flex;
    }

    .ra-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .55);
        z-index: 10000;
    }

    .ra-overlay.active {
        display: block;
    }
}

@media (max-width: 480px) {
    .ra-online {
        display: none;
    }

    .ra-header__logo {
        font-size: 16px;
    }

    .ra-header__logo span span {
        font-size: 11px;
    }
}

.ra-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 9998;
}

.ra-nav {
    z-index: 9999;
}

.goplm {
    max-width: 1000px;
    margin: 50px auto;
    padding: 42px 36px;
    background: linear-gradient(180deg, var(--color-bg-card), var(--color-bg-card2));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.goplm h1 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--color-gold-light);
}

.goplm h2 {
    font-size: clamp(20px, 3vw, 26px);
    margin: 34px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-gold);
}

.goplm p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 14px;
}

.goplm ul,
.goplm ol {
    padding-left: 22px;
    margin: 14px 0;
}

.goplm li {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 7px;
}

.goplm a {
    color: var(--color-gold);
    font-weight: 600;
    word-break: break-all;
    overflow-wrap: anywhere;
    display: inline-block;
    max-width: 100%;
}

.goplm strong {
    color: #fff;
}

@media (max-width: 768px) {
    .goplm {
        margin: 26px 12px;
        padding: 22px 16px;
        border-radius: 16px;
    }

    .goplm h1 {
        font-size: 22px;
    }

    .goplm h2 {
        font-size: 18px;
        margin-top: 24px;
    }

    .goplm p,
    .goplm li {
        font-size: 14px;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .goplm {
        margin: 20px 10px;
        padding: 18px 14px;
    }

    .goplm h1 {
        font-size: 20px;
    }

    .goplm h2 {
        font-size: 17px;
    }

    .goplm a {
        font-size: 13.5px;
    }
}