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

:root {
    --c-bg: #0C131D;
    --c-bg2: #111923;
    --c-bg3: #161f2e;
    --c-card: #131c2b;
    --c-border: #1e2d42;
    --c-btn-dark: #0E121B;
    --c-btn-blue: #1A66EF;
    --c-btn-blue-h: #1557d4;
    --c-text: #e8edf5;
    --c-text-muted: #8899aa;
    --c-accent: #1A66EF;
    --c-accent2: #22d3ee;
    --c-gold: #f5a623;
    --c-green: #22c55e;
    --c-red: #ef4444;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

html {
    scroll-behavior: smooth;
    background: var(--c-bg)
}

body {
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    min-width: 320px;
    overflow-x: hidden
}

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

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

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

button {
    cursor: pointer;
    border: none;
    outline: none
}

.xk7p2-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

.section-gap {
    padding: 64px 0
}

.section-gap--sm {
    padding: 40px 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: background .2s, transform .15s, box-shadow .2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none
}

.btn--dark {
    background: var(--c-btn-dark);
    color: var(--c-text);
    border: 1px solid var(--c-border)
}

.btn--dark:hover {
    background: #1a2233;
    color: var(--c-text);
    border-color: var(--c-accent)
}

.btn--blue {
    background: var(--c-btn-blue);
    color: #fff
}

.btn--blue:hover {
    background: var(--c-btn-blue-h);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 102, 239, .4)
}

.btn--gold {
    background: var(--c-gold);
    color: #0C131D;
    font-weight: 700
}

.btn--gold:hover {
    background: #e89a10;
    transform: translateY(-1px)
}

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

.btn--lg {
    padding: 14px 32px;
    font-size: 16px
}

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

.a8f4-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: var(--c-text);
    line-height: 1.25
}

.a8f4-title--xl {
    font-size: clamp(26px, 4vw, 48px)
}

.a8f4-title--lg {
    font-size: clamp(20px, 3vw, 32px)
}

.a8f4-title--md {
    font-size: clamp(17px, 2.2vw, 22px)
}

.a8f4-title--sm {
    font-size: 16px
}

.t-accent {
    color: var(--c-accent)
}

.t-gold {
    color: var(--c-gold)
}

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

.t-center {
    text-align: center
}

/*  */
.z9q1-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-border)
}

.z9q1-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 64px
}

.z9q1-logo img {
    height: 40px;
    width: auto
}

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

.z9q1-nav a {
    color: var(--c-text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color .2s, background .2s
}

.z9q1-nav a:hover {
    color: var(--c-text);
    background: var(--c-bg3)
}

.z9q1-actions {
    display: flex;
    align-items: center;
    gap: 8px
}

.z9q1-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--c-text-muted);
    padding: 5px 10px;
    background: var(--c-bg3);
    border-radius: 20px;
    border: 1px solid var(--c-border);
    white-space: nowrap
}

.z9q1-online-dot {
    width: 8px;
    height: 8px;
    background: var(--c-green);
    border-radius: 50%;
    animation: pulseGreen 1.5s infinite
}

@keyframes pulseGreen {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .5)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0)
    }
}

.z9q1-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px
}

.z9q1-burger span {
    display: block;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: transform .25s, opacity .25s
}

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

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

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

.z9q1-mob-menu {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    z-index: 850;
    background: var(--c-bg);
    border-top: 1px solid var(--c-border);
    padding: 24px 20px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto
}

.z9q1-mob-menu.open {
    display: flex
}

.z9q1-mob-menu a {
    color: var(--c-text-muted);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    border-bottom: 1px solid var(--c-border)
}

.z9q1-mob-menu a:hover {
    background: var(--c-bg3);
    color: var(--c-text)
}

.z9q1-mob-menu .btn {
    width: 100%;
    margin-top: 4px
}

.b3r7-hero {
    position: relative;
    overflow: hidden;
    height: 520px
}

.b3r7-slides {
    display: flex;
    height: 100%;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.b3r7-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden
}

.b3r7-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.45)
}

.b3r7-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 680px
}

.b3r7-content h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(24px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .6)
}

.b3r7-content p {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 460px
}

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

.b3r7-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s
}

.b3r7-dot.active {
    background: #fff;
    transform: scale(1.3)
}

.b3r7-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    font-size: 18px
}

.b3r7-arrow:hover {
    background: rgba(26, 102, 239, .7)
}

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

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

/*   */
.c5x2-section {
    background: var(--c-bg)
}

.c5x2-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: space-between;
    box-shadow: var(--shadow)
}

.c5x2-left {
    flex: 1;
    min-width: 220px
}

.c5x2-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
    margin-bottom: 8px
}

.c5x2-code-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--c-bg3);
    border: 2px dashed var(--c-accent);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 16px
}

.c5x2-code {
    font-family: monospace;
    font-size: 24px;
    font-weight: 800;
    color: var(--c-accent2);
    padding: 12px 20px;
    flex: 1;
    letter-spacing: 3px
}

.c5x2-copy {
    background: var(--c-accent);
    color: #fff;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 0;
    transition: background .2s;
    border: none;
    cursor: pointer
}

.c5x2-copy:hover {
    background: var(--c-btn-blue-h)
}

.c5x2-copy.copied {
    background: var(--c-green)
}

.c5x2-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--c-green);
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .25);
    padding: 4px 12px;
    border-radius: 20px
}

.c5x2-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-green)
}

.c5x2-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 180px
}

.c5x2-bonus-text {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--c-gold);
    line-height: 1.1
}

.c5x2-bonus-sub {
    font-size: 13px;
    color: var(--c-text-muted)
}

.c5x2-timer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #f97316;
    background: rgba(249, 115, 22, .1);
    border: 1px solid rgba(249, 115, 22, .25);
    padding: 4px 12px;
    border-radius: 20px
}

/*  */
.d8m4-section {
    background: var(--c-bg2)
}

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

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

.d8m4-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-accent), var(--c-accent2))
}

.d8m4-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(26, 102, 239, .18)
}

.d8m4-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--c-accent);
    background: rgba(26, 102, 239, .12);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 4px
}

.d8m4-name {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--c-text)
}

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

.d8m4-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--c-border)
}

.d8m4-prize {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-gold);
    font-family: 'Montserrat', Arial, sans-serif
}

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

.d8m4-timer span {
    color: var(--c-accent2);
    font-weight: 700;
    font-family: monospace;
    font-size: 13px
}

.e2v9-section {
    background: var(--c-bg)
}

.e2v9-wrap {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap
}

.e2v9-info {
    flex: 1;
    min-width: 280px
}

.e2v9-title-row {
    margin-bottom: 24px
}

.e2v9-table-wrap {
    overflow-x: auto;
    margin-bottom: 24px
}

.e2v9-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px
}

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

.e2v9-table th {
    background: var(--c-bg3);
    color: var(--c-text-muted);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .7px
}

.e2v9-table td {
    background: var(--c-card);
    color: var(--c-text)
}

.e2v9-table tr:hover td {
    background: var(--c-bg3)
}

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

.e2v9-dl-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    background: var(--c-bg3);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-size: 14px;
    font-weight: 600;
    transition: border-color .2s, background .2s
}

.e2v9-dl-btn:hover {
    border-color: var(--c-accent);
    background: rgba(26, 102, 239, .08);
    color: var(--c-text)
}

.e2v9-dl-icon {
    font-size: 22px
}

.e2v9-img {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    justify-content: center
}

.e2v9-img img {
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    width: 100%
}

/*  */
.f7w3-section {
    background: var(--c-bg2)
}

.f7w3-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px
}

.f7w3-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s
}

.f7w3-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5)
}

.f7w3-img {
    aspect-ratio: 1/1;
    background: var(--c-bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.f7w3-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.f7w3-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.f7w3-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.3
}

.f7w3-provider {
    font-size: 11px;
    color: var(--c-text-muted)
}

/*  */
.g6n1-section {
    background: var(--c-bg)
}

.g6n1-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center
}

.g6n1-canvas-wrap {
    position: relative;
    width: 320px;
    height: 320px
}

.g6n1-canvas-wrap canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(26, 102, 239, .3)
}

.g6n1-arrow {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 28px solid var(--c-gold);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .5))
}

.g6n1-result {
    min-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.g6n1-result-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-gold);
    animation: fadeInUp .4s ease
}

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

.g6n1-spinning {
    animation: spinPulse .5s infinite alternate
}

@keyframes spinPulse {
    from {
        color: var(--c-accent)
    }
    to {
        color: var(--c-accent2)
    }
}

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

.h1s5-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm)
}

.h1s5-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-accent), var(--c-accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.h1s5-author-info strong {
    display: block;
    font-size: 15px;
    color: var(--c-text)
}

.h1s5-author-info span {
    font-size: 13px;
    color: var(--c-text-muted)
}

.h1s5-author-info a {
    font-size: 12px;
    color: var(--c-accent)
}

.h1s5-content {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px 32px
}

.h1s5-content h2, .h1s5-content h3, .h1s5-content h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: var(--c-text);
    margin: 20px 0 10px;
    line-height: 1.3
}

.h1s5-content h2 {
    font-size: 22px
}

.h1s5-content h3 {
    font-size: 18px
}

.h1s5-content h4 {
    font-size: 16px
}

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

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

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

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

.h1s5-content th, .h1s5-content td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border)
}

.h1s5-content th {
    background: var(--c-bg3);
    color: var(--c-text-muted);
    font-size: 13px
}

.h1s5-content td {
    background: var(--c-card);
    color: var(--c-text);
    font-size: 14px
}

.h1s5-content a {
    color: var(--c-accent)
}

.h1s5-content strong {
    font-weight: 700;
    color: var(--c-text)
}

.h1s5-content blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 10px 20px;
    margin: 16px 0;
    background: rgba(26, 102, 239, .05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text-muted);
    font-style: italic
}

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

/*  */
.i4k8-section {
    background: var(--c-bg)
}

.i4k8-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 820px;
    margin: 0 auto
}

.i4k8-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color .2s
}

.i4k8-item.open {
    border-color: var(--c-accent)
}

.i4k8-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    gap: 16px;
    user-select: none
}

.i4k8-q-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text);
    flex: 1
}

.i4k8-icon {
    width: 24px;
    height: 24px;
    background: var(--c-bg3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .25s, background .2s;
    color: var(--c-text-muted);
    font-size: 16px;
    font-weight: 300
}

.i4k8-item.open .i4k8-icon {
    transform: rotate(45deg);
    background: var(--c-accent);
    color: #fff
}

.i4k8-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.i4k8-a-inner {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.7
}

.i4k8-item.open .i4k8-a {
    max-height: 500px
}

/*  */
.j3p6-footer {
    background: var(--c-bg);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 0
}

.j3p6-top {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--c-border)
}

.j3p6-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px
}

.j3p6-brand img {
    height: 36px;
    width: auto
}

.j3p6-brand p {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.6
}

.j3p6-col {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.j3p6-col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--c-text-muted);
    margin-bottom: 4px
}

.j3p6-col a {
    font-size: 13px;
    color: var(--c-text-muted);
    transition: color .2s
}

.j3p6-col a:hover {
    color: var(--c-text)
}

.j3p6-logos {
    padding: 24px 0
}

.j3p6-logos-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--c-text-muted);
    margin-bottom: 12px
}

.j3p6-logos-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.j3p6-logo-pill {
    padding: 6px 14px;
    background: var(--c-bg3);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text-muted)
}

.j3p6-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid var(--c-border)
}

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

.j3p6-legal {
    font-size: 11px;
    color: rgba(136, 153, 170, .6);
    line-height: 1.6;
    max-width: 740px
}

.j3p6-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(136, 153, 170, .4);
    font-size: 11px;
    font-weight: 800;
    color: var(--c-text-muted);
    margin-right: 8px;
    flex-shrink: 0
}

/*  */
.k9d2-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #0d1523, #0e1a2e);
    border-top: 1px solid var(--c-accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(26, 102, 239, .25)
}

.k9d2-text {
    font-size: 14px;
    color: var(--c-text);
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0
}

.k9d2-text strong {
    color: var(--c-gold)
}

.k9d2-text span {
    color: var(--c-text-muted);
    font-size: 12px;
    display: inline
}

.k9d2-widget .btn {
    flex-shrink: 0
}

body {
    padding-bottom: 68px
}


.sec-head {
    margin-bottom: 32px
}

.sec-head .a8f4-title {
    margin-bottom: 8px
}

.sec-head p {
    font-size: 15px;
    color: var(--c-text-muted)
}

.mob-slider-wrap {
    position: relative;
    overflow: hidden
}

.mob-slider-track {
    display: flex;
    gap: 16px;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1)
}

.mob-dots {
    display: none;
    justify-content: center;
    gap: 6px;
    margin-top: 16px
}

.mob-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-border);
    border: none;
    cursor: pointer;
    transition: background .2s
}

.mob-dot.active {
    background: var(--c-accent)
}

.wp-block-separator {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 24px 0
}

.wp-block-quote {
    border-left: 3px solid var(--c-accent);
    padding-left: 16px;
    color: var(--c-text-muted);
    font-style: italic
}

.elementor-widget-container {
    display: contents
}

.entry-content {
    color: var(--c-text)
}

.site-description {
    color: var(--c-text-muted);
    font-size: 13px
}

.wp-post-image {
    border-radius: var(--radius-sm)
}

.wpcf7-form-control {
    display: none
}

.yoast-schema-graph {
    display: none
}

.hidden-wp-nonce {
    display: none
}

#wpadminbar {
    display: none !important
}

.wp-caption {
    display: none
}

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

.rtl {
    direction: rtl
}

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

    .z9q1-burger {
        display: flex
    }

    .b3r7-hero {
        height: 380px
    }

    .b3r7-content {
        padding: 0 24px
    }

    .c5x2-card {
        flex-direction: column;
        gap: 20px
    }

    .e2v9-wrap {
        flex-direction: column
    }

    .e2v9-img {
        flex: none;
        width: 100%;
        max-width: 280px
    }

    .j3p6-top {
        gap: 24px
    }

    .mob-dots {
        display: flex
    }

    .d8m4-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none
    }

    .d8m4-grid::-webkit-scrollbar {
        display: none
    }

    .d8m4-card {
        min-width: 260px;
        flex-shrink: 0
    }
}

@media (max-width: 600px) {
    .b3r7-hero {
        height: 300px
    }

    .b3r7-content h2 {
        font-size: 22px
    }

    .b3r7-content p {
        font-size: 14px
    }

    .b3r7-content {
        padding: 0 16px
    }

    .c5x2-code {
        font-size: 18px
    }

    .g6n1-canvas-wrap {
        width: 260px;
        height: 260px
    }

    .k9d2-text span {
        display: none
    }

    .f7w3-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .j3p6-top {
        flex-direction: column
    }

    .section-gap {
        padding: 40px 0
    }
}

/*  */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease
}

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

#slots.f7w3-section {
    background: linear-gradient(180deg, var(--c-bg2), var(--c-bg));
}

#slots .sec-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

#slots .sec-head p {
    margin-top: 10px;
    color: var(--c-text-muted);
    font-size: 15px;
}

#slots .mob-slider-wrap {
    overflow: visible;
}

#slots .f7w3-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px !important;
}

#slots .f7w3-card {
    min-width: 0 !important;
    width: 100%;
    border-radius: 16px;
}

#slots .f7w3-img {
    aspect-ratio: 1 / 1;
}

#slots .f7w3-body {
    min-height: 130px;
}

#slots .f7w3-name {
    font-size: 14px;
}

#slots .f7w3-provider {
    font-size: 12px;
}

#slots .f7w3-card .btn {
    width: 100%;
}

#slots .mob-dots {
    display: none !important;
}

@media (max-width: 768px) {
    #slots.section-gap {
        padding: 42px 0;
    }

    #slots .xk7p2-wrap {
        padding: 0 14px;
    }

    #slots .sec-head {
        margin-bottom: 22px;
    }

    #slots .a8f4-title--lg {
        font-size: 24px;
        line-height: 1.2;
    }

    #slots .sec-head p {
        font-size: 14px;
        line-height: 1.55;
    }

    #slots .mob-slider-wrap {
        overflow: visible !important;
    }

    #slots .f7w3-grid.mob-slider-track {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
        transform: none !important;
        transition: none !important;
    }

    #slots .f7w3-card {
        min-width: 0 !important;
        max-width: 100% !important;
        flex: none !important;
    }

    #slots .f7w3-img {
        aspect-ratio: 1 / 1;
    }

    #slots .f7w3-body {
        padding: 10px;
        min-height: 126px;
    }

    #slots .f7w3-name {
        font-size: 13px;
    }

    #slots .f7w3-provider {
        font-size: 11px;
    }

    #slots .btn--sm {
        padding: 9px 10px;
        font-size: 12px;
        white-space: normal;
    }
}

@media (max-width: 420px) {
    #slots .f7w3-grid.mob-slider-track {
        grid-template-columns: 1fr !important;
    }

    #slots .f7w3-card {
        display: grid;
        grid-template-columns: 110px 1fr;
    }

    #slots .f7w3-img {
        aspect-ratio: auto;
        height: 100%;
        min-height: 128px;
    }

    #slots .f7w3-body {
        min-height: 128px;
    }
}