:root {
	--bg: #f7f8fa;
	--card: #ffffff;
	--border: #e4e7ec;
	--border-strong: #d6dae0;
	--text: #111827;
	--muted: #6b7280;
	--muted-2: #8a92a0;
	--heading: #1e2f52;
	--link: #0784c3;
	--link-dark: #055a86;
	--primary: #2a6ce0;
	--hero-1: #182a4e;
	--hero-2: #22407e;
	--hero-3: #2f6bd0;
	--green: #00a186;
	--green-bg: #e5f6f2;
	--amber: #b5701a;
	--amber-bg: #fbf1e3;
	--red: #9d0000;
	--red-bg: #ffd0d1;
	--mono: 'Roboto Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
	--sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--radius: 10px;
	--shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 1px 3px rgba(16, 24, 40, .06);
	--shadow-lg: 0 8px 24px rgba(16, 24, 40, .10);
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: var(--sans);
	background: var(--bg);
	color: var(--text);
	font-size: 14px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--link);
	text-decoration: none
}

a:hover {
	color: var(--link-dark);
	text-decoration: none
}

.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px
}

.mono {
	font-family: var(--mono)
}

img {
	max-width: 100%
}

/* ---------- Utility top bar ---------- */
.utility {
	background: #0f1b33;
	color: #c4ccdd;
	font-size: 12px
}

.utility .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 34px;
	gap: 16px
}

.utility .prices {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	align-items: center
}

.utility .prices .lbl {
	color: #8592ad
}

.utility .prices b {
	color: #eef2fb;
	font-weight: 600
}

.utility .prices .up {
	color: #37d3a6;
	font-weight: 600;
	font-size: 11px
}

.utility .right {
	display: flex;
	gap: 16px;
	align-items: center
}

.utility .right a {
	color: #c4ccdd
}

.utility .right a:hover {
	color: #fff
}

.dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #37d3a6;
	margin-right: 6px;
	vertical-align: middle
}

/* ---------- Header ---------- */
header.site {
	background: var(--card);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 40
}

header.site .wrap {
	display: flex;
	align-items: center;
	gap: 24px;
	height: 62px
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0
}

.brand .logo {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--hero-2), var(--hero-3));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 17px;
	box-shadow: var(--shadow)
}

.brand .name {
	display: flex;
	flex-direction: column;
	line-height: 1.1
}

.brand .name b {
	color: var(--heading);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -.2px
}

.brand .name span {
	color: var(--muted);
	font-size: 11px;
	font-weight: 500
}

nav.main {
	display: flex;
	align-items: center;
	gap: 2px;
	flex: 1
}

nav.main .item {
	position: relative
}

nav.main .item>a,
nav.main .item>button {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--sans);
	font-size: 13.5px;
	font-weight: 500;
	color: #374151;
	padding: 9px 12px;
	border-radius: 7px;
}

nav.main .item>a:hover,
nav.main .item>button:hover {
	background: #f0f3f8;
	color: var(--heading);
}

nav.main .item.active>a {
	color: var(--primary);
}

nav.main .caret {
	width: 8px;
	height: 8px;
	border-right: 2px solid #9aa3b2;
	border-bottom: 2px solid #9aa3b2;
	transform: rotate(45deg);
	margin-top: -3px;
	transition: transform .15s;
}

.dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 220px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 10px;
	box-shadow: var(--shadow-lg);
	padding: 6px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: .14s;
	z-index: 50;
}

nav.main .item:hover .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

nav.main .item:hover .caret {
	transform: rotate(225deg);
	margin-top: 2px;
}

.dropdown a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 10px;
	border-radius: 7px;
	color: #374151;
	font-weight: 500;
	font-size: 13px;
}

.dropdown a:hover {
	background: #f0f3f8;
	color: var(--heading);
}

.dropdown .coin-badge {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
}

.dropdown small {
	float: right !important;
	display: block;
	padding-left: 10px;
	margin-left: auto;
	color: var(--muted);
	font-weight: 400;
	font-size: 11px;
	text-align: right;
	white-space: nowrap;
}

.b-usdt {
	background: linear-gradient(135deg, #0fae96, #12b886)
}

.b-rmb {
	background: linear-gradient(135deg, #d1435b, #e8590c)
}

.b-rur {
	background: linear-gradient(135deg, #3b5bdb, #5f3dc4)
}

.header-search {
	margin-left: auto;
	position: relative;
	width: 350px
}

.header-search input {
	width: 100%;
	border: 1px solid var(--border-strong);
	border-radius: 8px;
	padding: 8px 34px 8px 12px;
	font-family: var(--sans);
	font-size: 12.5px;
	background: #fbfcfe;
	outline: none
}

.header-search input:focus {
	border-color: var(--primary);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(42, 108, 224, .12)
}

.header-search .ico {
	position: absolute;
	right: 10px;
	height: 35px;
	top: 2px;
	transform: translateY(-50%);
	color: #9aa3b2;
	background-color: transparent;
	border: 0 none transparent;
	font-size: 35px;
	cursor: pointer;
}

.burger {
	display: none;
	background: none;
	border: 1px solid var(--border);
	border-radius: 8px;
	width: 40px;
	height: 38px;
	cursor: pointer;
	font-size: 18px;
	color: #374151
}


/* Breadcrumb */
.crumb {
	padding: 16px 0 4px
}

.crumb .wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap
}

.crumb h1 {
	font-size: 19px;
	color: var(--heading);
	font-weight: 700;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px
}

.crumb .tb {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 10px
}

.crumb .path {
	color: var(--muted);
	font-size: 12.5px;
	margin-left: 2px
}

.crumb .peg {
	font-size: 11px;
	color: var(--green);
	background: var(--green-bg);
	padding: 2px 9px;
	margin: 3px 0 0 0;
	border-radius: 20px;
	font-weight: 600
}


/* ---------- Hero ---------- */
.hero {
	background: linear-gradient(120deg, var(--hero-1), var(--hero-2) 55%, var(--hero-3));
	padding: 30px 0 92px;
	position: relative;
	overflow: hidden
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 88% 12%, rgba(94, 153, 255, .30), transparent 42%),
		radial-gradient(circle at 8% 90%, rgba(0, 193, 167, .20), transparent 40%);
	pointer-events: none
}

.hero .wrap {
	position: relative;
	z-index: 2
}

.hero h1 {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	margin: 2px 0 4px;
	letter-spacing: -.3px
}

.hero p.sub {
	color: #c3d0ea;
	font-size: 13.5px;
	margin: 0 0 18px;
	max-width: 620px
}

.hero-search {
	background: rgba(255, 255, 255, .10);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 12px;
	padding: 8px;
	display: flex;
	gap: 8px;
	max-width: 720px
}

.hero-search .sel {
	display: flex;
	width: 100px;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, .10);
	color: #dbe6fb;
	border: none;
	border-radius: 8px;
	padding: 0 12px;
	font-family: var(--sans);
	font-size: 12.5px;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.hero-search .sel option {
	color: #000;
}

.hero-search .sel-arrow {
	display: block;
	position: absolute;
	color: #dbe6fb;
	width: 20px;
	height: 20px;
	font-size: 13px;
	line-height: 18px;
	margin: 5px 0 0 83px;
	padding: 0;
}

.hero-search .sel-arrow option {
	color: #000;
}

@supports (not (-moz-appearance:button)) and (contain:paint) {
	.hero-search .sel-arrow {
		margin-top: 9px;
	}
}

.hero-search .sel::-ms-expand {
  display: none;
}

.hero-search input {
	flex: 1;
	border: none;
	background: #fff;
	border-radius: 8px;
	padding: 12px 14px;
	font-family: var(--sans);
	font-size: 13.5px;
	outline: none;
	min-width: 0
}

.hero-search button.go {
	background: var(--primary);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 0 20px;
	font-weight: 600;
	font-size: 13.5px;
	cursor: pointer;
	font-family: var(--sans)
}

.hero-search button.go:hover {
	background: #1d5ac9
}

.hero .hint {
	color: #93a4c6;
	font-size: 11.5px;
	margin-top: 10px
}

.hero .hint a {
	color: #cdd9f0
}

.hero .hint a:hover {
	color: #bbc9ff
}

/* ---------- Stats strip ---------- */
.stats {
	margin-top: -64px;
	position: relative;
	z-index: 3
}

.stats-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: grid;
	grid-template-columns: repeat(4, 1fr)
}

.stat {
	padding: 18px 22px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	border-right: 1px solid var(--border)
}

.stat:last-child {
	border-right: none
}

.stat .si {
	width: 38px;
	height: 38px;
	border-radius: 9px;
	background: #eef4ff;
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0
}

.stat .sk {
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .4px;
	font-weight: 600
}

.stat .sv {
	font-size: 17px;
	font-weight: 700;
	color: var(--heading);
	margin-top: 3px
}

.stat .sv-small {
	font-size: 14px;
	margin-top: 1px;
	white-space: nowrap;
}

.stat .sv-small .coin {
	font-weight: 400;
}

.stat .sd {
	font-size: 11.5px;
	color: var(--muted-2);
	margin-top: 2px
}

.stat .sd b {
	color: var(--green);
	font-weight: 600
}

/* ---------- Token cards ---------- */
section {
	padding: 26px 0 0
}

.sec-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin: 0 0 14px
}

.sec-head h2 {
	font-size: 16px;
	color: var(--heading);
	font-weight: 700;
	margin: 0
}

.sec-head a {
	font-size: 12.5px;
	font-weight: 500
}

.tokens {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px
}

.tcard {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 18px;
	display: block;
	transition: .15s
}

.tcard:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	border-color: var(--border-strong)
}

.tcard .top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px
}

.tcard .tb {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 13px
}

.tcard .tn b {
	display: block;
	color: var(--heading);
	font-size: 15px;
	font-weight: 700
}

.tcard .tn span {
	color: var(--muted);
	font-size: 12px
}

.tcard .tgrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	border-top: 1px solid var(--border);
	padding-top: 13px
}

.tcard .tgrid .k {
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .3px
}

.tcard .tgrid .v {
	font-size: 14px;
	color: var(--text);
	font-weight: 600;
	margin-top: 1px
}

.tcard .peg {
	display: inline-block;
	margin-left: 6px;
	font-size: 10.5px;
	color: var(--green);
	background: var(--green-bg);
	padding: 1px 7px;
	border-radius: 20px;
	font-weight: 600;
	vertical-align: middle
}

/* ---------- Two panels ---------- */
.panels {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

.panel {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	overflow: hidden
}

.panel .ph {
	padding: 14px 18px;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between
}

.panel .ph h3 {
	margin: 0;
	font-size: 14.5px;
	color: var(--heading);
	font-weight: 700
}

.panel .ph .tag {
	font-size: 11px;
	color: var(--muted);
	background: #f2f4f8;
	padding: 3px 9px;
	border-radius: 20px;
	font-weight: 500
}

.rows {
	flex: 1
}

.row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 18px;
	border-bottom: 1px solid #f0f2f6
}

.row:last-child {
	border-bottom: none
}

.row .ic {
	width: 38px;
	height: 38px;
	padding: 0 0 3px 0;
	border-radius: 9px;
	background: #f2f4f8;
	color: #5b667a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 100;
	flex-shrink: 0;
	font-family: var(--mono)
}

.row .mid {
	flex: 1;
	min-width: 0
}

.row .mid .l1 {
	font-size: 13px;
	font-weight: 600
}

.row .mid .l1 a {
	color: var(--link)
}

.row .mid .l2 {
	font-size: 12px;
	color: var(--muted);
	margin-top: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.row .mid .l2 .fromto {
	color: #4b5563
}

.row .right {
	text-align: right;
	flex-shrink: 0
}

.row .right .amt {
	font-size: 13px;
	font-weight: 600;
	color: var(--text)
}

.row .right .amt2 {
	font-size: 11px;
	font-weight: 400;
	color: var(--text)
}

.row .right .amt-sub {
	font-size: 10px;
	color: var(--muted);
}

.badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 6px
}

.badge.transfer {
	color: #1d5ac9;
	background: #e8f0fe
}

.badge.mint {
	color: var(--amber);
	background: var(--amber-bg)
}

.badge.burn {
	color: var(--red);
	background: var(--red-bg)
}

.age {
	color: var(--muted-2)
}

.panel .pf {
	padding: 12px 18px;
	text-align: center;
	border-top: 1px solid var(--border);
	background: #fbfcfe
}

.panel .pf a {
	font-size: 12.5px;
	font-weight: 600
}

/* ---------- Info band ---------- */
.infoband {
	margin: 30px 0 0;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 24px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 28px
}

.infoband h4 {
	margin: 0 0 8px;
	color: var(--heading);
	font-size: 14px
}

.infoband p {
	margin: 0 0 10px;
	color: #4b5563;
	font-size: 13px;
	line-height: 1.6
}

.infoband ul {
	margin: 0;
	padding-left: 18px;
	color: #4b5563;
	font-size: 13px;
	line-height: 1.7
}

/* Pagination */
.pager {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	padding: 14px 18px;
	border-top: 1px solid var(--border);
	flex-wrap: wrap;
}

.pager .per {
	font-size: 12.5px;
	color: var(--muted)
}

.pager .nav {
	display: flex;
	align-items: center;
	gap: 6px
}

.pager .nav a,
.pager .nav span {
	border: 1px solid var(--border-strong);
	background: #fff;
	border-radius: 8px;
	padding: 6px 11px;
	font-size: 12.5px;
	font-weight: 500;
	color: #374151;
	font-family: var(--sans)
}

.pager .nav .disabled {
	opacity: .45;
	cursor: not-allowed
}

.pager .nav a:hover {
	border-color: var(--primary);
	color: var(--primary)
}

.pager .nav .active span {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
	cursor: default
}

.foot-note {
	margin-top: 12px;
	font-size: 12px;
	color: var(--muted-2);
	text-align: center
}


/* ---------- Footer ---------- */
footer.site {
	margin-top: 134px;
	background: #0f1b33;
	color: #aeb8ce;
	padding: 34px 0 0
}

footer.site .cols {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 28px;
	padding-bottom: 26px;
	border-bottom: 1px solid #1f2c47
}

footer.site .fbrand b {
	color: #fff;
	font-size: 15px
}

footer.site .fbrand p {
	margin: 10px 0 0;
	font-size: 12.5px;
	line-height: 1.6;
	max-width: 320px;
	color: #8f9ab5
}

footer.site h5 {
	color: #dfe5f2;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .5px;
	margin: 0 0 12px
}

footer.site .fcol a {
	display: block;
	color: #aeb8ce;
	font-size: 13px;
	padding: 5px 0
}

footer.site .fcol a:hover {
	color: #fff
}

footer.site .bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	font-size: 12px;
	color: #7d88a3;
	flex-wrap: wrap;
	gap: 8px
}

footer.site .bottom a {
	color: #aeb8ce
}


@media(max-width:960px) {
	nav.main .item:not(.always) {
		display: none
	}

	.header-search {
		display: none
	}

	.burger {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin-left: auto
	}

	.stats-card {
		grid-template-columns: 1fr 1fr
	}

	.stat:nth-child(2) {
		border-right: none
	}

	.stat:nth-child(1),
	.stat:nth-child(2) {
		border-bottom: 1px solid var(--border)
	}

	.tokens {
		grid-template-columns: 1fr
	}

	.panels {
		grid-template-columns: 1fr
	}

	.infoband {
		grid-template-columns: 1fr
	}

	footer.site .cols {
		grid-template-columns: 1fr 1fr
	}
}

@media(max-width:560px) {
	.hero-search {
		flex-wrap: wrap
	}

	.hero-search .sel {
		width: 100%;
		justify-content: space-between
	}

	.hero-search button.go {
		flex: 1
	}

	.stats-card {
		grid-template-columns: 1fr
	}

	.stat {
		border-right: none;
		border-bottom: 1px solid var(--border)
	}

	.stat:last-child {
		border-bottom: none
	}

	footer.site .cols {
		grid-template-columns: 1fr
	}
}

