:root {
    --av-red: #e50539;
    --av-red-dark: #c0032e;
    --av-green: #28a909;
    --av-green-dark: #1e8507;
    --av-bg: #0e0e0e;
    --av-bg2: #161617;
    --av-bg3: #1c1c1e;
    --av-nav: #1b1c1d;
    --av-border: #2a2a2e;
    --av-text: #f0f0f0;
    --av-text-muted: #9a9aaa;
    --av-text-dim: #6b6b7a;
    --av-white: #ffffff;
    --av-radius: 10px;
    --av-radius-lg: 16px;
    --av-shadow: 0 4px 24px rgba(0, 0, 0, .5);
    --av-shadow-card: 0 2px 16px rgba(0, 0, 0, .4);
    --av-transition: .22s ease
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body, body.av-body {
    background-color: var(--av-bg) !important;
    color: var(--av-text) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

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

a:hover {
    color: var(--av-red-dark)
}

ul, ol {
    list-style: none
}

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

.ui.container {
    max-width: 1180px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
    margin: 0 auto !important
}

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

.av-header-inner {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.av-header-row {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 64px
}

.av-header-logo {
    flex-shrink: 0
}

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

.av-logo-img--footer {
    height: 32px
}

.av-nav {
    flex: 1
}

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

.av-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--av-text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 7px;
    transition: all var(--av-transition);
    white-space: nowrap
}

.av-nav-link:hover, .av-nav-link:focus {
    color: var(--av-white);
    background: rgba(255, 255, 255, .06)
}

.av-nav-icon {
    flex-shrink: 0;
    opacity: .7
}

.av-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto
}

.av-online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--av-text-muted);
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--av-border);
    border-radius: 20px;
    padding: 5px 12px;
    white-space: nowrap
}

.av-online-dot {
    width: 8px;
    height: 8px;
    background: var(--av-green);
    border-radius: 50%;
    animation: av-pulse 1.8s infinite
}

@keyframes av-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .6;
        transform: scale(1.15)
    }
}

.av-online-label {
    display: none
}

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

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

.av-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--av-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: all var(--av-transition)
}

.av-burger:hover {
    background: rgba(255, 255, 255, .06)
}

.av-burger-bar {
    width: 20px;
    height: 2px;
    background: var(--av-text);
    border-radius: 2px;
    transition: all var(--av-transition)
}

.av-burger.is-active .av-burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.av-burger.is-active .av-burger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.av-burger.is-active .av-burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.av-mobile-menu {
    display: none;
    background: var(--av-nav);
    border-top: 1px solid var(--av-border);
    padding: 8px 0
}

.av-mobile-menu.is-open {
    display: block;
    animation: av-slidedown .22s ease
}

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

.av-mobile-nav-list {
    padding: 0 20px;
    list-style: none
}

.av-mobile-nav-link {
    display: block;
    color: var(--av-text-muted);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--av-border);
    transition: color var(--av-transition)
}

.av-mobile-nav-link:hover {
    color: var(--av-white)
}

.av-mobile-nav-list li:last-child .av-mobile-nav-link {
    border-bottom: none
}

.av-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--av-transition);
    position: relative;
    overflow: hidden
}

.av-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background var(--av-transition)
}

.av-btn:hover::after {
    background: rgba(255, 255, 255, .08)
}

.av-btn:active {
    transform: scale(.97)
}

.av-btn--red {
    background: var(--av-red);
    color: var(--av-white) !important
}

.av-btn--red:hover {
    background: var(--av-red-dark);
    color: var(--av-white) !important
}

.av-btn--green {
    background: var(--av-green);
    color: var(--av-white) !important
}

.av-btn--green:hover {
    background: var(--av-green-dark);
    color: var(--av-white) !important
}

.av-btn--outline {
    background: transparent;
    color: var(--av-red) !important;
    border: 2px solid var(--av-red)
}

.av-btn--outline:hover {
    background: var(--av-red);
    color: var(--av-white) !important
}

.av-btn--download {
    background: var(--av-bg3);
    color: var(--av-text) !important;
    border: 1px solid var(--av-border)
}

.av-btn--download:hover {
    background: var(--av-border);
    color: var(--av-white) !important
}

.av-btn--apk {
    border-color: var(--av-green);
    color: var(--av-green) !important
}

.av-btn--apk:hover {
    background: var(--av-green);
    color: var(--av-white) !important
}

.av-btn--sm {
    padding: 8px 16px;
    font-size: 13px
}

.av-btn--md {
    padding: 10px 20px
}

.av-btn--lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 10px
}

.av-btn--full {
    width: 100%;
    padding: 12px
}

.av-btn--widget {
    padding: 10px 20px;
    font-size: 14px
}

.av-btn-icon {
    flex-shrink: 0
}

.av-hero-section {
    background: var(--av-nav) url('/av-banner.png') center/cover no-repeat;
    position: relative;
    padding: 80px 0
}

.av-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 14, 14, .9) 0%, rgba(27, 28, 29, .75) 60%, rgba(14, 14, 14, .5) 100%)
}

.av-hero-inner {
    position: relative;
    z-index: 1
}

.av-hero-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap
}

.av-hero-text {
    flex: 1;
    min-width: 280px
}

.av-hero-title {
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 800;
    color: var(--av-white);
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6)
}

.av-hero-subtitle {
    font-size: 17px;
    color: var(--av-text-muted);
    margin-bottom: 32px;
    line-height: 1.6
}

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

.av-promo-card {
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(229, 5, 57, .35);
    border-radius: var(--av-radius-lg);
    padding: 28px;
    min-width: 280px;
    max-width: 340px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 32px rgba(229, 5, 57, .12)
}

.av-promo-badge {
    position: absolute;
    top: -13px;
    left: 20px;
    background: var(--av-red);
    color: var(--av-white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.av-promo-label {
    color: var(--av-text-muted);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 10px
}

.av-promo-code-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, .4);
    border: 1px solid var(--av-border);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px
}

.av-promo-code {
    font-size: 22px;
    font-weight: 800;
    color: var(--av-white);
    letter-spacing: 2px;
    flex: 1
}

.av-btn-icon {
    background: transparent;
    border: none;
    color: var(--av-text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: color var(--av-transition)
}

.av-btn-icon:hover {
    color: var(--av-white)
}

.av-promo-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px
}

.av-status-dot {
    width: 8px;
    height: 8px;
    background: var(--av-green);
    border-radius: 50%;
    flex-shrink: 0;
    animation: av-pulse 1.8s infinite
}

.av-status-text {
    font-size: 13px;
    color: var(--av-green);
    font-weight: 500
}

.av-promo-bonus {
    font-size: 18px;
    font-weight: 700;
    color: var(--av-white);
    margin-bottom: 16px
}

.av-promo-actions {
    margin-top: 4px
}

.av-content-wrap {
    padding: 0 0 60px
}

.av-content-inner {
}

.av-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--av-border)
}

.av-section:last-child {
    border-bottom: none
}

.av-section-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--av-white);
    margin-bottom: 10px;
    line-height: 1.2
}

.av-section-sub {
    color: var(--av-text-muted);
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.6
}

.av-proscons-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.av-pros-card, .av-cons-card {
    flex: 1;
    min-width: 260px;
    background: var(--av-bg3);
    border-radius: var(--av-radius-lg);
    overflow: hidden;
    border: 1px solid var(--av-border)
}

.av-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .3px
}

.av-card-header--pros {
    background: rgba(40, 169, 9, .12);
    color: #4cdf2a;
    border-bottom: 1px solid rgba(40, 169, 9, .2)
}

.av-card-header--cons {
    background: rgba(229, 5, 57, .1);
    color: #ff6685;
    border-bottom: 1px solid rgba(229, 5, 57, .2)
}

.av-list {
    padding: 16px 20px 20px
}

.av-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--av-border);
    font-size: 14px;
    color: var(--av-text);
    line-height: 1.5;
    position: relative;
    padding-left: 20px
}

.av-list li:last-child {
    border-bottom: none
}

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

.av-list--cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6685;
    font-weight: 700
}

.av-table-wrap {
    overflow-x: auto;
    border-radius: var(--av-radius);
    border: 1px solid var(--av-border)
}

.av-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: var(--av-text) !important
}

.av-table th, .av-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--av-border) !important;
    color: var(--av-text) !important;
    background: transparent !important
}

.av-table th {
    background: var(--av-bg3) !important;
    color: var(--av-text-muted) !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .6px;
    font-weight: 600
}

.av-table tbody tr {
    background: var(--av-bg2) !important;
    transition: background var(--av-transition)
}

.av-table tbody tr:hover {
    background: var(--av-bg3) !important
}

.av-table tbody tr:last-child td {
    border-bottom: none !important
}

.av-app-table td:first-child {
    color: var(--av-text-muted);
    width: 50%
}

.av-winners-rank {
    font-weight: 700;
    color: var(--av-text-dim)
}

.av-winners-rank--gold {
    color: #fbbf24
}

.av-winners-rank--silver {
    color: #9ca3af
}

.av-winners-rank--bronze {
    color: #cd7c2f
}

.av-winners-nick {
    font-weight: 500
}

.av-winners-bet {
    color: var(--av-text-muted)
}

.av-winners-coef {
    color: var(--av-red);
    font-weight: 700
}

.av-winners-win {
    color: var(--av-green);
    font-weight: 700
}

.av-download-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px
}

.av-bonuses-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.av-bonus-card {
    flex: 1;
    min-width: 260px;
    background: var(--av-bg3);
    border: 1px solid var(--av-border);
    border-radius: var(--av-radius-lg);
    padding: 24px;
    position: relative;
    transition: border-color var(--av-transition), transform var(--av-transition)
}

.av-bonus-card:hover {
    border-color: rgba(229, 5, 57, .4);
    transform: translateY(-3px)
}

.av-bonus-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
    background: rgba(229, 5, 57, .15);
    color: var(--av-red);
    border: 1px solid rgba(229, 5, 57, .3)
}

.av-bonus-badge--hot {
    background: rgba(255, 140, 0, .15);
    color: #ff8c00;
    border-color: rgba(255, 140, 0, .3)
}

.av-bonus-badge--new {
    background: rgba(40, 169, 9, .12);
    color: #4cdf2a;
    border-color: rgba(40, 169, 9, .25)
}

.av-bonus-casino-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--av-white);
    margin-bottom: 6px
}

.av-bonus-amount {
    font-size: 38px;
    font-weight: 900;
    color: var(--av-red);
    line-height: 1;
    margin-bottom: 10px
}

.av-bonus-desc {
    font-size: 14px;
    color: var(--av-text-muted);
    line-height: 1.5;
    margin-bottom: 16px
}

.av-bonus-terms {
    margin-bottom: 20px
}

.av-bonus-terms li {
    font-size: 13px;
    color: var(--av-text-dim);
    padding: 4px 0;
    border-bottom: 1px solid var(--av-border)
}

.av-bonus-terms li:last-child {
    border-bottom: none
}

.av-bonus-terms strong {
    color: var(--av-text)
}

.av-demo-wrap {
    border-radius: var(--av-radius-lg);
    border: 1px solid var(--av-border)
}

.av-iframe-container {
    position: relative;
    background: var(--av-bg3)
}

.av-demo-iframe {
    display: block;
    width: 100%;
    min-height: 480px;
    background: var(--av-bg)
}

.av-demo-cta {
    background: var(--av-bg3);
    padding: 24px;
    text-align: center;
    border-top: 1px solid var(--av-border)
}

.av-demo-cta-text {
    color: var(--av-text-muted);
    font-size: 15px;
    margin-bottom: 16px
}

.av-strategies-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.av-strategy-card {
    flex: 1;
    min-width: 260px;
    background: var(--av-bg3);
    border: 1px solid var(--av-border);
    border-radius: var(--av-radius-lg);
    overflow: hidden;
    transition: border-color var(--av-transition), transform var(--av-transition)
}

.av-strategy-card:hover {
    border-color: rgba(229, 5, 57, .35);
    transform: translateY(-3px)
}

.av-strategy-img-wrap {
    overflow: hidden
}

.av-strategy-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform .4s ease
}

.av-strategy-card:hover .av-strategy-img {
    transform: scale(1.04)
}

.av-strategy-body {
    padding: 20px
}

.av-strategy-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--av-white);
    margin-bottom: 10px
}

.av-strategy-desc {
    font-size: 14px;
    color: var(--av-text-muted);
    line-height: 1.6;
    margin-bottom: 16px
}

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

.av-faq-item {
    background: var(--av-bg3);
    border: 1px solid var(--av-border);
    border-radius: var(--av-radius)
}

.av-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: transparent;
    border: none;
    color: var(--av-text);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 20px;
    cursor: pointer;
    text-align: left;
    transition: color var(--av-transition)
}

.av-faq-question:hover {
    color: var(--av-white)
}

.av-faq-question[aria-expanded="true"] {
    color: var(--av-white)
}

.av-faq-question[aria-expanded="true"] .av-faq-icon {
    transform: rotate(180deg)
}

.av-faq-icon {
    flex-shrink: 0;
    color: var(--av-red);
    transition: transform var(--av-transition)
}

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

.av-faq-answer.is-open {
    max-height: 600px
}

.av-faq-answer p {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--av-text-muted);
    line-height: 1.7
}

.av-author-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--av-bg3);
    border: 1px solid var(--av-border);
    border-radius: var(--av-radius-lg);
    padding: 24px;
    flex-wrap: wrap
}

.av-author-avatar {
    flex-shrink: 0
}

.av-author-info {
    flex: 1;
    min-width: 240px
}

.av-author-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--av-text-dim);
    margin-bottom: 4px
}

.av-author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--av-white);
    margin-bottom: 8px
}

.av-author-bio {
    font-size: 13px;
    color: var(--av-text-muted);
    line-height: 1.6;
    margin-bottom: 12px
}

.av-author-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--av-red);
    text-decoration: none
}

.av-author-link:hover {
    color: var(--av-red-dark);
    text-decoration: underline
}

.av-footer {
    background: var(--av-nav);
    border-top: 1px solid var(--av-border);
    margin-top: auto
}

.av-footer-inner {
    padding: 48px 20px 24px
}

.av-footer-top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.av-footer-brand {
    flex: 1;
    min-width: 220px
}

.av-footer-desc {
    font-size: 13px;
    color: var(--av-text-dim);
    line-height: 1.6;
    margin-top: 14px;
    max-width: 280px
}

.av-footer-nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap
}

.av-footer-nav-col {
    min-width: 150px
}

.av-footer-nav-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--av-text-muted);
    margin-bottom: 14px
}

.av-footer-nav-list {
    list-style: none
}

.av-footer-nav-link {
    display: block;
    font-size: 14px;
    color: var(--av-text-dim);
    padding: 5px 0;
    transition: color var(--av-transition)
}

.av-footer-nav-link:hover {
    color: var(--av-white)
}

.av-footer-payments, .av-footer-trust {
    margin-bottom: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--av-border)
}

.av-footer-section-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--av-text-dim);
    margin-bottom: 14px
}

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

.av-payment-badge, .av-trust-badge {
    border-radius: 6px;
    overflow: hidden;
    opacity: .75;
    transition: opacity var(--av-transition)
}

.av-payment-badge:hover, .av-trust-badge:hover {
    opacity: 1
}

.av-trust-badge img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: brightness(.8);
    transition: filter var(--av-transition)
}

.av-trust-badge:hover img {
    filter: brightness(1)
}

.av-footer-bottom {
    border-top: 1px solid var(--av-border);
    padding-top: 24px
}

.av-footer-copy {
    font-size: 13px;
    color: var(--av-text-dim);
    margin-bottom: 8px
}

.av-footer-legal {
    font-size: 12px;
    color: var(--av-text-dim);
    line-height: 1.6;
    margin-bottom: 6px;
    opacity: .7
}

.av-footer-link {
    color: var(--av-red);
    text-decoration: none
}

.av-footer-link:hover {
    text-decoration: underline
}


.av-content-inner h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--av-white);
    margin: 32px 0 14px;
    line-height: 1.3
}

.av-content-inner h3 {
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 600;
    color: var(--av-white);
    margin: 24px 0 10px
}

.av-content-inner h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--av-text);
    margin: 18px 0 8px
}

.av-content-inner p {
    font-size: 15px;
    color: var(--av-text-muted);
    line-height: 1.75;
    margin-bottom: 14px
}

.av-content-inner ul, .av-content-inner ol {
    padding-left: 24px;
    margin-bottom: 14px;
    list-style: disc
}

.av-content-inner ol {
    list-style: decimal
}

.av-content-inner li {
    font-size: 14px;
    color: var(--av-text-muted);
    line-height: 1.7;
    margin-bottom: 6px
}

.av-content-inner a {
    color: var(--av-red)
}

.av-content-inner a:hover {
    color: var(--av-red-dark)
}

.av-content-inner strong {
    color: var(--av-text);
    font-weight: 600
}

.av-content-inner em {
    font-style: italic;
    color: var(--av-text-muted)
}

.av-content-inner blockquote {
    border-left: 3px solid var(--av-red);
    padding: 12px 20px;
    background: var(--av-bg3);
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    font-style: italic;
    color: var(--av-text-muted)
}

.av-content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 14px;
    border-radius: var(--av-radius);
    overflow: hidden
}

.av-content-inner table th {
    background: var(--av-bg3);
    color: var(--av-text-muted);
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid var(--av-border)
}

.av-content-inner table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--av-border);
    color: var(--av-text-muted)
}

.av-content-inner table tr:last-child td {
    border-bottom: none
}

.av-content-inner table tr:hover td {
    background: var(--av-bg3)
}

.av-content-inner hr {
    border: none;
    border-top: 1px solid var(--av-border);
    margin: 24px 0
}

.av-content-inner img {
    border-radius: var(--av-radius);
    margin-bottom: 16px
}

.av-content-inner code {
    background: var(--av-bg3);
    color: var(--av-red);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px
}

.av-content-inner pre {
    background: var(--av-bg3);
    padding: 16px;
    border-radius: var(--av-radius);
    overflow-x: auto;
    margin-bottom: 14px
}

.av-content-inner pre code {
    background: none;
    color: var(--av-text);
    padding: 0
}

.av-bonus-slider-wrap {
    position: relative
}

@media (max-width: 767px) {
    .av-bonuses-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        gap: 14px
    }

    .av-bonus-card {
        scroll-snap-align: start;
        min-width: 80vw;
        max-width: 80vw
    }

    .av-bonuses-grid::-webkit-scrollbar {
        height: 4px
    }

    .av-bonuses-grid::-webkit-scrollbar-track {
        background: var(--av-bg3);
        border-radius: 2px
    }

    .av-bonuses-grid::-webkit-scrollbar-thumb {
        background: var(--av-border);
        border-radius: 2px
    }
}

@media (max-width: 900px) {
    .av-nav {
        display: none
    }

    .av-burger {
        display: flex
    }

    .av-online-label {
        display: none
    }
}

@media (max-width: 640px) {
    .av-hero-section {
        padding: 50px 0
    }

    .av-hero-content {
        flex-direction: column;
        gap: 24px
    }

    .av-promo-card {
        min-width: 100%;
        max-width: 100%
    }

    .av-hero-actions {
        flex-direction: column
    }

    .av-btn--lg {
        width: 100%;
        text-align: center;
        justify-content: center
    }

    .av-download-btns {
        flex-direction: column
    }

    .av-download-btns .av-btn {
        width: 100%;
        justify-content: center
    }

    .av-proscons-grid {
        flex-direction: column
    }

    .av-strategies-grid {
        flex-direction: column
    }

    .av-widget-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }

    .av-widget-title {
        font-size: 14px
    }

    .av-footer-top {
        flex-direction: column;
        gap: 28px
    }

    .av-section {
        padding: 40px 0
    }

    .av-online-count {
        display: none
    }
}

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

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

.wpcf7-form {
    display: none
}

.wp-caption {
    display: none
}

.elementor-hidden {
    display: none;
    visibility: hidden
}

.wp-block-spacer {
    height: 0 !important
}

.wp-block-group {
    display: none
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap
}

.wp-post-image {
    display: none
}

.wp-embed-aspect-16-9 {
    display: none
}

.wc-block-components-button {
    display: none
}

.container.lkd {
    max-width: 980px;
    padding-top: 28px;
    padding-bottom: 36px;
    background: radial-gradient(1000px 420px at 18% 0%, rgba(229, 5, 57, .08), transparent 55%),
    radial-gradient(900px 380px at 82% 10%, rgba(40, 169, 9, .06), transparent 60%);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
}

.container.lkd h1 {
    margin: 0 0 18px;
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    text-wrap: balance;
}

.container.lkd h2 {
    margin: 34px 0 14px;
    padding-top: 10px;
    font-size: clamp(18px, 2.4vw, 26px);
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
}

.container.lkd h3 {
    margin: 22px 0 10px;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    line-height: 1.3;
    color: #f2f2f2;
}

.container.lkd p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(232, 232, 232, .9);
}

.container.lkd a {
    color: var(--av-red, var(--clr-red, #e50539));
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.container.lkd a:hover {
    color: var(--av-red-dark, #ff2255);
}

.container.lkd ul,
.container.lkd ol {
    margin: 12px 0 18px;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.container.lkd ul {
    list-style: disc;
}

.container.lkd ol {
    list-style: decimal;
}

.container.lkd li {
    color: rgba(232, 232, 232, .88);
    line-height: 1.7;
    font-size: 15px;
}

.container.lkd ul li::marker {
    color: var(--av-red, var(--clr-red, #e50539));
}

.container.lkd > :where(h2, h3) {
    scroll-margin-top: 86px;
}

.container.lkd table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0 18px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
}

.container.lkd th,
.container.lkd td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    vertical-align: top;
    font-size: 14px;
    line-height: 1.6;
}

.container.lkd th {
    font-weight: 700;
    color: rgba(232, 232, 232, .95);
    background: rgba(255, 255, 255, .04);
}

.container.lkd td {
    color: rgba(232, 232, 232, .88);
}

.container.lkd tr:last-child td {
    border-bottom: none;
}

.container.lkd tr:hover td {
    background: rgba(255, 255, 255, .02);
}

.container.lkd img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    padding: 10px;
    margin: 10px 0;
}

.container.lkd blockquote {
    margin: 16px 0;
    padding: 12px 14px;
    border-left: 3px solid var(--av-red, var(--clr-red, #e50539));
    background: rgba(229, 5, 57, .06);
    border-radius: 0 10px 10px 0;
    color: rgba(232, 232, 232, .86);
}

@media (max-width: 900px) {
    .container.lkd {
        max-width: 100%;
        padding-top: 22px;
        padding-bottom: 28px;
    }

    .container.lkd p,
    .container.lkd li {
        font-size: 14.5px;
    }
}

@media (max-width: 640px) {
    .container.lkd {
        border-radius: 14px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .container.lkd h2 {
        margin-top: 26px;
    }

    .container.lkd ul,
    .container.lkd ol {
        padding-left: 18px;
        gap: 7px;
    }

    .container.lkd table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
    }

    .container.lkd th,
    .container.lkd td {
        min-width: 220px;
        white-space: nowrap;
    }

    .container.lkd img {
        padding: 8px;
    }
}

@media (max-width: 420px) {
    .container.lkd {
        padding-top: 18px;
        padding-bottom: 22px;
    }

    .container.lkd p,
    .container.lkd li {
        font-size: 14px;
    }

    .container.lkd th,
    .container.lkd td {
        padding: 10px 12px;
        font-size: 13.5px;
    }
}

:root {
    --av-red: #e50539;
    --av-red-dark: #c0032e;
    --av-green: #28a909;
    --av-green-dark: #1e8507;
    --av-bg: #0e0e0e;
    --av-bg2: #141416;
    --av-bg3: #1b1c1d;
    --av-nav: #1b1c1d;
    --av-border: #2a2a2e;
    --av-border2: rgba(255, 255, 255, .08);
    --av-text: #f0f0f0;
    --av-text-muted: #a7a7b2;
    --av-text-dim: #7a7a88;
    --av-white: #fff;
    --av-radius: 12px;
    --av-radius-lg: 18px;
    --av-shadow: 0 10px 40px rgba(0, 0, 0, .55);
    --av-shadow-card: 0 6px 24px rgba(0, 0, 0, .45);
    --av-transition: .22s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body.av-body {
    background: var(--av-bg);
    color: var(--av-text);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

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

a:hover {
    color: #ff2c5c
}

ul, ol {
    padding-left: 18px
}

hr {
    border: none;
    border-top: 1px solid var(--av-border);
    margin: 18px 0
}

.ui.container {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px
}

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

.av-main {
    flex: 1;
    display: block
}

.av-section {
    padding: 64px 0;
    border-bottom: 1px solid var(--av-border)
}

.av-section:last-child {
    border-bottom: none
}

.av-section-title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--av-white);
    margin: 0 0 14px;
    letter-spacing: -.02em
}

.av-section-sub {
    color: var(--av-text-muted);
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.7
}

.av-section > .av-section-title,
.av-section > .av-section-sub {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px
}

.av-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 800;
    font-size: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: transform var(--av-transition), box-shadow var(--av-transition), background var(--av-transition), border-color var(--av-transition);
    position: relative;
    isolation: isolate
}

.av-btn:active {
    transform: translateY(1px) scale(.99)
}

.av-btn--lg {
    padding: 14px 22px;
    font-size: 15px;
    border-radius: 12px
}

.av-btn--widget {
    padding: 12px 18px
}

.av-btn--full {
    width: 100%;
    padding: 12px 16px
}

.av-btn--red {
    background: var(--av-red);
    color: var(--av-white);
    box-shadow: 0 10px 26px rgba(229, 5, 57, .22)
}

.av-btn--red:hover {
    background: #ff184b;
    box-shadow: 0 14px 34px rgba(229, 5, 57, .32)
}

.av-btn--green {
    background: var(--av-green);
    color: var(--av-white);
    box-shadow: 0 10px 26px rgba(40, 169, 9, .18)
}

.av-btn--green:hover {
    background: #2ec40a;
    box-shadow: 0 14px 34px rgba(40, 169, 9, .28)
}

.av-btn--outline {
    background: transparent;
    color: var(--av-red);
    border: 2px solid rgba(229, 5, 57, .75)
}

.av-btn--outline:hover {
    background: rgba(229, 5, 57, .12);
    border-color: var(--av-red)
}

.av-btn--download {
    background: rgba(255, 255, 255, .04);
    color: var(--av-text);
    border: 1px solid var(--av-border)
}

.av-btn--download:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(229, 5, 57, .35);
    color: var(--av-white)
}

.av-btn--apk {
    border-color: rgba(40, 169, 9, .55);
    color: var(--av-green)
}

.av-btn--apk:hover {
    background: rgba(40, 169, 9, .12);
    border-color: rgba(40, 169, 9, .8);
    color: var(--av-white)
}

.av-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.av-btn-icon svg {
    display: block
}

.av-hero-section {
    position: relative;
    padding: 86px 0;
    overflow: hidden;
    background: var(--av-nav)
}

.av-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/hero-banner.jpg") center/cover no-repeat;
    opacity: .55;
    filter: saturate(1.05)
}

.av-hero-section::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(900px 480px at 18% 0%, rgba(229, 5, 57, .18), transparent 60%), radial-gradient(900px 480px at 82% 0%, rgba(40, 169, 9, .14), transparent 60%), linear-gradient(135deg, rgba(14, 14, 14, .92) 0%, rgba(14, 14, 14, .68) 55%, rgba(14, 14, 14, .82) 100%)
}

.av-hero-inner {
    position: relative;
    z-index: 1
}

.av-hero-content {
    display: grid;
    grid-template-columns:minmax(0, 1fr) 360px;
    gap: 26px;
    align-items: start
}

.av-hero-text {
    max-width: 640px
}

.av-hero-title {
    font-size: clamp(30px, 4.6vw, 56px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin: 0 0 16px;
    color: var(--av-white);
    text-shadow: 0 14px 40px rgba(0, 0, 0, .55)
}

.av-hero-subtitle {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    line-height: 1.7
}

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

.av-promo-card {
    position: relative;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--av-radius-lg);
    padding: 22px;
    box-shadow: var(--av-shadow-card)
}

.av-promo-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(229, 5, 57, .45), rgba(40, 169, 9, .25));
    opacity: .35;
    filter: blur(18px);
    z-index: -1
}

.av-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 5, 57, .18);
    border: 1px solid rgba(229, 5, 57, .35);
    color: #ff6b86;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 6px 12px;
    margin: 0 0 14px
}

.av-promo-label {
    color: var(--av-text-muted);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 10px
}

.av-promo-code-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .32);
    border-radius: 12px;
    padding: 12px 12px;
    margin: 0 0 12px
}

.av-promo-code {
    font-size: 22px;
    font-weight: 950;
    letter-spacing: .14em;
    color: var(--av-white);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

#copyPromoBtn.av-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .85);
    cursor: pointer;
    transition: background var(--av-transition), transform var(--av-transition), border-color var(--av-transition)
}

#copyPromoBtn.av-btn-icon:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(229, 5, 57, .3);
    transform: translateY(-1px)
}

#copyPromoBtn.av-btn-icon:active {
    transform: translateY(0)
}

.av-promo-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px
}

.av-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--av-green);
    box-shadow: 0 0 16px rgba(40, 169, 9, .55);
    animation: av-pulse 1.8s infinite
}

@keyframes av-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .6;
        transform: scale(1.18)
    }
}

.av-status-text {
    color: rgba(40, 169, 9, .9);
    font-weight: 700;
    font-size: 13px
}

.av-promo-bonus {
    font-size: 18px;
    font-weight: 900;
    color: var(--av-white);
    margin: 0 0 14px
}

.av-promo-actions {
    margin-top: 6px
}

.av-proscons-grid {
    display: grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap: 18px
}

.av-pros-card, .av-cons-card {
    border-radius: var(--av-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    box-shadow: var(--av-shadow-card)
}

.av-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .01em;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.av-card-header--pros {
    background: linear-gradient(180deg, rgba(40, 169, 9, .14), rgba(255, 255, 255, .02));
    color: #66ff48
}

.av-card-header--cons {
    background: linear-gradient(180deg, rgba(229, 5, 57, .14), rgba(255, 255, 255, .02));
    color: #ff6b86
}

.av-list {
    list-style: none;
    padding: 16px 18px 18px;
    margin: 0;
    display: grid;
    gap: 10px
}

.av-list li {
    position: relative;
    padding-left: 22px;
    color: rgba(240, 240, 240, .88);
    line-height: 1.6;
    font-size: 14px
}

.av-list--pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #66ff48;
    font-weight: 900
}

.av-list--cons li::before {
    content: "✕";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6b86;
    font-weight: 900
}

.av-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--av-radius-lg);
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    box-shadow: var(--av-shadow-card)
}

.av-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 720px;
    color: var(--av-text)
}

.av-table thead th {
    position: sticky;
    top: 0;
    background: rgba(27, 28, 29, .92);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    text-align: left
}

.av-table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: rgba(240, 240, 240, .86);
    font-size: 14px;
    white-space: nowrap
}

.av-table tbody tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.av-table tbody tr:last-child td {
    border-bottom: none
}

.av-app-table {
    min-width: 560px
}

.av-app-table td:first-child {
    color: var(--av-text-muted);
    width: 52%;
    white-space: nowrap
}

.av-app-table td:last-child {
    color: rgba(255, 255, 255, .9);
    font-weight: 700
}

.av-download-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px
}

.av-download-btns .av-btn {
    padding: 12px 16px;
    border-radius: 12px
}

.av-bonuses-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 18px
}

.av-bonus-card {
    border-radius: var(--av-radius-lg);
    border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    box-shadow: var(--av-shadow-card);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform var(--av-transition), border-color var(--av-transition), background var(--av-transition)
}

.av-bonus-card:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 5, 57, .28);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02))
}

.av-bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(229, 5, 57, .14);
    border: 1px solid rgba(229, 5, 57, .28);
    color: #ff6b86;
    width: max-content
}

.av-bonus-badge--hot {
    background: rgba(255, 140, 0, .14);
    border-color: rgba(255, 140, 0, .28);
    color: #ffb25a
}

.av-bonus-badge--new {
    background: rgba(40, 169, 9, .12);
    border-color: rgba(40, 169, 9, .24);
    color: #66ff48
}

.av-bonus-casino-name {
    font-size: 18px;
    font-weight: 950;
    color: var(--av-white);
    margin: 0
}

.av-bonus-amount {
    font-size: 40px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.02em;
    color: var(--av-red);
    margin: 0
}

.av-bonus-desc {
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.6;
    margin: 0
}

.av-bonus-terms {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 12px
}

.av-bonus-terms li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: rgba(255, 255, 255, .75);
    font-size: 13px
}

.av-bonus-terms strong {
    color: rgba(255, 255, 255, .92);
    font-weight: 900
}

.av-demo-wrap {
    border-radius: var(--av-radius-lg);
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    box-shadow: var(--av-shadow-card)
}

.av-iframe-container {
    background: rgba(0, 0, 0, .35)
}

.av-demo-iframe {
    display: block;
    width: 100%;
    height: 520px;
    border: 0;
    background: #000
}

.av-demo-cta {
    padding: 18px 18px 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap
}

.av-demo-cta-text {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.6;
    max-width: 720px
}

.av-strategies-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 18px
}

.av-strategy-card {
    border-radius: var(--av-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    box-shadow: var(--av-shadow-card);
    transition: transform var(--av-transition), border-color var(--av-transition)
}

.av-strategy-card:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 5, 57, .28)
}

.av-strategy-img-wrap {
    background: #0a0a0a
}

.av-strategy-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform .45s ease, filter .45s ease;
    filter: saturate(1.05) contrast(1.05)
}

.av-strategy-card:hover .av-strategy-img {
    transform: scale(1.04)
}

.av-strategy-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.av-strategy-title {
    margin: 0;
    font-size: 16px;
    font-weight: 950;
    color: var(--av-white)
}

.av-strategy-desc {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.6
}

.av-content-wrap {
    padding: 0 0 64px
}

.av-content-inner {
    max-width: 980px;
    margin: 0 auto
}

.av-content-inner h1, .av-content-inner h2, .av-content-inner h3, .av-content-inner h4, .av-content-inner h5, .av-content-inner h6 {
    color: var(--av-white);
    line-height: 1.25;
    margin: 26px 0 12px
}

.av-content-inner h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 950;
    letter-spacing: -.01em;
    padding-left: 12px;
    border-left: 3px solid var(--av-red)
}

.av-content-inner h3 {
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 900;
    color: rgba(255, 255, 255, .92)
}

.av-content-inner p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.75;
    font-size: 15px
}

.av-content-inner ul, .av-content-inner ol {
    margin: 10px 0 16px;
    color: rgba(255, 255, 255, .8);
    display: grid;
    gap: 8px
}

.av-content-inner li {
    color: rgba(255, 255, 255, .78);
    line-height: 1.7
}

.av-content-inner a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px
}

.av-content-inner blockquote {
    margin: 16px 0;
    padding: 12px 16px;
    border-left: 3px solid var(--av-red);
    background: rgba(229, 5, 57, .06);
    border-radius: 0 12px 12px 0;
    color: rgba(255, 255, 255, .78)
}

.av-content-inner table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    overflow: hidden;
    margin: 14px 0 18px;
    background: rgba(255, 255, 255, .03)
}

.av-content-inner th, .av-content-inner td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    text-align: left
}

.av-content-inner th {
    background: rgba(27, 28, 29, .75);
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.av-content-inner td {
    color: rgba(255, 255, 255, .78)
}

.av-content-inner tr:last-child td {
    border-bottom: none
}

.av-content-inner pre {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 14px;
    border-radius: 12px;
    overflow: auto
}

.av-content-inner code {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 2px 6px;
    border-radius: 8px;
    color: #ff6b86
}

.av-faq-list {
    display: grid;
    gap: 12px
}

.av-faq-item {
    border-radius: var(--av-radius-lg);
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    box-shadow: var(--av-shadow-card);
    overflow: hidden
}

.av-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .9);
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    padding: 18px 18px;
    cursor: pointer;
    text-align: left;
    transition: background var(--av-transition), color var(--av-transition)
}

.av-faq-question:hover {
    background: rgba(255, 255, 255, .03);
    color: var(--av-white)
}

.av-faq-icon {
    color: var(--av-red);
    transition: transform var(--av-transition)
}

.av-faq-question[aria-expanded="true"] .av-faq-icon {
    transform: rotate(180deg)
}

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

.av-faq-answer p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    line-height: 1.7;
    font-size: 14px
}

.av-faq-item.is-open .av-faq-answer {
    padding: 0 18px 18px;
    max-height: 560px
}


@media (max-width: 1024px) {
    .av-hero-content {
        grid-template-columns:minmax(0, 1fr) 340px
    }

    .av-bonuses-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .av-strategies-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }
}

@media (max-width: 860px) {
    .av-hero-section {
        padding: 64px 0
    }

    .av-hero-content {
        grid-template-columns:1fr;
        gap: 16px
    }

    .av-promo-card {
        max-width: 560px
    }

    .av-proscons-grid {
        grid-template-columns:1fr
    }

    .av-table {
        min-width: 680px
    }
}

@media (max-width: 640px) {
    .ui.container {
        padding-left: 16px;
        padding-right: 16px
    }

    .av-section {
        padding: 44px 0
    }

    .av-section > .av-section-title,
    .av-section > .av-section-sub {
        padding-left: 16px;
        padding-right: 16px
    }

    .av-hero-actions {
        flex-direction: column
    }

    .av-hero-actions .av-btn {
        width: 100%
    }

    .av-download-btns {
        flex-direction: column
    }

    .av-download-btns .av-btn {
        width: 100%
    }

    .av-bonuses-grid {
        grid-template-columns:1fr;
        gap: 14px
    }

    .av-strategies-grid {
        grid-template-columns:1fr;
        gap: 14px
    }

    .av-demo-iframe {
        height: 460px
    }

    .av-demo-cta {
        flex-direction: column;
        align-items: stretch
    }

    .av-demo-cta .av-btn {
        width: 100%
    }

    .av-table {
        min-width: 620px
    }
}

@media (max-width: 420px) {
    .av-hero-section {
        padding: 54px 0
    }

    .av-promo-code {
        font-size: 20px
    }

    .av-demo-iframe {
        height: 420px
    }

    .av-widget-inner {
        padding-right: 40px
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important
    }
}

@media (max-width: 640px) {
    #winners.av-section--winners .av-table-wrap,
    #download.av-section--download .av-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    #winners.av-section--winners .av-table {
        min-width: 0;
        width: 100%;
        border: 0;
        background: transparent;
    }

    #winners.av-section--winners .av-table thead {
        display: none
    }

    #winners.av-section--winners .av-table,
    #winners.av-section--winners .av-table tbody,
    #winners.av-section--winners .av-table tr,
    #winners.av-section--winners .av-table td {
        display: block;
        width: 100%;
    }

    #winners.av-section--winners .av-table tbody {
        display: grid;
        gap: 12px;
    }

    #winners.av-section--winners .av-table tr {
        background: rgba(255, 255, 255, .03);
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
    }

    #winners.av-section--winners .av-table td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        white-space: normal;
    }

    #winners.av-section--winners .av-table tr td:last-child {
        border-bottom: 0
    }

    #winners.av-section--winners .av-table td::before {
        font-size: 12px;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .62);
        font-weight: 800;
        flex: 0 0 auto;
    }

    #winners.av-section--winners .av-table td:nth-child(1)::before {
        content: "#"
    }

    #winners.av-section--winners .av-table td:nth-child(2)::before {
        content: "Игрок"
    }

    #winners.av-section--winners .av-table td:nth-child(3)::before {
        content: "Ставка"
    }

    #winners.av-section--winners .av-table td:nth-child(4)::before {
        content: "Коэф."
    }

    #winners.av-section--winners .av-table td:nth-child(5)::before {
        content: "Выигрыш"
    }

    #winners.av-section--winners .av-table td:nth-child(1) {
        justify-content: flex-start;
        gap: 10px;
        background: rgba(255, 255, 255, .02);
        font-weight: 950;
        color: rgba(255, 255, 255, .95);
    }

    #winners.av-section--winners .av-table td:nth-child(1)::before {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 10px;
        background: rgba(229, 5, 57, .14);
        border: 1px solid rgba(229, 5, 57, .26);
        color: rgba(255, 255, 255, .9);
        letter-spacing: 0;
        text-transform: none;
    }

    #winners.av-section--winners .av-table td:nth-child(2) {
        font-weight: 900;
        color: rgba(255, 255, 255, .92);
    }

    #winners.av-section--winners .av-table td:nth-child(4) {
        color: #ff6b86;
        font-weight: 900;
    }

    #winners.av-section--winners .av-table td:nth-child(5) {
        color: rgba(40, 169, 9, .95);
        font-weight: 950;
    }

    #download.av-section--download .av-app-table {
        min-width: 0;
        width: 100%;
        border: 0;
        background: transparent;
    }

    #download.av-section--download .av-app-table,
    #download.av-section--download .av-app-table tbody {
        display: block;
        width: 100%;
    }

    #download.av-section--download .av-app-table tbody {
        display: grid;
        gap: 10px;
    }

    #download.av-section--download .av-app-table tr {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        padding: 12px 14px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, .10);
        background: rgba(255, 255, 255, .03);
        box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
    }

    #download.av-section--download .av-app-table td {
        padding: 0;
        border: 0;
        white-space: normal;
    }

    #download.av-section--download .av-app-table td:first-child {
        color: rgba(255, 255, 255, .65);
        font-weight: 850;
        font-size: 12px;
        letter-spacing: .06em;
        text-transform: uppercase;
        flex: 0 0 46%;
        line-height: 1.3;
    }

    #download.av-section--download .av-app-table td:last-child {
        color: rgba(255, 255, 255, .92);
        font-weight: 900;
        text-align: right;
        flex: 1 1 auto;
        line-height: 1.35;
    }

    #download.av-section--download .av-download-btns {
        flex-direction: column;
        gap: 10px;
    }

    #download.av-section--download .av-download-btns .av-btn {
        width: 100%;
        justify-content: center;
        border-radius: 14px;
        padding: 14px 16px;
    }
}

.winners {
    padding: 56px 0
}

.winners__title {
    margin: 0 0 10px
}

.winners__sub {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .65)
}

.winners__list {
    display: none
}

.winners__table {
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, .02);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .45)
}

.winners .av-table {
    width: 100%;
    border-collapse: collapse
}

.winners .av-table th {
    background: rgba(229, 5, 57, .10);
    color: rgba(255, 255, 255, .70);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .10)
}

.winners .av-table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .88);
    font-weight: 600
}

.winners .av-table tbody tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.winners .av-table tbody tr:last-child td {
    border-bottom: 0
}

.winners .av-table td:nth-child(1) {
    width: 44px;
    color: rgba(255, 255, 255, .70);
    font-weight: 900
}

.winners .av-table td:nth-child(4) {
    color: #ff6b86;
    font-weight: 900
}

.winners .av-table td:nth-child(5) {
    color: rgba(40, 169, 9, .95);
    font-weight: 950
}

.dl {
    padding: 56px 0
}

.dl__title {
    margin: 0 0 10px
}

.dl__sub {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .65)
}

.dl__spec {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .35)
}

.dl__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08)
}

.dl__k {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .60);
    font-weight: 850;
    line-height: 1.25;
    flex: 0 0 48%
}

.dl__v {
    color: rgba(255, 255, 255, .90);
    font-weight: 900;
    text-align: right;
    line-height: 1.25;
    flex: 1 1 auto
}

.dl__v--green {
    color: rgba(40, 169, 9, .95)
}

.dl__v--red {
    color: #ff6b86
}

.dl__actions {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px
}

.dl__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .03);
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    font-weight: 900;
    transition: transform .22s ease, background .22s ease, border-color .22s ease
}

.dl__btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .06);
    border-color: rgba(229, 5, 57, .35)
}

.dl__btn:active {
    transform: translateY(0)
}

.dl__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .92)
}

.dl__btn--apk {
    border-color: rgba(40, 169, 9, .35)
}

.dl__btn--apk:hover {
    border-color: rgba(40, 169, 9, .7)
}

.dl__btnText {
    white-space: nowrap
}

@media (max-width: 900px) {
    .dl__spec {
        grid-template-columns:1fr
    }

    .dl__actions {
        grid-template-columns:1fr
    }
}

@media (max-width: 640px) {
    .winners__table {
        display: none
    }

    .winners__list {
        display: grid;
        gap: 12px
    }

    .winners__item {
        background: rgba(255, 255, 255, .03);
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 14px 34px rgba(0, 0, 0, .45)
    }

    .winners__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 14px;
        background: rgba(255, 255, 255, .02);
        border-bottom: 1px solid rgba(255, 255, 255, .08)
    }

    .winners__rank {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 12px;
        background: rgba(229, 5, 57, .14);
        border: 1px solid rgba(229, 5, 57, .26);
        color: rgba(255, 255, 255, .95);
        font-weight: 950
    }

    .winners__name {
        font-weight: 950;
        color: rgba(255, 255, 255, .92)
    }

    .winners__grid {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: 10px;
        padding: 12px 14px
    }

    .winners__cell {
        background: rgba(0, 0, 0, .25);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 14px;
        padding: 10px 12px;
        display: flex;
        flex-direction: column;
        gap: 6px
    }

    .winners__label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: rgba(255, 255, 255, .60);
        font-weight: 850
    }

    .winners__val {
        font-weight: 950;
        color: rgba(255, 255, 255, .92)
    }

    .winners__val--coef {
        color: #ff6b86
    }

    .winners__val--win {
        color: rgba(40, 169, 9, .95)
    }

    .dl__spec {
        padding: 12px
    }

    .dl__row {
        padding: 12px
    }

    .dl__k {
        flex: 0 0 52%
    }
}

@media (max-width: 380px) {
    .winners__grid {
        grid-template-columns:1fr
    }
}