/* IGNITE THE MIC Core — Base Styles */

.glass-panel {
	background: var(--itm-bg-card, #fff);
	border: 1px solid var(--itm-border, rgba(0, 0, 0, 0.08));
	border-radius: var(--itm-radius, 12px);
	padding: 24px;
	box-shadow: var(--itm-shadow, 0 4px 24px rgba(0, 0, 0, 0.06));
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
	border: none;
	transition: all 0.2s;
	text-decoration: none;
}

.btn-primary {
	background: var(--itm-accent, #c70000);
	color: #fff;
	box-shadow: 0 4px 14px rgba(var(--itm-accent-rgb, 199, 0, 0), 0.3);
}

.btn-outline {
	background: transparent;
	border: 1px solid var(--itm-border, rgba(0, 0, 0, 0.12));
	color: var(--itm-text, #1a1a1a);
}

.btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.btn:hover { opacity: 0.92; transform: translateY(-1px); }

.itm-site-notice {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: var(--itm-accent, #c70000);
	color: #fff;
	padding: 10px 20px;
	text-align: center;
	z-index: 99999;
	font-size: 0.9rem;
}

.itm-notice-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer;
	margin-left: 10px;
}

.itm-hashtag { color: var(--itm-accent, #c70000); font-weight: 500; }
