/* === Azino777 Main Styles v1.7 === */
/* wp-content/themes/azino777/style.css */

:root {
    --az-header-bg: #090111;
    --az-footer-bg: #090111;
    --az-page-bg: #020100;
    --az-btn-blue: #0b80dc;
    --az-btn-green: #a8c94e;
    --az-text-primary: #f0ede8;
    --az-text-secondary: #b8b2aa;
    --az-text-muted: #7a746e;
    --az-border: rgba(255, 255, 255, 0.08);
    --az-card-bg: #0e0b18;
    --az-card-bg2: #0a0d0a;
    --az-accent: #0b80dc;
    --az-success: #a8c94e;
    --az-warning: #f0a030;
    --az-error: #e85555;
    --az-radius: 12px;
    --az-radius-sm: 8px;
    --az-spacing: 8px;
    --az-transition: 0.22s ease;
    --az-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    --az-shadow-btn: 0 2px 12px rgba(11, 128, 220, 0.3);
    --az-shadow-green: 0 2px 12px rgba(168, 201, 78, 0.3);
    /* color ramps */
    --c-primary-100: #e3f2fd;
    --c-primary-400: #42a5f5;
    --c-primary-700: #0b80dc;
    --c-primary-900: #063a6b;
    --c-secondary-100: #f9fbe7;
    --c-secondary-400: #c5e073;
    --c-secondary-700: #a8c94e;
    --c-secondary-900: #4a5e1e;
    --c-neutral-100: #f5f0eb;
    --c-neutral-300: #c8c0b8;
    --c-neutral-500: #7a746e;
    --c-neutral-700: #3a3530;
    --c-neutral-900: #1a1510;
    --c-success-500: #a8c94e;
    --c-warning-500: #f0a030;
    --c-error-500: #e85555;
}

/* unused extra classes for uniqualization */
.az-unused-q8x {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.az-dummy-m3k {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.wp-block-az9 {
    display: none !important;
}

.elementor-hidden-xp {
    display: none !important;
}

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

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

body.az-body-xm9 {
    background-color: var(--az-page-bg);
    color: var(--az-text-primary);
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    min-height: 100vh;
}

/* === HEADER === */
.site-header-xm7 {
    background: var(--az-header-bg);
    border-bottom: 1px solid var(--az-border);
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.hdr-xk9m2 {
    min-height: 60px;
}

.hdr-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-link-az9p {
    text-decoration: none;
}

.nav-link-az {
    color: var(--az-text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 6px 4px;
    transition: color var(--az-transition);
    white-space: nowrap;
}

.nav-link-az:hover {
    color: var(--az-btn-blue);
}

.online-dot-p7k {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--az-success);
    border-radius: 50%;
    animation: pulseOnline 2s infinite;
    flex-shrink: 0;
}

@keyframes pulseOnline {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(168, 201, 78, 0.5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(168, 201, 78, 0);
    }
}

.online-txt-q2w {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--az-success);
}

.online-label-r5t {
    font-size: 0.78rem;
    color: var(--az-text-muted);
}

/* === BUTTONS === */
.btn-login-az7 {
    background: transparent;
    color: #fff !important;
    border: 1.5px solid var(--az-btn-blue);
    border-radius: var(--az-radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    transition: background var(--az-transition), box-shadow var(--az-transition), transform var(--az-transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-login-az7:hover {
    background: var(--az-btn-blue);
    color: #fff !important;
    box-shadow: var(--az-shadow-btn);
    transform: translateY(-1px);
}

.btn-reg-az7 {
    background: var(--az-btn-green);
    color: #0e1a00 !important;
    border: none;
    border-radius: var(--az-radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    transition: background var(--az-transition), box-shadow var(--az-transition), transform var(--az-transition);
    text-decoration: none !important;
    white-space: nowrap;
}

.btn-reg-az7:hover {
    background: #c0e060;
    color: #0e1a00 !important;
    box-shadow: var(--az-shadow-green);
    transform: translateY(-1px);
}

.btn-spin-az9 {
    background: linear-gradient(135deg, var(--az-btn-blue) 0%, #0a60a8 100%);
    color: #fff !important;
    border: none;
    border-radius: var(--az-radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: background var(--az-transition), box-shadow var(--az-transition), transform var(--az-transition);
    box-shadow: var(--az-shadow-btn);
}

.btn-spin-az9:hover:not(:disabled) {
    background: linear-gradient(135deg, #0a60a8 0%, var(--az-btn-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 128, 220, 0.45);
}

.btn-spin-az9:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* === BURGER === */
.burger-btn-m8x {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 34px;
}

.burger-btn-m8x span {
    display: block;
    height: 2px;
    background: var(--az-text-primary);
    border-radius: 2px;
    transition: all 0.25s ease;
    width: 100%;
}

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

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

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

.mobile-menu-xk9 {
    background: #0e0a1a;
    border-top: 1px solid var(--az-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-menu-xk9.open {
    max-height: 400px;
}

.mob-link {
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--az-border);
}

.mob-link:last-child {
    border-bottom: none;
}

/* === HERO === */
.hero-section-az8 {
    position: relative;
    background: url('/hero-777.png') center center / cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-bg-overlay-q2x {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(2, 1, 0, 0.88) 40%, rgba(9, 1, 17, 0.6) 100%);
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-bg-overlay-q2x .container {
    position: relative;
    z-index: 2;
}

.hero-content-xp5 {
    max-width: 620px;
    padding: 80px 0 80px;
}

.hero-badge-k3m {
    display: inline-block;
    background: rgba(11, 128, 220, 0.18);
    color: var(--az-btn-blue);
    border: 1px solid rgba(11, 128, 220, 0.35);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 4px 14px;
    letter-spacing: 0.5px;
}

.hero-h1-az9 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-sub-txt {
    font-size: 1.1rem;
    color: var(--az-text-secondary);
    line-height: 1.6;
}

.hero-cta-btn {
    font-size: 1rem !important;
    padding: 12px 32px !important;
    animation: heroPulse 2.5s infinite;
}

@keyframes heroPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(168, 201, 78, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(168, 201, 78, 0);
    }
}

/* === SECTION TITLES === */
.section-title-az {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    position: relative;
    padding-bottom: 12px;
}

.section-title-az::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--az-btn-blue), var(--az-btn-green));
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* === PROS/CONS === */
.pros-block-q7m {
    background: linear-gradient(135deg, #071a0e 0%, #0a1a0d 100%);
    border: 1px solid rgba(168, 201, 78, 0.2);
    border-radius: var(--az-radius);
    box-shadow: var(--az-shadow);
    transition: box-shadow var(--az-transition);
}

.pros-block-q7m:hover {
    box-shadow: 0 8px 32px rgba(168, 201, 78, 0.12);
}

.pros-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--az-success);
}

.pros-icon {
    margin-right: 6px;
}

.pros-list-xp9 {
    list-style: none;
    padding: 0;
}

.pros-list-xp9 li {
    padding: 7px 0 7px 22px;
    border-bottom: 1px solid rgba(168, 201, 78, 0.08);
    color: var(--az-text-primary);
    font-size: 0.95rem;
    position: relative;
    line-height: 1.5;
}

.pros-list-xp9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--az-success);
    font-weight: 700;
}

.pros-list-xp9 li:last-child {
    border-bottom: none;
}

.cons-block-r4x {
    background: linear-gradient(135deg, #1a0707 0%, #170d0d 100%);
    border: 1px solid rgba(232, 85, 85, 0.2);
    border-radius: var(--az-radius);
    box-shadow: var(--az-shadow);
    transition: box-shadow var(--az-transition);
}

.cons-block-r4x:hover {
    box-shadow: 0 8px 32px rgba(232, 85, 85, 0.12);
}

.cons-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--az-error);
}

.cons-icon {
    margin-right: 6px;
}

.cons-list-xp9 {
    list-style: none;
    padding: 0;
}

.cons-list-xp9 li {
    padding: 7px 0 7px 22px;
    border-bottom: 1px solid rgba(232, 85, 85, 0.08);
    color: var(--az-text-primary);
    font-size: 0.95rem;
    position: relative;
    line-height: 1.5;
}

.cons-list-xp9 li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--az-error);
    font-weight: 700;
}

.cons-list-xp9 li:last-child {
    border-bottom: none;
}

/* === VIDEO === */
.video-section-az5 {
}

.video-wrap-q9x {
    background: #0a0910;
    border: 1px solid var(--az-border);
    border-radius: var(--az-radius);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-iframe-xk7 {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: none;
    display: block;
}

/* === BONUSES === */
.bonus-card-xm5 {
    background: var(--az-card-bg);
    border: 1px solid var(--az-border);
    border-radius: var(--az-radius);
    box-shadow: var(--az-shadow);
    transition: transform var(--az-transition), box-shadow var(--az-transition), border-color var(--az-transition);
}

.bonus-card-xm5:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 201, 78, 0.35);
    box-shadow: 0 8px 32px rgba(168, 201, 78, 0.15);
}

.bonus-icon-q2k {
    font-size: 2.2rem;
}

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

.bonus-amount-xp {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--az-success);
    letter-spacing: -0.5px;
}

.bonus-desc-t3x {
    font-size: 0.9rem;
    color: var(--az-text-secondary);
    line-height: 1.55;
}

/* === BONUS SLIDER MOBILE === */
.bonus-slider-mob {
    overflow: hidden;
    position: relative;
}

.bonus-slider-inner-xk9 {
    display: flex;
    transition: transform 0.4s ease;
}

.bonus-slide-item-q2m {
    min-width: 100%;
    flex-shrink: 0;
}

.slider-dot-xk {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--az-text-muted);
    cursor: pointer;
    transition: background var(--az-transition);
}

.slider-dot-xk.active {
    background: var(--az-btn-green);
}

/* === SLOT GAME === */
.slot-machine-wrap-xk9 {
    background: linear-gradient(135deg, #0a0518 0%, #0e0b24 100%);
    border: 1px solid rgba(11, 128, 220, 0.25);
    border-radius: var(--az-radius);
    padding: 32px 24px;
    max-width: 480px;
    box-shadow: 0 8px 40px rgba(11, 128, 220, 0.15);
}

.slot-sub-txt {
    color: var(--az-text-secondary);
    font-size: 0.95rem;
}

.slot-reel-item-xp {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(11, 128, 220, 0.3);
    border-radius: var(--az-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.1s ease;
    user-select: none;
}

.slot-reel-item-xp.spinning {
    animation: reelSpin 0.12s linear infinite;
}

@keyframes reelSpin {
    0% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.85);
    }
    100% {
        transform: scaleY(1);
    }
}

.slot-result-xm5 {
    font-size: 1rem;
    font-weight: 600;
    min-height: 28px;
    color: var(--az-text-secondary);
}

.slot-win-block-az7 {
}

.slot-win-title-xp {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--az-success);
}

.slot-win-bonus-q2k {
    font-size: 1rem;
    color: var(--az-text-primary);
}

/* === PAYMENTS TABLE === */
.payments-table-xk9 {
    background: var(--az-card-bg);
    color: var(--az-text-primary);
    border-radius: var(--az-radius-sm);
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.payments-table-xk9 th {
    background: #0e0a1a;
    color: #fff;
    font-weight: 700;
    text-align: left;
    padding: 12px 16px;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.payments-table-xk9 td {
    text-align: left;
    padding: 10px 16px;
    border-color: rgba(255, 255, 255, 0.06) !important;
    font-size: 0.95rem;
    color: var(--az-text-primary);
}

.payments-table-xk9 tbody tr:hover {
    background: rgba(11, 128, 220, 0.06);
}

/* === REVIEW CONTENT === */
.review-content-section-az9 {
}

.review-author-block-xm3 {
    background: #0e0b18;
    border: 1px solid var(--az-border);
    border-radius: var(--az-radius);
}

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

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

.review-author-link {
    color: var(--az-btn-blue);
    text-decoration: none;
}

.review-author-link:hover {
    text-decoration: underline;
}

.review-h1-az {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.22;
}

/* === CONTENT RAW (голые теги из CMS) === */
.content-raw-az9k h1,
.content-raw-az9k h2,
.content-raw-az9k h3,
.content-raw-az9k h4,
.content-raw-az9k h5,
.content-raw-az9k h6 {
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.content-raw-az9k h1 {
    font-size: 2rem;
}

.content-raw-az9k h2 {
    font-size: 1.6rem;
}

.content-raw-az9k h3 {
    font-size: 1.3rem;
}

.content-raw-az9k h4 {
    font-size: 1.1rem;
}

.content-raw-az9k p {
    color: var(--az-text-primary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

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

.content-raw-az9k a:hover {
    color: #42a5f5;
    text-decoration: underline;
}

.content-raw-az9k ul,
.content-raw-az9k ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-raw-az9k li {
    color: var(--az-text-primary);
    line-height: 1.65;
    margin-bottom: 0.4rem;
    font-size: 0.97rem;
}

.content-raw-az9k ul li::marker {
    color: var(--az-btn-blue);
}

.content-raw-az9k ol li::marker {
    color: var(--az-btn-blue);
}

.content-raw-az9k strong, .content-raw-az9k b {
    color: #fff;
    font-weight: 700;
}

.content-raw-az9k em, .content-raw-az9k i {
    color: var(--az-text-secondary);
}

.content-raw-az9k blockquote {
    border-left: 4px solid var(--az-btn-blue);
    padding: 12px 16px;
    background: rgba(11, 128, 220, 0.07);
    border-radius: 0 8px 8px 0;
    margin: 1.2rem 0;
    color: var(--az-text-secondary);
    font-style: italic;
}

.content-raw-az9k table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2rem;
    font-size: 0.93rem;
    overflow-x: auto;
    display: block;
}

.content-raw-az9k table th {
    background: #0e0a1a;
    color: #fff;
    font-weight: 700;
    text-align: left;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-raw-az9k table td {
    text-align: left;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--az-text-primary);
}

.content-raw-az9k table tbody tr:hover {
    background: rgba(11, 128, 220, 0.06);
}

.content-raw-az9k img {
    max-width: 100%;
    height: auto;
    border-radius: var(--az-radius-sm);
    display: block;
    margin: 1rem 0;
}

.content-raw-az9k hr {
    border: none;
    border-top: 1px solid var(--az-border);
    margin: 1.5rem 0;
}

.content-raw-az9k code {
    background: rgba(11, 128, 220, 0.12);
    color: #7dd3fc;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.88em;
    font-family: 'Courier New', monospace;
}

.content-raw-az9k pre {
    background: #0a0910;
    border: 1px solid var(--az-border);
    border-radius: 8px;
    padding: 14px;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.content-raw-az9k pre code {
    background: none;
    padding: 0;
}

/* === FAQ ACCORDION === */
.az-accordion-xk9 .az-acc-item {
    background: var(--az-card-bg);
    border: 1px solid var(--az-border) !important;
    border-radius: var(--az-radius) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.az-acc-btn {
    background: var(--az-card-bg) !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.97rem;
    padding: 16px 20px;
    border: none;
    box-shadow: none !important;
}

.az-acc-btn::after {
    filter: invert(1) brightness(2);
}

.az-acc-btn:not(.collapsed) {
    background: #0e0b22 !important;
    color: var(--az-btn-blue) !important;
}

.az-acc-body {
    background: #0a0910;
    color: var(--az-text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    padding: 14px 20px 18px;
    border-top: 1px solid var(--az-border);
}

/* === FOOTER === */
.ftr-outer-xm3 {
    background: var(--az-footer-bg);
    border-top: 1px solid var(--az-border);
}

.ftr-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.ftr-tagline-v2x {
    font-size: 0.78rem;
    color: var(--az-text-muted);
}

.ftr-nav-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--az-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.ftr-nav-list li {
    margin-bottom: 6px;
}

.ftr-link {
    color: var(--az-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--az-transition);
}

.ftr-link:hover {
    color: var(--az-btn-blue);
}

.ftr-pay-badge, .ftr-prov-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--az-border);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--az-text-secondary);
    padding: 3px 10px;
}

.ftr-support-txt {
    font-size: 0.88rem;
    color: var(--az-text-secondary);
    margin: 0;
}

.ftr-divider {
    border-color: var(--az-border) !important;
}

.ftr-legal-txt {
    font-size: 0.78rem;
    color: var(--az-text-muted);
    line-height: 1.6;
}

/* === REGISTRATION WIDGET === */
.reg-widget-xk9 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #0e0b22 0%, #090111 100%);
    border-top: 2px solid var(--az-btn-green);
    z-index: 2000;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6);
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.reg-widget-xk9.hidden {
    transform: translateY(100%);
}

.widget-text-q2m {
}

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

.widget-sub-xp {
    font-size: 0.82rem;
    color: var(--az-text-muted);
}

.btn-widget-xk {
    font-size: 0.95rem !important;
    padding: 10px 22px !important;
    white-space: nowrap;
    flex-shrink: 0;
}

.widget-close-btn-az {
    background: none;
    border: none;
    color: var(--az-text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color var(--az-transition);
    flex-shrink: 0;
}

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

/* === TRANSITIONS BETWEEN SECTIONS === */
.hero-section-az8, .pros-cons-section-xk8, .video-section-az5,
.bonuses-section-az3, .slot-game-section-az4, .payments-info-section-az,
.faq-section-az6, .review-content-section-az9 {
    animation: fadeInUp 0.55s ease both;
}

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

/* Scroll reveal: hidden initially, shown by JS */
.reveal-xk9 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-xk9.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === UNUSED ELEMENTS FOR WP APPEARANCE === */
.wp-caption {
    display: none;
}

.widget-area-az9 {
    display: none !important;
}

.screen-reader-text {
    display: none !important;
}

.entry-meta-wp {
    display: none;
}

/* === RESPONSIVE === */
@media (max-width: 767px) {
    .hero-content-xp5 {
        padding: 60px 0 60px;
    }

    .hero-h1-az9 {
        font-size: 1.5rem;
    }

    .slot-reel-item-xp {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
    }

    .slot-machine-wrap-xk9 {
        padding: 20px 14px;
    }

    .hdr-xk9m2 {
        flex-wrap: nowrap;
    }

    .reg-widget-xk9 {
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px 16px;
    }

    .ftr-inner-q9k {
        text-align: center;
    }

    .section-title-az::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-title-az {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn-login-az7, .btn-reg-az7 {
        font-size: 0.78rem !important;
        padding: 6px 10px !important;
    }

    .hero-content-xp5 {
        padding: 48px 0;
    }
}

.erfsc {
    max-width: 960px;
    margin: 48px auto;
    padding: 40px;
    background: linear-gradient(180deg, var(--az-card-bg), #07050f);
    border: 1px solid rgba(168, 201, 78, 0.25);
    border-radius: var(--az-radius);
    box-shadow: var(--az-shadow);
}

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

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

.erfsc p {
    margin-bottom: 16px;
    color: var(--az-text-primary);
    font-size: 16px;
    line-height: 1.75;
}

.erfsc a {
    color: var(--az-btn-blue);
    font-weight: 600;
    word-break: break-word;
}

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

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

    .erfsc h2 {
        margin-top: 26px;
    }
}

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

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

@media (max-width: 768px) {
    .bonus-slider-mob {
        overflow: hidden;
        padding: 0 8px;
    }

    .bonus-slider-inner-xk9 {
        display: flex;
        gap: 12px;
        padding: 4px 0 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .bonus-slider-inner-xk9::-webkit-scrollbar {
        display: none;
    }

    .bonus-slide-item-q2m {
        min-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .bonus-card-xm5 {
        padding: 18px 16px;
        border-radius: var(--az-radius-sm);
    }

    .bonus-name-az {
        font-size: 16px;
    }

    .bonus-amount-xp {
        font-size: 22px;
    }

    .bonus-desc-t3x {
        font-size: 14px;
        line-height: 1.5;
    }

    .bonus-card-xm5 .btn {
        margin-top: 6px;
        padding: 8px;
        font-size: 14px;
    }

    .bonus-slider-dots {
        margin-top: 8px;
    }
}

@media (max-width: 768px) {
    .bonus-slider-mob {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .bonus-slider-inner-xk9 {
        display: flex;
        gap: 0;
        width: 100%;
        overflow: hidden;
    }

    .bonus-slide-item-q2m {
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .bonus-slide-item-q2m .bonus-card-xm5 {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 18px 14px !important;
        box-sizing: border-box;
    }

    .bonus-card-xm5 {
        overflow: hidden;
    }

    .bonus-desc-t3x {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

@media (max-width: 768px) {
    .bonus-slider-mob {
        width: 100%;
        overflow: hidden;
    }

    .bonus-slider-inner-xk9 {
        display: flex;
        width: 100%;
        overflow: visible;
        gap: 0;
        transition: transform 0.4s ease;
    }

    .bonus-slide-item-q2m {
        min-width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 12px;
        box-sizing: border-box;
    }

    .bonus-slide-item-q2m .bonus-card-xm5 {
        width: 100%;
        max-width: 340px;
        margin: 0 auto !important;
        padding: 18px 14px !important;
        box-sizing: border-box;
    }

    .bonus-desc-t3x {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}