:root {
	--gold: #b8860b;
	--gold-light: #fff8e7;
	--card-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Base layout */
.miners-mobile {
	max-width: 420px;
	margin: auto;
	padding-bottom: 80px;
	background: #f7f8fa;
	min-height: 100vh;
}

.miners-header {
	text-align: center;
	padding: 24px 20px 8px;
	background: white;
	border-bottom: 1px solid #eee;
}

.miners-header h2 {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
}

/* Sections */
.section {
	margin: 16px 16px 0;
}

.section-title {
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 12px;
	text-align: center;
	color: #1a1a1a;
}

/* Widget cards */
.miners-widgets {
	margin: 16px 16px 0;
}

.widget-card {
	background: white;
	padding: 18px 20px;
	border-radius: 14px;
	margin-bottom: 12px;
	box-shadow: var(--card-shadow);
}

.widget-title {
	font-size: 12px;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}

.widget-value {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
}

/* Badge base */
.badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

/* Filter tabs */
.tx-filter-row {
	display: flex;
	gap: 8px;
	padding: 12px 16px 0;
	overflow-x: auto;
}

.tx-filter-btn {
	flex-shrink: 0;
	border: 1px solid #e0e0e0;
	background: white;
	border-radius: 20px;
	padding: 5px 14px;
	font-size: 12px;
	font-weight: 500;
	color: #666;
	cursor: pointer;
}

.tx-filter-btn.active {
	background: var(--gold);
	border-color: var(--gold);
	color: white;
}

/* Detail rows */
.tx-detail-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 9px 16px;
	border-bottom: 1px solid #f9f9f9;
}

.tx-detail-row:last-child {
	border-bottom: none;
}

.tx-detail-label {
	font-size: 12px;
	color: #888;
	flex-shrink: 0;
}

.tx-detail-value {
	font-size: 13px;
	font-weight: 500;
	color: #1a1a1a;
	text-align: right;
	word-break: break-word;
}

.tx-empty {
	text-align: center;
	padding: 40px 0;
	color: #aaa;
	font-size: 13px;
}

/* Bottom navigation */
.bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	display: flex;
	justify-content: space-around;
	border-top: 1px solid #eee;
	padding: 10px 0 14px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
}

.bottom-nav a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
	font-size: 11px;
	color: #888;
	text-decoration: none;
	padding: 0 12px;
}

.bottom-nav a:hover,
.nav-active {
	color: var(--gold) !important;
}

/* Hide elements on website */
nav {
	display: none !important;
}

.web-footer {
	display: none !important;
}
