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

:root {
    --c-header: #3A3A3A;
    --c-header-d: #2a2a2a;
    --c-btn-blue: #2967C7;
    --c-btn-blue-h: #1f52a8;
    --c-btn-gold: #F5B337;
    --c-btn-gold-h: #d99a20;
    --c-bg: #69ACBD;
    --c-bg-dark: #4d8fa0;
    --c-bg-card: #f0f8fb;
    --c-white: #ffffff;
    --c-text: #1a1a2e;
    --c-text-light: #f5f5f5;
    --c-text-muted: #888;
    --c-border: #b8d9e4;
    --c-accent: #e8f4f8;
    --radius: 12px;
    --radius-sm: 6px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --font-main: 'Poppins', sans-serif;
    --font-head: 'Montserrat', sans-serif;
    --font-alt: 'Oswald', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    font-size: 15px;
    min-height: 100vh;
}

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

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

.box {
    border-radius: var(--radius);
}

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

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

a:hover {
    color: var(--c-btn-blue-h);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.3;
    color: var(--c-text);
}

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

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

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

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

.btn--gold {
    background: var(--c-btn-gold);
    color: #1a1a2e;
}

.btn--gold:hover {
    background: var(--c-btn-gold-h);
    color: #1a1a2e;
}

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

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

.section-block {
    margin: 24px 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.section-block--card {
    background: var(--c-bg-card);
    box-shadow: var(--shadow-sm);
    padding: 28px;
}

.section-block--dark {
    background: var(--c-header);
    color: var(--c-text-light);
    padding: 28px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--c-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title--light {
    color: var(--c-text-light);
}

.xb4r-a1 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.xb4r-a1.xb4r-vis {
    opacity: 1;
    transform: translateY(0);
}

.f7q2-spacer {
    display: block;
    height: 1px;
}

header.site-header {
    background: var(--c-header);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo img {
    height: 42px;
    width: auto;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-text-light);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
    white-space: nowrap;
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-text-light);
}

.header-nav svg {
    flex-shrink: 0;
}

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

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-text-light);
    font-size: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-family: var(--font-main);
    transition: background 0.2s;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.lang-btn .arr {
    font-size: 10px;
}

.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: var(--c-header-d);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    overflow: hidden;
    min-width: 130px;
    display: none;
    z-index: 99;
    box-shadow: var(--shadow);
}

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

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--c-text-light);
}

.lang-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--c-text-light);
}

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

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

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

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

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

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

.mobile-nav {
    display: none;
    background: var(--c-header-d);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.mobile-nav-inner {
    padding: 12px 16px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: var(--c-text-light);
    font-size: 14px;
    border-radius: 6px;
    transition: background 0.2s;
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--c-text-light);
}

.hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 30, 0.85) 0%, rgba(10, 10, 30, 0.4) 60%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--c-btn-gold);
    color: #1a1a2e;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-family: var(--font-alt);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-val {
    font-family: var(--font-alt);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-btn-gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-content {
    flex: 1;
    padding: 0 0 40px;
}

.toc-block {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px 28px;
    margin: 24px 0;
}

.toc-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    color: var(--c-btn-blue);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--c-border);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.toc-link:hover {
    background: var(--c-btn-blue);
    color: #fff;
    border-color: var(--c-btn-blue);
    transform: translateY(-1px);
}

.toc-link svg {
    flex-shrink: 0;
}

.info-table-wrap {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin: 24px 0;
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

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

.info-table th {
    background: var(--c-header);
    color: var(--c-text-light);
    font-family: var(--font-head);
    font-weight: 600;
    width: 40%;
}

.info-table tr:nth-child(even) td {
    background: var(--c-accent);
}

.info-table tr:hover td {
    background: #d9eef5;
}

.info-table td .badge-green {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
}

.info-table td .badge-gold {
    display: inline-block;
    background: var(--c-btn-gold);
    color: #1a1a2e;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
}

.winners-block {
    background: var(--c-header);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    margin: 24px 0;
}

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

.winners-table th {
    color: var(--c-btn-gold);
    font-family: var(--font-head);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.winners-table td {
    padding: 9px 12px;
    font-size: 13px;
    color: var(--c-text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.winners-table tr:hover td {
    background: rgba(255, 255, 255, 0.04);
}

.winner-rank {
    font-weight: 700;
    color: var(--c-btn-gold);
}

.winner-rank.top1 {
    color: #ffd700;
}

.winner-rank.top2 {
    color: #c0c0c0;
}

.winner-rank.top3 {
    color: #cd7f32;
}

.winner-amount {
    font-weight: 700;
    color: #4caf50;
}

.winner-live {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 4px;
    animation: pulse 2s infinite;
}

.bonuses-block {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    margin: 24px 0;
}

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

.bonus-card {
    border-radius: var(--radius);
    border: 2px solid var(--c-border);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    background: var(--c-bg-card);
}

.bonus-card:hover {
    border-color: var(--c-btn-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.bonus-card-logo {
    height: 36px;
    object-fit: contain;
    object-position: left;
}

.bonus-card-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-text);
}

.bonus-card-amount {
    font-family: var(--font-alt);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--c-btn-blue);
    line-height: 1;
}

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

.bonus-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bonus-card-features li {
    font-size: 13px;
    color: var(--c-text);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.bonus-card-features li::before {
    content: '✓';
    color: #27ae60;
    font-weight: 700;
    flex-shrink: 0;
}

.bonus-card .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.bonuses-slider-nav {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.slider-dot.active {
    background: var(--c-btn-blue);
}

.demo-block {
    background: var(--c-header);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    margin: 24px 0;
}

.demo-iframe-wrap {
    position: relative;
    border-radius: 10px;
    background: #000;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

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

.demo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 30, 0.85);
    gap: 16px;
    z-index: 10;
}

.demo-overlay-logo {
    width: 120px;
}

.demo-overlay-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-align: center;
}

.demo-overlay-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.demo-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.demo-cta-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.faq-block {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    margin: 24px 0;
}

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

.faq-item {
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 18px;
    background: var(--c-accent);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--c-text);
    transition: background 0.2s;
    gap: 12px;
}

.faq-question:hover {
    background: var(--c-border);
}

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

.faq-question.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
    font-size: 12px;
}

.faq-answer {
    display: none;
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--c-text);
    border-top: 1px solid var(--c-border);
}

.faq-answer.open {
    display: block;
}

.pros-cons-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.pros-block, .cons-block {
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.pros-block {
    background: #e8f5e9;
    border: 1.5px solid #a5d6a7;
}

.cons-block {
    background: #fce4e4;
    border: 1.5px solid #ef9a9a;
}

.pros-block h3 {
    color: #2e7d32;
    font-size: 1rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cons-block h3 {
    color: #c62828;
    font-size: 1rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-list, .cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pros-list li, .cons-list li {
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pros-list li::before {
    content: '✅';
    flex-shrink: 0;
}

.cons-list li::before {
    content: '⚠️';
    flex-shrink: 0;
}

.author-block {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin: 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--c-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-alt);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c-header);
    flex-shrink: 0;
    border: 3px solid var(--c-btn-blue);
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 4px;
}

.author-role {
    font-size: 13px;
    color: var(--c-btn-blue);
    font-weight: 500;
    margin-bottom: 8px;
}

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

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

.author-link:hover {
    text-decoration: underline;
    color: var(--c-btn-blue-h);
}

.content-placeholder {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 32px;
    margin: 24px 0;
}

.content-placeholder h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.content-placeholder h3 {
    font-size: 1.15rem;
    margin-top: 20px;
    margin-bottom: 8px;
}

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

.content-placeholder ul, .content-placeholder ol {
    padding-left: 20px;
    margin-bottom: 12px;
}

.content-placeholder li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 4px;
}

.content-placeholder table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.content-placeholder table th {
    background: var(--c-header);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
}

.content-placeholder table td {
    padding: 9px 14px;
    border: 1px solid var(--c-border);
    font-size: 14px;
}

.content-placeholder table tr:nth-child(even) td {
    background: var(--c-accent);
}

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

.site-footer {
    background: var(--c-header);
    color: var(--c-text-light);
    margin-top: 20px;
}

.footer-top {
    padding: 40px 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 40px;
}

.footer-logo img {
    height: 44px;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-links h4 {
    font-family: var(--font-head);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-btn-gold);
    margin-bottom: 14px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--c-btn-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.footer-logos-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-logos-section span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    white-space: nowrap;
}

.license-badge {
    background: rgba(245, 179, 55, 0.12);
    border: 1px solid rgba(245, 179, 55, 0.25);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    color: var(--c-btn-gold);
    font-weight: 600;
    white-space: nowrap;
}

.provider-badge img {
    height: 28px;
    opacity: 0.7;
    filter: brightness(2);
}

.footer-legal {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}


.breadcrumb-bar {
    padding: 10px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.breadcrumb-list a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.breadcrumb-cur {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.technical-content {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 36px;
    margin: 24px 0;
}

.technical-content h2 {
    font-size: 1.35rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--c-text);
}

.technical-content h2:first-child {
    margin-top: 0;
}

.technical-content h3 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--c-text);
}

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

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

.technical-content li {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 5px;
}

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

.section-divider {
    border: none;
    border-top: 2px solid var(--c-border);
    margin: 32px 0;
}

.g8x3-hidden {
    display: none;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.q1z9-track {
    position: absolute;
    left: -9999px;
}

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

    .burger-btn {
        display: flex;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .bonuses-slider-nav {
        display: flex;
    }

    .bonus-card {
        display: none;
    }

    .bonus-card.slide-active {
        display: flex;
    }

    .pros-cons-block {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 600px) {
    .hero-content {
        padding: 40px 16px;
    }

    .hero-stats {
        gap: 16px;
    }

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

    .header-inner {
        grid-template-columns: auto 1fr auto auto;
    }

    .section-block--card {
        padding: 18px;
    }

    .toc-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .widget-bottom {
        flex-wrap: wrap;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 4px;
    }

    .info-table-wrap {
        padding: 12px;
    }
}

body {
    padding-bottom: 70px;
}

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

.fade-in {
    animation: fadeInUp 0.5s ease both;
}

.tr-highlight {
    color: var(--c-btn-blue);
    font-weight: 700;
}

.p3v-unused-a {
    display: none;
}

.p3v-unused-b {
    visibility: hidden;
    position: absolute;
    left: -10000px;
}

@media (max-width: 768px) {
    .demo-iframe-wrap {
        position: relative;
        height: auto;
        min-height: 0;
        padding: 0;
        background: transparent;
        display: block;
    }

    .demo-iframe-wrap iframe {
        position: relative;
        width: 100%;
        height: 260px;
        min-height: 260px;
        max-height: 260px;
        display: block;
        border: 0;
        background: transparent;
    }
}

@media (max-width: 480px) {
    .demo-iframe-wrap iframe {
        height: 220px;
        min-height: 220px;
        max-height: 220px;
    }
}