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

:root {
    --clr-bg: #0b1220;
    --clr-header: #0f172a;
    --clr-surface: #131e33;
    --clr-surface2: #1a2740;
    --clr-border: #1e3050;
    --clr-green: #22c55e;
    --clr-green-h: #16a34a;
    --clr-amber: #f59e0b;
    --clr-amber-h: #d97706;
    --clr-text: #e2e8f0;
    --clr-text-muted: #94a3b8;
    --clr-text-dim: #64748b;
    --clr-gold: #fbbf24;
    --clr-red: #ef4444;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--clr-green);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--clr-green-h);
}

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

.container.grid-xl {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.az-header {
    background: var(--clr-header);
    border-bottom: 1px solid var(--clr-border);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.az-header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: nowrap;
}

.az-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-text);
    text-decoration: none;
    flex-shrink: 0;
}

.az-logo-link:hover {
    color: var(--clr-text);
}

.az-logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 8px;
}

.az-logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text);
    letter-spacing: -.01em;
}

.az-logo-text strong {
    color: var(--clr-green);
    font-weight: 800;
}

.az-header-nav-wrap {
    flex: 1;
}

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

.az-nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--clr-text-muted);
    font-size: .85rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
    text-decoration: none;
}

.az-nav-link svg {
    flex-shrink: 0;
}

.az-nav-link:hover {
    color: var(--clr-text);
    background: var(--clr-surface);
}

.az-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

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

.az-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-green);
    box-shadow: 0 0 6px var(--clr-green);
    animation: pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

.az-online-num {
    color: var(--clr-green);
    font-weight: 600;
}

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

.az-lang-dropdown {
    position: relative;
}

.az-lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: .82rem;
    font-weight: 500;
    padding: 5px 8px;
    cursor: pointer;
    transition: background .2s;
}

.az-lang-btn:hover {
    background: var(--clr-surface2);
}

.az-lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    min-width: 100px;
    list-style: none;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 200;
}

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

.az-lang-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: var(--clr-text-muted);
    font-size: .82rem;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.az-lang-option:hover, .az-lang-option.az-lang-active {
    background: var(--clr-surface2);
    color: var(--clr-text);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: transform .15s, box-shadow .15s, background .2s;
    text-decoration: none;
}

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

.az-btn-login {
    background: var(--clr-surface2);
    color: var(--clr-text);
    font-size: .83rem;
    padding: 7px 14px;
    border: 1px solid var(--clr-border);
}

.az-btn-login:hover {
    background: var(--clr-surface);
    color: var(--clr-green);
    border-color: var(--clr-green);
}

.az-btn-register {
    background: var(--clr-amber);
    color: #0b1220;
    font-size: .83rem;
    padding: 7px 14px;
}

.az-btn-register:hover {
    background: var(--clr-amber-h);
    box-shadow: 0 4px 14px rgba(245, 158, 11, .4);
}

.az-btn-demo {
    background: var(--clr-green);
    color: #0b1220;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 700;
}

.az-btn-demo:hover {
    background: var(--clr-green-h);
    box-shadow: 0 6px 20px rgba(34, 197, 94, .45);
    color: #0b1220;
}

.az-btn-money {
    background: var(--clr-amber);
    color: #0b1220;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 700;
}

.az-btn-money:hover {
    background: var(--clr-amber-h);
    box-shadow: 0 6px 20px rgba(245, 158, 11, .45);
    color: #0b1220;
}

.az-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
}

.az-burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

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

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

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

.az-hero-section {
    width: 100%;
}

.az-hero-bg {
    min-height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.az-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 18, 32, .92) 40%, rgba(11, 18, 32, .55) 100%);
}

.az-hero-content {
    position: relative;
    z-index: 1;
    max-width: 580px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.az-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

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

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

.az-main-wrap {
    flex: 1;
    padding-top: 0;
    padding-bottom: 40px;
}

.az-main {
    width: 100%;
}

.az-block {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 32px;
    margin: 24px 0;
    box-shadow: var(--shadow);
}

.az-block-alt {
    background: var(--clr-surface2);
}

.az-block-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--clr-green);
    display: inline-block;
}

.az-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.az-feature-card {
    flex: 1 1 220px;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 22px 20px;
    transition: transform .2s, border-color .2s;
}

.az-feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--clr-green);
}

.az-feature-icon {
    color: var(--clr-green);
    margin-bottom: 10px;
}

.az-feature-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 6px;
}

.az-feature-desc {
    font-size: .88rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.az-pros-cons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.az-pros, .az-cons {
    flex: 1 1 280px;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 22px 20px;
}

.az-pros {
    border-top: 3px solid var(--clr-green);
}

.az-cons {
    border-top: 3px solid var(--clr-red);
}

.az-pros-title, .az-cons-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.az-pros-title {
    color: var(--clr-green);
}

.az-cons-title {
    color: var(--clr-red);
}

.az-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.az-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .9rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.az-list li::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-top: 2px;
}

.az-pros .az-list li::before {
    background: var(--clr-green);
}

.az-cons .az-list li::before {
    background: var(--clr-red);
}

.az-winners-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.az-winner-row {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    gap: 14px;
    border-bottom: 1px solid var(--clr-border);
    transition: background .15s;
    font-size: .9rem;
}

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

.az-winner-row:hover {
    background: var(--clr-surface2);
}

.az-winner-pos {
    width: 28px;
    font-weight: 700;
    color: var(--clr-text-dim);
    font-size: .82rem;
    flex-shrink: 0;
    text-align: center;
}

.az-winner-pos.top1 {
    color: var(--clr-gold);
}

.az-winner-pos.top2 {
    color: #94a3b8;
}

.az-winner-pos.top3 {
    color: #b45309;
}

.az-winner-nick {
    flex: 1;
    color: var(--clr-text);
    font-weight: 500;
}

.az-winner-sum {
    font-weight: 700;
    color: var(--clr-green);
    white-space: nowrap;
}

.az-winner-time {
    font-size: .76rem;
    color: var(--clr-text-dim);
    white-space: nowrap;
}

.az-app-wrap {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.az-app-table-wrap {
    flex: 1 1 340px;
    overflow-x: auto;
}

.az-app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    min-width: 280px;
}

.az-app-table th, .az-app-table td {
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
}

.az-app-table th {
    background: var(--clr-surface2);
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

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

.az-app-table tr:hover td {
    background: var(--clr-surface2);
}

.az-app-btns {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.az-app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 14px 20px;
    color: var(--clr-text);
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: border-color .2s, background .2s, transform .15s;
}

.az-app-btn:hover {
    border-color: var(--clr-green);
    background: rgba(34, 197, 94, .07);
    transform: translateY(-2px);
    color: var(--clr-text);
}

.az-app-btn svg {
    flex-shrink: 0;
    color: var(--clr-text);
}

.az-app-btn-sub {
    font-size: .75rem;
    font-weight: 400;
    color: var(--clr-text-muted);
    display: block;
}

.az-game-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.az-game-iframe-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius);
    background: #000;
    border: 1px solid var(--clr-border);
}

.az-game-iframe-box iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.az-game-play-btn {
    display: flex;
    justify-content: center;
}

.az-reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.az-review-card {
    flex: 1 1 260px;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 22px;
    transition: border-color .2s;
}

.az-review-card:hover {
    border-color: var(--clr-gold);
}

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

.az-review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--clr-surface);
    border: 2px solid var(--clr-border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-green);
    text-transform: uppercase;
}

.az-review-name {
    font-weight: 600;
    color: var(--clr-text);
    font-size: .95rem;
}

.az-review-stars {
    color: var(--clr-gold);
    font-size: .9rem;
    margin-top: 2px;
}

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

.az-review-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 560px;
}

.az-form-label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    margin-bottom: 5px;
    display: block;
}

.az-form-input, .az-form-textarea {
    width: 100%;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: inherit;
    font-size: .93rem;
    padding: 10px 14px;
    outline: none;
    transition: border-color .2s;
}

.az-form-input:focus, .az-form-textarea:focus {
    border-color: var(--clr-green);
}

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

.az-form-submit {
    background: var(--clr-green);
    color: #0b1220;
    font-weight: 700;
    font-size: .95rem;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    align-self: flex-start;
}

.az-form-submit:hover {
    background: var(--clr-green-h);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(34, 197, 94, .4);
}

.az-form-success {
    display: none;
    background: rgba(34, 197, 94, .12);
    border: 1px solid var(--clr-green);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--clr-green);
    font-size: .9rem;
    font-weight: 500;
}

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

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

.az-faq-item {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.az-faq-q {
    width: 100%;
    background: var(--clr-surface2);
    border: none;
    color: var(--clr-text);
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    text-align: left;
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background .2s;
}

.az-faq-q:hover {
    background: rgba(34, 197, 94, .06);
}

.az-faq-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 2px solid var(--clr-text-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    transition: transform .25s, border-color .2s;
}

.az-faq-item.open .az-faq-icon {
    transform: rotate(45deg);
    border-color: var(--clr-green);
    color: var(--clr-green);
}

.az-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .2s;
}

.az-faq-item.open .az-faq-a {
    max-height: 300px;
}

.az-faq-a-inner {
    padding: 12px 18px 16px;
    font-size: .9rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

.az-author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-left: 4px solid var(--clr-green);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-top: 24px;
}

.az-author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--clr-surface);
    border: 2px solid var(--clr-green);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-green);
}

.az-author-name {
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 4px;
}

.az-author-bio {
    font-size: .84rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.az-author-link {
    font-size: .82rem;
    color: var(--clr-green);
}

.az-author-link:hover {
    color: var(--clr-green-h);
}

.az-content-area h1, .az-content-area h2, .az-content-area h3, .az-content-area h4 {
    color: var(--clr-text);
    line-height: 1.3;
    margin: 18px 0 10px;
    font-weight: 700;
}

.az-content-area h1 {
    font-size: 1.8rem;
}

.az-content-area h2 {
    font-size: 1.4rem;
}

.az-content-area h3 {
    font-size: 1.15rem;
}

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

.az-content-area ul, .az-content-area ol {
    padding-left: 22px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.az-content-area li {
    margin-bottom: 6px;
}

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

.az-content-area th, .az-content-area td {
    border: 1px solid var(--clr-border);
    padding: 9px 13px;
    text-align: left;
    font-size: .9rem;
}

.az-content-area th {
    background: var(--clr-surface2);
    color: var(--clr-text-muted);
    font-weight: 600;
}

.az-content-area td {
    color: var(--clr-text);
}

.az-content-area a {
    color: var(--clr-green);
}

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

.az-content-area blockquote {
    border-left: 3px solid var(--clr-green);
    padding: 10px 16px;
    background: var(--clr-surface2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 14px 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.az-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    margin-top: auto;
}

.az-footer-inner {
    padding-top: 44px;
    padding-bottom: 24px;
}

.az-footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-bottom: 36px;
}

.az-footer-brand {
    flex: 1 1 240px;
}

.az-footer-desc {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-top: 12px;
    max-width: 280px;
}

.az-footer-nav-col {
    flex: 1 1 150px;
}

.az-footer-nav-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--clr-text-dim);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 12px;
}

.az-footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.az-footer-nav a {
    font-size: .87rem;
    color: var(--clr-text-muted);
    transition: color .2s;
}

.az-footer-nav a:hover {
    color: var(--clr-green);
}

.az-footer-section-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--clr-text-dim);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 14px;
}

.az-footer-payments, .az-footer-trust, .az-footer-provider {
    margin-bottom: 28px;
}

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

.az-payment-logo, .az-trust-logo {
    opacity: .75;
    transition: opacity .2s;
}

.az-payment-logo:hover, .az-trust-logo:hover {
    opacity: 1;
}

.az-provider-link {
    display: inline-block;
}

.az-provider-logo {
    filter: brightness(0) invert(1);
    opacity: .65;
    transition: opacity .2s;
    max-width: 130px;
}

.az-provider-logo:hover {
    opacity: 1;
}

.az-footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding-top: 20px;
}

.az-copyright {
    font-size: .83rem;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
}

.az-legal {
    font-size: .78rem;
    color: var(--clr-text-dim);
    line-height: 1.55;
    max-width: 780px;
}


.az-section-sep {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-green), transparent);
    margin: 12px 0;
    opacity: .3;
    border: none;
}

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

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

.az-wp-nonce {
    display: none;
}

.az-post-id-meta {
    display: none;
}

.elementor-element {
    all: unset;
}

@media (max-width: 900px) {
    .az-header-inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .az-header-nav-wrap {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }

    .az-header-nav-wrap.open {
        max-height: 400px;
    }

    .az-nav-list {
        flex-direction: column;
        gap: 2px;
        padding: 8px 0;
    }

    .az-nav-link {
        font-size: .9rem;
        padding: 9px 12px;
    }

    .az-burger {
        display: flex;
    }

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

    .az-hero-title {
        font-size: 2rem;
    }

    .az-hero-content {
        max-width: 100%;
    }

    .az-hero-bg {
        min-height: 380px;
    }

    .az-block {
        padding: 22px 16px;
    }

    .az-pros-cons {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .az-hero-title {
        font-size: 1.6rem;
    }

    .az-hero-sub {
        font-size: .93rem;
    }

    .az-hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .az-btn-demo, .az-btn-money {
        width: 100%;
        padding: 13px;
    }

    .az-header-btns {
        gap: 6px;
    }

    .az-btn-login, .az-btn-register {
        font-size: .75rem;
        padding: 6px 10px;
    }

    .az-features-grid {
        flex-direction: column;
    }

    .az-reviews-grid {
        flex-direction: column;
    }

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

    .az-app-wrap {
        flex-direction: column;
    }

    .az-footer-top {
        flex-direction: column;
        gap: 24px;
    }

    .az-block-title {
        font-size: 1.2rem;
    }

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

.qz-nav-toggle {
    display: none;
}

.wp-block-group {
    all: unset;
}

.site-description {
    display: none;
}

.woocommerce-notice {
    display: none;
}

.entry-footer {
    display: none;
}

.post-categories {
    display: none;
}

.wp-caption {
    display: none;
}

.lncm {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 20px 56px;
    color: var(--clr-text);
}

.lncm > * {
    max-width: 100%;
}

.lncm h1,
.lncm h2,
.lncm h3,
.lncm h4 {
    color: #fff;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.lncm h1 {
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 800;
    margin: 0 0 22px;
}

.lncm h2 {
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    font-weight: 750;
    margin: 38px 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.18);
}

.lncm h3 {
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    font-weight: 700;
    margin: 26px 0 12px;
}

.lncm h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 22px 0 10px;
}

.lncm p,
.lncm li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--clr-text-muted);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.lncm p {
    margin: 0 0 16px;
}

.lncm p + h2,
.lncm ul + h2,
.lncm ol + h2 {
    margin-top: 42px;
}

.lncm ul,
.lncm ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.lncm ul {
    list-style: disc;
}

.lncm ol {
    list-style: decimal;
}

.lncm li {
    margin-bottom: 9px;
}

.lncm li::marker {
    color: var(--clr-green);
}

.lncm a {
    color: var(--clr-green);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .2s ease, opacity .2s ease;
}

.lncm a:hover {
    color: var(--clr-green-h);
    opacity: 1;
}

.lncm strong {
    color: var(--clr-text);
    font-weight: 700;
}

.lncm em {
    color: #cbd5e1;
    font-style: italic;
}

.lncm img,
.lncm svg,
.lncm iframe,
.lncm video {
    max-width: 100%;
    height: auto;
    display: block;
}

.lncm table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 24px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
}

.lncm thead,
.lncm tbody {
    width: 100%;
}

.lncm th,
.lncm td {
    padding: 12px 14px;
    border: 1px solid var(--clr-border);
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}

.lncm th {
    background: var(--clr-surface2);
    color: #fff;
    font-size: 0.83rem;
    font-weight: 700;
}

.lncm td {
    color: var(--clr-text-muted);
    font-size: 0.88rem;
}

.lncm tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.lncm blockquote {
    margin: 20px 0;
    padding: 14px 18px;
    border-left: 3px solid var(--clr-green);
    background: rgba(34, 197, 94, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.lncm blockquote p:last-child {
    margin-bottom: 0;
}

.lncm hr {
    border: 0;
    border-top: 1px solid var(--clr-border);
    margin: 26px 0;
}

.lncm > ul,
.lncm > ol {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 18px 18px 18px 36px;
}

.lncm > ul li,
.lncm > ol li {
    color: var(--clr-text);
}

.lncm > p:first-of-type {
    font-size: 1rem;
    color: #cbd5e1;
}

.lncm h2 + ul,
.lncm h2 + ol,
.lncm h3 + ul,
.lncm h3 + ol {
    margin-top: 8px;
}

@media (max-width: 991px) {
    .lncm {
        max-width: 100%;
        padding: 32px 18px 44px;
    }

    .lncm h1 {
        margin-bottom: 20px;
    }

    .lncm h2 {
        margin: 32px 0 12px;
        padding-bottom: 8px;
    }

    .lncm h3 {
        margin: 22px 0 10px;
    }

    .lncm p,
    .lncm li {
        font-size: 14px;
        line-height: 1.75;
    }

    .lncm th,
    .lncm td {
        padding: 11px 12px;
    }
}

@media (max-width: 767px) {
    .lncm {
        padding: 24px 14px 36px;
    }

    .lncm h1 {
        font-size: 1.7rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .lncm h2 {
        font-size: 1.22rem;
        margin: 26px 0 10px;
    }

    .lncm h3 {
        font-size: 1rem;
        margin: 18px 0 8px;
    }

    .lncm p,
    .lncm li {
        font-size: 13.5px;
        line-height: 1.72;
    }

    .lncm ul,
    .lncm ol {
        padding-left: 18px;
        margin-bottom: 16px;
    }

    .lncm > ul,
    .lncm > ol {
        padding: 14px 12px 14px 26px;
    }

    .lncm table {
        margin: 16px 0 20px;
        border-radius: 8px;
    }

    .lncm th,
    .lncm td {
        padding: 10px 11px;
        font-size: 0.8rem;
    }

    .lncm blockquote {
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .lncm {
        padding: 20px 10px 30px;
    }

    .lncm h1 {
        font-size: 1.45rem;
    }

    .lncm h2 {
        font-size: 1.08rem;
        margin: 22px 0 10px;
    }

    .lncm h3 {
        font-size: 0.96rem;
    }

    .lncm p,
    .lncm li {
        font-size: 13px;
        line-height: 1.68;
    }

    .lncm ul,
    .lncm ol {
        padding-left: 16px;
    }

    .lncm > ul,
    .lncm > ol {
        padding: 12px 10px 12px 22px;
        border-radius: 8px;
    }

    .lncm li {
        margin-bottom: 7px;
    }

    .lncm th,
    .lncm td {
        padding: 9px 10px;
        font-size: 0.76rem;
    }
}

.az-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: var(--clr-header);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

@media (max-width: 1200px) {
    .az-game-iframe-box {
        height: 680px;
        min-height: 680px;
    }
}

@media (max-width: 992px) {
    .az-game-iframe-box {
        height: 620px;
        min-height: 620px;
    }
}

@media (max-width: 768px) {
    .az-block#game {
        padding: 18px 14px;
    }

    .az-block#game .az-block-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .az-block#game p {
        font-size: .84rem !important;
        line-height: 1.6;
        margin-bottom: 14px !important;
    }

    .az-game-wrap {
        gap: 14px;
    }

    .az-game-iframe-box {
        height: 78vh;
        min-height: 560px;
        max-height: 720px;
        border-radius: 12px;
    }

    .az-game-play-btn {
        width: 100%;
    }

    .az-game-play-btn .az-btn-money {
        width: 100%;
        justify-content: center;
        padding: 13px 18px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .az-block#game {
        padding: 16px 10px;
        margin: 18px 0;
        border-radius: 12px;
    }

    .az-block#game .az-block-title {
        font-size: 1rem;
    }

    .az-block#game p {
        font-size: .8rem !important;
        line-height: 1.55;
    }

    .az-game-iframe-box {
        height: 74vh;
        min-height: 500px;
        max-height: 640px;
        border-radius: 10px;
    }

    .az-game-play-btn .az-btn-money {
        font-size: .95rem !important;
        padding: 12px 16px !important;
        border-radius: 10px;
    }
}

.az-game-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.az-game-iframe-box {
    position: relative;
    width: 100%;
    height: 720px;
    min-height: 720px;
    max-height: none;
    padding-top: 0;
    border-radius: 12px;
    background: #000;
    border: 1px solid var(--clr-border);
    line-height: 0;
    isolation: isolate;
}

.az-game-iframe-box iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    pointer-events: auto;
    touch-action: auto;
    background: #000;
}

.az-game-play-btn {
    display: flex;
    justify-content: center;
}

@media (max-width: 1200px) {
    .az-game-iframe-box {
        height: 680px;
        min-height: 680px;
    }
}

@media (max-width: 992px) {
    .az-game-iframe-box {
        height: 620px;
        min-height: 620px;
    }
}

@media (max-width: 768px) {
    .az-block#game {
        padding: 18px 14px;
    }

    .az-block#game .az-block-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .az-block#game p {
        font-size: .84rem !important;
        line-height: 1.6;
        margin-bottom: 14px !important;
    }

    .az-game-wrap {
        gap: 14px;
    }

    .az-game-iframe-box {
        height: 78dvh;
        min-height: 560px;
        max-height: none;
        border-radius: 12px;
    }

    .az-game-play-btn {
        width: 100%;
    }

    .az-game-play-btn .az-btn-money {
        width: 100%;
        justify-content: center;
        padding: 13px 18px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .az-block#game {
        padding: 16px 10px;
        margin: 18px 0;
        border-radius: 12px;
    }

    .az-block#game .az-block-title {
        font-size: 1rem;
    }

    .az-block#game p {
        font-size: .8rem !important;
        line-height: 1.55;
    }

    .az-game-iframe-box {
        height: 74dvh;
        min-height: 500px;
        max-height: none;
        border-radius: 10px;
    }

    .az-game-play-btn .az-btn-money {
        font-size: .95rem !important;
        padding: 12px 16px !important;
        border-radius: 10px;
    }
}