@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
    --clr-header: #081259;
    --clr-header-dark: #060e47;
    --clr-btn-primary: #079bfa;
    --clr-btn-primary-hover: #0585d8;
    --clr-btn-secondary: #e09f46;
    --clr-btn-secondary-hover: #c98a38;
    --clr-bg: #ffffff;
    --clr-bg-light: #f4f6fb;
    --clr-bg-card: #f8f9fd;
    --clr-text: #1a1f3c;
    --clr-text-muted: #5a6180;
    --clr-border: #dde3f5;
    --clr-accent: #e09f46;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(8, 18, 89, 0.08);
    --shadow-md: 0 4px 20px rgba(8, 18, 89, 0.12);
    --shadow-lg: 0 8px 40px rgba(8, 18, 89, 0.18);
    --font: 'Inter', sans-serif;
    --transition: 0.25s ease;
}

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

body {
    font-family: var(--font);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--clr-btn-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--clr-btn-secondary-hover);
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

button {
    cursor: pointer;
    font-family: var(--font);
    border: none;
    background: none;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--clr-btn-primary);
    color: #fff;
}

.btn--primary:hover {
    background: var(--clr-btn-primary-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(7, 155, 250, 0.35);
}

.btn--secondary {
    background: var(--clr-btn-secondary);
    color: #fff;
}

.btn--secondary:hover {
    background: var(--clr-btn-secondary-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(224, 159, 70, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--clr-btn-primary);
    border: 2px solid var(--clr-btn-primary);
}

.btn--outline:hover {
    background: var(--clr-btn-primary);
    color: #fff;
}

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

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

.p4vx1-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(8, 18, 89, 0.25);
}

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

.p4vx1-logo {
    flex-shrink: 0;
}

.p4vx1-logo img {
    height: 44px;
    width: auto;
}

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

.p4vx1-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.p4vx1-nav a:hover, .p4vx1-nav a.active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

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

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

.p4vx1-online {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.p4vx1-online-dot {
    width: 7px;
    height: 7px;
    background: #22d36e;
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
}

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

.p4vx1-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    border: none;
}

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

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

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

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

.p4vx1-mobile-nav {
    display: none;
    background: var(--clr-header-dark);
    padding: 12px 20px 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.p4vx1-mobile-nav.is-open {
    max-height: 420px;
}

.p4vx1-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.p4vx1-mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.p4vx1-mobile-nav a svg {
    width: 18px;
    height: 18px;
}

.m7hz3-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-header);
}

.m7hz3-hero-bg {
    position: absolute;
    inset: 0;
    background: url('/hero-hill.png') center/cover no-repeat;
    opacity: 0.18;
}

.m7hz3-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 18, 89, 0.92) 0%, rgba(8, 18, 89, 0.6) 100%);
}

.m7hz3-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.m7hz3-hero-content {
    flex: 1;
}

.m7hz3-hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}

.m7hz3-hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.65;
}

.m7hz3-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.m7hz3-promo-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
}

.m7hz3-promo-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.6);
}

.m7hz3-promo-code-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.m7hz3-promo-code {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-accent);
    letter-spacing: 2px;
}

.m7hz3-copy-btn {
    background: rgba(224, 159, 70, 0.15);
    border: 1px solid rgba(224, 159, 70, 0.4);
    color: var(--clr-accent);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.m7hz3-copy-btn:hover {
    background: var(--clr-accent);
    color: #fff;
}

.m7hz3-hero-badge {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    min-width: 220px;
}

.m7hz3-badge-bonus {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.m7hz3-badge-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
}

.m7hz3-badge-spins {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin: 12px 0 6px;
}

.m7hz3-badge-note {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
}

.c8wn5-section {
    padding: 56px 0;
}

.c8wn5-section + .c8wn5-section {
    padding-top: 0;
}

.c8wn5-section-alt {
    background: var(--clr-bg-light);
}

.c8wn5-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 6px;
}

.c8wn5-section-subtitle {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
}

.c8wn5-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    transition: box-shadow var(--transition);
}

.c8wn5-card:hover {
    box-shadow: var(--shadow-md);
}

.q2tr7-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    margin-top: 16px;
}

.q2tr7-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.q2tr7-table thead {
    background: var(--clr-header);
}

.q2tr7-table thead th {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap;
}

.q2tr7-table tbody tr {
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition);
}

.q2tr7-table tbody tr:last-child {
    border-bottom: none;
}

.q2tr7-table tbody tr:hover {
    background: rgba(7, 155, 250, 0.04);
}

.q2tr7-table td {
    padding: 11px 16px;
    font-size: 0.9rem;
    color: var(--clr-text);
    vertical-align: middle;
}

.q2tr7-table td a {
    color: var(--clr-btn-primary);
    font-weight: 600;
}

.q2tr7-table td a:hover {
    color: var(--clr-btn-primary-hover);
}

.q2tr7-mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1cb85a;
}

.q2tr7-mirror-status::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #1cb85a;
    border-radius: 50%;
    display: inline-block;
}

.q2tr7-ts {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-top: 8px;
}

.a5pj9-app-grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.a5pj9-app-table-wrap {
    flex: 1;
}

.a5pj9-app-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 180px;
}

.a5pj9-store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--clr-header);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font);
}

.a5pj9-store-btn:hover {
    background: var(--clr-btn-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.a5pj9-store-btn svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.a5pj9-store-btn-text {
    display: flex;
    flex-direction: column;
}

.a5pj9-store-btn-text span:first-child {
    font-size: 0.7rem;
    opacity: 0.75;
}

.a5pj9-store-btn-text span:last-child {
    font-size: 0.95rem;
    font-weight: 700;
}

.d3fg1-demo-wrap {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--clr-border);
    background: #000;
    position: relative;
}

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

.d3fg1-demo-cta {
    background: linear-gradient(90deg, var(--clr-header) 0%, #1a2b8a 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.d3fg1-demo-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.d3fg1-demo-cta strong {
    color: #fff;
    display: block;
    font-size: 1.05rem;
}

.d3fg1-slot-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.d3fg1-slot-btn {
    background: var(--clr-bg-card);
    border: 2px solid var(--clr-border);
    color: var(--clr-text);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.d3fg1-slot-btn:hover, .d3fg1-slot-btn.active {
    border-color: var(--clr-btn-primary);
    background: rgba(7, 155, 250, 0.08);
    color: var(--clr-btn-primary);
}

.r6km4-review {
    font-size: 1rem;
    color: var(--clr-text);
    line-height: 1.75;
}

.r6km4-review h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 28px 0 12px;
}

.r6km4-review h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--clr-text);
    margin: 22px 0 10px;
}

.r6km4-review p {
    margin-bottom: 16px;
}

.r6km4-review ul, .r6km4-review ol {
    margin: 12px 0 18px 22px;
}

.r6km4-review li {
    margin-bottom: 6px;
}

.r6km4-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.r6km4-review table th {
    background: var(--clr-header);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-size: 0.88rem;
}

.r6km4-review table td {
    padding: 9px 14px;
    border: 1px solid var(--clr-border);
    font-size: 0.9rem;
}

.r6km4-review table tr:nth-child(even) td {
    background: var(--clr-bg-light);
}

.r6km4-review strong, .r6km4-review b {
    font-weight: 700;
    color: var(--clr-text);
}

.r6km4-review a {
    color: var(--clr-btn-secondary);
    font-weight: 600;
}

.r6km4-review blockquote {
    border-left: 4px solid var(--clr-btn-primary);
    padding: 12px 18px;
    background: rgba(7, 155, 250, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 18px 0;
    font-style: italic;
    color: var(--clr-text-muted);
}

.r6km4-author {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 32px;
}

.r6km4-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--clr-header);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.r6km4-author-info {
    flex: 1;
}

.r6km4-author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text);
}

.r6km4-author-title {
    font-size: 0.82rem;
    color: var(--clr-btn-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.r6km4-author-bio {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.r6km4-author-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--clr-btn-secondary);
    font-weight: 600;
    margin-top: 6px;
}

.s9bv2-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 8px;
}

.s9bv2-security-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 22px;
    transition: all var(--transition);
}

.s9bv2-security-card:hover {
    border-color: var(--clr-btn-primary);
    box-shadow: 0 4px 16px rgba(7, 155, 250, 0.1);
}

.s9bv2-security-icon {
    width: 44px;
    height: 44px;
    background: rgba(7, 155, 250, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.s9bv2-security-icon svg {
    width: 22px;
    height: 22px;
    color: var(--clr-btn-primary);
}

.s9bv2-security-card h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 7px;
}

.s9bv2-security-card p {
    font-size: 0.84rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.f1nh8-faq {
    max-width: 820px;
}

.f1nh8-faq-item {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.f1nh8-faq-item:hover {
    box-shadow: var(--shadow-sm);
}

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

.f1nh8-faq-q:hover {
    background: var(--clr-bg-light);
}

.f1nh8-faq-q[aria-expanded="true"] {
    background: rgba(7, 155, 250, 0.05);
    color: var(--clr-btn-primary);
}

.f1nh8-faq-icon {
    width: 22px;
    height: 22px;
    background: var(--clr-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.f1nh8-faq-q[aria-expanded="true"] .f1nh8-faq-icon {
    transform: rotate(180deg);
    background: rgba(7, 155, 250, 0.12);
}

.f1nh8-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
}

.f1nh8-faq-a.is-open {
    max-height: 400px;
}

.f1nh8-faq-a-inner {
    padding: 0 20px 16px;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.n5xr6-comments {
}

.n5xr6-comment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.n5xr6-comment {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 18px 22px;
}

.n5xr6-comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.n5xr6-comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--clr-header);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.n5xr6-comment-meta {
}

.n5xr6-comment-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-text);
}

.n5xr6-comment-date {
    font-size: 0.77rem;
    color: var(--clr-text-muted);
}

.n5xr6-comment-stars {
    color: var(--clr-accent);
    font-size: 0.9rem;
}

.n5xr6-comment-text {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.n5xr6-form {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.n5xr6-form h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--clr-text);
}

.n5xr6-form-group {
    margin-bottom: 16px;
}

.n5xr6-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 6px;
}

.n5xr6-form-group input,
.n5xr6-form-group textarea,
.n5xr6-form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font);
    color: var(--clr-text);
    background: #fff;
    transition: border-color var(--transition);
    outline: none;
}

.n5xr6-form-group input:focus,
.n5xr6-form-group textarea:focus,
.n5xr6-form-group select:focus {
    border-color: var(--clr-btn-primary);
    box-shadow: 0 0 0 3px rgba(7, 155, 250, 0.1);
}

.n5xr6-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.n5xr6-form-success {
    display: none;
    background: #edfaf3;
    border: 1px solid #a3e8c2;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.9rem;
    color: #1a7a45;
    font-weight: 600;
    text-align: center;
}

.n5xr6-form-success.is-visible {
    display: block;
}

.z4wq8-footer {
    background: var(--clr-header);
    color: rgba(255, 255, 255, 0.8);
    padding: 52px 0 24px;
    margin-top: auto;
}

.z4wq8-footer-grid {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.z4wq8-footer-logo img {
    height: 40px;
    margin-bottom: 14px;
}

.z4wq8-footer-logo p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.z4wq8-footer-flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    margin-top: 12px;
}

.z4wq8-footer-col h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    margin-bottom: 14px;
}

.z4wq8-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.z4wq8-footer-col ul li a {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.z4wq8-footer-col ul li a:hover {
    color: #fff;
}

.z4wq8-social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.z4wq8-social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

.z4wq8-social-link:hover {
    background: var(--clr-btn-primary);
    color: #fff;
}

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

.z4wq8-footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.z4wq8-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.z4wq8-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

.z4wq8-footer-payment {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
}

.z4wq8-pay-icon {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--clr-header);
}

.z4wq8-footer-legal {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

.z4wq8-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.z4wq8-footer-18 {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.z4wq8-responsible-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.z4wq8-responsible-links a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
}

.z4wq8-responsible-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.wk2m9-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--clr-header);
    border-top: 2px solid rgba(7, 155, 250, 0.5);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(8, 18, 89, 0.3);
    transition: transform var(--transition);
}

.wk2m9-widget.is-hidden {
    transform: translateY(100%);
}

.wk2m9-widget-promo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wk2m9-widget-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

.wk2m9-widget-code {
    font-size: 1rem;
    font-weight: 800;
    color: var(--clr-accent);
    letter-spacing: 2px;
}

.wk2m9-copy-btn {
    background: rgba(224, 159, 70, 0.15);
    border: 1px solid rgba(224, 159, 70, 0.4);
    color: var(--clr-accent);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.wk2m9-copy-btn:hover {
    background: var(--clr-accent);
    color: #fff;
}

.wk2m9-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all var(--transition);
}

.wk2m9-close:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.b8xp3-info-page {
    padding: 60px 0;
}

.b8xp3-info-page h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-header);
    margin-bottom: 24px;
}

.b8xp3-info-page h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 28px 0 10px;
}

.b8xp3-info-page h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-text);
    margin: 20px 0 8px;
}

.b8xp3-info-page p {
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.75;
}

.b8xp3-info-page ul, .b8xp3-info-page ol {
    margin: 10px 0 18px 22px;
}

.b8xp3-info-page li {
    margin-bottom: 7px;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.b8xp3-info-page a {
    color: var(--clr-btn-secondary);
    font-weight: 600;
}

.lp7y0-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 0;
}

.lp7y0-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.lp7y0-breadcrumb a:hover {
    color: #fff;
}

.lp7y0-breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.wp-hidden-meta {
    display: none !important;
}

.elementor-widget-container {
    display: contents;
}

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

    .p4vx1-online {
        display: none;
    }

    .p4vx1-burger {
        display: flex;
    }

    .p4vx1-mobile-nav {
        display: block;
    }

    .m7hz3-hero-inner {
        flex-direction: column;
        gap: 32px;
    }

    .m7hz3-hero-badge {
        width: 100%;
    }

    .z4wq8-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .a5pj9-app-grid {
        flex-direction: column;
    }

    .a5pj9-app-btns {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .s9bv2-security-grid {
        grid-template-columns: 1fr 1fr;
    }

    .d3fg1-demo-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .p4vx1-header-inner {
        padding: 10px 14px;
    }

    .p4vx1-logo img {
        height: 36px;
    }

    .m7hz3-hero-content h1 {
        font-size: 1.6rem;
    }

    .c8wn5-section {
        padding: 36px 0;
    }

    .z4wq8-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .s9bv2-security-grid {
        grid-template-columns: 1fr;
    }

    .wk2m9-widget {
        flex-wrap: wrap;
        padding: 10px 40px 10px 16px;
    }

    .z4wq8-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .d3fg1-demo-wrap iframe {
        height: 360px;
    }

    .r6km4-author {
        flex-direction: column;
    }
}

.c8wn5-section#app {
    overflow: hidden;
}

.c8wn5-section#app * {
    box-sizing: border-box;
    min-width: 0;
}

.a5pj9-app-grid {
    display: grid;
    grid-template-columns:minmax(0, 1fr) 280px;
    gap: 32px;
    align-items: start;
}

.a5pj9-app-table-wrap {
    min-width: 0;
}

.q2tr7-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.q2tr7-table {
    width: 100%;
}

.a5pj9-app-btns {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.a5pj9-store-btn {
    width: 100%;
}

.a5pj9-store-btn-text {
    min-width: 0;
}

.a5pj9-store-btn-text span {
    white-space: normal;
}

@media (max-width: 992px) {

    .a5pj9-app-grid {
        grid-template-columns:1fr;
    }

    .a5pj9-app-btns {
        position: static;
        display: grid;
        grid-template-columns:repeat(3, 1fr);
        gap: 14px;
    }

}

@media (max-width: 768px) {

    .c8wn5-section#app {
        margin: 0 !important;
        padding: 24px 16px !important;
        border-radius: 18px !important;
    }

    .c8wn5-card {
        padding: 18px;
    }

    .c8wn5-section-title {
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
    }

    .c8wn5-section-subtitle {
        font-size: 15px;
        text-align: center;
        margin-bottom: 20px;
    }

    .a5pj9-app-grid {
        gap: 20px;
    }

    .a5pj9-app-btns {
        grid-template-columns:1fr;
    }

    .a5pj9-store-btn {
        padding: 14px 16px;
        justify-content: flex-start;
    }

    .a5pj9-store-btn svg {
        width: 24px;
        height: 24px;
    }

    .q2tr7-table {
        min-width: 520px;
    }

    .q2tr7-table th,
    .q2tr7-table td {
        padding: 10px 12px;
        font-size: 14px;
    }

}

@media (max-width: 480px) {

    .c8wn5-section#app {
        padding: 20px 12px !important;
    }

    .c8wn5-card {
        padding: 14px;
    }

    .c8wn5-section-title {
        font-size: 24px;
    }

    .c8wn5-section-subtitle {
        font-size: 14px;
    }

    .a5pj9-store-btn {
        padding: 12px;
        gap: 10px;
    }

    .a5pj9-store-btn-text span:last-child {
        font-size: 15px;
    }

    .a5pj9-store-btn-text span:first-child {
        font-size: 12px;
    }

    .q2tr7-table th,
    .q2tr7-table td {
        padding: 9px 10px;
        font-size: 13px;
    }

}