/* 88 Gold Dragon Game Integration - public styles */

.gd88-notice {
	padding: 12px 16px;
	border-radius: 6px;
	margin-bottom: 16px;
	font-size: 14px;
}
.gd88-notice-error   { background: #fdeaea; color: #9b1c1c; border: 1px solid #f3b4b4; }
.gd88-notice-success { background: #e9f9ee; color: #1c7a3d; border: 1px solid #abe6c0; }
.gd88-notice-info    { background: #eaf2fd; color: #1d4f91; border: 1px solid #b9d3f4; }

.gd88-auth-wrap {
	max-width: 420px;
	margin: 0 auto;
	padding: 32px;
	background: #12121a;
	color: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.gd88-auth-wrap h2 { margin-top: 0; color: #ffd76a; }
.gd88-field { margin-bottom: 16px; }
.gd88-field label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 13px; color: #d8d8e0; }
.gd88-field input, .gd88-field select {
	width: 100%;
	padding: 10px 12px;
	border-radius: 6px;
	border: 1px solid #33333f;
	background: #1c1c28;
	color: #fff;
	box-sizing: border-box;
}
.gd88-hint { display: block; margin-top: 4px; font-size: 11px; color: #8a8a98; }
.gd88-checkbox-field label { display: flex; align-items: center; gap: 6px; font-weight: 400; }
.gd88-checkbox-field input { width: auto; }
.gd88-submit { margin-top: 24px; }
.gd88-switch { text-align: center; font-size: 13px; color: #aaa; }
.gd88-switch a { color: #ffd76a; }

.gd88-btn {
	display: inline-block;
	padding: 10px 22px;
	border-radius: 6px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	border: none;
	font-size: 14px;
}
.gd88-btn-primary { background: linear-gradient(135deg,#ffd76a,#ff9d3d); color: #20140a; width: 100%; }
.gd88-btn-secondary { background: #2a2a38; color: #fff; }
.gd88-btn-play { background: linear-gradient(135deg,#ffd76a,#ff9d3d); color: #20140a; }

.gd88-wallet-wrap { max-width: 960px; margin: 0 auto; }
.gd88-wallet-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #12121a;
	color: #fff;
	padding: 24px;
	border-radius: 12px;
	margin-bottom: 24px;
	flex-wrap: wrap;
	gap: 16px;
}
.gd88-acct-id { display: block; font-size: 13px; color: #8a8a98; }
.gd88-balance { display: block; font-size: 28px; font-weight: 800; color: #ffd76a; }
.gd88-wallet-actions { display: flex; gap: 10px; }

.gd88-wallet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
@media (max-width: 720px) { .gd88-wallet-grid { grid-template-columns: 1fr; } }

.gd88-panel { background: #fff; border: 1px solid #e5e5ea; border-radius: 12px; padding: 20px; margin-bottom: 20px; }
.gd88-panel h3 { margin-top: 0; }

.gd88-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.gd88-table th, .gd88-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid #eee; }

.gd88-status { padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.gd88-status-active, .gd88-status-completed, .gd88-status-success { background: #e9f9ee; color: #1c7a3d; }
.gd88-status-pending, .gd88-status-process { background: #fff6e0; color: #8a6500; }
.gd88-status-locked, .gd88-status-fail, .gd88-status-rejected, .gd88-status-suspended { background: #fdeaea; color: #9b1c1c; }

.gd88-game-list-wrap .gd88-game-category { margin: 28px 0 12px; }
.gd88-game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.gd88-game-card { background: #12121a; border-radius: 10px; padding: 16px; color: #fff; text-align: center; }
.gd88-game-card-name { font-weight: 700; margin-bottom: 12px; min-height: 40px; }
.gd88-game-card-actions { display: flex; flex-direction: column; gap: 8px; }
