* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
	background: linear-gradient(135deg, #fee600 0%, #ffd700 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.container-redirect {
	background: white;
	border-radius: 20px;
	padding: 40px;
	max-width: 500px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.container-static {
	background: white;
	border-radius: 20px;
	padding: 40px;
	max-width: 100vh;
	text-align: justify;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.content {
	white-space: pre-line;
}

.logo {
	width: 120px;
	height: 120px;
	object-fit: contain;
	margin: 0 auto 20px;
	display: block;
}

h1 {
	color: #111827;
	font-size: 24px;
	margin-bottom: 10px;
}

p {
	color: #6b7280;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 30px;
}

.spinner {
	border: 4px solid #f3f4f6;
	border-top: 4px solid #fee600;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.btn {
	display: block;
	background: #fee600;
	color: #111827;
	padding: 14px 32px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	margin-top: 20px;
	transition: transform 0.2s;
}

.btn:hover {
	transform: scale(1.05);
}
