.csr-card {
	background: rgba(255,255,255,0.08);
	border-radius: 1rem;
	padding: 1rem 1.5rem;
	margin: 0 auto;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	color: #fff;
	font-family: monospace;
	word-break: break-all;
	width: 600px;
	max-width: 100vw;
	opacity: 0;
	transform: translateY(30px) scale(0.98);
	animation: cardIn 0.5s cubic-bezier(.4,2,.6,1) forwards;
}

@keyframes cardIn {
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.csr-card pre {
	background: rgba(0,0,0,0.18);
	border-radius: 0.5rem;
	padding: 0.5rem 1rem;
	font-family: 'Fira Mono', 'Consolas', 'Menlo', monospace;
	font-size: 0.68rem;
	overflow-x: auto;
	max-width: 100%;
	white-space: pre;
	margin: 0;
	text-align: left;
}
/* CSR Carousel Styles */
#csr-carousel {
	margin: 2rem auto 0 auto;
	min-width: 320px;
	max-width: 100vw;
	max-height: 340px;
	overflow-y: auto;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	position: relative;
}
.csr-card {
	background: rgba(255,255,255,0.08);
	border-radius: 1rem;
	padding: 1rem 1.5rem;
	margin: 0 auto;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	color: #fff;
	font-family: monospace;
	word-break: break-all;
	max-width: 600px;
}
#csr-carousel button {
	margin: 0 0.5rem;
	padding: 0.3rem 1rem;
	border-radius: 0.5rem;
	border: none;
	background: #2a5298;
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer;
	transition: background 0.2s;
}
#csr-carousel button:hover {
	background: #1e3c72;
}
body {
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: #fff;
	font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	margin: 0;
}
.container {
	background: rgba(0,0,0,0.4);
	padding: 2.5rem 3rem;
	border-radius: 1.5rem;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	text-align: center;
}
h1 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	letter-spacing: 2px;
}
p {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}
.logo {
			 width: 80px;
			 height: 80px;
			 margin-bottom: 1.5rem;
			 position: relative;
			 overflow: visible;
}

.logo-glimmer {
			 position: absolute;
			 top: 0;
			 left: 0;
			 width: 100%;
			 height: 100%;
			 pointer-events: none;
			 z-index: 2;
}

@keyframes glimmer {
	0% {
		transform: translateX(-100%) skewX(-20deg);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	20% {
		transform: translateX(100%) skewX(-20deg);
		opacity: 0;
	}
	100% {
		opacity: 0;
		transform: translateX(100%) skewX(-20deg);
	}
}

.logo-glimmer-effect {
	animation: glimmer 10s linear infinite;
}
@media (max-width: 600px) {
	.container {
		padding: 1.5rem 1rem;
	}
	h1 {
		font-size: 2rem;
	}
}
