/* ==========================================================================
   Variant 06: Clean Minimal
   Centered narrow layout (800px), whitespace-focused, content-first design
   ========================================================================== */

:root {
    /* Colors (defaults, overridden by colorway) */
    --color-primary: #1e3a5f;
    --color-secondary: #374151;
    --color-accent: #3b82f6;
    --color-background: #f9fafb;
    --color-surface: #ffffff;
    --color-text: #1f2937;
    --color-text-muted: #6b7280;
    --color-button: #3b82f6;
    --color-button-hover: #2563eb;
    --color-button-text: #ffffff;
    --color-border: #e5e7eb;
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-rating: #fbbf24;

    /* Spacing (clean but compact) */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 0.75rem;
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-2xl: 1.5rem;

    /* Border radius (subtle) */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Typography */
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1.1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.375rem;
    --font-size-2xl: 1.75rem;
    --font-size-3xl: 2.25rem;
    --line-height-tight: 1.25;
    --line-height-base: 1.6;
    --line-height-loose: 1.8;

    /* Layout */
    --container-width: 800px;
    --header-height: 56px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-background);
    min-height: 100vh;
}

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

a:hover {
    /* Mix accent toward --color-text — adapts to theme, never matches button bg */
    color: color-mix(in srgb, var(--color-accent) 65%, var(--color-text));
}

a:visited {
    color: var(--color-accent);
}

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

ul, ol {
    list-style: none;
}

/* ==========================================================================
   Layout Container
   ========================================================================== */

.a6bd2-wrap {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.a6bd2-main {
    padding: var(--space-xl) 0 var(--space-2xl);
}

/* ==========================================================================
   Header (Minimal Sticky)
   ========================================================================== */

.a6bd2-header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 100;
}

.a6bd2-header__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.a6bd2-logo {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: -0.02em;
}

.a6bd2-logo:hover {
    color: var(--color-accent);
}

.a6bd2-logo-img {
    height: 48px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    vertical-align: middle;
}

.a6bd2-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.a6bd2-nav__link {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.a6bd2-nav__link:hover {
    color: var(--color-text);
    background: var(--color-background);
}

.a6bd2-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.a6bd2-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-fast);
}

.a6bd2-burger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.a6bd2-burger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.a6bd2-crumbs {
    padding: var(--space-lg) 0 var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.a6bd2-crumbs a {
    color: var(--color-text-muted);
}

.a6bd2-crumbs a:hover {
    color: var(--color-accent);
}

.a6bd2-crumbs__sep {
    margin: 0 var(--space-sm);
    opacity: 0.5;
}

/* ==========================================================================
   Page Hero (Listing/Info)
   ========================================================================== */

.a6bd2-hero {
    text-align: center;
    padding: var(--space-lg) 0 var(--space-xl);
}

.a6bd2-hero--info {
    text-align: left;
}

.a6bd2-hero__title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-accent);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-md);
}

.a6bd2-hero__desc {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: var(--line-height-base);
    /* Removed 600px cap — narrow centered intro looked disconnected from
       full-width listing cards below. Now matches main content width. */
}

.a6bd2-hero--info .a6bd2-hero__desc {
    margin: 0;
}

.a6bd2-hero__meta {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-md);
}

/* ==========================================================================
   Hero Brand (Centered Minimal)
   ========================================================================== */

.a6bd2-hero-brand {
    text-align: center;
    padding: 1rem 0;
}

.a6bd2-hero-brand__logo {
    width: 130px;
    height: 130px;
    margin: 0 auto 0.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--color-text) 15%, transparent);
}

.a6bd2-hero-brand__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.a6bd2-hero-brand__title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.2rem;
}

.a6bd2-hero-brand__rating {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: 0.25rem;
}

/* Hero brand CTA -- must be prominent */
.a6bd2-hero-brand .a6bd2-btn {
    min-width: 220px;
    min-height: 52px;
    font-size: var(--font-size-base);
}

/* ==========================================================================
   Hero Bonus (Card Style)
   ========================================================================== */

.a6bd2-hero-bonus {
    padding: 1rem 0;
}

.a6bd2-hero-bonus__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
}

.a6bd2-hero-bonus__logo {
    width: 130px;
    height: 130px;
    margin: 0 auto var(--space-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--color-text) 15%, transparent);
}

.a6bd2-hero-bonus__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.a6bd2-hero-bonus__value {
    margin-bottom: var(--space-lg);
}

.a6bd2-hero-bonus__amount {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-accent);
    line-height: var(--line-height-tight);
}

.a6bd2-hero-bonus__extra {
    display: block;
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

/* ==========================================================================
   Rating (Numeric Bold)
   ========================================================================== */

.a6bd2-rating-num {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-rating);
}

.a6bd2-rating-max {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
}

/* Inline rating for stack items */
.a6bd2-stack__rating {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.a6bd2-stack__rating .a6bd2-rating-num {
    font-size: var(--font-size-lg);
}

.a6bd2-stack__rating .a6bd2-rating-max {
    font-size: var(--font-size-xs);
}

/* ==========================================================================
   CTA Button (Outline Subtle)
   ========================================================================== */

.a6bd2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-button-text);
    background: var(--color-button);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.a6bd2-btn:hover {
    background: var(--color-button-hover);
}

.a6bd2-btn--sm {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-xs);
}

.a6bd2-btn--lg {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-base);
}

.a6bd2-btn--full {
    width: 100%;
}

/* ==========================================================================
   Listing Stack
   ========================================================================== */

.a6bd2-listing {
    margin-bottom: var(--space-2xl);
}

.a6bd2-listing__heading {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.a6bd2-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.a6bd2-stack__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    transition: border-color var(--transition-fast);
}

.a6bd2-stack__item:hover {
    border-color: var(--color-accent);
}

.a6bd2-stack__rank {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.a6bd2-stack__logo {
    width: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    background: color-mix(in srgb, var(--color-text) 10%, var(--color-background));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 4px;
    box-sizing: border-box;
}

.a6bd2-stack__logo img {
    width: 80px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.a6bd2-stack__info {
    flex: 1;
    min-width: 0;
}

.a6bd2-stack__name {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.a6bd2-stack__bonus {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-success);
    margin-bottom: 4px;
}

.a6bd2-stack__terms {
    display: flex;
    gap: var(--space-md);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.a6bd2-stack__pros {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.a6bd2-stack__pros li {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.a6bd2-stack__pros li::before {
    content: "\2713 ";
    color: var(--color-success);
}

/* ==========================================================================
   Info Grid (Key Info + Pros/Cons)
   ========================================================================== */

.a6bd2-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

/* Info Box */
.a6bd2-infobox {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.a6bd2-infobox__title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

.a6bd2-infobox__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.a6bd2-infobox__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-sm);
}

.a6bd2-infobox__row dt {
    color: var(--color-text-muted);
}

.a6bd2-infobox__row dd {
    font-weight: 500;
    color: var(--color-text);
}

/* Pros/Cons */
.a6bd2-proscons {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.a6bd2-proscons__pros h3,
.a6bd2-proscons__cons h3 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.a6bd2-proscons__pros h3 {
    color: var(--color-success);
}

.a6bd2-proscons__cons h3 {
    color: var(--color-error);
}

.a6bd2-proscons__pros ul,
.a6bd2-proscons__cons ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.a6bd2-proscons__pros li,
.a6bd2-proscons__cons li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text);
}

.a6bd2-proscons__pros li::before {
    content: '+';
    color: var(--color-success);
    font-weight: 700;
    flex-shrink: 0;
}

.a6bd2-proscons__cons li::before {
    content: '-';
    color: var(--color-error);
    font-weight: 700;
    flex-shrink: 0;
}

/* ==========================================================================
   Bonus Details Table
   ========================================================================== */

.a6bd2-details {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.a6bd2-details__heading {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.a6bd2-details__table {
    display: flex;
    flex-direction: column;
}

.a6bd2-details__row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--font-size-sm);
}

.a6bd2-details__row:last-child {
    border-bottom: none;
}

.a6bd2-details__row dt {
    color: var(--color-text-muted);
}

.a6bd2-details__row dd {
    font-weight: 500;
    color: var(--color-text);
}

/* ==========================================================================
   Promo Code Box
   ========================================================================== */

.a6bd2-promo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-background);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-lg);
}

.a6bd2-promo__label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.a6bd2-promo__code {
    font-family: 'JetBrains Mono', monospace;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-accent);
    background: none;
}

.a6bd2-promo__copy {
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--color-accent);
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.a6bd2-promo__copy:hover {
    color: var(--color-button-hover);
}

/* ==========================================================================
   How to Claim Steps
   ========================================================================== */

.a6bd2-steps {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.a6bd2-steps__heading {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.a6bd2-steps__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.a6bd2-steps__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.a6bd2-steps__num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: var(--color-button-text);
    border-radius: 50%;
    font-size: var(--font-size-xs);
    font-weight: 600;
    flex-shrink: 0;
}

.a6bd2-steps__text {
    font-size: var(--font-size-sm);
    color: var(--color-text);
}

/* ==========================================================================
   Terms Summary
   ========================================================================== */

.a6bd2-terms {
    background: var(--color-background);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-xl);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    line-height: var(--line-height-base);
}

.a6bd2-terms strong {
    color: var(--color-text);
}

/* ==========================================================================
   Table of Contents
   ========================================================================== */

.a6bd2-toc {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.a6bd2-toc__title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.a6bd2-toc__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    counter-reset: toc;
}

.a6bd2-toc__list li {
    counter-increment: toc;
}

.a6bd2-toc__list li a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text);
}

.a6bd2-toc__list li a::before {
    content: counter(toc) ".";
    color: var(--color-text-muted);
    font-weight: 500;
}

.a6bd2-toc__list li a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   Content Article
   ========================================================================== */

.a6bd2-article {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.a6bd2-article h2 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-accent);
    margin: 2rem 0 1rem;
    line-height: var(--line-height-tight);
}

.a6bd2-article h2:first-child {
    margin-top: 0;
}

.a6bd2-article h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text);
    margin: 1.5rem 0 0.75rem;
}

.a6bd2-article h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text);
    margin: var(--space-md) 0 var(--space-sm);
}

.a6bd2-article p {
    margin-bottom: 1rem;
    color: var(--color-text);
    line-height: var(--line-height-loose);
}

.a6bd2-article ul,
.a6bd2-article ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.a6bd2-article ul {
    list-style: disc;
}

.a6bd2-article ol {
    list-style: decimal;
}

.a6bd2-article li {
    margin-bottom: 0.35rem;
    color: var(--color-text);
    line-height: var(--line-height-base);
}

.a6bd2-article img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.a6bd2-article figure {
    margin: 1.5rem 0;
}

.a6bd2-article blockquote {
    border-left: 3px solid var(--color-accent);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    color: var(--color-text-muted);
    font-style: italic;
}

.a6bd2-article table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    font-size: var(--font-size-sm);
}

.a6bd2-article th,
.a6bd2-article td {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border);
    text-align: left;
}

.a6bd2-article th {
    background: var(--color-background);
    font-weight: 600;
    color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.a6bd2-faq {
    margin-bottom: var(--space-xl);
}

.a6bd2-faq__heading {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.a6bd2-faq__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.a6bd2-faq__item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.a6bd2-faq__q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: var(--space-md);
}

.a6bd2-faq__q:hover {
    background: var(--color-background);
}

.a6bd2-faq__icon {
    width: 16px;
    height: 16px;
    color: var(--color-text-muted);
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.a6bd2-faq__item.is-open .a6bd2-faq__icon {
    transform: rotate(45deg);
}

.a6bd2-faq__a {
    display: none;
    padding: 0 var(--space-lg) var(--space-md);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: var(--line-height-base);
}

.a6bd2-faq__item.is-open .a6bd2-faq__a {
    display: block;
}

/* ==========================================================================
   Single CTA Block
   ========================================================================== */

.a6bd2-cta-block {
    background: var(--color-surface);
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.a6bd2-cta-block__text {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.a6bd2-cta-block__bonus {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
}

/* ==========================================================================
   Alternatives
   ========================================================================== */

.a6bd2-alts {
    margin-bottom: var(--space-xl);
}

.a6bd2-alts__heading {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.a6bd2-alts__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.a6bd2-alts__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.a6bd2-alts__logo {
    width: 48px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    background: color-mix(in srgb, var(--color-text) 10%, var(--color-background));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 2px;
    box-sizing: border-box;
}

.a6bd2-alts__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.a6bd2-alts__info {
    flex: 1;
    min-width: 0;
}

.a6bd2-alts__name {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text);
}

.a6bd2-alts__bonus {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-success);
}

/* ==========================================================================
   Related Offers (Info Page)
   ========================================================================== */

.a6bd2-offers {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.a6bd2-offers__heading {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.a6bd2-offers__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.a6bd2-offers__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.a6bd2-offers__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.a6bd2-offers__logo {
    width: 36px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    background: color-mix(in srgb, var(--color-text) 10%, var(--color-background));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 2px;
    box-sizing: border-box;
}

.a6bd2-offers__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.a6bd2-offers__info {
    flex: 1;
    min-width: 0;
}

.a6bd2-offers__name {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text);
}

.a6bd2-offers__bonus {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

/* ==========================================================================
   Internal Links (Related)
   ========================================================================== */

.a6bd2-related {
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-xl);
    margin-top: var(--space-xl);
}

.a6bd2-related__block {
    margin-bottom: var(--space-xl);
}

.a6bd2-related__block:last-child {
    margin-bottom: 0;
}

.a6bd2-related__block h3 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.a6bd2-related__block ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.a6bd2-related__block li {
    width: calc(50% - var(--space-sm) / 2);
}

.a6bd2-related__block a {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-text);
    padding: var(--space-xs) 0;
}

.a6bd2-related__block a:hover {
    color: var(--color-accent);
}

.a6bd2-related__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

/* ==========================================================================
   Article Images (inserted by PlaceholderReplacer)
   ========================================================================== */

.a6bd2-img-figure {
    margin: var(--space-2xl) 0;
    text-align: center;
}

.a6bd2-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.a6bd2-footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    margin-top: var(--space-2xl);
}

.a6bd2-footer__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1rem var(--space-lg);
}

.a6bd2-footer p {
    margin: 0.25rem 0;
}

.a6bd2-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.a6bd2-footer__brand {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-accent);
}

.a6bd2-footer__nav {
    display: flex;
    gap: var(--space-lg);
}

.a6bd2-footer__nav a {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.a6bd2-footer__nav a:hover {
    color: var(--color-accent);
}

.a6bd2-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.a6bd2-footer__disclaimer {
    flex: 1;
    text-align: center;
    line-height: var(--line-height-base);
}

.a6bd2-footer__age {
    font-weight: 700;
    color: var(--color-error);
}

.a6bd2-footer-trust {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.a6bd2-footer-trust a,
.a6bd2-footer-trust a:visited {
    color: color-mix(in srgb, var(--color-accent) 70%, var(--color-text));
    text-decoration: none;
    font-size: 0.9rem;
}

.a6bd2-footer-trust a:hover {
    color: var(--color-text);
}

/* Geo Switcher */
.a6bd2-geo-switcher {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.5rem;
    margin: 0.75rem 0;
    padding: 0.5rem 0;
    border-top: 1px solid var(--color-border);
}

.a6bd2-geo-link,
.a6bd2-geo-link:visited {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: color-mix(in srgb, var(--color-accent) 70%, var(--color-text));
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.15rem 0.35rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.a6bd2-geo-link:hover {
    color: var(--color-text);
}

.a6bd2-geo-link.active,
.a6bd2-geo-link.active:visited {
    color: var(--color-text);
    font-weight: 600;
}

.a6bd2-geo-flag {
    font-size: 1.1rem;
}

.a6bd2-geo-name {
    font-size: 0.8rem;
}

/* Footer Org & License */
.a6bd2-footer-org {
    margin: 0.4rem 0;
    font-size: 0.8rem;
    opacity: 0.85;
}

.a6bd2-footer-org .a6bd2-org-name {
    font-weight: 600;
    margin: 0;
    display: inline;
}

.a6bd2-footer-org .a6bd2-org-name::after {
    content: " — ";
}

.a6bd2-footer-org .a6bd2-org-address {
    margin: 0;
    opacity: 0.8;
    display: inline;
}

.a6bd2-footer-org .a6bd2-org-address br {
    display: none;
}

.a6bd2-footer-license {
    font-size: 0.8rem;
    opacity: 0.75;
    margin: 0.5rem 0;
}

.a6bd2-footer-license p {
    margin: 0;
}

.a6bd2-footer-license a {
    color: var(--color-text);
    text-decoration: underline;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    :root {
        --space-xl: 1.25rem;
        --space-2xl: 1.25rem;
    }

    .a6bd2-info-grid {
        grid-template-columns: 1fr;
    }

    .a6bd2-related__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .a6bd2-related__block li {
        width: 100%;
    }

    .a6bd2-footer__top {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .a6bd2-footer__nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .a6bd2-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 52px;
        --font-size-2xl: 1.5rem;
        --font-size-3xl: 1.75rem;
    }

    .a6bd2-wrap {
        padding: 0 var(--space-md);
    }

    .a6bd2-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-surface);
        border-bottom: 1px solid var(--color-border);
        flex-direction: column;
        padding: var(--space-md);
        gap: 0;
    }

    .a6bd2-nav.is-open {
        display: flex;
    }

    .a6bd2-nav__link {
        padding: var(--space-md);
        border-radius: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .a6bd2-nav__link:last-child {
        border-bottom: none;
    }

    .a6bd2-burger {
        display: flex;
    }

    .a6bd2-stack__item {
        flex-wrap: wrap;
        padding: var(--space-md);
    }

    .a6bd2-stack__info {
        flex: 1 1 calc(100% - 140px);
        order: 1;
    }

    .a6bd2-stack__rating {
        order: 2;
        margin-left: auto;
    }

    .a6bd2-stack__item .a6bd2-btn {
        order: 3;
        width: 100%;
        margin-top: var(--space-sm);
    }

    .a6bd2-hero-bonus__card {
        padding: var(--space-xl);
    }

    .a6bd2-article {
        padding: var(--space-lg);
    }

    .a6bd2-cta-block {
        padding: var(--space-lg);
    }

    .a6bd2-alts__item {
        flex-wrap: wrap;
    }

    .a6bd2-alts__info {
        flex: 1 1 calc(100% - 140px);
    }

    .a6bd2-alts__item .a6bd2-btn {
        width: 100%;
        margin-top: var(--space-sm);
    }

    /* Hero brand CTA full-width on mobile */
    .a6bd2-hero-brand .a6bd2-btn {
        width: 100%;
        min-width: 0;
    }

    /* Hero brand logo smaller on mobile */
    .a6bd2-hero-brand__logo {
        width: 100px;
        height: 100px;
    }

    /* Article tables mobile overflow */
    .a6bd2-article table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ==========================================================================
   Q&A Thread Page (Clean Minimal Style)
   ========================================================================== */

.a6bd2-qa-article {
    padding: var(--space-xl) 0;
}

.a6bd2-qa-question-header {
    margin-bottom: var(--space-xl);
}

.a6bd2-qa-question-header h1 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    line-height: var(--line-height-tight);
    color: var(--color-text);
    margin: 0 0 var(--space-md);
}

.a6bd2-qa-meta-line {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0;
}

.a6bd2-qa-meta-line strong {
    color: var(--color-text);
}

.a6bd2-qa-upvotes {
    color: var(--color-accent);
    font-weight: 500;
}

.a6bd2-qa-question-body {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--color-text);
}

.a6bd2-qa-question-body p {
    margin: var(--space-md) 0;
}

.a6bd2-qa-question-body p:first-child {
    margin-top: 0;
}

.a6bd2-qa-question-body p:last-child {
    margin-bottom: 0;
}

.a6bd2-qa-separator {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: var(--space-xl) 0;
}

.a6bd2-qa-answers-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 var(--space-xl);
}

.a6bd2-qa-answer {
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--color-border);
}

.a6bd2-qa-answer:last-of-type {
    border-bottom: none;
}

.a6bd2-qa-answer-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.a6bd2-qa-top-label {
    background: var(--color-success);
    color: var(--color-button-text);
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 2px var(--space-sm);
    border-radius: var(--radius-sm);
}

.a6bd2-qa-answer-upvotes {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-accent);
}

.a6bd2-qa-answer-upvotes::before {
    content: '\25B2 ';
    font-size: 0.7em;
}

.a6bd2-qa-answer-body {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--color-text);
}

.a6bd2-qa-answer-body p {
    margin: var(--space-md) 0;
}

.a6bd2-qa-answer-body p:first-child {
    margin-top: 0;
}

.a6bd2-qa-answer-body p:last-child {
    margin-bottom: 0;
}

.a6bd2-qa-answer-meta {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: var(--space-lg) 0 0;
}

.a6bd2-qa-answer-top {
    background: color-mix(in srgb, var(--color-success) 5%, var(--color-surface));
    padding: var(--space-xl);
    margin: 0 calc(-1 * var(--space-lg));
    border-radius: var(--radius-md);
}

/* Reply Answers - Nested/Threaded */
.a6bd2-qa-reply {
    margin-left: 2rem;
    padding-left: var(--space-xl);
    border-left: 2px solid var(--color-border);
    background: color-mix(in srgb, var(--color-background) 50%, var(--color-surface));
    position: relative;
}

.a6bd2-qa-reply-indicator {
    position: absolute;
    left: -1.25rem;
    top: var(--space-xl);
    color: var(--color-text-muted);
    font-size: 1.25rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .a6bd2-qa-reply {
        margin-left: 1rem;
        padding-left: var(--space-lg);
    }

    .a6bd2-qa-reply-indicator {
        left: -0.875rem;
        font-size: 1rem;
    }
}

.a6bd2-qa-related {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.a6bd2-qa-related h3 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 var(--space-lg);
}

.a6bd2-qa-related ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.a6bd2-qa-related li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.a6bd2-qa-related li:last-child {
    border-bottom: none;
}

.a6bd2-qa-related a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: var(--font-size-sm);
}

.a6bd2-qa-related a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   Q&A Hub Page (Clean Minimal)
   ========================================================================== */

.a6bd2-qa-hub-header {
    text-align: center;
    padding: var(--space-2xl) 0;
}

.a6bd2-qa-hub-header h1 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin: 0 0 var(--space-sm);
    color: var(--color-text);
}

.a6bd2-qa-hub-header p {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    margin: 0;
}

.a6bd2-qa-hub-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.a6bd2-qa-hub-list li {
    border-bottom: 1px solid var(--color-border);
}

.a6bd2-qa-hub-list li:last-child {
    border-bottom: none;
}

.a6bd2-qa-hub-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    text-decoration: none;
    gap: var(--space-lg);
    transition: background var(--transition-fast);
}

.a6bd2-qa-hub-item:hover {
    background: var(--color-background);
    margin: 0 calc(-1 * var(--space-md));
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.a6bd2-qa-hub-title {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--color-text);
    flex: 1;
}

.a6bd2-qa-hub-stats {
    display: flex;
    gap: var(--space-lg);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.a6bd2-qa-hub-empty {
    text-align: center;
    padding: var(--space-2xl);
    color: var(--color-text-muted);
}

/* Answer Form */
.a6bd2-qa-form {
    padding: var(--space-xl);
    background: var(--color-background);
    border-top: 2px solid var(--color-border);
    margin-top: var(--space-xl);
}

.a6bd2-qa-form h3 {
    margin: 0 0 var(--space-md);
    font-size: var(--font-size-lg);
    color: var(--color-text);
}

.a6bd2-qa-textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: var(--font-size-base);
    resize: vertical;
    background: var(--color-surface);
    color: var(--color-text);
    transition: border-color var(--transition-fast);
}

.a6bd2-qa-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.a6bd2-qa-textarea::placeholder {
    color: var(--color-text-muted);
}


.a6bd2-qa-submit {
    padding: var(--space-sm) var(--space-xl);
    background: var(--color-button);
    color: var(--color-button-text);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.a6bd2-qa-submit:hover {
    background: var(--color-button-hover);
}


/* Q&A Responsive */
@media (max-width: 640px) {
    .a6bd2-qa-hub-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .a6bd2-qa-hub-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .a6bd2-qa-answer-top {
        margin: 0;
        padding: var(--space-lg);
    }

    .a6bd2-qa-question-header h1 {
        font-size: var(--font-size-xl);
    }

    .a6bd2-qa-form {
        padding: var(--space-lg);
    }

    .a6bd2-qa-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .a6bd2-qa-submit {
        width: 100%;
    }

    .a6bd2-qa-form-hint {
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* ============================================
   Article Meta & Author
   ============================================ */

.a6bd2-article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: var(--space-lg) 0;
}

.a6bd2-author {
    font-weight: 500;
}

.a6bd2-article__date {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ============================================
   Go-Link Base & Cursor
   ============================================ */

.go-link {
    cursor: pointer;
    text-decoration: none;
}

/* ============================================
   Nav Active State & Stack Name Link
   ============================================ */

.a6bd2-nav__link.current,
.a6bd2-nav a.current {
    color: var(--color-text);
    font-weight: 600;
}

.a6bd2-stack__name-link {
    color: var(--color-text);
    text-decoration: none;
}

.a6bd2-stack__name-link:hover {
    color: var(--color-accent);
}

/* ============================================
   First Offer Highlight (Listing)
   ============================================ */

.a6bd2-stack__item:first-child {
    border-color: var(--color-accent);
    border-width: 2px;
    position: relative;
}

/* ============================================
   Container (used by qa / qa-hub templates)
   ============================================ */

.a6bd2-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   Menu Button (qa / qa-hub alternate hamburger)
   ============================================ */

.a6bd2-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.a6bd2-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-fast);
}

.a6bd2-menu-btn.open span:first-child {
    transform: rotate(45deg) translate(4px, 4px);
}

.a6bd2-menu-btn.open span:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ============================================
   Dropdown Menu (qa / qa-hub navigation)
   ============================================ */

.a6bd2-drop {
    position: relative;
}

.a6bd2-drop > button {
    background: none;
    border: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: var(--space-sm) var(--space-md);
    font-family: inherit;
}

.a6bd2-drop > button:hover {
    color: var(--color-text);
}

.a6bd2-drop.current > button {
    color: var(--color-text);
    font-weight: 600;
}

.a6bd2-drop-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-sm) 0;
    min-width: 180px;
    z-index: 200;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--color-text) 8%, transparent);
}

.a6bd2-drop:hover .a6bd2-drop-menu {
    display: flex;
    flex-direction: column;
}

.a6bd2-drop-menu a {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    white-space: nowrap;
}

.a6bd2-drop-menu a:hover {
    color: var(--color-text);
    background: var(--color-background);
}

.a6bd2-drop-menu a.current {
    color: var(--color-text);
    font-weight: 600;
}

/* ============================================
   QA Form Footer & Hint
   ============================================ */

.a6bd2-qa-form-footer {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.a6bd2-qa-form-hint {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ============================================
   Footer Description (explicit)
   ============================================ */

.a6bd2-footer-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: var(--line-height-base);
    margin: 0.5rem 0;
    text-align: center;
}

/* ============================================
   Footer classes (qa / qa-hub alternate names)
   ============================================ */

.a6bd2-footer-info {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0.4rem 0;
}

.a6bd2-footer-info .a6bd2-org-name {
    font-weight: 600;
    display: inline;
    margin: 0;
}

.a6bd2-footer-info .a6bd2-org-name::after {
    content: " \2014 ";
}

.a6bd2-footer-info p {
    margin: 0;
    display: inline;
}

.a6bd2-footer-info br {
    display: none;
}

.a6bd2-footer-copy {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-align: center;
    margin: 0.5rem 0 0.25rem;
}

.a6bd2-footer-disclaimer {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-align: center;
    line-height: var(--line-height-base);
    margin: 0.25rem 0 0.5rem;
}

/* Footer org (main templates - inline address) */
.a6bd2-footer__org {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0.4rem 0;
}

.a6bd2-footer__org p {
    margin: 0;
}

.a6bd2-footer__org br {
    display: none;
}

.a6bd2-footer__org br + br {
    display: none;
}

.a6bd2-footer__license {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-align: center;
    margin: 0.3rem 0;
    opacity: 0.75;
}

.a6bd2-footer__license p {
    margin: 0;
}

.a6bd2-footer__license a {
    color: var(--color-text-muted);
    text-decoration: underline;
}

/* ============================================
   RECOMMENDATIONS TABLE (partials/recommendations.php)
   ============================================ */

.a6bd2-alternatives {
    margin: var(--space-xl) 0;
}

.a6bd2-table-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.a6bd2-star {
    color: var(--color-rating);
    font-size: 1.1em;
}

.a6bd2-offer-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.a6bd2-offer-row {
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition-fast);
}

.a6bd2-offer-row:last-child {
    border-bottom: none;
}

.a6bd2-offer-row:hover {
    background: var(--color-background);
}

.a6bd2-cell-casino {
    padding: 10px 12px;
}

.a6bd2-casino-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.a6bd2-rank {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.a6bd2-table-logo {
    width: 120px;
    height: 65px;
    object-fit: contain;
    flex-shrink: 0;
    background: color-mix(in srgb, #fff 85%, var(--color-surface));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 3px;
}

.a6bd2-casino-name {
    font-size: var(--font-size-sm);
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    display: inline-block;
}

.a6bd2-casino-name:hover {
    color: var(--color-accent);
}

.a6bd2-casino-name strong {
    font-weight: 600;
}

.a6bd2-cell-rating {
    padding: 10px 8px;
    text-align: center;
    vertical-align: middle;
}

.a6bd2-rating-value {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-rating);
}

.a6bd2-cell-bonus {
    padding: 10px 8px;
    vertical-align: middle;
}

.a6bd2-bonus-text {
    font-size: var(--font-size-sm);
    color: var(--color-success);
    font-weight: 500;
}

.a6bd2-cell-action {
    padding: 10px 12px;
    text-align: right;
    vertical-align: middle;
}

.a6bd2-btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-button-text);
    background: var(--color-button);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-fast);
    text-decoration: none;
    min-width: 80px;
    white-space: nowrap;
}

.a6bd2-btn-play:hover {
    background: var(--color-button-hover);
    color: var(--color-button-text);
}

/* Recommendations table mobile: card layout */
@media (max-width: 640px) {
    .a6bd2-offer-table,
    .a6bd2-alternatives-table {
        display: block;
    }

    .a6bd2-alternatives-table tbody {
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
    }

    .a6bd2-offer-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: var(--space-sm);
        padding: var(--space-md);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        background: var(--color-surface);
        border-bottom: 1px solid var(--color-border);
    }

    .a6bd2-cell-casino {
        flex: 1 1 100%;
        padding: 0;
    }

    .a6bd2-cell-rating {
        padding: 0;
        text-align: left;
    }

    .a6bd2-cell-bonus {
        flex: 1;
        padding: 0;
    }

    .a6bd2-cell-action {
        flex: 1 1 100%;
        padding: 0;
        text-align: stretch;
    }

    .a6bd2-btn-play {
        width: 100%;
        min-height: 48px;
        font-size: var(--font-size-base);
    }

    .a6bd2-table-logo {
        width: 120px;
        height: 65px;
        min-width: 120px;
    }
}

/* ============================================
   Mobile: QA Menu Button Visible
   ============================================ */

@media (max-width: 640px) {
    .a6bd2-menu-btn {
        display: flex;
    }

    .a6bd2-container .a6bd2-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-surface);
        border-bottom: 1px solid var(--color-border);
        flex-direction: column;
        padding: var(--space-md);
        z-index: 100;
    }

    .a6bd2-nav.open {
        display: flex;
    }

    .a6bd2-nav.open a,
    .a6bd2-nav.open .a6bd2-drop > button {
        display: block;
        width: 100%;
        text-align: left;
        padding: var(--space-md);
        border-bottom: 1px solid var(--color-border);
    }

    .a6bd2-drop-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: var(--space-lg);
    }

    /* Listing CTA full width & min height on mobile */
    .a6bd2-stack__item .a6bd2-btn {
        min-height: 48px;
        font-size: var(--font-size-base);
    }

    /* Alts CTA full width on mobile */
    .a6bd2-alts__item .a6bd2-btn {
        min-height: 48px;
        font-size: var(--font-size-base);
    }

    /* Hero bonus CTA full width */
    .a6bd2-btn--lg {
        min-height: 52px;
    }
}

/* ============================================
   Article Meta inline fix (author + date on one line)
   ============================================ */

.a6bd2-article-meta .a6bd2-article__date {
    margin: 0;
    text-align: left;
}

.a6bd2-article-meta .a6bd2-author::after {
    content: " \00B7 ";
    color: var(--color-text-muted);
    font-weight: 400;
}

/* ============================================
   Body class (qa templates use body without class)
   ============================================ */

.a6bd2-body {
    /* Variant 06 body class - no additional styles needed beyond base body */
}

/* ============================================
   CONVERSION FIXES: Mobile Above-Fold
   ============================================ */

/* Listing page: limit hero desc on mobile so offers appear above fold */
@media (max-width: 640px) {
    .a6bd2-hero__desc {
        font-size: var(--font-size-sm);
        max-height: 4.8em; /* ~3 lines at sm font */
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        margin-bottom: var(--space-sm);
    }

    .a6bd2-hero {
        padding: var(--space-md) 0 var(--space-sm);
    }

    .a6bd2-hero__title {
        margin-bottom: var(--space-sm);
    }

    .a6bd2-listing__heading {
        margin-bottom: var(--space-sm);
        font-size: var(--font-size-base);
    }

    .a6bd2-listing {
        margin-bottom: var(--space-lg);
    }
}

/* ============================================
   CONVERSION FIXES: CTA Button Shadow (pop)
   ============================================ */

.a6bd2-btn {
    box-shadow: 0 2px 8px color-mix(in srgb, var(--color-button) 35%, transparent);
}

.a6bd2-btn:hover {
    box-shadow: 0 4px 12px color-mix(in srgb, var(--color-button) 50%, transparent);
}

.a6bd2-btn-play {
    box-shadow: 0 2px 8px color-mix(in srgb, var(--color-button) 35%, transparent);
}

.a6bd2-btn-play:hover {
    box-shadow: 0 4px 12px color-mix(in srgb, var(--color-button) 50%, transparent);
}

/* ============================================
   MISSING: footer__copy class
   ============================================ */

.a6bd2-footer__copy {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin: 0;
}

/* ============================================
   FIX: Info page hero--info desc not centered
   ============================================ */

@media (max-width: 640px) {
    .a6bd2-hero--info .a6bd2-hero__desc {
        text-align: left;
    }
}

/* ============================================
   FIX: btn--sm touch target on mobile
   ============================================ */

@media (max-width: 640px) {
    .a6bd2-btn--sm {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--font-size-sm);
        min-height: 44px;
    }
}

/* ============================================
   FIX: First offer featured badge
   ============================================ */

.a6bd2-stack__item:first-child::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 12px;
    background: var(--color-accent);
    color: var(--color-button-text);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================================
   FIX: Listing hero desc centered text hard to
   read on narrow screens
   ============================================ */

@media (max-width: 640px) {
    .a6bd2-hero {
        text-align: left;
    }

    .a6bd2-hero__desc {
        text-align: left;
    }
}

/* ============================================
   FIX: Review page info-grid spacing
   ============================================ */

.a6bd2-info-grid {
    margin-top: var(--space-sm);
}

/* ============================================
   FIX: Article meta tighter after hero
   ============================================ */

.a6bd2-hero + .a6bd2-article + .a6bd2-article-meta,
.a6bd2-hero-brand + .a6bd2-info-grid + .a6bd2-article + .a6bd2-article-meta {
    margin-top: var(--space-sm);
}

/* ============================================
   FIX: Bonus hero logo smaller on mobile
   ============================================ */

@media (max-width: 640px) {
    .a6bd2-hero-bonus__logo {
        width: 90px;
        height: 90px;
    }

    .a6bd2-hero-bonus__card {
        padding: var(--space-lg);
    }

    .a6bd2-hero-bonus__amount {
        font-size: var(--font-size-2xl);
    }
}

/* ============================================
   FIX: Review hero logo smaller on mobile
   ============================================ */

@media (max-width: 640px) {
    .a6bd2-hero-brand {
        padding: var(--space-sm) 0;
    }

    .a6bd2-hero-brand__logo {
        margin-bottom: var(--space-xs);
    }

    .a6bd2-hero-brand__title {
        font-size: var(--font-size-xl);
        margin-bottom: 0.15rem;
    }

    .a6bd2-hero-brand__rating {
        margin-bottom: 0.15rem;
    }
}

/* ============================================
   FIX: Missing --radius-xl variable
   ============================================ */

/* Added to :root via separate block — cascades after the initial :root */

/* ============================================
   FIX: Listing Stack Logo Size (120x65)
   ============================================ */

.a6bd2-stack__logo {
    width: 120px;
    min-width: 120px;
    height: 65px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    background: color-mix(in srgb, #fff 85%, var(--color-surface));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 4px;
    box-sizing: border-box;
}

.a6bd2-stack__logo img {
    width: 120px;
    min-width: 120px;
    height: 65px;
    object-fit: contain;
}

.a6bd2-stack__logo .go-link {
    flex-shrink: 0;
    line-height: 0;
}

/* ============================================
   FIX: Alts Logo Size (120x65)
   ============================================ */

.a6bd2-alts__logo {
    width: 120px;
    min-width: 120px;
    height: 65px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    background: color-mix(in srgb, #fff 85%, var(--color-surface));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 4px;
    box-sizing: border-box;
}

.a6bd2-alts__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.a6bd2-alts__logo .go-link {
    flex-shrink: 0;
    line-height: 0;
}

/* ============================================
   FIX: Offers (info sidebar) Logo Safety
   ============================================ */

.a6bd2-offers__logo {
    width: 48px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    background: color-mix(in srgb, #fff 85%, var(--color-surface));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 2px;
    box-sizing: border-box;
}

/* ============================================
   FIX: Hero Brand Logo Safety
   ============================================ */

.a6bd2-hero-brand__logo {
    background: var(--color-surface);
    background: color-mix(in srgb, #fff 85%, var(--color-surface));
    border: 1px solid var(--color-border);
}

/* ============================================
   FIX: Hero Bonus Logo Safety
   ============================================ */

.a6bd2-hero-bonus__logo {
    background: var(--color-surface);
    background: color-mix(in srgb, #fff 85%, var(--color-surface));
    border: 1px solid var(--color-border);
}

/* ============================================
   FIX: Recommendations Table Logo Safety
   ============================================ */

.a6bd2-table-logo {
    background: var(--color-surface);
    background: color-mix(in srgb, #fff 85%, var(--color-surface));
}

.a6bd2-casino-info .go-link {
    flex-shrink: 0;
    line-height: 0;
}

/* ============================================
   FIX: Bonus Hero Title (orphaned class)
   ============================================ */

.a6bd2-hero-bonus__title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-text);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-md);
}

/* ============================================
   FIX: Sitemap Page (orphaned classes)
   ============================================ */

.a6bd2-sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.a6bd2-sitemap-item {
    border-bottom: 1px solid var(--color-border);
}

.a6bd2-sitemap-item:last-child {
    border-bottom: none;
}

.a6bd2-sitemap-link {
    display: block;
    padding: var(--space-sm) 0;
    font-size: var(--font-size-sm);
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.a6bd2-sitemap-link:hover {
    color: var(--color-accent);
}

/* ============================================
   FIX: Alts layout with larger logos
   ============================================ */

.a6bd2-alts__item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    min-height: 85px;
}

/* ============================================
   FIX: Stack item min-height for 120x65 logos
   ============================================ */

.a6bd2-stack__item {
    min-height: 85px;
}

/* ============================================
   RESPONSIVE: Listing stack mobile with larger logos
   ============================================ */

@media (max-width: 640px) {
    .a6bd2-stack__logo {
        width: 120px;
        min-width: 120px;
        height: 65px;
    }

    .a6bd2-stack__logo img {
        width: 120px;
        min-width: 120px;
        height: 65px;
    }

    /* Alts mobile: full size logos */
    .a6bd2-alts__logo {
        width: 120px;
        min-width: 120px;
        height: 65px;
    }

    /* Recommendations table mobile: full size logos */
    .a6bd2-table-logo {
        width: 120px;
        height: 65px;
        min-width: 120px;
    }
}

/* ============================================
   FIX: Add --radius-xl to :root
   ============================================ */

:root {
    --radius-xl: 16px;
}

/* Colorway: Cartoon Bright | Radius: soft */
:root {
    --color-primary: #ffffff;
    --color-secondary: #f0f4f8;
    --color-accent: #ff6b6b;
    --color-background: #ffffff;
    --color-surface: #f7f9fc;
    --color-text: #2d3436;
    --color-text-muted: #636e72;
    --color-button: #4ecdc4;
    --color-button-hover: #3dbdb5;
    --color-button-text: #ffffff;
    --color-border: #dfe6e9;
    --color-success: #00b894;
    --color-warning: #fdcb6e;
    --color-error: #ff6b6b;
    --color-rating: #fdcb6e;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
}
