

:root {
    --bg-primary: #061a14;
    --bg-secondary: #0a2620;
    --bg-card: #0d2c25;
    --bg-card-hover: #114036;
    --border-gold: #b48a36;
    --border-gold-soft: rgba(180, 138, 54, 0.25);
    --text-primary: #f3ecd9;
    --text-muted: #9eb2a8;
    --gold: #d4a85a;
    --gold-bright: #f1c87a;
    --green-accent: #1d6b50;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --font-base: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --container-max: 1180px;
}

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

html {
    scroll-behavior: smooth;
}


.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--gold);
    color: #1a1108;
    padding: 10px 18px;
    z-index: 1000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0 0 6px 0;
}

.skip-link:focus {
    top: 0;
}

body {
    font-family: var(--font-base);
    background-color: var(--bg-primary);
    background-image:
        radial-gradient(circle at 10% 0%, rgba(29, 107, 80, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 90% 100%, rgba(180, 138, 54, 0.08) 0%, transparent 40%);
    color: var(--text-primary);
    line-height: 1.65;
    font-size: 16px;
    min-height: 100vh;
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 26, 20, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gold-soft);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.logo-img {
    height: 44px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.logo:hover .logo-img {
    transform: scale(1.04);
}

.search-bar {
    flex: 1;
    max-width: 480px;
    margin: 0 auto;
}

.search-bar input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-gold-soft);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

.search-bar input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 90, 0.15);
}

.header-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.header-actions a{
    font-size: 10px;
}


.btn {
    display: inline-block;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    padding: 10px 22px;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.2s, box-shadow 0.2s, border-color 0.2s;
    border: 1px solid transparent;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    user-select: none;
    white-space: nowrap;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-gold-soft);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-primary {
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
    color: #1a1108;
    box-shadow: 0 4px 14px rgba(212, 168, 90, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(212, 168, 90, 0.45);
}

.btn-large {
    padding: 14px 32px;
    font-size: 15px;
}


.page {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px 24px 80px;
}


.hero {
    background: linear-gradient(135deg, rgba(29, 107, 80, 0.25) 0%, rgba(13, 44, 37, 0.7) 100%);
    border: 1px solid var(--border-gold-soft);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    margin-bottom: 56px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(212, 168, 90, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 36px;
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-sub {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 28px;
    max-width: 520px;
}

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

.hero-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--bg-card);
    border: 1px solid var(--border-gold-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

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


.article {
    background: rgba(10, 38, 32, 0.55);
    border: 1px solid var(--border-gold-soft);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-card);
}

.article h2 {
    font-size: 26px;
    color: var(--gold);
    font-weight: 700;
    margin: 40px 0 18px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    position: relative;
    padding-left: 18px;
}

.article h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    border-radius: 2px;
}

.article h2:first-of-type {
    margin-top: 0;
}

.article p {
    color: var(--text-primary);
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.75;
}

.article p strong {
    color: var(--gold-bright);
    font-weight: 600;
}


.article-image {
    margin: 32px 0;
    border: 1px solid var(--border-gold-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
}

.article-image picture {
    display: block;
    width: 100%;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-image figcaption {
    padding: 12px 20px;
    color: var(--text-muted);
    font-size: 13px;
    font-style: italic;
    border-top: 1px solid var(--border-gold-soft);
    background: rgba(6, 26, 20, 0.55);
}


.table-wrap {
    margin: 28px 0;
    border: 1px solid var(--border-gold-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.data-table thead {
    background: linear-gradient(180deg, rgba(180, 138, 54, 0.18), rgba(180, 138, 54, 0.06));
}

.data-table th {
    color: var(--gold-bright);
    text-align: left;
    padding: 14px 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 13px;
    border-bottom: 1px solid var(--border-gold-soft);
}

.data-table td {
    color: var(--text-primary);
    padding: 14px 20px;
    border-bottom: 1px solid rgba(180, 138, 54, 0.1);
}

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

.data-table tbody tr:hover {
    background: rgba(180, 138, 54, 0.06);
}


.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 24px;
    align-items: center;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.meta-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--gold);
}

.meta-icon--star {
    color: var(--gold-bright);
}

.meta-updated time {
    color: var(--text-primary);
    font-weight: 600;
}

.meta-rating {
    color: var(--text-primary);
    font-weight: 600;
}


.trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    align-items: center;
}

.trust-signals--center {
    justify-content: center;
    margin-top: 22px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(180, 138, 54, 0.08);
    border: 1px solid var(--border-gold-soft);
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: border-color 0.2s, color 0.2s;
}

.trust-badge svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

.trust-badge:hover {
    border-color: var(--gold);
    color: var(--text-primary);
}

.trust-badge--age {
    background: rgba(212, 168, 90, 0.15);
    color: var(--gold-bright);
    border-color: var(--gold);
}


.pros-cons {
    margin-bottom: 56px;
}

.section-title {
    font-size: 26px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    padding-left: 18px;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    border-radius: 2px;
}

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

.pros-cons-card {
    background: rgba(10, 38, 32, 0.55);
    border: 1px solid var(--border-gold-soft);
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    box-shadow: var(--shadow-card);
}

.pros-card {
    border-left: 4px solid #2ecc71;
}

.cons-card {
    border-left: 4px solid #e74c3c;
}

.pros-cons-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.pros-cons-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.pros-card .pros-cons-icon {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.cons-card .pros-cons-icon {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.pros-cons-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

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

.pros-cons-list li {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.5;
    padding-left: 26px;
    position: relative;
}

.pros-cons-list li::before {
    position: absolute;
    left: 0;
    top: 1px;
    font-weight: 700;
    font-size: 16px;
}

.pros-card .pros-cons-list li::before {
    content: '✓';
    color: #2ecc71;
}

.cons-card .pros-cons-list li::before {
    content: '✗';
    color: #e74c3c;
}

.pros-cons-list strong {
    color: var(--gold-bright);
    font-weight: 600;
}


.author-card {
    margin: 48px 0 32px;
    padding: 32px;
    background: #0a0f0d;
    border: 1px solid var(--border-gold-soft);
    border-radius: var(--radius-lg);
}

.author-card__eyebrow {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.author-card__name {
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    margin: 0 0 8px;
    letter-spacing: -0.5px;
    line-height: 1.1;
    padding-left: 0;
}

.author-card__name::before {
    display: none;
}

.author-card__role {
    color: var(--gold-bright);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    line-height: 1.5;
    margin: 0;
}

.author-card__divider {
    height: 1px;
    background: var(--border-gold-soft);
    margin: 22px 0;
}

.author-card__bio {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 22px;
}

.author-card__links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.15s ease, box-shadow 0.2s;
    border-radius: 8px;
}

.author-link:hover {
    transform: translateY(-1px);
}

.author-link--rg {
    background: var(--gold-bright);
    color: #1a1108;
    padding: 10px 18px;
    box-shadow: 0 4px 14px rgba(212, 168, 90, 0.25);
}

.author-link--rg:hover {
    box-shadow: 0 6px 20px rgba(212, 168, 90, 0.4);
}

.author-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #1a1108;
    color: var(--gold-bright);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
}

.author-link--li {
    background: #1c1c1c;
    color: #fff;
    width: 40px;
    height: 40px;
    justify-content: center;
    border: 1px solid var(--border-gold-soft);
}

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

.author-link--li:hover {
    border-color: var(--gold);
}


.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: linear-gradient(180deg, rgba(6, 26, 20, 0.95), rgba(6, 26, 20, 0.99));
    border-top: 1px solid var(--gold);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    transform: translateY(120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
}

.sticky-cta.is-visible {
    transform: translateY(0);
}

.sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.sticky-cta__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.sticky-cta__title {
    color: var(--gold-bright);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}

.sticky-cta__sub {
    color: var(--text-muted);
    font-size: 11px;
}

.sticky-cta__btn {
    flex-shrink: 0;
    padding: 11px 20px;
    font-size: 14px;
}


.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.exit-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.exit-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.exit-popup__inner {
    position: relative;
    background: linear-gradient(135deg, #0d2c25 0%, #061a14 100%);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 40px 36px 32px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 168, 90, 0.12);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-popup.is-open .exit-popup__inner {
    transform: translateY(0) scale(1);
}

.exit-popup__close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 6px;
    transition: color 0.2s, background-color 0.2s;
}

.exit-popup__close:hover {
    color: var(--gold);
    background: rgba(212, 168, 90, 0.1);
}

.exit-popup__eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.exit-popup__title {
    color: var(--text-primary);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px;
    padding: 0;
}

.exit-popup__title::before {
    display: none;
}

.exit-popup__text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.exit-popup__text strong {
    color: var(--gold-bright);
}

.exit-popup__cta {
    width: 100%;
    margin-bottom: 14px;
}

.exit-popup__disclaimer {
    color: var(--text-muted);
    font-size: 11px;
    opacity: 0.8;
    margin: 0;
}


.table-caption {
    caption-side: top;
    text-align: left;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 20px 8px;
    background: transparent;
}


.faq {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-gold-soft);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-gold-soft);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(212, 168, 90, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 22px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.4;
    user-select: none;
    transition: background-color 0.2s, color 0.2s;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
    content: '';
}

.faq-question::after {
    content: '+';
    flex-shrink: 0;
    color: var(--gold);
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
    color: var(--gold-bright);
}

.faq-question:hover {
    background: var(--bg-card-hover);
    color: var(--gold-bright);
}

.faq-answer {
    padding: 0 22px 18px;
    color: var(--text-primary);
    line-height: 1.75;
    font-size: 15px;
}

.faq-answer p {
    margin-bottom: 0;
}

.faq-answer p strong {
    color: var(--gold-bright);
    font-weight: 600;
}


.cta-block {
    margin-top: 48px;
    padding: 36px;
    background: linear-gradient(135deg, rgba(180, 138, 54, 0.18), rgba(29, 107, 80, 0.2));
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta-title {
    color: var(--gold-bright);
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-text {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 24px;
}


.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-gold-soft);
    padding: 56px 24px 28px;
    margin-top: 60px;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 28px 24px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-gold-soft);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col-title {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

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

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s ease;
}

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


.footer-payments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 28px 0 20px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4f1e8;
    color: #1a1108;
    height: 32px;
    min-width: 56px;
    padding: 0 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    font-family: 'Arial Black', 'Segoe UI', sans-serif;
}

.payment-badge.payment-visa {
    color: #1a1f71;
    font-style: italic;
}

.payment-badge.payment-mc {
    background: #f4f1e8;
    gap: 0;
    padding: 0 10px;
}

.mc-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
}

.mc-dot--red {
    background: #eb001b;
    margin-right: -7px;
    z-index: 2;
    position: relative;
}

.mc-dot--yellow {
    background: #f79e1b;
    opacity: 0.92;
    mix-blend-mode: multiply;
}

.payment-badge.payment-paysafe {
    color: #00509d;
    font-size: 11px;
    letter-spacing: 0;
    text-transform: lowercase;
    font-weight: 700;
}

.payment-badge.payment-paysafe em {
    font-style: normal;
    color: #1a1108;
    margin-left: 1px;
}

.payment-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-gold-soft);
    height: 32px;
    padding: 0 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.payment-more:hover {
    border-color: var(--gold);
    color: var(--gold);
}


.footer-age {
    display: flex;
    justify-content: center;
    padding: 8px 0 14px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}


.footer-legal {
    text-align: center;
    padding-bottom: 6px;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 12px;
    opacity: 0.85;
}


@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

    .hero h1 {
        font-size: 28px;
    }

    .article {
        padding: 28px 22px;
    }

    .article h2 {
        font-size: 22px;
    }

    .section-title {
        font-size: 22px;
    }

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

    .pros-cons-card {
        padding: 22px 22px 20px;
    }

    .author-card {
        padding: 26px 22px;
    }

    .author-card__name {
        font-size: 32px;
    }

    .search-bar {
        display: none;
    }

    .header-inner {
        gap: 12px;
        justify-content: space-between;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 18px;
    }

    
    .sticky-cta {
        display: block;
    }

    
    body {
        padding-bottom: 72px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 28px 22px;
    }

    .header-inner {
        padding: 12px 16px;
    }

    .logo-img {
        height: 36px;
    }

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

    .btn-large {
        padding: 12px 22px;
    }

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

    .cta-block {
        padding: 24px 18px;
    }

    .hero-meta {
        gap: 12px;
        font-size: 12px;
    }

    .trust-signals {
        gap: 6px;
    }

    .trust-badge {
        padding: 5px 10px;
        font-size: 11px;
    }

    .exit-popup__inner {
        padding: 32px 22px 24px;
    }

    .exit-popup__title {
        font-size: 22px;
    }

    .author-card__name {
        font-size: 28px;
    }

    .author-card__role {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .site-footer {
        padding: 40px 18px 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 14px;
        padding-bottom: 28px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-payments {
        gap: 8px;
    }

    .payment-badge,
    .payment-more {
        height: 28px;
        font-size: 12px;
    }
}



.hero{position:relative;overflow:hidden}
.hero-inner{grid-template-columns:1fr}
.hero-image{position:absolute;inset:0;z-index:0;pointer-events:none}
.hero-image picture,.hero-image img{width:100%;height:100%;display:block}
.hero-image img{object-fit:cover;object-position:center right}
.hero-image::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,10,9,.94) 0%,rgba(5,10,9,.86) 45%,rgba(5,10,9,.55) 100%)}
.hero-text{position:relative;z-index:1;max-width:880px}

.faq .faq-item>h3{margin:0;padding:18px 22px 8px;font-size:16.5px;line-height:1.45}
.faq .faq-item>p{margin:0;padding:0 22px 18px;line-height:1.7;color:var(--text-primary)}

.article table{width:100%;border-collapse:collapse;margin:18px 0;background:var(--bg-card);border:1px solid var(--border-gold-soft);font-size:15px}
.article table th,.article table td{padding:12px 16px;border-bottom:1px solid var(--border-gold-soft);text-align:left;vertical-align:top}
.article table tr:last-child td,.article table tr:last-child th{border-bottom:none}
.article table thead th,.article table tr:first-child th{color:var(--gold);font-weight:600;background:rgba(255,255,255,.03)}
.article table tr:nth-child(even) td{background:rgba(255,255,255,.02)}

.header-actions{margin-left:auto}

.hero-inner{position:static}

.article ul,.article ol{margin:14px 0 18px;padding-left:26px}
.article li{margin-bottom:9px;line-height:1.7}
.article ul li::marker,.article ol li::marker{color:var(--gold)}
.article li::after{content:none}

.hero-image::after{background:linear-gradient(90deg,rgba(5,10,9,.94) 0%,rgba(5,10,9,.86) 45%,rgba(5,10,9,.55) 100%),linear-gradient(0deg,rgba(5,10,9,.85) 0%,rgba(5,10,9,0) 26%)}
.hero-text .trust-signals{margin-bottom:2px}

@media (max-width: 640px){
  .article table{border:none;background:transparent}
  .article table thead,.article table tr.t-headrow{display:none}
  .article table,.article table tbody,.article table tr,.article table td,.article table th{display:block;width:100%}
  .article table tr{background:var(--bg-card);border:1px solid var(--border-gold-soft);border-radius:10px;margin-bottom:10px;padding:10px 0}
  .article table td,.article table th{border:none;padding:5px 16px}
  .article table tr:nth-child(even) td{background:transparent}
  .article table td[data-label]::before{content:attr(data-label);display:block;font-size:11.5px;letter-spacing:.5px;text-transform:uppercase;color:var(--gold);margin-bottom:2px}
}

