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

:root {
    --clr-nav: #3A3A3A;
    --clr-nav-dark: #2a2a2a;
    --clr-btn-primary: #2967C7;
    --clr-btn-secondary: #F5B337;
    --clr-bg: #69ACBD;
    --clr-bg-dark: #5a9bac;
    --clr-text-light: #f0f4f8;
    --clr-text-dark: #1a1a1a;
    --clr-text-muted: #c8d6e0;
    --clr-card-bg: #2e2e2e;
    --clr-card-border: #444;
    --clr-accent: #F5B337;
    --clr-white: #ffffff;
    --radius: 12px;
    --radius-sm: 6px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Rubik', 'Poppins', sans-serif;
    background-color: var(--clr-bg);
    color: var(--clr-text-dark);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

.box {
    border-radius: var(--radius);
}

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

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

ul {
    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;
}

/* =====  ===== */
.site-header {
    background: var(--clr-nav);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

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

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

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

.header-logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    color: var(--clr-accent);
    font-weight: 700;
    letter-spacing: 1px;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--clr-text-light);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

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

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

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

.online-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #4ade80;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    padding: 4px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 1.5s infinite;
    flex-shrink: 0;
}

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

.lang-select {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--clr-text-light);
    font-size: 0.8rem;
    padding: 5px 9px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--clr-nav-dark);
    border: 1px solid #555;
    border-radius: var(--radius-sm);
    min-width: 140px;
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown.open {
    display: block;
    animation: fadeIn 0.2s ease;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--clr-text-light);
    font-size: 0.82rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: #1e52a8;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(41, 103, 199, 0.5);
}

.btn-secondary {
    background: var(--clr-btn-secondary);
    color: #1a1a1a;
}

.btn-secondary:hover {
    background: #e0a020;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(245, 179, 55, 0.5);
}

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

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

.btn-outline:hover {
    background: var(--clr-btn-primary);
    color: #fff;
}

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

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

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

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

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

.mobile-menu {
    display: none;
    background: var(--clr-nav-dark);
    padding: 12px 16px;
    border-top: 1px solid #555;
}

.mobile-menu.open {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu a {
    color: var(--clr-text-light);
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* =====  ===== */
.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 26, 46, 0.92) 0%, rgba(26, 26, 46, 0.5) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 16px;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 179, 55, 0.15);
    border: 1px solid rgba(245, 179, 55, 0.35);
    color: var(--clr-accent);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

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

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    max-width: 560px;
    margin-bottom: 28px;
    line-height: 1.6;
}

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

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

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

.hero-stat-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-accent);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SECTION LAYOUT ===== */
.section-block {
    padding: 56px 16px;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--clr-nav);
    margin-bottom: 8px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #3a3a3a;
    margin-bottom: 36px;
    max-width: 600px;
}

/* =====  ===== */
.jackpots-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.jackpot-card {
    flex: 1;
    min-width: 260px;
    background: var(--clr-nav);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.55);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.jackpot-card.gold {
    border-color: #F5B337;
}

.jackpot-card.gold::before {
    background: radial-gradient(circle at top right, #F5B337, transparent 60%);
}

.jackpot-card.silver {
    border-color: #aab4bc;
}

.jackpot-card.silver::before {
    background: radial-gradient(circle at top right, #aab4bc, transparent 60%);
}

.jackpot-card.bronze {
    border-color: #cd7f32;
}

.jackpot-card.bronze::before {
    background: radial-gradient(circle at top right, #cd7f32, transparent 60%);
}

.jackpot-level {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.jackpot-icon {
    font-size: 1.5rem;
}

.jackpot-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jackpot-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    animation: countUp 0.5s ease;
}

.jackpot-card.gold .jackpot-amount {
    color: #F5B337;
}

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

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.jackpot-top {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

.jackpot-top-title {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.jackpot-top-player {
    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.82rem;
}

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

.jackpot-player-nick {
    color: var(--clr-text-light);
    font-weight: 600;
}

.jackpot-player-win {
    color: var(--clr-accent);
    font-weight: 700;
}

.screenshots-section {
    background: rgba(0, 0, 0, 0.12);
    padding: 56px 0;
}

.screenshots-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

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

.screenshot-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.screenshot-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.screenshot-slider {
    display: none;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slider-track .screenshot-item {
    min-width: 100%;
    flex-shrink: 0;
}

.slider-track .screenshot-item img {
    height: 240px;
}

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

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

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

.app-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 56px 16px;
}

.app-layout {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.app-table-wrap {
    flex: 1.5;
    min-width: 280px;
    overflow-x: auto;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-nav);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.app-table th, .app-table td {
    text-align: left;
    padding: 11px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.88rem;
}

.app-table th {
    background: rgba(255, 255, 255, 0.06);
    color: var(--clr-text-muted);
    font-weight: 600;
    width: 40%;
}

.app-table td {
    color: var(--clr-text-light);
}

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

.app-table tr:hover td, .app-table tr:hover th {
    background: rgba(255, 255, 255, 0.04);
}

.app-downloads {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-downloads-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--clr-nav);
    font-weight: 700;
    margin-bottom: 4px;
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-nav);
    color: var(--clr-text-light);
    padding: 12px 18px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.dl-btn:hover {
    background: #4a4a4a;
    transform: translateX(4px);
}

.dl-btn svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

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

.dl-btn-label {
    font-size: 0.68rem;
    color: var(--clr-text-muted);
    font-weight: 400;
}

.dl-btn-store {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.demo-section {
    background: rgba(0, 0, 0, 0.12);
    padding: 56px 0;
}

.demo-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

.demo-wrapper {
    background: var(--clr-nav);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--clr-nav-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 10px;
}

.demo-title {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.demo-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.demo-badge {
    background: rgba(255, 255, 255, 0.08);
    color: var(--clr-text-muted);
    font-size: 0.72rem;
    padding: 3px 9px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.demo-iframe-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    gap: 16px;
}

.demo-iframe-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--clr-accent);
}

.demo-iframe-placeholder p {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
}

.demo-footer {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    background: var(--clr-nav-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.reviews-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 56px 16px;
}

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

.review-card {
    background: var(--clr-nav);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2967C7, #F5B337);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.review-date {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
}

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

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--clr-accent);
}

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

.review-form-wrap {
    background: var(--clr-nav);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    max-width: 560px;
}

.review-form-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.form-input, .form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    padding: 10px 14px;
    transition: var(--transition);
    outline: none;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--clr-btn-primary);
    background: rgba(41, 103, 199, 0.08);
}

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

.form-success {
    display: none;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    margin-top: 12px;
    text-align: center;
}

.form-success.visible {
    display: block;
    animation: fadeIn 0.3s ease;
}

.content-review-block {
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 16px;
}

.content-review-body {
    background: var(--clr-nav);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    color: var(--clr-text-light);
}

.content-review-body h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin: 28px 0 12px;
}

.content-review-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--clr-accent);
    margin: 22px 0 10px;
}

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

.content-review-body ul, .content-review-body ol {
    padding-left: 20px;
    margin-bottom: 14px;
}

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

.content-review-body ul li {
    list-style: disc;
}

.content-review-body ol li {
    list-style: decimal;
}

.content-review-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

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

.content-review-body table th {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-weight: 700;
}

.content-review-body table td {
    color: var(--clr-text-muted);
}

.content-review-body strong, .content-review-body b {
    color: #fff;
}

.content-review-body a {
    color: var(--clr-btn-primary);
    text-decoration: underline;
}

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

.content-review-body blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 12px 16px;
    margin: 16px 0;
    background: rgba(245, 179, 55, 0.06);
    color: var(--clr-text-muted);
    font-style: italic;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.author-block {
    background: var(--clr-nav);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--clr-accent);
    max-width: 1240px;
    margin: 0 auto 48px;
}

.author-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2967C7 0%, #F5B337 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info {
}

.author-tag {
    font-size: 0.72rem;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
}

.author-bio {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.author-link {
    font-size: 0.8rem;
    color: var(--clr-btn-primary);
    text-decoration: underline;
}

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

/* =====  ===== */
.faq-section {
    background: rgba(0, 0, 0, 0.1);
    padding: 56px 0;
}

.faq-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

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

.faq-item {
    background: var(--clr-nav);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: none;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-question.active {
    color: var(--clr-accent);
}

.faq-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-question.active .faq-icon {
    background: var(--clr-accent);
    transform: rotate(45deg);
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

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

.faq-answer-inner {
    padding: 0 20px 16px;
    color: var(--clr-text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* ===== ===== */
.site-footer {
    background: var(--clr-nav);
    margin-top: auto;
}

.footer-main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 16px 32px;
}

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

.footer-brand {
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

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

.footer-brand-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--clr-accent);
    font-weight: 700;
}

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

.footer-nav-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

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

.footer-nav-list a:hover {
    color: var(--clr-accent);
    padding-left: 4px;
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.footer-logo-item {
    background: rgba(255, 255, 255, 0.07);
    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);
    white-space: nowrap;
}

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

.footer-provider-logo {
    height: 32px;
    width: auto;
    opacity: 0.7;
}

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

.footer-legal {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 680px;
}

.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
}

.technical-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 16px 64px;
}

.technical-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--clr-nav);
    margin-bottom: 20px;
}

.technical-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: var(--clr-nav);
    margin: 28px 0 12px;
}

.technical-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #2a5ba8;
    margin: 20px 0 8px;
}

.technical-content p {
    color: #2a2a2a;
    margin-bottom: 12px;
    line-height: 1.7;
}

.technical-content ul, .technical-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.technical-content li {
    color: #2a2a2a;
    margin-bottom: 6px;
    line-height: 1.6;
}

.technical-content ul li {
    list-style: disc;
}

.technical-content ol li {
    list-style: decimal;
}

/* =====  ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.mb-0 {
    margin-bottom: 0;
}

.mt-auto {
    margin-top: auto;
}

/* =====  ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.ux-b7a3f {
    display: none;
    visibility: hidden;
}

.wp-block-separator {
    border: none;
    height: 1px;
}

.entry-meta-e9c2 {
    font-size: 0;
    line-height: 0;
}

._xt4p0 {
}

.d3k9-wrapper {
}

.r8m2-unit {
}

.h6s1-el {
}

#xr7c-0012 {
}

#mm3p-aside {
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .header-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

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

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

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

@media (max-width: 700px) {
    .screenshots-grid {
        display: none;
    }

    .screenshot-slider {
        display: block;
    }

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

    .jackpots-grid {
        flex-direction: column;
    }

    .hero-stats {
        gap: 16px;
    }

    .app-layout {
        flex-direction: column;
    }

    .author-block {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .demo-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

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

    .sticky-widget {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .screenshots-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        margin-right: -14px;
        padding-right: 14px;
    }

    .screenshots-grid::-webkit-scrollbar {
        height: 6px;
    }

    .screenshots-grid::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.25);
        border-radius: 20px;
    }

    .screenshots-grid::-webkit-scrollbar-track {
        background: transparent;
    }

    .screenshots-grid .screenshot-item {
        flex: 0 0 84%;
        min-width: 84%;
        scroll-snap-align: start;
        border-radius: 16px;
        overflow: hidden;
    }

    .screenshots-grid .screenshot-item img {
        width: 100%;
        height: auto;
        display: block;
    }

    .screenshot-slider {
        display: none;
    }
}

@media (max-width: 480px) {
    .screenshots-grid .screenshot-item {
        flex: 0 0 88%;
        min-width: 88%;
    }
}