/* Marketing / Affiliate / CTA - minimal styles
 * Без animations, без fade-in. Banner-ите винаги са visible.
 */

/* Mobile bottom bar safe-area за iPhone notch */
@supports (padding: env(safe-area-inset-bottom)) {
    #mp-mobile-bar {
        padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
    }
}

/* Marketing block - лек hover effect (по желание) */
.marketing-block {
    transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}
.marketing-block:hover {
    transform: translateY(-2px);
}

/* Affiliate page body — restore list bullets (Tailwind preflight strips them) + table polish */
.aff-body ul { list-style: disc; }
.aff-body ol { list-style: decimal; }
.aff-body ul, .aff-body ol { padding-left: 1.4rem; margin: 0.75rem 0 1.25rem; }
.aff-body li { margin-bottom: 0.4rem; }
.aff-body h2:first-child, .aff-body h3:first-child { margin-top: 0; }
.aff-body table.aff-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.875rem; }
.aff-body table.aff-table td { border: 1px solid #e5e7eb; padding: 0.4rem 0.75rem; vertical-align: top; }
.aff-body table.aff-table tr:nth-child(odd) td { background: #f9fafb; }
.aff-body table.aff-table tr td:first-child { font-weight: 600; color: #374151; white-space: nowrap; }
