/**
 * Arcade Game Hub - 插件前端通用样式（被主题覆盖时以主题为准）
 * 覆盖：播放器、记分表单、排行榜、登录注册、会员中心、兑换中心、投稿表单、通知、按钮。
 */

.agh-btn {
	display: inline-block;
	padding: 9px 20px;
	border: 0;
	border-radius: 8px;
	background: #12b76a;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background .15s ease, transform .1s ease;
}
.agh-btn:hover,
.agh-btn:focus {
	background: #0ea25c;
	color: #fff;
}
.agh-btn--block {
	width: 100%;
	text-align: center;
}
.agh-btn--ghost {
	background: transparent;
	color: #232aa7;
	border: 1px solid #c9ccfc;
}
.agh-btn--ghost:hover {
	background: #f1f2ff;
	color: #232aa7;
}
.agh-btn[disabled] {
	opacity: .55;
	cursor: not-allowed;
}

.agh-notice {
	padding: 10px 14px;
	border-radius: 8px;
	margin: 12px 0;
	font-size: 14px;
}
.agh-notice--error { background: #fdecea; color: #b32318; }
.agh-notice--success { background: #e6f7ee; color: #0d7a43; }
.agh-notice--info { background: #eaf2fe; color: #175cd3; }

/* 播放器 */
.agh-player { margin-bottom: 28px; }
.agh-player__frame {
	position: relative;
	width: 100%;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
}
.agh-player__frame iframe {
	display: block;
	width: 100%;
	height: 480px;
	border: 0;
}
.agh-player__controls { margin-top: 8px; color: #667085; font-size: 14px; }
.agh-player__fullscreen {
	position: absolute;
	right: 12px;
	bottom: 12px;
	background: rgba(0,0,0,.55);
	color: #fff;
	border: 0;
	border-radius: 6px;
	padding: 6px 10px;
	cursor: pointer;
	font-size: 13px;
}

/* 记分表单 */
.agh-score-form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: flex-end;
	background: #f8fafc;
	border: 1px solid #eef2f6;
	border-radius: 12px;
	padding: 14px;
	margin: 14px 0;
}
.agh-score-form .agh-field { flex: 1 1 150px; margin: 0; }
.agh-score-form label { display: block; font-size: 13px; color: #475467; margin-bottom: 4px; }
.agh-score-form input {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #d0d5dd;
	border-radius: 6px;
	font-size: 15px;
}
.agh-score-form .agh-btn { flex: 0 0 auto; }
.agh-score-msg { font-size: 14px; margin-top: 6px; }

/* 排行榜 */
.agh-leaderboard { background: #fff; border: 1px solid #eef2f6; border-radius: 12px; overflow: hidden; }
.agh-leaderboard__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border-bottom: 1px solid #eef2f6;
}
.agh-leaderboard__title { font-size: 16px; font-weight: 700; margin: 0; }
.agh-leaderboard__range { font-size: 13px; color: #98a2b3; }
.agh-leaderboard table { width: 100%; border-collapse: collapse; }
.agh-leaderboard th {
	text-align: left;
	font-size: 12px;
	text-transform: uppercase;
	color: #98a2b3;
	padding: 8px 16px;
	border-bottom: 1px solid #eef2f6;
}
.agh-leaderboard td { padding: 10px 16px; border-bottom: 1px solid #f8fafc; font-size: 14px; }
.agh-leaderboard tr.is-me td { background: #eefbf4; }
.agh-rank {
	display: inline-flex;
	width: 26px; height: 26px;
	align-items: center; justify-content: center;
	border-radius: 6px;
	background: #f2f4f7;
	color: #475467;
	font-weight: 700;
	font-size: 13px;
}
.agh-rank--1 { background: #fdf0dc; color: #b54708; }
.agh-rank--2 { background: #eef2f6; color: #475467; }
.agh-rank--3 { background: #f8e5cb; color: #9a5b13; }

/* 登录注册 */
.agh-auth {
	max-width: 420px;
	margin: 24px auto;
	background: #fff;
	border: 1px solid #eef2f6;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 4px 24px rgba(16,24,40,.04);
}
.agh-auth__title { margin: 0 0 6px; font-size: 22px; }
.agh-auth__bonus {
	display: inline-block;
	background: #eefbf4;
	color: #0d7a43;
	border-radius: 999px;
	padding: 4px 12px;
	font-size: 13px;
	margin: 6px 0 14px;
}
.agh-auth__form { display: flex; flex-direction: column; gap: 14px; }
.agh-field { display: block; }
.agh-field__label { display: block; font-size: 14px; color: #475467; margin-bottom: 6px; font-weight: 500; }
.agh-field input,
.agh-field select,
.agh-field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	font-size: 15px;
	background: #fff;
	box-sizing: border-box;
}
.agh-field textarea { resize: vertical; }
.agh-check { display: flex; gap: 8px; align-items: center; font-size: 14px; color: #475467; }
.agh-auth__alt { margin-top: 16px; font-size: 14px; color: #667085; text-align: center; }
.agh-auth__alt a { color: #232aa7; font-weight: 600; text-decoration: none; }

/* 会员中心 */
.agh-center { display: flex; flex-direction: column; gap: 20px; }
.agh-center__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.agh-center__title { margin: 0; font-size: 24px; }
.agh-center__sub { margin: 2px 0 0; color: #667085; }
.agh-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 14px;
}
.agh-stat {
	background: #fff;
	border: 1px solid #eef2f6;
	border-radius: 12px;
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.agh-stat__value { font-size: 26px; font-weight: 800; color: #12b76a; }
.agh-stat__label { color: #667085; font-size: 13px; }
.agh-panel {
	background: #fff;
	border: 1px solid #eef2f6;
	border-radius: 12px;
	padding: 4px 0 8px;
	overflow: hidden;
}
.agh-panel__title { padding: 12px 16px; margin: 0; border-bottom: 1px solid #eef2f6; font-size: 16px; }
.agh-table { width: 100%; border-collapse: collapse; }
.agh-table th {
	text-align: left;
	font-size: 12px;
	color: #98a2b3;
	text-transform: uppercase;
	padding: 10px 16px;
	border-bottom: 1px solid #eef2f6;
}
.agh-table td { padding: 10px 16px; border-bottom: 1px solid #f8fafc; font-size: 14px; }
.agh-pos { color: #12b76a; font-weight: 600; }
.agh-neg { color: #b32318; font-weight: 600; }
.agh-empty { color: #98a2b3; padding: 14px 16px; margin: 0; }
.agh-mygames { list-style: none; margin: 0; padding: 8px 16px; }
.agh-mygames li {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #f8fafc;
	font-size: 15px;
}
.agh-mygames li:last-child { border-bottom: 0; }
.agh-status { font-size: 12px; border-radius: 999px; padding: 2px 10px; white-space: nowrap; }
.agh-status--publish { background: #eefbf4; color: #0d7a43; }
.agh-status--pending { background: #fdf0dc; color: #b54708; }
.agh-status--draft { background: #f2f4f7; color: #475467; }

/* 兑换中心 */
.agh-rewards__title { font-size: 22px; margin: 0 0 4px; }
.agh-rewards__balance { color: #475467; margin: 0 0 18px; }
.agh-rewards__balance strong { color: #12b76a; font-size: 20px; }
.agh-rewards__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 16px;
}
.agh-reward {
	background: #fff;
	border: 1px solid #eef2f6;
	border-radius: 12px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.agh-reward__name { margin: 0; font-size: 17px; }
.agh-reward__desc { color: #667085; font-size: 14px; margin: 0; flex: 1; }
.agh-reward__price { font-size: 18px; font-weight: 700; color: #232aa7; margin: 0; }
.agh-redeem__result { font-size: 13px; min-height: 18px; }
.agh-redeem__result.ok { color: #0d7a43; }
.agh-redeem__result.err { color: #b32318; }

/* 勋章墙 */
.agh-medals__title { font-size: 22px; margin: 0 0 4px; }
.agh-medals__empty { color: #667085; padding: 24px 0; }
.agh-medals__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
	margin-top: 18px;
}
.agh-medal {
	background: #fff;
	border: 1px solid #eef2f6;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	transition: transform .2s ease, box-shadow .2s ease;
}
.agh-medal:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(16,24,40,.08); }
.agh-medal__icon { font-size: 40px; line-height: 1; }
.agh-medal__name { margin: 0; font-size: 16px; }
.agh-medal__desc { margin: 0; color: #667085; font-size: 13px; }
.agh-medal__meta { margin: 4px 0 0; color: #98a2b3; font-size: 12px; }

/* 投稿 / 需要登录 */
.agh-submit { max-width: 640px; }
.agh-submit__title { font-size: 22px; margin: 0 0 4px; }
.agh-submit__hint { color: #667085; margin: 0 0 18px; }
.agh-submit__form { display: flex; flex-direction: column; gap: 14px; }
.agh-submit__form .agh-field { margin: 0; }
.agh-need-login { text-align: center; padding: 40px 16px; color: #475467; }
.agh-need-login .agh-btn { margin-top: 12px; }

/* 积分徽章 */
.agh-points-badge {
	display: inline-flex;
	align-items: center;
	background: #12b76a;
	color: #fff;
	border-radius: 999px;
	padding: 3px 12px;
	font-size: 13px;
	font-weight: 700;
}

/* 响应式 */
@media (max-width: 640px) {
	.agh-player__frame iframe { height: 300px; }
	.agh-stats { grid-template-columns: 1fr 1fr; }
	.agh-auth { padding: 20px; }
}