/**
 * SMBSwap landing-page styles
 * Brand: dark navy surface + gold accent (from logo) + teal #1FC7D4 (meta theme color).
 * Font: Kanit (matches the original SMBSwap site).
 */

:root {
	--smb-bg: #0b0c1e;
	--smb-bg-2: #12132b;
	--smb-surface: #1a1c3a;
	--smb-surface-2: #21244a;
	--smb-border: rgba(255, 255, 255, 0.08);
	--smb-text: #f5f6ff;
	--smb-muted: #a9adcf;
	--smb-gold: #f4b731;
	--smb-gold-2: #ffd166;
	--smb-teal: #1fc7d4;
	--smb-teal-2: #53e0ea;
	--smb-radius: 18px;
	--smb-radius-sm: 12px;
	--smb-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
	--smb-maxw: 1140px;
}

/* ---------- Base ---------- */
body {
	margin: 0;
	background: radial-gradient(1200px 600px at 80% -10%, rgba(31, 199, 212, 0.14), transparent 60%),
		radial-gradient(1000px 600px at 0% 0%, rgba(244, 183, 49, 0.10), transparent 55%),
		var(--smb-bg);
	color: var(--smb-text);
	font-family: 'Kanit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	-webkit-font-smoothing: antialiased;
}

.smb-main a {
	color: inherit;
	text-decoration: none;
}

.smb-container {
	width: 100%;
	max-width: var(--smb-maxw);
	margin: 0 auto;
	padding: 0 24px;
}

.smb-text-gradient {
	display: inline-block;
	background: linear-gradient(90deg, var(--smb-gold), var(--smb-teal));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.smb-badge {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--smb-teal-2);
	background: rgba(31, 199, 212, 0.12);
	border: 1px solid rgba(31, 199, 212, 0.30);
	padding: 6px 14px;
	border-radius: 999px;
}

.smb-badge--gold {
	color: var(--smb-gold-2);
	background: rgba(244, 183, 49, 0.12);
	border-color: rgba(244, 183, 49, 0.30);
}

.smb-muted {
	color: var(--smb-muted);
}

/* ---------- Buttons ---------- */
.smb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	padding: 14px 26px;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.smb-btn--primary {
	background: linear-gradient(90deg, var(--smb-gold), var(--smb-gold-2));
	color: #1a1300;
	box-shadow: 0 10px 24px rgba(244, 183, 49, 0.32);
}

.smb-btn--ghost {
	background: transparent;
	border-color: var(--smb-border);
	color: var(--smb-text);
}

.smb-btn--ghost:hover {
	border-color: var(--smb-teal);
	color: var(--smb-teal-2);
}

.smb-btn--connect {
	background: linear-gradient(90deg, var(--smb-teal), var(--smb-teal-2));
	color: #06222a;
	padding: 11px 20px;
	font-size: 15px;
	box-shadow: 0 8px 20px rgba(31, 199, 212, 0.30);
}

.smb-btn--block {
	width: 100%;
}

/* ---------- Header ---------- */
.smb-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(11, 12, 30, 0.72);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--smb-border);
}

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

.smb-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.smb-brand__logo,
.smb-brand .custom-logo {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.smb-brand__name {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.smb-nav {
	margin-left: auto;
}

.smb-nav__list {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.smb-nav__list li a {
	display: inline-block;
	padding: 9px 14px;
	border-radius: 10px;
	font-weight: 500;
	color: var(--smb-muted);
	transition: color 0.15s ease, background 0.15s ease;
}

.smb-nav__list li a:hover {
	color: var(--smb-text);
	background: rgba(255, 255, 255, 0.05);
}

.smb-nav__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: 1px solid var(--smb-border);
	border-radius: 10px;
	padding: 10px;
	cursor: pointer;
}

.smb-nav__toggle span:not(.screen-reader-text) {
	width: 20px;
	height: 2px;
	background: var(--smb-text);
	border-radius: 2px;
}

.smb-header__actions {
	display: flex;
	align-items: center;
}

/* ---------- Hero ---------- */
.smb-hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 64px;
}

.smb-hero__bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(600px 400px at 75% 20%, rgba(31, 199, 212, 0.16), transparent 60%),
		radial-gradient(500px 360px at 15% 80%, rgba(244, 183, 49, 0.14), transparent 60%);
	pointer-events: none;
}

.smb-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: center;
}

.smb-hero__title {
	font-size: clamp(36px, 5vw, 60px);
	line-height: 1.05;
	font-weight: 700;
	margin: 18px 0 16px;
	letter-spacing: -0.02em;
}

.smb-hero__title span {
	display: block;
}

.smb-hero__lede {
	font-size: 18px;
	line-height: 1.6;
	color: var(--smb-muted);
	max-width: 540px;
	margin: 0 0 28px;
}

.smb-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 26px;
}

.smb-hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.smb-hero__pills li {
	font-size: 14px;
	color: var(--smb-muted);
	padding: 8px 14px;
	border: 1px solid var(--smb-border);
	border-radius: 999px;
}

.smb-hero__pills li::before {
	content: '\2713';
	color: var(--smb-teal-2);
	margin-right: 8px;
	font-weight: 700;
}

/* Hero art / swap card */
.smb-hero__art {
	position: relative;
	display: flex;
	justify-content: center;
}

.smb-swapcard {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 380px;
	background: linear-gradient(180deg, var(--smb-surface), var(--smb-bg-2));
	border: 1px solid var(--smb-border);
	border-radius: var(--smb-radius);
	box-shadow: var(--smb-shadow);
	padding: 20px;
}

.smb-swapcard__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 14px;
}

.smb-swapcard__cog {
	color: var(--smb-muted);
	cursor: pointer;
}

.smb-swapfield {
	background: var(--smb-bg);
	border: 1px solid var(--smb-border);
	border-radius: var(--smb-radius-sm);
	padding: 12px 14px;
}

.smb-swapfield__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.smb-swapfield__row + .smb-swapfield__row {
	margin-top: 8px;
}

.smb-swapfield__label,
.smb-swapfield__bal {
	font-size: 13px;
	color: var(--smb-muted);
}

.smb-swapfield__amount {
	flex: 1;
	min-width: 0;
	background: transparent;
	border: 0;
	outline: none;
	color: var(--smb-text);
	font-family: inherit;
	font-size: 24px;
	font-weight: 600;
}

.smb-token {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--smb-surface-2);
	border: 1px solid var(--smb-border);
	border-radius: 999px;
	padding: 8px 14px;
	color: var(--smb-text);
	font-family: inherit;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}

.smb-token__dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--smb-teal), var(--smb-teal-2));
}

.smb-token--self .smb-token__dot {
	background: linear-gradient(135deg, var(--smb-gold), var(--smb-gold-2));
}

.smb-swap-arrow {
	width: 34px;
	height: 34px;
	margin: -8px auto;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--smb-surface-2);
	border: 3px solid var(--smb-bg-2);
	border-radius: 50%;
	color: var(--smb-teal-2);
	font-weight: 700;
}

.smb-swapcard .smb-btn--block {
	margin-top: 16px;
}

.smb-hero__coin {
	position: absolute;
	border-radius: 50%;
	opacity: 0.85;
	filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.5));
	animation: smb-float 6s ease-in-out infinite;
}

.smb-hero__coin--1 {
	top: -10px;
	right: 0;
}

.smb-hero__coin--2 {
	bottom: 10px;
	left: 0;
	animation-delay: 1.5s;
}

@keyframes smb-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}

/* ---------- Stats ---------- */
.smb-stats {
	padding: 8px 0 12px;
}

.smb-stats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.smb-stat {
	background: linear-gradient(180deg, var(--smb-surface), var(--smb-bg-2));
	border: 1px solid var(--smb-border);
	border-radius: var(--smb-radius);
	padding: 26px;
	text-align: center;
}

.smb-stat__value {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	background: linear-gradient(90deg, var(--smb-gold-2), var(--smb-teal-2));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.smb-stat__label {
	margin-top: 6px;
	font-weight: 600;
}

.smb-stat__sub {
	margin-top: 2px;
	font-size: 14px;
	color: var(--smb-muted);
}

/* ---------- Section heads ---------- */
.smb-section-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 40px;
}

.smb-section-head__title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	margin: 14px 0 12px;
	letter-spacing: -0.01em;
}

.smb-section-head__lede {
	font-size: 17px;
	line-height: 1.6;
	color: var(--smb-muted);
	margin: 0;
}

/* ---------- zkEVM promo ---------- */
.smb-promo {
	padding: 8px 0 4px;
}

.smb-promo__card {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	background: linear-gradient(120deg, rgba(124, 77, 255, 0.18), rgba(31, 199, 212, 0.14)), var(--smb-surface);
	border: 1px solid var(--smb-border);
	border-radius: var(--smb-radius);
	padding: 22px 26px;
}

.smb-promo__text {
	flex: 1;
	min-width: 220px;
}

.smb-promo__tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--smb-teal-2);
	margin-bottom: 6px;
}

.smb-promo__text h3 {
	margin: 0 0 4px;
	font-size: 22px;
	font-weight: 700;
}

.smb-promo__text p {
	margin: 0;
	color: var(--smb-muted);
}

/* ---------- Win / Lottery ---------- */
.smb-win {
	padding: 72px 0;
}

.smb-win__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.smb-win__copy .smb-btn {
	margin-top: 24px;
}

.smb-lotto {
	background: linear-gradient(180deg, var(--smb-surface), var(--smb-bg-2));
	border: 1px solid rgba(244, 183, 49, 0.25);
	border-radius: var(--smb-radius);
	box-shadow: var(--smb-shadow);
	padding: 28px;
	text-align: center;
}

.smb-lotto__label {
	color: var(--smb-muted);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.smb-lotto__pot {
	font-size: clamp(30px, 5vw, 44px);
	font-weight: 700;
	margin: 6px 0 18px;
	color: var(--smb-gold-2);
}

.smb-lotto__pot span {
	font-size: 0.5em;
	color: var(--smb-muted);
	vertical-align: middle;
}

.smb-lotto__balls {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-bottom: 22px;
}

.smb-lotto__balls span {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	border-radius: 50%;
	color: #1a1300;
	background: linear-gradient(135deg, var(--smb-gold), var(--smb-gold-2));
}

.smb-lotto__meta {
	display: flex;
	justify-content: space-around;
	gap: 16px;
	border-top: 1px solid var(--smb-border);
	padding-top: 18px;
}

.smb-lotto__meta span {
	display: block;
	font-size: 13px;
}

.smb-lotto__meta strong {
	font-size: 20px;
}

/* ---------- Earn / Farms & Pools ---------- */
.smb-earn {
	padding: 24px 0 80px;
}

.smb-earn__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.smb-earncard {
	background: linear-gradient(180deg, var(--smb-surface), var(--smb-bg-2));
	border: 1px solid var(--smb-border);
	border-radius: var(--smb-radius);
	padding: 26px;
}

.smb-earncard__title {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 600;
}

.smb-earncard__list {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
}

.smb-earncard__list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid var(--smb-border);
}

.smb-pair {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
}

.smb-pair__dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--smb-teal), var(--smb-teal-2));
}

.smb-pair__dot--gold {
	background: linear-gradient(135deg, var(--smb-gold), var(--smb-gold-2));
}

.smb-apr {
	font-weight: 700;
	color: var(--smb-gold-2);
}

/* ---------- Trade-to-earn + Games duo ---------- */
.smb-duo {
	padding: 0 0 80px;
}

.smb-duo__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.smb-duocard {
	border: 1px solid var(--smb-border);
	border-radius: var(--smb-radius);
	padding: 32px;
}

.smb-duocard h3 {
	margin: 14px 0 8px;
	font-size: 24px;
	font-weight: 700;
}

.smb-duocard p {
	margin: 0 0 20px;
	color: var(--smb-muted);
	line-height: 1.55;
}

.smb-duocard--teal {
	background: linear-gradient(135deg, rgba(31, 199, 212, 0.16), transparent 70%), var(--smb-surface);
}

.smb-duocard--gold {
	background: linear-gradient(135deg, rgba(244, 183, 49, 0.16), transparent 70%), var(--smb-surface);
}

/* ---------- Features ---------- */
.smb-features {
	padding: 80px 0;
}

.smb-features__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.smb-feature {
	background: linear-gradient(180deg, var(--smb-surface), var(--smb-bg-2));
	border: 1px solid var(--smb-border);
	border-radius: var(--smb-radius);
	padding: 26px;
	transition: transform 0.18s ease, border-color 0.18s ease;
}

.smb-feature:hover {
	transform: translateY(-6px);
	border-color: rgba(31, 199, 212, 0.45);
}

.smb-feature__icon {
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	border-radius: 14px;
	background: rgba(31, 199, 212, 0.12);
	border: 1px solid rgba(31, 199, 212, 0.25);
	margin-bottom: 16px;
}

.smb-feature__title {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 8px;
}

.smb-feature__desc {
	font-size: 15px;
	line-height: 1.55;
	color: var(--smb-muted);
	margin: 0;
}

/* ---------- Trust ---------- */
.smb-trust {
	padding: 40px 0 80px;
}

.smb-trust__inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: center;
}

.smb-checklist {
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
}

.smb-checklist li {
	position: relative;
	padding: 10px 0 10px 34px;
	font-size: 16px;
	color: var(--smb-text);
	border-bottom: 1px solid var(--smb-border);
}

.smb-checklist li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(244, 183, 49, 0.15);
	color: var(--smb-gold-2);
	font-size: 12px;
	font-weight: 700;
}

.smb-trust__art {
	display: flex;
	justify-content: center;
}

.smb-trust__art img {
	width: min(280px, 70%);
	height: auto;
	filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.55));
	animation: smb-float 7s ease-in-out infinite;
}

/* ---------- CTA band ---------- */
.smb-cta {
	padding: 0 0 90px;
}

.smb-cta__inner {
	text-align: center;
	background: linear-gradient(120deg, rgba(31, 199, 212, 0.16), rgba(244, 183, 49, 0.16)),
		var(--smb-surface);
	border: 1px solid var(--smb-border);
	border-radius: 28px;
	padding: 56px 24px;
	box-shadow: var(--smb-shadow);
}

.smb-cta__title {
	font-size: clamp(26px, 4vw, 40px);
	font-weight: 700;
	margin: 0 0 12px;
}

.smb-cta__lede {
	color: var(--smb-muted);
	font-size: 17px;
	margin: 0 auto 28px;
	max-width: 560px;
}

.smb-cta__actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ============================================================
   BLOG: archive + single (matches landing branding)
   ============================================================ */

.smb-blog,
.smb-single {
	padding: 56px 0 80px;
}

/* Page header (archive title) */
.smb-pagehead {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 44px;
}

.smb-pagehead__title {
	font-size: clamp(30px, 4.5vw, 46px);
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 14px 0 10px;
}

.smb-pagehead__desc {
	color: var(--smb-muted);
	font-size: 17px;
	line-height: 1.6;
}

/* Post grid + cards */
.smb-postgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.smb-postcard {
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, var(--smb-surface), var(--smb-bg-2));
	border: 1px solid var(--smb-border);
	border-radius: var(--smb-radius);
	overflow: hidden;
	transition: transform 0.18s ease, border-color 0.18s ease;
}

.smb-postcard:hover {
	transform: translateY(-6px);
	border-color: rgba(31, 199, 212, 0.45);
}

.smb-postcard__thumb {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(31, 199, 212, 0.18), rgba(244, 183, 49, 0.18));
}

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

.smb-postcard__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.5);
}

.smb-postcard__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px;
}

.smb-postcard__meta {
	font-size: 13px;
	color: var(--smb-muted);
	margin-bottom: 10px;
}

.smb-postcard__meta a {
	color: var(--smb-teal-2);
}

.smb-dot {
	margin: 0 6px;
	color: var(--smb-muted);
}

.smb-postcard__title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 10px;
}

.smb-postcard__title a {
	color: var(--smb-text);
	transition: color 0.15s ease;
}

.smb-postcard__title a:hover {
	color: var(--smb-teal-2);
}

.smb-postcard__excerpt {
	color: var(--smb-muted);
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 16px;
}

.smb-readmore {
	margin-top: auto;
	font-weight: 600;
	color: var(--smb-gold-2);
}

.smb-readmore:hover {
	color: var(--smb-gold);
}

/* Empty state */
.smb-empty {
	text-align: center;
	max-width: 520px;
	margin: 40px auto;
	padding: 48px 24px;
	background: var(--smb-surface);
	border: 1px solid var(--smb-border);
	border-radius: var(--smb-radius);
}

.smb-empty h2 {
	margin: 0 0 8px;
}

.smb-empty p {
	color: var(--smb-muted);
	margin: 0 0 22px;
}

/* Pagination (the_posts_pagination) */
.smb-blog .navigation.pagination,
.smb-blog .nav-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 48px;
}

.smb-blog .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: 12px;
	border: 1px solid var(--smb-border);
	color: var(--smb-text);
	font-weight: 600;
}

.smb-blog a.page-numbers:hover {
	border-color: var(--smb-teal);
	color: var(--smb-teal-2);
}

.smb-blog .page-numbers.current {
	background: linear-gradient(90deg, var(--smb-teal), var(--smb-teal-2));
	color: #06222a;
	border-color: transparent;
}

/* ---------- Single post ---------- */
.smb-single__head {
	text-align: center;
	padding: 8px 0 24px;
}

.smb-single__head-inner {
	max-width: 760px;
}

.smb-backlink {
	display: inline-block;
	color: var(--smb-muted);
	font-size: 14px;
	margin-bottom: 18px;
}

.smb-backlink:hover {
	color: var(--smb-teal-2);
}

.smb-single__cats {
	margin-bottom: 14px;
}

.smb-single__cats a,
.smb-tags a {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--smb-teal-2);
	background: rgba(31, 199, 212, 0.12);
	border: 1px solid rgba(31, 199, 212, 0.30);
	padding: 5px 12px;
	border-radius: 999px;
	margin: 0 4px 4px 0;
}

.smb-single__title {
	font-size: clamp(30px, 5vw, 52px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

.smb-single__byline {
	color: var(--smb-muted);
	font-size: 15px;
}

.smb-author {
	color: var(--smb-text);
	font-weight: 600;
}

.smb-single__thumb {
	margin: 8px auto 0;
	max-width: 940px;
	border-radius: var(--smb-radius);
	overflow: hidden;
	border: 1px solid var(--smb-border);
}

.smb-single__thumb img {
	width: 100%;
	height: auto;
	display: block;
}

.smb-single__body {
	max-width: 760px;
	padding-top: 36px;
}

/* Article typography (the_content output) */
.smb-prose {
	font-size: 18px;
	line-height: 1.75;
	color: #d9dcf2;
}

.smb-prose > * + * {
	margin-top: 1.25em;
}

.smb-prose h2 {
	font-size: 30px;
	font-weight: 700;
	margin-top: 1.6em;
	letter-spacing: -0.01em;
}

.smb-prose h3 {
	font-size: 24px;
	font-weight: 600;
	margin-top: 1.4em;
}

.smb-prose h4 {
	font-size: 20px;
	font-weight: 600;
	margin-top: 1.2em;
}

.smb-prose a {
	color: var(--smb-teal-2);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.smb-prose a:hover {
	color: var(--smb-teal);
}

.smb-prose ul,
.smb-prose ol {
	padding-left: 1.4em;
}

.smb-prose li {
	margin-bottom: 0.5em;
}

.smb-prose img {
	border-radius: var(--smb-radius-sm);
	height: auto;
}

.smb-prose blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 22px;
	border-left: 4px solid var(--smb-gold);
	color: var(--smb-text);
	font-style: italic;
}

.smb-prose code {
	background: var(--smb-bg);
	border: 1px solid var(--smb-border);
	border-radius: 6px;
	padding: 2px 6px;
	font-size: 0.9em;
	font-family: 'SFMono-Regular', Consolas, monospace;
}

.smb-prose pre {
	background: var(--smb-bg);
	border: 1px solid var(--smb-border);
	border-radius: var(--smb-radius-sm);
	padding: 18px;
	overflow: auto;
}

.smb-prose pre code {
	border: 0;
	padding: 0;
	background: transparent;
}

.smb-prose hr {
	border: 0;
	border-top: 1px solid var(--smb-border);
	margin: 2em 0;
}

/* Single footer (tags) */
.smb-single__footer {
	max-width: 760px;
	margin: 36px 0 0;
	padding-top: 24px;
	border-top: 1px solid var(--smb-border);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.smb-single__tagslabel {
	color: var(--smb-muted);
	font-size: 14px;
	margin-right: 4px;
}

/* Post navigation (prev / next) */
.smb-single__nav {
	max-width: 760px;
	margin-top: 40px;
}

.smb-single__nav .post-navigation {
	display: block;
}

.smb-single__nav .nav-links {
	display: flex;
	gap: 16px;
	justify-content: space-between;
}

.smb-single__nav .nav-links > div {
	flex: 1;
}

.smb-single__nav .nav-next {
	text-align: right;
}

.smb-single__nav .nav-links a {
	display: block;
	padding: 18px 20px;
	border: 1px solid var(--smb-border);
	border-radius: var(--smb-radius-sm);
	transition: border-color 0.15s ease;
}

.smb-single__nav .nav-links a:hover {
	border-color: var(--smb-teal);
}

.smb-postnav__label {
	display: block;
	font-size: 13px;
	color: var(--smb-muted);
	margin-bottom: 4px;
}

.smb-postnav__title {
	font-weight: 600;
	color: var(--smb-text);
}

/* Comments */
.smb-comments {
	max-width: 760px;
	margin-top: 48px;
}

.smb-comments .comments-title,
.smb-comments .comment-reply-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}

.smb-comments .comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.smb-comments .comment-list li {
	list-style: none;
}

.smb-comments .comment-body {
	background: var(--smb-surface);
	border: 1px solid var(--smb-border);
	border-radius: var(--smb-radius-sm);
	padding: 18px 20px;
	margin-bottom: 16px;
}

.smb-comments .comment-author {
	font-weight: 600;
}

.smb-comments .comment-metadata,
.smb-comments .comment-metadata a {
	font-size: 13px;
	color: var(--smb-muted);
}

.smb-comments .children {
	list-style: none;
	margin: 0 0 0 28px;
	padding: 0;
}

.smb-comments input[type="text"],
.smb-comments input[type="email"],
.smb-comments input[type="url"],
.smb-comments textarea {
	width: 100%;
	background: var(--smb-bg);
	border: 1px solid var(--smb-border);
	border-radius: var(--smb-radius-sm);
	padding: 12px 14px;
	color: var(--smb-text);
	font-family: inherit;
	font-size: 15px;
	margin-top: 6px;
}

.smb-comments .form-submit .submit {
	background: linear-gradient(90deg, var(--smb-gold), var(--smb-gold-2));
	color: #1a1300;
	border: 0;
	border-radius: 999px;
	padding: 12px 26px;
	font-family: inherit;
	font-weight: 600;
	cursor: pointer;
}

/* Generic _s fallbacks (index.php / search.php / page.php still use these) */
.site-main {
	max-width: var(--smb-maxw);
	margin: 0 auto;
	padding: 56px 24px 80px;
}

.site-main .entry-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
}

.site-main .entry-title a {
	color: var(--smb-text);
}

.site-main .entry-title a:hover {
	color: var(--smb-teal-2);
}

.site-main .entry-content,
.site-main .entry-summary {
	color: #d9dcf2;
	line-height: 1.7;
}

.site-main .entry-content a {
	color: var(--smb-teal-2);
}

.site-main .entry-meta,
.site-main .entry-footer {
	color: var(--smb-muted);
	font-size: 14px;
}

.site-main .entry-footer a,
.site-main .entry-meta a {
	color: var(--smb-teal-2);
}

.widget-area {
	max-width: var(--smb-maxw);
	margin: 0 auto;
	padding: 0 24px 60px;
}

.widget-area .widget {
	margin-bottom: 28px;
}

/* ---------- Footer ---------- */
.smb-footer {
	background: var(--smb-bg-2);
	border-top: 1px solid var(--smb-border);
	padding: 56px 0 0;
}

.smb-footer__inner {
	max-width: var(--smb-maxw);
	margin: 0 auto;
	padding: 0 24px 40px;
	display: grid;
	grid-template-columns: 1.4fr 2fr;
	gap: 40px;
}

.smb-footer__brand .smb-brand__name {
	font-size: 20px;
}

.smb-footer__tagline {
	color: var(--smb-muted);
	font-size: 15px;
	line-height: 1.6;
	max-width: 360px;
	margin: 14px 0 16px;
}

.smb-social {
	display: flex;
	gap: 12px;
}

.smb-social a {
	font-size: 14px;
	color: var(--smb-muted);
	padding: 8px 14px;
	border: 1px solid var(--smb-border);
	border-radius: 999px;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.smb-social a:hover {
	color: var(--smb-teal-2);
	border-color: var(--smb-teal);
}

.smb-footer__cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.smb-footer__col h4 {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 14px;
}

.smb-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.smb-footer__col li {
	margin-bottom: 10px;
}

.smb-footer__col a {
	color: var(--smb-muted);
	font-size: 15px;
	transition: color 0.15s ease;
}

.smb-footer__col a:hover {
	color: var(--smb-text);
}

.smb-footer__bottom {
	border-top: 1px solid var(--smb-border);
	padding: 20px 24px;
	max-width: var(--smb-maxw);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 13px;
	color: var(--smb-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.smb-hero__inner,
	.smb-trust__inner,
	.smb-win__inner,
	.smb-earn__grid,
	.smb-duo__grid {
		grid-template-columns: 1fr;
	}

	.smb-hero__art {
		order: -1;
	}

	.smb-features__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.smb-postgrid {
		grid-template-columns: repeat(2, 1fr);
	}

	.smb-footer__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.smb-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		margin: 0;
		background: var(--smb-bg-2);
		border-bottom: 1px solid var(--smb-border);
		display: none;
		padding: 12px 24px;
	}

	.smb-nav.is-open {
		display: block;
	}

	.smb-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}

	.smb-nav__toggle {
		display: flex;
		margin-left: auto;
	}

	.smb-header__actions {
		order: 3;
	}

	.smb-header__inner {
		position: relative;
		flex-wrap: wrap;
	}
}

@media (max-width: 560px) {
	.smb-stats__grid {
		grid-template-columns: 1fr;
	}

	.smb-features__grid,
	.smb-postgrid {
		grid-template-columns: 1fr;
	}

	.smb-single__nav .nav-links {
		flex-direction: column;
	}

	.smb-single__nav .nav-next {
		text-align: left;
	}

	.smb-brand__name {
		font-size: 18px;
	}
}
