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

:root {
    --c-primary: #11dbe8;
    --c-btn-blue: #00b4ff;
    --c-btn-yellow: #ffea00;
    --c-bg: #012f53;
    --c-bg2: #01243f;
    --c-bg3: #013360;
    --c-card: #01365c;
    --c-card2: #02407a;
    --c-text: #e8f4ff;
    --c-text-muted: #7eb8d4;
    --c-border: #0d4a70;
    --c-accent: #11dbe8;
    --c-danger: #ff4444;
    --c-success: #00e676;
    --c-warn: #ffb300;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .35);
    --shadow-glow: 0 0 20px rgba(17, 219, 232, .25);
    --font: -apple-system, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --trans: .25s ease;
}

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

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

body.menu-open {
    overflow: hidden
}

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

a:hover {
    color: var(--c-primary)
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

.x7f2q {
    display: none
}

.k9p3r {
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0
}

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

/* ===== HEADER ===== */
.site-header {
    background: var(--c-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .4)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 64px;
    padding: 0 16px;
    max-width: 1200px;
    margin: 0 auto
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0
}

.header-logo img {
    height: 40px;
    width: auto;
    object-fit: contain
}

.header-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #012f53;
    letter-spacing: -.5px;
    line-height: 1.2;
    display: none
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px
}

.header-nav a {
    color: #012f53;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--trans);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap
}

.header-nav a:hover {
    background: rgba(1, 47, 83, .15);
    color: #000
}

.header-nav svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #012f53;
    font-weight: 600;
    padding: 4px 8px;
    background: rgba(1, 47, 83, .1);
    border-radius: 20px
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00e676;
    animation: pulse-dot 2s infinite
}

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

.lang-dropdown {
    position: relative
}

.lang-btn {
    background: rgba(1, 47, 83, .12);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: #012f53;
    transition: all var(--trans)
}

.lang-btn:hover {
    background: rgba(1, 47, 83, .22)
}

.lang-btn svg {
    width: 14px;
    height: 14px
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    min-width: 130px;
    overflow: hidden;
    display: none;
    z-index: 200
}

.lang-dropdown.open .lang-menu {
    display: block
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 13px;
    color: #012f53;
    transition: background var(--trans);
    font-weight: 600
}

.lang-menu a:hover {
    background: #f0f8ff
}

.lang-flag {
    font-size: 16px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all var(--trans);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .3px
}

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

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

.btn--blue {
    background: var(--c-btn-blue);
    color: #fff;
    padding: 8px 16px;
    font-size: 14px
}

.btn--blue:hover {
    background: #0099dd;
    box-shadow: 0 4px 15px rgba(0, 180, 255, .4);
    color: #fff
}

.btn--yellow {
    background: var(--c-btn-yellow);
    color: #012f53;
    padding: 8px 16px;
    font-size: 14px
}

.btn--yellow:hover {
    background: #ffe000;
    box-shadow: 0 4px 15px rgba(255, 234, 0, .4);
    color: #012f53
}

.btn--lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: var(--radius)
}

.btn--xl {
    padding: 16px 36px;
    font-size: 18px;
    border-radius: var(--radius)
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--c-primary);
    color: var(--c-primary);
    padding: 10px 22px;
    font-size: 15px
}

.btn--outline:hover {
    background: var(--c-primary);
    color: #012f53
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #012f53;
    border-radius: 2px;
    transition: all var(--trans)
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    background: var(--c-bg2)
}

.slider-track {
    display: flex;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94)
}

.slide {
    min-width: 100%;
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: var(--c-bg2);
    overflow: hidden
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .45;
    transition: opacity .3s
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 47, 83, .85) 0%, rgba(1, 36, 63, .6) 60%, rgba(1, 47, 83, .3) 100%)
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 40px 24px;
    max-width: 600px
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--c-primary);
    color: #012f53;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .8px
}

.slide h2 {
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.slide p {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255, 255, 255, .85);
    margin-bottom: 28px;
    line-height: 1.6
}

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

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    border: none;
    cursor: pointer;
    transition: all var(--trans);
    padding: 0
}

.slider-dot.active {
    background: var(--c-primary);
    width: 28px;
    border-radius: 5px
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(1, 47, 83, .6);
    border: 1px solid rgba(17, 219, 232, .3);
    color: var(--c-primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--trans)
}

.slider-arrow:hover {
    background: var(--c-primary);
    color: #012f53
}

.slider-arrow.prev {
    left: 16px
}

.slider-arrow.next {
    right: 16px
}

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

.section-alt {
    background: var(--c-bg2)
}

.section-title {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25
}

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

.section-header {
    margin-bottom: 40px
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.adv-card {
    flex: 1 1 200px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--trans);
    position: relative;
    overflow: hidden
}

.adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-btn-blue))
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--c-primary)
}

.adv-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--c-bg2), var(--c-card2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    border: 2px solid var(--c-border)
}

.adv-icon svg {
    width: 26px;
    height: 26px;
    color: var(--c-primary)
}

.adv-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.adv-card p {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.55
}

/* ===== WINNERS TABLE ===== */
.winners-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.winners-table {
    width: 100%;
    min-width: 460px;
    border-collapse: collapse
}

.winners-table thead th {
    background: linear-gradient(135deg, var(--c-card), var(--c-card2));
    color: var(--c-primary);
    font-size: 13px;
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--c-primary);
    text-transform: uppercase;
    letter-spacing: .6px
}

.winners-table tbody tr {
    border-bottom: 1px solid var(--c-border);
    transition: background var(--trans)
}

.winners-table tbody tr:hover {
    background: rgba(17, 219, 232, .05)
}

.winners-table td {
    padding: 11px 16px;
    font-size: 14px;
    color: var(--c-text)
}

.w-rank {
    font-weight: 800;
    color: var(--c-text-muted);
    width: 44px
}

.w-rank-1 {
    color: var(--c-btn-yellow)
}

.w-rank-2 {
    color: #c0c0c0
}

.w-rank-3 {
    color: #cd7f32
}

.w-nick {
    font-weight: 600;
    color: #fff
}

.w-time {
    color: var(--c-text-muted);
    font-size: 12px
}

.w-amount {
    font-weight: 800;
    color: var(--c-success);
    text-align: right
}

.w-mult {
    color: var(--c-primary);
    font-size: 13px;
    text-align: right
}

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

.app-info {
    flex: 1 1 300px
}

.app-table-wrap {
    overflow-x: auto
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px
}

.app-table tr {
    border-bottom: 1px solid var(--c-border)
}

.app-table td {
    padding: 11px 14px;
    font-size: 14px
}

.app-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 600;
    width: 55%
}

.app-table td:last-child {
    color: #fff;
    font-weight: 500
}

.app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    transition: all var(--trans);
    color: var(--c-text);
    text-decoration: none
}

.app-btn:hover {
    border-color: var(--c-primary);
    background: var(--c-card);
    transform: translateY(-2px);
    color: var(--c-text)
}

.app-btn svg {
    width: 24px;
    height: 24px;
    color: var(--c-primary)
}

.app-btn-label {
    display: flex;
    flex-direction: column;
    gap: 1px
}

.app-btn-label span:first-child {
    font-size: 11px;
    color: var(--c-text-muted)
}

.app-btn-label span:last-child {
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.app-visual {
    flex: 1 1 260px;
    display: flex;
    justify-content: center;
    align-items: center
}

.app-mockup {
    background: linear-gradient(145deg, var(--c-card), var(--c-card2));
    border: 2px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    max-width: 260px
}

.app-mockup-icon {
    font-size: 64px;
    margin-bottom: 16px
}

.app-mockup h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.app-mockup p {
    font-size: 13px;
    color: var(--c-text-muted)
}


.demo-block {
    text-align: center
}

.demo-frame-wrap {
    position: relative;
    border-radius: var(--radius);
    background: #000;
    aspect-ratio: 16/9;
    max-width: 900px;
    margin: 0 auto 24px;
    box-shadow: var(--shadow), var(--shadow-glow);
    border: 2px solid var(--c-border)
}

.demo-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block
}

.demo-info {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px
}

.demo-stat {
    text-align: center
}

.demo-stat-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-primary)
}

.demo-stat-lbl {
    font-size: 12px;
    color: var(--c-text-muted);
    margin-top: 2px
}

/* ===== STRATEGIES ===== */
.strategies-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.strat-card {
    flex: 1 1 280px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--trans)
}

.strat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--c-primary)
}

.strat-img {
    height: 180px;
    background: linear-gradient(135deg, var(--c-bg2), var(--c-card2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.strat-img-inner {
    font-size: 72px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .5))
}

.strat-body {
    padding: 20px
}

.strat-badge {
    display: inline-block;
    background: rgba(17, 219, 232, .15);
    color: var(--c-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: .5px;
    text-transform: uppercase
}

.strat-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.strat-card p {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.55;
    margin-bottom: 16px
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

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

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    transition: color var(--trans)
}

.faq-q:hover {
    color: var(--c-primary)
}

.faq-q svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--c-primary);
    transition: transform var(--trans)
}

.faq-item.open .faq-q svg {
    transform: rotate(45deg)
}

.faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.7
}

.faq-item.open .faq-a {
    display: block
}

/* ===== AUTHOR ===== */
.author-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
    flex-wrap: wrap
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary), var(--c-btn-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: #012f53;
    flex-shrink: 0;
    border: 3px solid var(--c-primary)
}

.author-info {
    flex: 1 1 200px
}

.author-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.author-role {
    font-size: 13px;
    color: var(--c-primary);
    font-weight: 600;
    margin-bottom: 10px
}

.author-info p {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 12px
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-btn-blue)
}

.author-link svg {
    width: 16px;
    height: 16px
}

/* ===== CONTENT BLOCK ===== */
.content-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 32px
}

.content-block h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3
}

.content-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-primary);
    margin: 20px 0 10px
}

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

.content-block ul,
.content-block ol {
    padding-left: 22px;
    margin-bottom: 14px
}

.content-block li {
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 5px
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block
}

.content-block table th {
    background: var(--c-card2);
    color: var(--c-primary);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-size: 14px
}

.content-block table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    font-size: 14px;
    color: var(--c-text-muted)
}

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

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

/* ===== FOOTER ===== */
.site-footer {
    background: var(--c-primary);
    padding: 48px 0 24px;
    margin-top: auto
}

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

.footer-col {
    flex: 1 1 180px
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 12px
}

.footer-logo img {
    height: 36px;
    object-fit: contain
}

.footer-desc {
    font-size: 13px;
    color: #012f53;
    line-height: 1.65;
    margin-bottom: 14px
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #012f53;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 14px
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: #012f53;
    margin-bottom: 8px;
    transition: opacity var(--trans);
    font-weight: 500
}

.footer-col a:hover {
    opacity: .7;
    color: #012f53
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px
}

.footer-badge {
    background: rgba(1, 47, 83, .12);
    border: 1px solid rgba(1, 47, 83, .2);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    color: #012f53;
    display: flex;
    align-items: center;
    gap: 5px
}

.footer-badge svg {
    width: 16px;
    height: 16px
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px
}

.payment-ico {
    background: rgba(1, 47, 83, .1);
    border: 1px solid rgba(1, 47, 83, .15);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 800;
    color: #012f53;
    white-space: nowrap
}

.footer-bottom {
    border-top: 1px solid rgba(1, 47, 83, .2);
    padding-top: 20px;
    text-align: center
}

.footer-bottom p {
    font-size: 12px;
    color: #012f53;
    line-height: 1.7;
    margin-bottom: 4px
}

.footer-legal {
    font-size: 11px;
    color: rgba(1, 47, 83, .7);
    max-width: 900px;
    margin: 10px auto 0;
    line-height: 1.6
}

.footer-provider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px
}

.footer-provider img {
    height: 28px;
    object-fit: contain;
    opacity: .8
}

.footer-provider span {
    font-size: 12px;
    color: rgba(1, 47, 83, .75)
}

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

.pros, .cons {
    flex: 1 1 260px;
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--c-border)
}

.pros {
    border-left: 3px solid var(--c-success)
}

.cons {
    border-left: 3px solid var(--c-danger)
}

.pros h3 {
    color: var(--c-success);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px
}

.cons h3 {
    color: var(--c-danger);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px
}

.pros li, .cons li {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 7px;
    line-height: 1.55;
    list-style: none;
    padding-left: 16px;
    position: relative
}

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

.cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--c-danger);
    font-weight: 700
}

/* ===== CASINO CARDS ===== */
.casino-grid {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.casino-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 16px 20px;
    transition: all var(--trans);
    flex-wrap: wrap
}

.casino-card:hover {
    border-color: var(--c-primary);
    transform: translateX(4px)
}

.casino-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-text-muted);
    min-width: 28px
}

.casino-num.top {
    color: var(--c-btn-yellow)
}

.casino-logo {
    width: 64px;
    height: 40px;
    background: var(--c-card2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--c-text-muted);
    flex-shrink: 0;
    border: 1px solid var(--c-border);
    overflow: hidden
}

.casino-info {
    flex: 1 1 140px
}

.casino-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px
}

.casino-bonus {
    font-size: 13px;
    color: var(--c-primary);
    font-weight: 600
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 3px
}

.star {
    color: var(--c-btn-yellow);
    font-size: 13px
}

.casino-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--c-bg);
    overflow-y: auto;
    padding: 80px 20px 20px;
    display: none;
    flex-direction: column;
    gap: 4px
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    color: var(--c-text);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--trans);
    border-bottom: 1px solid var(--c-border)
}

.mobile-menu a:hover {
    background: var(--c-card);
    color: var(--c-primary)
}

.mobile-menu svg {
    width: 20px;
    height: 20px;
    color: var(--c-primary)
}

.mobile-menu-close {
    position: fixed;
    top: 16px;
    right: 16px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    color: var(--c-text)
}

/* ===== BADGES / STATS ===== */
.stats-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.stat-box {
    flex: 1 1 120px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 18px 14px;
    text-align: center
}

.stat-box-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1
}

.stat-box-lbl {
    font-size: 12px;
    color: var(--c-text-muted);
    margin-top: 5px
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 10px 0;
    margin-bottom: 8px
}

.breadcrumbs a, .breadcrumbs span {
    font-size: 13px;
    color: var(--c-text-muted)
}

.breadcrumbs a:hover {
    color: var(--c-primary)
}

.breadcrumbs .sep {
    margin: 0 6px;
    color: var(--c-border)
}

/* ===== TECHNICAL PAGES ===== */
.tech-content {
    max-width: 860px;
    margin: 0 auto
}

.tech-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-primary);
    margin: 28px 0 12px;
    line-height: 1.3
}

.tech-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0 8px
}

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

.tech-content ul, .tech-content ol {
    padding-left: 22px;
    margin-bottom: 14px
}

.tech-content li {
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 6px
}

.tech-content a {
    color: var(--c-btn-blue)
}

.tech-content a:hover {
    color: var(--c-primary)
}

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

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.anim-fade-up {
    animation: fadeInUp .6s ease both
}

.anim-fade {
    animation: fadeIn .5s ease both
}

.delay-1 {
    animation-delay: .1s
}

.delay-2 {
    animation-delay: .2s
}

.delay-3 {
    animation-delay: .3s
}

/* ===== UTILITY ===== */
.text-center {
    text-align: center
}

.mt16 {
    margin-top: 16px
}

.mt24 {
    margin-top: 24px
}

.mt32 {
    margin-top: 32px
}

.mb24 {
    margin-bottom: 24px
}

.mb8 {
    margin-bottom: 8px
}

.gap8 {
    gap: 8px
}

/* ===== WP DECOYS ===== */
.wp-block-cover__inner-container {
    display: block
}

.entry-content, .wp-post-image {
    display: block
}

.elementor-widget-container {
    display: block
}

.page-template-default {
    display: block
}

#wpadminbar {
    display: none !important
}

.wp-caption, .wp-caption-text, .screen-reader-text {
    display: none
}

#wpstats {
    display: none
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .online-count {
        display: none
    }

    .lang-dropdown {
        display: none
    }

    .header-inner {
        height: 58px
    }

    .slide {
        min-height: 420px
    }

    .slide-content {
        padding: 24px 16px
    }

    .section {
        padding: 40px 0
    }

    .app-block {
        flex-direction: column
    }

    .app-visual {
        display: none
    }

    .bottom-widget .widget-text strong {
        font-size: 13px
    }

    .footer-inner {
        gap: 24px
    }

    .demo-info {
        gap: 12px
    }

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

@media (max-width: 480px) {
    .slide h2 {
        font-size: 22px
    }

    .slide p {
        font-size: 13px
    }

    .btn--xl {
        padding: 13px 24px;
        font-size: 15px
    }

    .strategies-grid {
        flex-direction: column
    }

    .stats-row {
        gap: 10px
    }

    .stat-box {
        flex: 1 1 calc(50% - 5px)
    }
}

.ehsfd {
    max-width: 920px;
    margin: 48px auto;
    padding: 36px 34px;
    background: linear-gradient(180deg, var(--c-card), var(--c-card2));
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.ehsfd h1 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.ehsfd h2 {
    font-size: clamp(20px, 3vw, 26px);
    margin: 32px 0 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--c-border);
    color: #fff;
}

.ehsfd h3 {
    font-size: 18px;
    margin: 22px 0 10px;
    color: var(--c-primary);
}

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

.ehsfd ul,
.ehsfd ol {
    margin: 14px 0;
    padding-left: 22px;
}

.ehsfd li {
    margin-bottom: 6px;
    color: var(--c-text-muted);
    font-size: 15px;
    line-height: 1.65;
}

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

.ehsfd strong {
    color: #fff;
}

@media (max-width: 768px) {
    .ehsfd {
        margin: 24px 12px;
        padding: 22px 16px;
    }

    .ehsfd h1 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .ehsfd h2 {
        font-size: 18px;
        margin-top: 24px;
    }

    .ehsfd h3 {
        font-size: 16px;
    }

    .ehsfd p,
    .ehsfd li {
        font-size: 14px;
        line-height: 1.65;
    }
}

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

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

    .ehsfd h2 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .strategies-grid {
        flex-direction: column;
        gap: 16px;
    }

    .strat-card {
        flex: 1 1 100%;
        border-radius: 14px;
    }

    .strat-img {
        height: 140px;
    }

    .strat-img-inner {
        font-size: 52px;
    }

    .strat-body {
        padding: 16px;
    }

    .strat-card h3 {
        font-size: 15px;
    }

    .strat-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .strat-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .strat-card .btn {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .strat-img {
        height: 120px;
    }

    .strat-img-inner {
        font-size: 44px;
    }

    .strat-body {
        padding: 14px;
    }

    .strat-card h3 {
        font-size: 14px;
    }

    .strat-card p {
        font-size: 12.5px;
    }

    .strat-card .btn {
        font-size: 13px;
        padding: 9px;
    }
}