.greed-page .status-page {
	min-height: 100vh;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.greed-page .status-header {
	margin-bottom: 2.5rem;
}

.greed-page .status-title {
	font-size: 2.25rem;
	line-height: 2.5rem;
	font-weight: 500;
	margin: 0 0 0.5rem 0;
	background: linear-gradient(135deg, #fff 0%, #d4bcd2 25%, #8a7288 75%, #fff 100%);
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
}

.greed-page .status-subtitle {
	font-size: 0.9375rem;
	color: rgb(138, 114, 136);
	margin: 0;
}

.greed-page .status-guild-search {
	position: relative;
}

@media (min-width: 640px) {
	.greed-page .status-header {
		display: flex;
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}
	.greed-page .status-guild-search {
		width: auto;
		margin-top: 0;
	}
}

.greed-page .status-guild-input {
	width: 100%;
	padding: 0.5rem 2.5rem 0.5rem 0.75rem;
	font-size: 0.75rem;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(212, 188, 210, 0.2);
	border-radius: 0.5rem;
	color: rgb(237, 238, 240);
}

.greed-page .status-guild-input::placeholder {
	color: rgba(138, 114, 136, 0.6);
}

.greed-page .status-guild-input:focus {
	outline: none;
	border-color: rgba(212, 188, 210, 0.4);
	box-shadow: 0 0 0 2px rgba(212, 188, 210, 0.15);
}

@media (min-width: 640px) {
	.greed-page .status-guild-input {
		width: 10rem;
	}
}

.greed-page .status-search-btn {
	position: absolute;
	right: 0.25rem;
	top: 50%;
	transform: translateY(-50%);
	padding: 0.375rem;
	color: rgba(212, 188, 210, 0.6);
	background: transparent;
	border: none;
	border-radius: 0.25rem;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
}

.greed-page .status-search-btn:hover {
	background: rgba(212, 188, 210, 0.1);
	color: rgb(212, 188, 210);
}

.greed-page .status-search-btn svg {
	display: block;
	height: 0.75rem;
	width: 0.75rem;
}

.greed-page .status-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding-bottom: 4rem;
}

.greed-page .status-metrics {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.greed-page .status-metrics {
		grid-template-columns: repeat(4, 1fr);
	}
}

.greed-page .status-metric-card {
	position: relative;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	background: rgba(27, 25, 25, 0.5);
	border: 2px solid rgba(212, 188, 210, 0.2);
	border-radius: 1rem;
	padding: 1rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.greed-page .status-metric-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 0.875rem;
	background: rgba(212, 188, 210, 0.05);
	opacity: 0;
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.greed-page .status-metric-card:hover {
	border-color: rgba(212, 188, 210, 0.35);
	box-shadow: 0 0 0 1px rgba(212, 188, 210, 0.1), 0 4px 12px rgba(0, 0, 0, 0.2);
	transform: translateY(-1px);
}

.greed-page .status-metric-card:hover::before {
	opacity: 1;
}

.greed-page .status-metric-label {
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 0.25rem;
}

.greed-page .status-metric-value {
	font-size: 1.125rem;
	font-weight: 500;
	color: rgb(237, 238, 240);
}

.greed-page .status-shards {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.greed-page .status-shards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.greed-page .status-shards {
		grid-template-columns: repeat(3, 1fr);
	}
}

.greed-page .status-shard-card {
	position: relative;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	background: rgba(27, 25, 25, 0.5);
	border: 2px solid rgba(212, 188, 210, 0.2);
	border-radius: 1rem;
	padding: 1rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.greed-page .status-shard-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 0.875rem;
	background: rgba(212, 188, 210, 0.05);
	opacity: 0;
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.greed-page .status-shard-card:hover {
	border-color: rgba(212, 188, 210, 0.35);
	box-shadow: 0 0 0 1px rgba(212, 188, 210, 0.1), 0 4px 16px rgba(0, 0, 0, 0.25);
	transform: translateY(-2px);
}

.greed-page .status-shard-card:hover::before {
	opacity: 1;
}

.greed-page .status-shard-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 0.75rem;
}

.greed-page .status-shard-name {
	font-size: 1.125rem;
	font-weight: 600;
	color: rgb(237, 238, 240);
	margin: 0 0 0.25rem 0;
}

.greed-page .status-shard-time {
	font-size: 0.75rem;
	color: rgb(163, 163, 163);
	margin: 0;
	display: inline-flex;
	align-items: center;
}

.greed-page .status-shard-icon {
	height: 0.75rem;
	width: 0.75rem;
	margin-right: 0.25rem;
	flex-shrink: 0;
}

.greed-page .status-shard-badge {
	font-size: 0.75rem;
	display: inline-flex;
	align-items: center;
	font-weight: 500;
	padding: 0.25rem 0.5rem;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.5);
	color: rgb(212, 188, 210);
}

.greed-page .status-shard-status-icon {
	height: 0.75rem;
	width: 0.75rem;
	margin-right: 0.25rem;
	flex-shrink: 0;
}

.greed-page .status-shard-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	font-size: 0.875rem;
}

.greed-page .status-shard-label {
	font-size: 0.75rem;
	color: rgb(163, 163, 163);
	margin: 0 0 0.125rem 0;
}

.greed-page .status-shard-val {
	font-weight: 500;
	color: rgb(255, 255, 255);
	margin: 0;
	display: inline-flex;
	align-items: center;
}

.greed-page .status-shard-mini-icon {
	height: 0.75rem;
	width: 0.75rem;
	margin-right: 0.25rem;
	color: rgb(163, 163, 163);
	flex-shrink: 0;
}
