/* Azino777 Mobile - Main Stylesheet ver=1.7 */
:root {
    --clr-bg: #020100;
    --clr-header: #090111;
    --clr-btn-login: #0b80dc;
    --clr-btn-reg: #a8c94e;
    --clr-btn-reg-dark: #8aad30;
    --clr-text: #e8e8e8;
    --clr-text-muted: #aaa;
    --clr-accent: #0b80dc;
    --clr-accent2: #a8c94e;
    --clr-card-bg: #0e0920;
    --clr-card-border: #1a1030;
    --clr-gold: #f0c040;
    --radius: 12px;
    --radius-sm: 6px;
    --spacing: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--clr-accent);
    text-decoration: none;
}

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

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

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

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

.az-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
}

.az-header__logo img {
    height: 44px;
    width: auto;
}

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

.az-header__nav a {
    color: #ccc;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
}

.az-header__nav a:hover {
    color: #fff;
    background: rgba(11, 128, 220, .15);
}

.az-header__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

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

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

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

/* Buttons */
.az-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform .15s, filter .2s, box-shadow .2s;
    text-decoration: none !important;
    line-height: 1;
    white-space: nowrap;
}

.az-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

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

.az-btn--login {
    background: var(--clr-btn-login);
    color: #fff;
    box-shadow: 0 2px 12px rgba(11, 128, 220, .35);
}

.az-btn--reg {
    background: var(--clr-btn-reg);
    color: #06030a;
    box-shadow: 0 2px 12px rgba(168, 201, 78, .35);
}

.az-btn--lg {
    padding: 14px 36px;
    font-size: 18px;
    border-radius: 8px;
}

.az-btn--bonus {
    background: linear-gradient(135deg, var(--clr-btn-reg), #c8e460);
    color: #06030a;
    font-size: 15px;
    box-shadow: 0 2px 18px rgba(168, 201, 78, .45);
}

/* Burger */
.az-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: transparent;
    border: none;
}

.az-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #eee;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

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

.az-burger.is-open span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile nav overlay */
.az-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 1, 17, .97);
    z-index: 9998;
    padding: 80px 24px 24px;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.az-mobile-nav.is-open {
    display: flex;
}

.az-mobile-nav a {
    color: #ddd;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #1c1030;
}

.az-mobile-nav a:hover {
    color: var(--clr-accent2);
}

.az-mobile-nav__btns {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.az-mobile-nav__btns .az-btn {
    flex: 1;
    justify-content: center;
}

/* ===== HERO ===== */
.az-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.az-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/banner-azino.jpg') center/cover no-repeat;
    filter: brightness(.55);
    z-index: 0;
}

.az-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 1, 0, .85) 40%, transparent);
    z-index: 1;
}

.az-hero__content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 60px 20px 60px 40px;
}

.az-hero__badge {
    display: inline-block;
    background: var(--clr-btn-reg);
    color: #06030a;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.az-hero__title {
    font-size: clamp(26px, 5vw, 52px);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
}

.az-hero__title span {
    color: var(--clr-accent2);
}

.az-hero__sub {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 28px;
    line-height: 1.7;
}

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

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

.az-section--alt {
    background: rgba(14, 9, 32, .5);
}

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

.az-section__title {
    text-align: center;
    font-size: clamp(22px, 4vw, 36px);
    margin-bottom: 8px;
    color: #fff;
}

.az-section__sub {
    text-align: center;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    font-size: 15px;
}

.az-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-btn-login), var(--clr-btn-reg));
    border-radius: 2px;
    margin: 0 auto 12px;
}

/* ===== PROS/CONS ===== */
.az-proscons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.az-proscons__col {
    flex: 1;
    min-width: 260px;
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius);
    padding: 28px;
}

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

.az-proscons__col--cons {
    border-top: 3px solid #dc3545;
}

.az-proscons__head {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.az-proscons__head--pros {
    color: var(--clr-accent2);
}

.az-proscons__head--cons {
    color: #dc3545;
}

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

.az-proscons__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

.az-proscons__list li::before {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    margin-top: 1px;
}

.az-proscons__col--pros li::before {
    content: '✓';
    background: rgba(168, 201, 78, .2);
    color: var(--clr-accent2);
}

.az-proscons__col--cons li::before {
    content: '✕';
    background: rgba(220, 53, 69, .2);
    color: #dc3545;
}

/* ===== TOURNAMENTS ===== */
.az-tournaments__wrap {
    display: flex;
    gap: 20px;
}

.az-tournament-card {
    flex: 1;
    min-width: 260px;
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .2s, border-color .2s;
    position: relative;
    overflow: hidden;
}

.az-tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-btn-login), var(--clr-btn-reg));
}

.az-tournament-card:hover {
    transform: translateY(-4px);
    border-color: #2a1850;
}

.az-tournament-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.az-tournament-card__desc {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.az-tournament-card__prize {
    font-size: 26px;
    font-weight: 900;
    color: var(--clr-gold);
}

.az-tournament-card__timer-label {
    font-size: 12px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.az-timer {
    display: flex;
    gap: 8px;
    align-items: center;
}

.az-timer__unit {
    background: rgba(11, 128, 220, .15);
    border: 1px solid rgba(11, 128, 220, .3);
    border-radius: 6px;
    padding: 6px 10px;
    text-align: center;
    min-width: 46px;
}

.az-timer__num {
    font-size: 20px;
    font-weight: 900;
    color: var(--clr-accent);
    line-height: 1;
    display: block;
}

.az-timer__label {
    font-size: 10px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
}

.az-timer__sep {
    font-size: 20px;
    font-weight: 900;
    color: var(--clr-accent);
    align-self: flex-start;
    margin-top: 4px;
}

/* ===== APP INFO ===== */
.az-app-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.az-app-info__table-wrap {
    flex: 1;
    min-width: 280px;
    overflow-x: auto;
}

.az-app-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card-bg);
    border-radius: var(--radius);
    overflow: hidden;
}

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

.az-app-table th {
    background: rgba(11, 128, 220, .12);
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

.az-app-table td {
    color: #ccc;
}

.az-app-table tr:hover td {
    background: rgba(168, 201, 78, .04);
}

.az-app-info__dl {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
    flex-shrink: 0;
}

.az-app-info__dl .az-btn {
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 20px;
    font-size: 15px;
}

/* ===== SLOTS ===== */
.az-slots__wrap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.az-slot-card {
    flex: 0 0 calc(16.666% - 14px);
    min-width: 140px;
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .2s, border-color .2s;
    cursor: pointer;
}

.az-slot-card:hover {
    transform: translateY(-4px);
    border-color: #2a1850;
}

.az-slot-card__img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.az-slot-card__body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.az-slot-card__name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.az-slot-card .az-btn {
    width: 100%;
    justify-content: center;
    padding: 7px 8px;
    font-size: 12px;
}

/* ===== MINI SLOT GAME ===== */
.az-minigame {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius);
    padding: 40px 24px;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.az-minigame__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.az-minigame__sub {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
}

.az-reels {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.az-reel {
    width: 80px;
    height: 80px;
    background: #0b0520;
    border: 2px solid #1a0d35;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    transition: opacity .1s;
    overflow: hidden;
}

.az-reel.is-spinning {
    animation: reel-spin .15s linear infinite;
}

@keyframes reel-spin {
    0% {
        transform: translateY(-4px);
    }
    50% {
        transform: translateY(4px);
    }
    100% {
        transform: translateY(-4px);
    }
}

.az-minigame__result {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.az-minigame__win {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-accent2);
    animation: fade-in .4s ease-out;
}

.az-minigame__lose {
    font-size: 16px;
    color: var(--clr-text-muted);
    animation: fade-in .4s ease-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FAQ ===== */
.az-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 860px;
    margin: 0 auto;
}

.az-faq__item {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.az-faq__q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background .2s;
}

.az-faq__q:hover {
    background: rgba(11, 128, 220, .08);
}

.az-faq__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(11, 128, 220, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-accent);
    transition: transform .3s;
    line-height: 1;
}

.az-faq__item.is-open .az-faq__icon {
    transform: rotate(45deg);
}

.az-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    color: #bbb;
    font-size: 14px;
    line-height: 1.7;
}

.az-faq__item.is-open .az-faq__a {
    max-height: 400px;
    padding: 0 20px 18px;
}

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

.az-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.az-footer__top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    align-items: flex-start;
}

.az-footer__logo img {
    height: 40px;
}

.az-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    list-style: none;
}

.az-footer__nav a {
    color: #888;
    font-size: 13px;
    transition: color .2s;
}

.az-footer__nav a:hover {
    color: #ddd;
}

.az-footer__logos {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.az-footer__logo-item {
    background: rgba(255, 255, 255, .07);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #aaa;
    letter-spacing: .3px;
}

.az-footer__divider {
    border: none;
    border-top: 1px solid #1a0d35;
    margin: 24px 0;
}

.az-footer__legal {
    font-size: 11px;
    color: #555;
    line-height: 1.8;
    text-align: center;
}

.az-footer__legal a {
    color: #666;
}

.az-footer__legal a:hover {
    color: #999;
}

/* ===== BOTTOM WIDGET ===== */
.az-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    background: linear-gradient(90deg, #090111 0%, #0e0520 100%);
    border-top: 2px solid var(--clr-btn-reg);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
}

.az-widget__text {
    font-size: 14px;
    color: #ddd;
    white-space: nowrap;
}

.az-widget__text strong {
    color: var(--clr-accent2);
}

.az-widget__close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #555;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    transition: color .2s;
}

.az-widget__close:hover {
    color: #aaa;
}

/* body padding-bottom for widget */
body {
    padding-bottom: 60px;
}

/* ===== SLIDERS on mobile ===== */
.az-slider-wrap {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.az-slider-wrap::-webkit-scrollbar {
    height: 4px;
}

.az-slider-wrap::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05);
}

.az-slider-wrap::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 2px;
}

.az-slider-wrap .az-tournaments__wrap,
.az-slider-wrap .az-slots__wrap {
    flex-wrap: nowrap;
}

.az-slider-wrap .az-tournament-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

.az-slider-wrap .az-slot-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
}

/* ===== CONTENT block (голые теги) ===== */
.az-content-block {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius);
    padding: 32px 36px;
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
}

.az-content-block h1,
.az-content-block h2,
.az-content-block h3,
.az-content-block h4,
.az-content-block h5 {
    color: #fff;
    margin: 24px 0 12px;
    line-height: 1.25;
}

.az-content-block h1 {
    font-size: 2em;
}

.az-content-block h2 {
    font-size: 1.6em;
}

.az-content-block h3 {
    font-size: 1.3em;
}

.az-content-block h4 {
    font-size: 1.1em;
}

.az-content-block p {
    margin-bottom: 14px;
}

.az-content-block ul,
.az-content-block ol {
    margin: 12px 0 14px 24px;
    line-height: 1.9;
}

.az-content-block li {
    margin-bottom: 4px;
}

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

.az-content-block a:hover {
    color: var(--clr-accent2);
}

.az-content-block table {
    width: auto;
    margin: 16px auto;
    border-collapse: collapse;
    font-size: 14px;
}

.az-content-block table th,
.az-content-block table td {
    padding: 10px 14px;
    border: 1px solid #2a1850;
    text-align: left;
}

.az-content-block table th {
    background: rgba(11, 128, 220, .12);
    color: #fff;
}

.az-content-block blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 12px 18px;
    margin: 16px 0;
    background: rgba(11, 128, 220, .07);
    color: #bbb;
    border-radius: 0 6px 6px 0;
}

.az-content-block strong {
    color: #eee;
}

.az-content-block em {
    color: #ccc;
}

.az-content-block code {
    background: rgba(255, 255, 255, .08);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .9em;
}

/* ===== AUTHOR ===== */
.az-author {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 32px;
}

.az-author__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--clr-btn-login);
}

.az-author__name {
    font-weight: 700;
    color: #fff;
    font-size: 15px;
}

.az-author__bio {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-top: 2px;
    line-height: 1.5;
}

.az-author__link {
    font-size: 12px;
    margin-top: 4px;
    display: inline-block;
}

/* ===== Breadcrumbs ===== */
.az-breadcrumbs {
    padding: 14px 0 4px;
    font-size: 13px;
    color: #555;
}

.az-breadcrumbs a {
    color: #666;
}

.az-breadcrumbs a:hover {
    color: #aaa;
}

.az-breadcrumbs span {
    margin: 0 6px;
}

/* ===== Transitions between sections ===== */
.az-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
}

.az-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero immediate show */
.az-hero {
    opacity: 1;
    transform: none;
}

/* ===== UNUSED/DECOY styles for uniqualization ===== */
.x9f2k3 {
    display: none;
}

.b7r1q9 {
    visibility: hidden;
}

.wp-block-cover {
    position: relative;
}

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

.entry-content {
    display: block;
}

.post-thumbnail {
    display: block;
}

.elementor-widget {
    display: block;
}

.elementor-section {
    display: block;
}

.wp-block-columns {
    display: flex;
}

.site-main {
    display: block;
}

.page-id-1 {
    display: block;
}

.has-post-thumbnail {
    display: block;
}

.single-post-content-wrap {
    display: block;
}

.pmc3f8 {
    color: transparent;
}

.qk7b2x {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

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

.elementor-kit-12 {
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .az-slots__wrap {
        flex-wrap: nowrap;
    }

    .az-slot-card {
        flex: 0 0 160px;
    }
}

@media (max-width: 768px) {
    .az-header__nav {
        display: none;
    }

    .az-burger {
        display: flex;
    }

    .az-header__inner {
        padding: 8px 16px;
    }

    .az-hero__content {
        padding: 48px 16px;
    }

    .az-proscons {
        flex-direction: column;
    }

    .az-tournaments__wrap {
        flex-wrap: nowrap;
    }

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

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

    .az-widget__text {
        font-size: 13px;
    }

    .az-widget {
        gap: 10px;
        padding: 10px 40px 10px 16px;
    }

    .az-content-block {
        padding: 20px 18px;
    }

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

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

@media (max-width: 480px) {
    .az-reels .az-reel {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }

    .az-hero__title {
        font-size: 24px;
    }

    .az-hero__btns {
        flex-direction: column;
    }

    .az-hero__btns .az-btn {
        width: 100%;
        justify-content: center;
    }
}

html, body {
    background: #020100 !important;
}

.wrapper,
#x9f2k3-wrapper,
.site-main,
main,
.page-id-1,
.single-post-content-wrap {
    background: transparent !important;
}

.az-section,
.az-section--alt {
    background: transparent;
}

.mndb {
    background: #0e0920;
    border: 1px solid #1a1030;
    border-radius: 16px;
    padding: 40px 48px;
    max-width: 1100px;
    margin: 40px auto;
    color: #ccc;
    line-height: 1.8;
    font-size: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .6);
}

.mndb h1 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.25;
}

.mndb p {
    margin-bottom: 16px;
}

.mndb a {
    color: #0b80dc;
}

.mndb a:hover {
    color: #a8c94e;
}

@media (max-width: 768px) {
    .mndb {
        padding: 22px 18px;
        margin: 20px 12px;
        border-radius: 12px;
        font-size: 15px;
    }

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

@media (max-width: 480px) {
    .mndb {
        padding: 18px 14px;
        margin: 16px 8px;
        font-size: 14px;
    }

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