

: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-idpba {
    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-idpba: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-idpba {
    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-idpba {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo-idpba {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img-idpba {
    height: 44px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.logo-idpba:hover .logo-img-idpba {
    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-idpba {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.header-actions-idpba a{
    font-size: 10px;
}


.btn-idpba {
    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-idpba:hover {
    transform: translateY(-1px);
}

.btn-idpba:active {
    transform: translateY(0);
}

.btn-outline-idpba {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-gold-soft);
}

.btn-outline-idpba:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-primary-idpba {
    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-idpba:hover {
    box-shadow: 0 6px 20px rgba(212, 168, 90, 0.45);
}

.btn-large-idpba {
    padding: 14px 32px;
    font-size: 15px;
}


.page-idpba {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px 24px 80px;
}


.hero-idpba {
    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-idpba::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-idpba {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow-idpba {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-idpba h1 {
    font-size: 36px;
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-sub-idpba {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-cta-idpba {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image-idpba {
    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-idpba picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-image-idpba img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.article-idpba {
    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-idpba 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-idpba 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-idpba h2:first-of-type {
    margin-top: 0;
}

.article-idpba p {
    color: var(--text-primary);
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.75;
}

.article-idpba p strong {
    color: var(--gold-bright);
    font-weight: 600;
}


.article-image-idpba {
    margin: 32px 0;
    border: 1px solid var(--border-gold-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
}

.article-image-idpba picture {
    display: block;
    width: 100%;
}

.article-image-idpba img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-image-idpba 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-idpba {
    margin: 28px 0;
    border: 1px solid var(--border-gold-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
}

.data-table-idpba {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.data-table-idpba thead {
    background: linear-gradient(180deg, rgba(180, 138, 54, 0.18), rgba(180, 138, 54, 0.06));
}

.data-table-idpba 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-idpba td {
    color: var(--text-primary);
    padding: 14px 20px;
    border-bottom: 1px solid rgba(180, 138, 54, 0.1);
}

.data-table-idpba tbody tr:last-child td {
    border-bottom: none;
}

.data-table-idpba tbody tr:hover {
    background: rgba(180, 138, 54, 0.06);
}


.hero-meta-idpba {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 24px;
    align-items: center;
}

.meta-item-idpba {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.meta-icon-idpba {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--gold);
}

.meta-icon--star-idpba {
    color: var(--gold-bright);
}

.meta-updated-idpba time {
    color: var(--text-primary);
    font-weight: 600;
}

.meta-rating-idpba {
    color: var(--text-primary);
    font-weight: 600;
}


.trust-signals-idpba {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    align-items: center;
}

.trust-signals--center-idpba {
    justify-content: center;
    margin-top: 22px;
}

.trust-badge-idpba {
    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-idpba svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

.trust-badge-idpba:hover {
    border-color: var(--gold);
    color: var(--text-primary);
}

.trust-badge--age-idpba {
    background: rgba(212, 168, 90, 0.15);
    color: var(--gold-bright);
    border-color: var(--gold);
}


.pros-cons-idpba {
    margin-bottom: 56px;
}

.section-title-idpba {
    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-idpba::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-idpba {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pros-cons-card-idpba {
    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-idpba {
    border-left: 4px solid #2ecc71;
}

.cons-card-idpba {
    border-left: 4px solid #e74c3c;
}

.pros-cons-head-idpba {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.pros-cons-icon-idpba {
    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-idpba .pros-cons-icon-idpba {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.cons-card-idpba .pros-cons-icon-idpba {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.pros-cons-heading-idpba {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.pros-cons-list-idpba {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pros-cons-list-idpba li {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.5;
    padding-left: 26px;
    position: relative;
}

.pros-cons-list-idpba li::before {
    position: absolute;
    left: 0;
    top: 1px;
    font-weight: 700;
    font-size: 16px;
}

.pros-card-idpba .pros-cons-list-idpba li::before {
    content: '✓';
    color: #2ecc71;
}

.cons-card-idpba .pros-cons-list-idpba li::before {
    content: '✗';
    color: #e74c3c;
}

.pros-cons-list-idpba strong {
    color: var(--gold-bright);
    font-weight: 600;
}


.author-card-idpba {
    margin: 48px 0 32px;
    padding: 32px;
    background: #0a0f0d;
    border: 1px solid var(--border-gold-soft);
    border-radius: var(--radius-lg);
}

.author-card__eyebrow-idpba {
    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-idpba {
    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-idpba::before {
    display: none;
}

.author-card__role-idpba {
    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-idpba {
    height: 1px;
    background: var(--border-gold-soft);
    margin: 22px 0;
}

.author-card__bio-idpba {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 22px;
}

.author-card__links-idpba {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.author-link-idpba {
    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-idpba:hover {
    transform: translateY(-1px);
}

.author-link--rg-idpba {
    background: var(--gold-bright);
    color: #1a1108;
    padding: 10px 18px;
    box-shadow: 0 4px 14px rgba(212, 168, 90, 0.25);
}

.author-link--rg-idpba:hover {
    box-shadow: 0 6px 20px rgba(212, 168, 90, 0.4);
}

.author-link__icon-idpba {
    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-idpba {
    background: #1c1c1c;
    color: #fff;
    width: 40px;
    height: 40px;
    justify-content: center;
    border: 1px solid var(--border-gold-soft);
}

.author-link--li-idpba svg {
    width: 18px;
    height: 18px;
}

.author-link--li-idpba:hover {
    border-color: var(--gold);
}


.sticky-cta-idpba {
    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-idpba.is-visible {
    transform: translateY(0);
}

.sticky-cta__inner-idpba {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.sticky-cta__text-idpba {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.sticky-cta__title-idpba {
    color: var(--gold-bright);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}

.sticky-cta__sub-idpba {
    color: var(--text-muted);
    font-size: 11px;
}

.sticky-cta__btn-idpba {
    flex-shrink: 0;
    padding: 11px 20px;
    font-size: 14px;
}


.exit-popup-idpba {
    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-idpba.is-open {
    opacity: 1;
    visibility: visible;
}

.exit-popup__backdrop-idpba {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.exit-popup__inner-idpba {
    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-idpba.is-open .exit-popup__inner-idpba {
    transform: translateY(0) scale(1);
}

.exit-popup__close-idpba {
    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-idpba:hover {
    color: var(--gold);
    background: rgba(212, 168, 90, 0.1);
}

.exit-popup__eyebrow-idpba {
    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-idpba {
    color: var(--text-primary);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px;
    padding: 0;
}

.exit-popup__title-idpba::before {
    display: none;
}

.exit-popup__text-idpba {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.exit-popup__text-idpba strong {
    color: var(--gold-bright);
}

.exit-popup__cta-idpba {
    width: 100%;
    margin-bottom: 14px;
}

.exit-popup__disclaimer-idpba {
    color: var(--text-muted);
    font-size: 11px;
    opacity: 0.8;
    margin: 0;
}


.table-caption-idpba {
    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-idpba {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-gold-soft);
}

.faq-item-idpba {
    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-idpba[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-idpba[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-idpba {
    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-idpba {
    color: var(--gold-bright);
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-text-idpba {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 24px;
}


.site-footer-idpba {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-gold-soft);
    padding: 56px 24px 28px;
    margin-top: 60px;
}

.footer-inner-idpba {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-grid-idpba {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 28px 24px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-gold-soft);
}

.footer-col-idpba {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col-title-idpba {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.footer-links-idpba {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links-idpba a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s ease;
}

.footer-links-idpba a:hover {
    color: var(--gold);
}


.footer-payments-idpba {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 28px 0 20px;
}

.payment-badge-idpba {
    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-idpba.payment-visa-idpba {
    color: #1a1f71;
    font-style: italic;
}

.payment-badge-idpba.payment-mc-idpba {
    background: #f4f1e8;
    gap: 0;
    padding: 0 10px;
}

.mc-dot-idpba {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
}

.mc-dot--red-idpba {
    background: #eb001b;
    margin-right: -7px;
    z-index: 2;
    position: relative;
}

.mc-dot--yellow-idpba {
    background: #f79e1b;
    opacity: 0.92;
    mix-blend-mode: multiply;
}

.payment-badge-idpba.payment-paysafe-idpba {
    color: #00509d;
    font-size: 11px;
    letter-spacing: 0;
    text-transform: lowercase;
    font-weight: 700;
}

.payment-badge-idpba.payment-paysafe-idpba em {
    font-style: normal;
    color: #1a1108;
    margin-left: 1px;
}

.payment-more-idpba {
    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-idpba:hover {
    border-color: var(--gold);
    color: var(--gold);
}


.footer-age-idpba {
    display: flex;
    justify-content: center;
    padding: 8px 0 14px;
}

.age-badge-idpba {
    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-idpba {
    text-align: center;
    padding-bottom: 6px;
}

.footer-disclaimer-idpba {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 6px;
}

.footer-copy-idpba {
    color: var(--text-muted);
    font-size: 12px;
    opacity: 0.85;
}


@media (max-width: 1100px) {
    .footer-grid-idpba {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-inner-idpba {
        grid-template-columns: 1fr;
    }

    .hero-idpba h1 {
        font-size: 28px;
    }

    .article-idpba {
        padding: 28px 22px;
    }

    .article-idpba h2 {
        font-size: 22px;
    }

    .section-title-idpba {
        font-size: 22px;
    }

    .pros-cons-grid-idpba {
        grid-template-columns: 1fr;
    }

    .pros-cons-card-idpba {
        padding: 22px 22px 20px;
    }

    .author-card-idpba {
        padding: 26px 22px;
    }

    .author-card__name-idpba {
        font-size: 32px;
    }

    .search-bar {
        display: none;
    }

    .header-inner-idpba {
        gap: 12px;
        justify-content: space-between;
    }

    .footer-grid-idpba {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 18px;
    }

    
    .sticky-cta-idpba {
        display: block;
    }

    
    body {
        padding-bottom: 72px;
    }
}

@media (max-width: 600px) {
    .hero-idpba {
        padding: 28px 22px;
    }

    .header-inner-idpba {
        padding: 12px 16px;
    }

    .logo-img-idpba {
        height: 36px;
    }

    .btn-idpba {
        padding: 9px 16px;
        font-size: 13px;
    }

    .btn-large-idpba {
        padding: 12px 22px;
    }

    .data-table-idpba th,
    .data-table-idpba td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .cta-block-idpba {
        padding: 24px 18px;
    }

    .hero-meta-idpba {
        gap: 12px;
        font-size: 12px;
    }

    .trust-signals-idpba {
        gap: 6px;
    }

    .trust-badge-idpba {
        padding: 5px 10px;
        font-size: 11px;
    }

    .exit-popup__inner-idpba {
        padding: 32px 22px 24px;
    }

    .exit-popup__title-idpba {
        font-size: 22px;
    }

    .author-card__name-idpba {
        font-size: 28px;
    }

    .author-card__role-idpba {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .site-footer-idpba {
        padding: 40px 18px 24px;
    }

    .footer-grid-idpba {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 14px;
        padding-bottom: 28px;
    }

    .footer-links-idpba a {
        font-size: 13px;
    }

    .footer-payments-idpba {
        gap: 8px;
    }

    .payment-badge-idpba,
    .payment-more-idpba {
        height: 28px;
        font-size: 12px;
    }
}



.hero-idpba{position:relative;overflow:hidden}
.hero-inner-idpba{grid-template-columns:1fr}
.hero-image-idpba{position:absolute;inset:0;z-index:0;pointer-events:none}
.hero-image-idpba picture,.hero-image-idpba img{width:100%;height:100%;display:block}
.hero-image-idpba img{object-fit:cover;object-position:center right}
.hero-image-idpba::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-idpba{position:relative;z-index:1;max-width:880px}

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

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

.header-actions-idpba{margin-left:auto}

.hero-inner-idpba{position:static}

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

.hero-image-idpba::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-idpba .trust-signals-idpba{margin-bottom:2px}
