.showcase-wrapper {
	padding: 2rem 1rem;
	margin: 0 auto;
	max-width: 1280px;
	font-family: "Inter", "Segoe UI", system-ui, sans-serif;
	background: linear-gradient(135deg, #f8faff 0%, #f1f7ff 100%);
}
.showcase-wrapper .code-section {
	background: rgba(255, 255, 255, 0.8) !important;
	border: 2px solid #7bb8ff !important;
	border-radius: 12px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}
.showcase-wrapper .code-section:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(123, 184, 255, 0.3);
	border-color: #6bb3ff;
}
.showcase-wrapper .section-title-bar {
	background: linear-gradient(90deg, #7bb8ff, #6bb3ff);
	color: black;
	padding: 6px 12px;
	border-radius: 8px 8px 0 0;
	margin: -2px -2px 8px -2px;
	font-size: 13px;
	font-weight: 600;
	display: flex;
	align-items: center;
}
.showcase-wrapper .python-blue {
	color: #3776ab;
}
.showcase-wrapper .python-bg {
	background-color: #3776ab;
}
.showcase-wrapper pre code {
	font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
	font-size: 10px;
	line-height: 1.4;
	white-space: pre-wrap !important;
	word-break: break-word !important;
	overflow: visible !important;
	height: auto !important;
}
.showcase-wrapper .hljs {
	background: #f8f9fa !important;
	border-radius: 6px;
	padding: 10px !important;
	border: 1px solid #e9ecef;
}
.showcase-wrapper .section-header {
	background: linear-gradient(90deg, #3776ab, #2c5f8a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.showcase-wrapper .print-optimized {
	break-inside: avoid;
	page-break-inside: avoid;
}
@media print {
	.showcase-wrapper {
		padding: 2rem 1rem;
		margin: 0 auto;
		max-width: 1280px;
		background: white !important;
		print-color-adjust: exact;
		-webkit-print-color-adjust: exact;
	}
	.showcase-wrapper .code-section {
		box-shadow: none !important;
		border: 2px solid #5ba0f2 !important;
		background: white !important;
	}
	.showcase-wrapper .section-title-bar {
		background: #5ba0f2 !important;
		-webkit-print-color-adjust: exact;
		color-adjust: exact;
	}
	@page {
		size: A4 landscape;
		margin: 0.5cm;
	}
}
.showcase-wrapper .emoji {
	font-size: 1.2em;
	margin-right: 4px;
}
.showcase-wrapper .tag {
	font-size: 0.75rem;
	padding: 2px 8px;
	border-radius: 12px;
	background: linear-gradient(45deg, #3776ab, #2c5f8a);
	color: white;
	display: inline-block;
	margin-left: 8px;
}

.showcase-wrapper pre {
	white-space: pre-wrap !important;
	word-break: break-word !important;
	overflow: visible !important;
	height: auto !important;
}
.showcase-wrapper pre[class*="language-"],
.showcase-wrapper code[class*="language-"] {
	white-space: pre-wrap !important;
	word-break: break-word !important;
	overflow: visible !important;
	height: auto !important;
	max-height: none !important;
}
