.anitche-sg-trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	border-bottom: 1.5px solid #111;
	color: #111;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	padding: 4px 0;
	margin: 10px 0 20px;
}

.anitche-sg-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	z-index: 99998;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}
.anitche-sg-overlay.open { opacity: 1; pointer-events: auto; }

.anitche-sg-modal {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0.96);
	width: 520px;
	max-width: 92vw;
	max-height: 85vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 16px;
	z-index: 99999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.anitche-sg-modal.open {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}

.anitche-sg-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid #eee;
	position: sticky;
	top: 0;
	background: #fff;
}
.anitche-sg-modal-header h3 { margin: 0; font-size: 18px; font-weight: 800; color: #111; }
.anitche-sg-close {
	width: 32px; height: 32px;
	border-radius: 50%;
	border: 1.5px solid #111;
	background: #fff;
	font-size: 16px;
	cursor: pointer;
}

.anitche-sg-modal-body { padding: 20px 24px 28px; }

.anitche-sg-intro { color: #666; font-size: 14px; margin: 0 0 16px; }

.anitche-sg-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.anitche-sg-table th,
.anitche-sg-table td {
	border: 1px solid #e2e2e2;
	padding: 10px 12px;
	text-align: center;
}
.anitche-sg-table th { background: #f6f6f6; font-weight: 700; }
