:root {
	--top888-black: #1f201f;
	--top888-green: #0b6f16;
	--top888-green-2: #1ca22c;
	--top888-light: #a4e778;
	--top888-yellow: #ffe428;
	--top888-text: #173719;
	--top888-muted: #62705d;
	--top888-line: #dfe9dc;
	--top888-bg: #ffffff;
	--top888-soft: #f4faf0;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.top888-page {
	margin: 0;
	background: var(--top888-bg);
	color: var(--top888-text);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.65;
	overflow-x: hidden;
}

.top888-page a {
	color: inherit;
	text-decoration: none;
}

.top888-shell {
	width: min(1050px, calc(100% - 32px));
	margin: 0 auto;
}

.top888-header {
	background: var(--top888-black);
	color: #fff;
}

.top888-nav {
	min-height: 90px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
}

.top888-logo {
	position: relative;
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	font-style: italic;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
	white-space: nowrap;
}

.top888-logo span {
	color: var(--top888-yellow);
	font-size: 48px;
	line-height: 1;
	text-shadow: 0 2px 0 #185b11, 0 5px 14px rgba(255, 228, 40, .25);
}

.top888-logo b {
	color: #fff;
	font-size: 38px;
	line-height: 1;
	text-shadow: 0 2px 0 #185b11;
}

.top888-logo small {
	position: absolute;
	left: 12px;
	top: 46px;
	display: inline-flex;
	align-items: center;
	height: 18px;
	padding: 0 18px;
	border-radius: 999px;
	background: linear-gradient(180deg, #126d0f, #073f09);
	color: var(--top888-yellow);
	font-size: 11px;
	font-style: italic;
	letter-spacing: .3px;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.top888-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	min-width: 0;
}

.top888-menu a {
	color: var(--top888-yellow);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
}

.top888-menu a:first-child {
	position: relative;
	color: #f8ff5d;
}

.top888-menu a:first-child::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -12px;
	height: 2px;
	background: var(--top888-green-2);
}

.top888-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.top888-actions a {
	min-width: 98px;
	padding: 10px 17px;
	border-radius: 999px;
	background: linear-gradient(180deg, #168913, #075c0f);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}

.top888-main {
	padding: 28px 0 0;
}

.top888-hero {
	margin-bottom: 30px;
}

.top888-hero img {
	display: block;
	width: 100%;
	aspect-ratio: 3.2 / 1;
	object-fit: cover;
	border: 0;
	box-shadow: 0 16px 34px rgba(16, 70, 20, .16);
}

.top888-breadcrumb {
	margin-bottom: 28px;
}

.top888-breadcrumb .breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
	list-style: none;
	margin: 0;
	background: transparent;
	border-top: 1px solid var(--top888-line);
	border-bottom: 1px solid var(--top888-line);
	border-radius: 0;
	padding: 10px 0;
	font-size: 13px;
	color: var(--top888-muted);
}

.top888-breadcrumb a {
	color: var(--top888-green);
	font-weight: 700;
}

.top888-section-title {
	display: grid;
	grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
	align-items: center;
	gap: 18px;
	margin: 0 0 28px;
	text-align: center;
}

.top888-section-title b {
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--top888-line), transparent);
}

.top888-section-title h1,
.top888-section-title h2 {
	margin: 0;
	color: #084f16;
	font-size: clamp(24px, 2.4vw, 33px);
	font-weight: 900;
	line-height: 1.25;
	text-transform: uppercase;
}

.top888-section-title-left {
	grid-template-columns: auto minmax(80px, 1fr);
	text-align: left;
	margin-bottom: 22px;
}

.top888-editorial,
.top888-guide,
.top888-news {
	padding: 18px 0 30px;
}

.top888-copy {
	max-width: 910px;
	margin: 0 auto;
	border-left: 3px solid var(--top888-green);
	padding-left: 32px;
	color: #465345;
	font-size: 17px;
	font-style: italic;
}

.top888-copy strong {
	color: #8d35ff;
}

.top888-note {
	margin-top: 22px;
	font-style: normal;
	font-weight: 700;
	color: #3b4937;
}

.top888-note::before {
	content: "👉 ";
	color: var(--top888-yellow);
}

.top888-note a {
	color: #8b31ff;
	font-weight: 900;
}

.top888-guide-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.top888-guide-grid article {
	min-height: 154px;
	padding: 22px 20px;
	border: 1px solid var(--top888-line);
	background: #fff;
	box-shadow: 0 12px 26px rgba(24, 64, 20, .07);
}

.top888-guide-grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 14px;
	border: 2px solid var(--top888-green);
	color: var(--top888-green);
	font-weight: 900;
}

.top888-guide-grid h3,
.top888-news-card h3 {
	margin: 0 0 9px;
	color: #0a4d17;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.25;
}

.top888-guide-grid p,
.top888-news-card p {
	margin: 0;
	color: var(--top888-muted);
	font-size: 14px;
	line-height: 1.65;
}

.top888-news-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
}

.top888-news-card {
	min-width: 0;
	text-align: center;
}

.top888-news-thumb {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 2 / 1;
	margin-bottom: 14px;
	overflow: visible;
	background:
		radial-gradient(circle at 78% 28%, rgba(255, 228, 40, .72), transparent 28%),
		linear-gradient(135deg, #0b5017, #111f18 54%, #63bf3f);
}

.top888-news-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top888-news-thumb span {
	position: absolute;
	left: -8px;
	top: 18px;
	display: grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 4px;
	border: 2px solid var(--top888-green);
	background: #fff;
	color: #0b5816;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.05;
	box-shadow: 0 8px 18px rgba(22, 80, 18, .18);
}

.top888-news-grid-preview .top888-news-card:nth-child(1) .top888-news-thumb {
	background:
		linear-gradient(135deg, rgba(5, 80, 18, .82), rgba(255, 228, 40, .12)),
		linear-gradient(90deg, #173513, #46b43d);
}

.top888-news-grid-preview .top888-news-card:nth-child(2) .top888-news-thumb {
	background:
		radial-gradient(circle at 70% 45%, #ffe428 0 16%, transparent 17%),
		linear-gradient(135deg, #f7fff2, #168b21);
}

.top888-news-grid-preview .top888-news-card:nth-child(3) .top888-news-thumb {
	background:
		radial-gradient(circle at 22% 28%, #fff 0 10%, transparent 11%),
		linear-gradient(135deg, #073f0a, #c6ef8e);
}

.top888-news-grid-preview .top888-news-card:nth-child(4) .top888-news-thumb {
	background:
		linear-gradient(135deg, rgba(255,255,255,.25), transparent),
		linear-gradient(90deg, #104b17, #151515);
}

.top888-card-meta {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 12px;
	color: #789074;
	font-size: 12px;
}

.top888-pagination {
	list-style: none;
	padding-left: 0;
	justify-content: center;
}

.top888-pagination .page-link {
	border-color: var(--top888-line);
	color: var(--top888-green);
}

.top888-footer {
	margin-top: 44px;
	background: var(--top888-light);
	color: #173719;
}

.top888-footer-grid {
	display: grid;
	grid-template-columns: 1.15fr .8fr 1.2fr;
	gap: 80px;
	padding: 52px 0 46px;
}

.top888-logo-footer {
	margin-bottom: 20px;
}

.top888-logo-footer span {
	font-size: 58px;
}

.top888-logo-footer b {
	font-size: 46px;
}

.top888-footer h3 {
	margin: 0 0 22px;
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
}

.top888-footer nav a,
.top888-footer p a {
	display: block;
	margin: 0 0 12px;
	color: #8b31ff;
	font-weight: 800;
}

.top888-footer p {
	margin: 0 0 13px;
	color: #244a1f;
	font-size: 15px;
}

.top888-copyright {
	background: #585b58;
	color: #d7d7d7;
	padding: 16px 0;
	text-align: center;
	font-size: 13px;
}

.top888-article-hero {
	padding: 42px 0;
	background: linear-gradient(135deg, #163016, #0a6315 52%, #d7ea43);
	color: #fff;
}

.top888-logo-article {
	margin-bottom: 20px;
}

.top888-article-hero h1 {
	max-width: 860px;
	margin: 0 0 10px;
	font-size: clamp(28px, 4vw, 46px);
	font-weight: 900;
	line-height: 1.18;
}

.top888-article-hero p {
	margin: 0;
	color: rgba(255,255,255,.86);
}

.top888-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 290px;
	gap: 30px;
	padding: 18px 0 26px;
}

.top888-article-card,
.top888-side-panel {
	background: #fff;
	border: 1px solid var(--top888-line);
	box-shadow: 0 12px 26px rgba(24, 64, 20, .07);
}

.top888-article-card {
	padding: 28px;
}

.top888-article-title h1 {
	margin: 0 0 14px;
	color: #0a4d17;
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 900;
	line-height: 1.25;
}

.top888-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--top888-line);
	color: var(--top888-muted);
	font-size: 13px;
}

.top888-article-column {
	margin: 18px 0;
	color: #0a4d17;
	font-weight: 800;
}

.top888-article-body {
	color: #3c4938;
	font-size: 16px;
	line-height: 1.85;
}

.top888-article-body img {
	max-width: 100%;
	height: auto;
}

.top888-update {
	margin-top: 28px;
	color: var(--top888-muted);
	font-size: 13px;
}

.top888-prenext {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--top888-line);
}

.top888-side-panel {
	margin-bottom: 18px;
	padding: 20px;
}

.top888-side-panel h2 {
	margin: 0 0 12px;
	color: #0a4d17;
	font-size: 18px;
	font-weight: 900;
}

.top888-side-panel p {
	color: var(--top888-muted);
	font-size: 14px;
}

.top888-side-panel > a {
	display: inline-flex;
	margin-top: 8px;
	padding: 10px 14px;
	background: var(--top888-green);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
}

@media (max-width: 980px) {
	.top888-nav {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 18px 0 22px;
		text-align: center;
	}

	.top888-logo {
		justify-self: center;
	}

	.top888-menu {
		flex-wrap: wrap;
		gap: 12px 18px;
	}

	.top888-actions {
		justify-content: center;
	}

	.top888-guide-grid,
	.top888-news-grid,
	.top888-footer-grid,
	.top888-article-layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.top888-shell {
		width: min(100% - 24px, 1050px);
	}

	.top888-logo span {
		font-size: 42px;
	}

	.top888-logo b {
		font-size: 33px;
	}

	.top888-menu {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: 100%;
		gap: 10px;
	}

	.top888-menu a {
		font-size: 12px;
		white-space: normal;
	}

	.top888-actions {
		width: 100%;
	}

	.top888-actions a {
		flex: 1;
		min-width: 0;
	}

	.top888-main {
		padding-top: 18px;
	}

	.top888-hero img {
		aspect-ratio: 3.2 / 1;
		object-fit: contain;
		background: #062f0a;
	}

	.top888-section-title,
	.top888-section-title-left {
		grid-template-columns: 1fr;
		gap: 10px;
		text-align: left;
	}

	.top888-section-title b {
		width: 100%;
	}

	.top888-copy {
		padding-left: 18px;
		font-size: 15px;
	}

	.top888-guide-grid,
	.top888-news-grid,
	.top888-footer-grid,
	.top888-article-layout,
	.top888-prenext {
		grid-template-columns: 1fr;
	}

	.top888-footer-grid {
		gap: 26px;
	}

	.top888-news-thumb span {
		left: 8px;
		top: 8px;
	}

	.top888-article-card {
		padding: 20px;
	}
}
