.asa-app {
	--asa-border: #d7dee8;
	--asa-ink: #142033;
	--asa-muted: #64748b;
	--asa-accent: #0f766e;
	--asa-bg: #f8fafc;
	color: var(--asa-ink);
	font-family: inherit;
	margin: 24px 0;
}

.asa-panel,
.asa-roster-card {
	background: #fff;
	border: 1px solid var(--asa-border);
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, .06);
	margin-bottom: 16px;
	padding: 18px;
}

.asa-kicker,
.asa-muted {
	color: var(--asa-muted);
	font-size: 13px;
}

.asa-current-player h2 {
	font-size: clamp(28px, 5vw, 54px);
	line-height: 1.05;
	margin: 6px 0 10px;
}

.asa-player-card {
	align-items: center;
	display: flex;
	gap: 20px;
}

.asa-player-photo-wrap {
	border: 1px solid var(--asa-border);
	border-radius: 8px;
	flex: 0 0 150px;
	height: 150px;
	overflow: hidden;
	width: 150px;
}

.asa-player-photo {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.asa-live-player {
	background: #08111f;
	color: #fff;
	margin: 0;
	min-height: 80vh;
	padding: clamp(24px, 6vw, 72px);
}

.asa-live-shell {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 70vh;
}

.asa-live-photo-wrap {
	border: 2px solid rgba(255, 255, 255, .24);
	border-radius: 16px;
	height: min(34vh, 320px);
	margin-bottom: 24px;
	overflow: hidden;
	width: min(34vh, 320px);
}

.asa-live-photo {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.asa-live-player .asa-kicker {
	color: #5eead4;
	font-size: clamp(16px, 2vw, 26px);
	font-weight: 700;
	text-transform: uppercase;
}

.asa-live-player h1 {
	color: #fff;
	font-size: clamp(48px, 11vw, 150px);
	letter-spacing: 0;
	line-height: .95;
	margin: 16px 0;
	max-width: 1200px;
}

.asa-live-meta {
	color: #cbd5e1;
	font-size: clamp(18px, 2.5vw, 36px);
}

.asa-live-bid {
	color: #facc15;
	font-size: clamp(42px, 8vw, 110px);
	font-weight: 800;
	line-height: 1;
	margin-top: 42px;
}

.asa-live-team {
	color: #fff;
	font-size: clamp(24px, 4vw, 56px);
	font-weight: 700;
	margin-top: 14px;
}

.asa-meta,
.asa-bid-line {
	color: var(--asa-muted);
	font-size: 16px;
	margin-top: 8px;
}

.asa-bid-form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.asa-bid-form select,
.asa-bid-form input {
	border: 1px solid var(--asa-border);
	border-radius: 6px;
	min-height: 42px;
	padding: 8px 10px;
}

.asa-bid-form button {
	background: var(--asa-accent);
	border: 0;
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	font-weight: 700;
	min-height: 42px;
	padding: 8px 14px;
}

.asa-bid-form button:disabled {
	cursor: wait;
	opacity: .55;
}

.asa-message {
	margin: 10px 0 0;
}

.asa-message.is-error {
	color: #b91c1c;
}

.asa-history-row {
	align-items: center;
	border-bottom: 1px solid var(--asa-border);
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
}

.asa-roster-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.asa-roster-card h3 {
	margin: 0 0 6px;
}

.asa-roster-card ul {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
}

.asa-roster-card li {
	align-items: center;
	border-top: 1px solid var(--asa-border);
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
}

.asa-table {
	border-collapse: collapse;
	width: 100%;
}

.asa-table th,
.asa-table td {
	border-bottom: 1px solid var(--asa-border);
	padding: 10px;
	text-align: left;
}

.asa-table th {
	background: var(--asa-bg);
}

.asa-team-hero {
	align-items: center;
	background: #fff;
	border: 1px solid var(--asa-border);
	border-radius: 8px;
	display: flex;
	gap: 18px;
	margin-bottom: 16px;
	padding: 20px;
}

.asa-team-logo {
	border: 1px solid var(--asa-border);
	border-radius: 8px;
	height: 96px;
	object-fit: contain;
	padding: 8px;
	width: 96px;
}

.asa-team-hero h2 {
	font-size: clamp(30px, 5vw, 64px);
	line-height: 1;
	margin: 4px 0 8px;
}

.asa-team-stats-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	margin-bottom: 16px;
}

.asa-team-stats-grid div {
	background: #fff;
	border: 1px solid var(--asa-border);
	border-radius: 8px;
	padding: 16px;
}

.asa-team-stats-grid span {
	color: var(--asa-muted);
	display: block;
	font-size: 13px;
}

.asa-team-stats-grid strong {
	display: block;
	font-size: 28px;
	margin-top: 6px;
}

@media (max-width: 640px) {
	.asa-player-card {
		align-items: flex-start;
		flex-direction: column;
	}

	.asa-player-photo-wrap {
		flex-basis: auto;
		height: 220px;
		width: 100%;
	}

	.asa-bid-form {
		display: grid;
	}

	.asa-bid-form select,
	.asa-bid-form input,
	.asa-bid-form button {
		width: 100%;
	}
}
