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

:root {
    --az-bg: #020100;
    --az-header-bg: #090111;
    --az-btn-blue: #0b80dc;
    --az-btn-green: #a8c94e;
    --az-text: #e8e8e8;
    --az-text-muted: #9b9b9b;
    --az-card-bg: #0e0b1a;
    --az-card-border: #1e1533;
    --az-accent: #0b80dc;
    --az-gold: #f5c518;
    --az-radius: 12px;
    --az-radius-sm: 8px;
    --az-shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --az-font: Helvetica, 'Inter', sans-serif;
    --az-transition: .22s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

a:hover {
    color: #3faeff;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =========================================================
   TYPOGRAPHY SCALE
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
    color: #fff;
    line-height: 1.2;
    font-weight: 700;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: .4px;
    transition: all var(--az-transition);
    border: none;
    cursor: pointer;
}

.az-btn-login {
    background: var(--az-btn-blue);
    color: #fff !important;
    padding: 8px 20px;
}

.az-btn-login:hover {
    background: #0a70c5;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(11, 128, 220, .35);
}

.az-btn-signup {
    background: var(--az-btn-green);
    color: #0d0d0d !important;
    padding: 8px 20px;
    font-weight: 700;
}

.az-btn-signup:hover {
    background: #bdd95c;
    color: #0d0d0d !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(168, 201, 78, .35);
}

.az-btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.az-btn-outline-light {
    border: 2px solid rgba(255, 255, 255, .55);
    color: #fff !important;
    background: transparent;
    padding: 12px 28px;
}

.az-btn-outline-light:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff !important;
    border-color: #fff;
}

/* Pulse animation on CTA */
@keyframes az-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(168, 201, 78, .6);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(168, 201, 78, 0);
    }
}

.az-btn-pulse {
    animation: az-pulse 2.2s infinite;
}

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

.az-hdr-inner {
    padding: 12px 0;
    min-height: 64px;
    flex-wrap: wrap;
    gap: 8px;
}

.logo-link img {
    width: 140px;
    height: auto;
}

.az-nav-link {
    color: #c8c8d8 !important;
    font-size: .92rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all var(--az-transition);
}

.az-nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, .07);
}

.az-online-count {
    font-size: .82rem;
    color: var(--az-text-muted);
}

.az-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4cde70;
    display: inline-block;
    animation: blink 1.6s infinite;
    flex-shrink: 0;
}

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

.az-online-num {
    color: #4cde70;
    font-weight: 700;
}

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

.az-burger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--az-transition);
    display: block;
}

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

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

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

/* Mobile Nav */
.az-mobile-nav {
    background: #0c0820;
    border-top: 1px solid #1a1030;
    padding: 12px 16px;
    display: none;
    flex-direction: column;
    gap: 4px;
}

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

.az-mnav-link {
    color: #c8c8d8 !important;
    font-size: .95rem;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    transition: background var(--az-transition);
}

.az-mnav-link:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff !important;
}

.az-mnav-online {
    font-size: .82rem;
    padding: 4px 12px;
}

/* =========================================================
   SECTIONS BASE
   ========================================================= */
.az-section {
    padding: 72px 0;
    position: relative;
}

.az-section:nth-child(even) {
    background: #060412;
}

.az-section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: .5rem;
}

.az-section-sub {
    color: var(--az-text-muted);
    font-size: .97rem;
}

.az-hero {
    min-height: 580px;
    background: url('/azino-hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.az-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(2, 1, 0, .92) 40%, rgba(9, 1, 17, .6) 100%);
}

.az-hero-content {
    position: relative;
    z-index: 2;
}

.az-hero-badge {
    display: inline-block;
    background: rgba(168, 201, 78, .15);
    border: 1px solid rgba(168, 201, 78, .4);
    color: var(--az-btn-green);
    font-size: .82rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: .6px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.az-hero-title {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    color: #fff;
    line-height: 1.15;
    max-width: 620px;
}

.az-hero-sub {
    color: rgba(255, 255, 255, .75);
    font-size: 1.05rem;
    max-width: 520px;
    margin-top: 16px;
    line-height: 1.65;
}

.az-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--az-radius-sm);
    min-width: 90px;
}

.az-stat-num {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--az-btn-green);
    line-height: 1;
}

.az-stat-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    margin-top: 4px;
}

/* =========================================================
   CARDS
   ========================================================= */
.az-card {
    background: var(--az-card-bg);
    border: 1px solid var(--az-card-border);
    border-radius: var(--az-radius);
    padding: 24px;
    transition: transform var(--az-transition), box-shadow var(--az-transition);
}

.az-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
}

/* Pros/Cons */
.az-card-header {
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: var(--az-radius-sm);
    margin: -24px -24px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.az-pros-header {
    background: rgba(76, 222, 112, .12);
    color: #4cde70;
    border-bottom: 1px solid rgba(76, 222, 112, .2);
}

.az-cons-header {
    background: rgba(255, 85, 85, .12);
    color: #ff5555;
    border-bottom: 1px solid rgba(255, 85, 85, .2);
}

.az-card-icon {
    font-size: 1.2rem;
}

.az-pros-list li, .az-cons-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: .93rem;
    color: #d4d4d4;
    padding-left: 20px;
    position: relative;
}

.az-pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4cde70;
    font-weight: 700;
}

.az-cons-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ff5555;
    font-weight: 700;
}

.az-pros-list li:last-child, .az-cons-list li:last-child {
    border-bottom: none;
}

/* Jackpots */
.az-jackpots-section {
    background: linear-gradient(180deg, #060412 0%, #02010a 100%);
}

.az-jackpot-card {
    text-align: center;
}

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

.az-jackpot-name {
    font-size: .95rem;
    color: var(--az-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.az-jackpot-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--az-gold);
    text-shadow: 0 0 20px rgba(245, 197, 24, .3);
    min-height: 48px;
}

@keyframes az-count-up {
    from {
        opacity: .3;
        transform: scale(.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.az-jackpot-amount.updated {
    animation: az-count-up .4s ease;
}

/* Tournaments */
.az-tournaments-section {
    background: #060412;
}

.az-tournaments-slider-wrap {
    overflow: hidden;
}

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

@media (max-width: 767px) {
    .az-tournaments-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .az-tournaments-slider::-webkit-scrollbar {
        display: none;
    }

    .az-tourn-card {
        min-width: calc(100vw - 48px);
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

.az-tourn-card {
    position: relative;
}

.az-tourn-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    background: rgba(76, 222, 112, .18);
    color: #4cde70;
    margin-bottom: 12px;
}

.az-badge-gold {
    background: rgba(245, 197, 24, .15);
    color: var(--az-gold);
}

.az-badge-blue {
    background: rgba(11, 128, 220, .18);
    color: #3faeff;
}

.az-tourn-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.az-tourn-title {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.az-tourn-desc {
    font-size: .88rem;
    color: var(--az-text-muted);
    line-height: 1.55;
    margin-bottom: 12px;
}

.az-tourn-prize {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--az-gold);
    margin-bottom: 8px;
}

.az-tourn-timer {
    font-size: .85rem;
    color: var(--az-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.az-timer-val {
    color: #3faeff;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.az-timer-label {
    color: var(--az-text-muted);
}

.az-tourn-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.az-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: background var(--az-transition);
}

.az-dot.active {
    background: var(--az-btn-blue);
}

.az-slot-section {
    background: linear-gradient(180deg, #02010a 0%, #060412 100%);
}

.az-slot-machine {
    max-width: 400px;
    background: #0e0b1a;
    border: 2px solid #2a1f44;
    border-radius: 16px;
    padding: 28px 24px 24px;
    box-shadow: 0 0 40px rgba(11, 128, 220, .15);
}

.az-slot-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 12px;
    background: #06040f;
    border: 1px solid #1e1533;
    border-radius: 10px;
    padding: 16px 12px;
}

.az-reel {
    font-size: 3rem;
    text-align: center;
    line-height: 1;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s;
    user-select: none;
}

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

@keyframes az-spin-reel {
    0% {
        transform: translateY(-4px) scale(1.05);
    }
    50% {
        transform: translateY(4px) scale(.95);
    }
    100% {
        transform: translateY(-4px) scale(1.05);
    }
}

.az-slot-lines {
    color: rgba(255, 255, 255, .15);
    font-size: .7rem;
    margin-top: -6px;
}

.az-btn-spin {
    background: linear-gradient(135deg, #0b80dc, #065fa3);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--az-transition);
    letter-spacing: .5px;
}

.az-btn-spin:hover:not(:disabled) {
    background: linear-gradient(135deg, #1590ec, #0b6fbf);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 128, 220, .4);
}

.az-btn-spin:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.az-slot-result {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    animation: fadein .3s ease;
}

.az-slot-result.win {
    background: rgba(76, 222, 112, .12);
    border: 1px solid rgba(76, 222, 112, .3);
    color: #4cde70;
}

.az-slot-result.lose {
    background: rgba(255, 85, 85, .08);
    border: 1px solid rgba(255, 85, 85, .2);
    color: #ff7070;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   REVIEWS
   ========================================================= */
.az-reviews-section {
    background: #060412;
}

.az-review-avatar {
    border-radius: 50%;
    border: 2px solid var(--az-card-border);
    object-fit: cover;
    width: 48px;
    height: 48px;
}

.az-review-name {
    font-weight: 700;
    color: #fff;
    font-size: .95rem;
}

.az-review-text {
    font-size: .9rem;
    color: #ccc;
    line-height: 1.65;
}

.az-stars svg {
    display: block;
}

/* Review Form */
.az-review-form-wrap {
    max-width: 580px;
}

.az-form-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.az-form-input {
    background: #06040f !important;
    border: 1px solid #2a1f44 !important;
    color: #e8e8e8 !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: .93rem !important;
    transition: border-color var(--az-transition) !important;
}

.az-form-input::placeholder {
    color: #555 !important;
}

.az-form-input:focus {
    border-color: var(--az-btn-blue) !important;
    box-shadow: 0 0 0 3px rgba(11, 128, 220, .15) !important;
    outline: none !important;
    background: #08060f !important;
}

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

.az-review-success {
    text-align: center;
    padding: 32px 20px;
}

.az-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(76, 222, 112, .15);
    border: 2px solid #4cde70;
    color: #4cde70;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.az-review-success p {
    color: #ccc;
    font-size: .95rem;
}

/* =========================================================
   FAQ
   ========================================================= */
.az-faq-section {
    background: #02010a;
}

.az-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.az-faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--az-btn-blue);
    font-weight: 400;
    flex-shrink: 0;
    transition: transform var(--az-transition);
}

.az-faq-question.open::after {
    content: '−';
}

.az-faq-question:hover {
    background: #13102a;
}

.az-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .2s;
    background: #0b0818;
    padding: 0 20px;
    color: var(--az-text-muted);
    font-size: .9rem;
    line-height: 1.65;
}

.az-faq-answer.open {
    max-height: 300px;
    padding: 16px 20px;
}

/* =========================================================
   CONTENT AREA (bare HTML)
   ========================================================= */
.az-content-section {
    background: #02010a;
}

.az-author-box {
    background: var(--az-card-bg);
    border: 1px solid var(--az-card-border);
    border-radius: var(--az-radius-sm);
    padding: 14px 20px;
}

.az-author-avatar {
    border-radius: 50%;
    border: 2px solid var(--az-card-border);
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.az-author-name {
    font-weight: 700;
    color: #fff;
    font-size: .95rem;
}

.az-author-role {
    font-size: .82rem;
    color: var(--az-text-muted);
}

.az-author-role a {
    color: var(--az-btn-blue);
}

/* Bare HTML content styling */
.az-content-body {
    color: #ccc;
    line-height: 1.75;
    font-size: .97rem;
}

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

.az-content-body h2 {
    font-size: 1.45rem;
}

.az-content-body h3 {
    font-size: 1.2rem;
}

.az-content-body p {
    margin-bottom: 16px;
}

.az-content-body a {
    color: var(--az-btn-blue);
    text-decoration: underline;
}

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

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

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

.az-content-body li {
    margin-bottom: 6px;
    color: #ccc;
}

.az-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: .9rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

.az-content-body table th {
    background: #0e0b1a;
    color: #fff;
    font-weight: 700;
}

.az-content-body table tr:nth-child(even) {
    background: #0b0818;
}

.az-content-body blockquote {
    border-left: 3px solid var(--az-btn-blue);
    padding: 10px 16px;
    margin: 16px 0;
    color: #aaa;
    font-style: italic;
    background: rgba(11, 128, 220, .06);
    border-radius: 0 8px 8px 0;
}

.az-content-body strong {
    color: #fff;
    font-weight: 700;
}

.az-content-body em {
    font-style: italic;
    color: #bbb;
}

.az-content-body img {
    border-radius: 8px;
    margin: 12px 0;
    max-width: 100%;
}

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

.az-footer-logo img {
    width: 120px;
}

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

.az-footer-heading {
    font-weight: 700;
    color: #fff;
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 12px;
}

.az-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.az-footer-nav a:hover {
    color: #fff;
}

.az-pay-badge, .az-prov-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: .78rem;
    font-weight: 700;
    color: #bbb;
    letter-spacing: .3px;
    transition: all var(--az-transition);
}

.az-pay-badge:hover, .az-prov-badge:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.az-footer-divider {
    border: none;
    border-top: 1px solid #1a1030;
    margin: 32px 0 24px;
}

.az-copyright {
    font-size: .8rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 6px;
}

.az-legal {
    font-size: .75rem;
    color: #3d3d3d;
    line-height: 1.5;
}

.az-footer-bottom {
    padding-bottom: 28px;
}

.az-license-badge, .az-age-badge {
    display: inline-block;
    border: 1px solid #2a2040;
    color: #666;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    margin-left: 6px;
}

.az-age-badge {
    border-color: rgba(255, 85, 85, .3);
    color: #ff5555;
}

/* =========================================================
   BOTTOM WIDGET
   ========================================================= */
.az-bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: linear-gradient(90deg, #090111 0%, #0c0220 100%);
    border-top: 2px solid var(--az-btn-green);
    padding: 12px 20px;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.az-bottom-widget.hidden {
    transform: translateY(100%);
}

.az-widget-text {
    display: flex;
    flex-direction: column;
}

.az-widget-bonus {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.az-widget-sub {
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
}

.az-widget-btn {
    background: var(--az-btn-green);
    color: #0d0d0d !important;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: .92rem;
    text-decoration: none !important;
    transition: all var(--az-transition);
    flex-shrink: 0;
}

.az-widget-btn:hover {
    background: #bdd95c;
    color: #0d0d0d !important;
    transform: translateY(-1px);
}

.az-widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    flex-shrink: 0;
    transition: color var(--az-transition);
}

.az-widget-close:hover {
    color: #fff;
}

.az-x7k2m9 {
    display: none;
}

.az-b3r9f1 {
    visibility: hidden;
    position: absolute;
}

.az-q5w8e3 {
    width: 0;
    height: 0;
    overflow: hidden;
}

.az-p2n6y4 {
    opacity: 0;
    pointer-events: none;
}

.az-v9c1a7 {
    transform: scale(0);
    position: absolute;
}

.az-d4s2h8 {
    clip: rect(0, 0, 0, 0);
    position: absolute;
}

.elementor-widget { /* stub */
}

.elementor-section { /* stub */
}

.wp-block-group { /* stub */
}

.entry-content { /* stub */
}

.wp-caption { /* stub */
}

.alignleft, .alignright, .aligncenter { /* stub */
}

/* Section fade-in animations */
@keyframes az-fadein-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.az-anim-in {
    animation: az-fadein-up .55s ease both;
}

/* Scroll transitions between sections */
.az-section::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .05), transparent);
}

@media (max-width: 991px) {
    .az-section {
        padding: 52px 0;
    }

    .az-hero {
        min-height: 460px;
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .az-section {
        padding: 40px 0;
    }

    .az-hero {
        min-height: 380px;
        padding: 48px 0;
    }

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

    .az-slot-machine {
        max-width: 100%;
    }

    .az-review-form-wrap {
        max-width: 100%;
    }

    .az-bottom-widget {
        padding: 10px 14px;
    }

    .az-widget-bonus {
        font-size: .88rem;
    }
}

@media (max-width: 480px) {
    .az-hdr-inner {
        gap: 6px;
    }

    .az-btn-login, .az-btn-signup {
        padding: 7px 13px;
        font-size: .82rem;
    }

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

    .az-jackpot-amount {
        font-size: 1.5rem;
    }
}

.lokj {
    max-width: 980px;
    margin: 48px auto;
    padding: 40px;
    background: linear-gradient(180deg, var(--az-card-bg), #080514);
    border: 1px solid var(--az-card-border);
    border-radius: var(--az-radius);
    box-shadow: var(--az-shadow);
}

.lokj h1 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 22px;
    color: #fff;
}

.lokj h2 {
    font-size: clamp(20px, 3vw, 28px);
    margin: 34px 0 14px;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--az-card-border);
    color: #fff;
}

.lokj p {
    margin-bottom: 16px;
    color: #ccc;
    font-size: 16px;
    line-height: 1.75;
}

.lokj a {
    color: var(--az-btn-blue);
    font-weight: 600;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.lokj strong {
    color: #fff;
}

@media (max-width: 768px) {
    .lokj {
        margin: 28px 14px;
        padding: 24px 18px;
        border-radius: var(--az-radius-sm);
    }

    .lokj p {
        font-size: 15px;
        line-height: 1.7;
    }

    .lokj h2 {
        margin-top: 28px;
    }
}

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

    .lokj h1 {
        margin-bottom: 18px;
    }
}

@media (max-width: 768px) {
    .az-tournaments-slider-wrap {
        overflow: hidden;
    }

    .az-tournaments-slider {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 4px 6px 10px;
    }

    .az-tournaments-slider::-webkit-scrollbar {
        display: none;
    }

    .az-tourn-card {
        flex: 0 0 88%;
        max-width: 88%;
        scroll-snap-align: center;
        border-radius: 14px;
        padding: 20px 16px;
    }

    .az-tourn-title {
        font-size: 16px;
    }

    .az-tourn-desc {
        font-size: 13.5px;
        line-height: 1.5;
    }

    .az-tourn-prize {
        font-size: 20px;
    }

    .az-tourn-card .btn {
        margin-top: 8px;
        padding: 10px;
        font-size: 14px;
    }

    .az-tourn-dots {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .az-tourn-card {
        flex: 0 0 92%;
        max-width: 92%;
    }
}