* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
	background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
	color: #e0e0e0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.container {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}

.content {
	background: rgba(26, 26, 46, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(79, 134, 247, 0.2);
	border-radius: 20px;
	padding: 3rem 2rem;
	max-width: 600px;
	width: 100%;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.logo {
	max-width: 120px;
	height: auto;
	margin-bottom: 2rem;
	filter: drop-shadow(0 4px 8px rgba(79, 134, 247, 0.3));
}

h1 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(79, 134, 247, 0.5);
}

.redirect-url {
	display: inline-block;
	font-size: 1.2rem;
	color: #4f86f7;
	text-decoration: none;
	padding: 0.5rem 1rem;
	background: rgba(79, 134, 247, 0.1);
	border-radius: 8px;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
	word-break: break-all;
}

.redirect-url:hover {
	background: rgba(79, 134, 247, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(79, 134, 247, 0.3);
}

.countdown-container {
	margin: 2rem 0;
}

.countdown {
	font-size: 4rem;
	font-weight: 700;
	color: #4f86f7;
	text-shadow: 0 0 20px rgba(79, 134, 247, 0.6);
	animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.countdown-text {
	font-size: 1rem;
	color: #b0b0b0;
	margin-top: 0.5rem;
}

.button-group {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.btn {
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: 500;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
}

.btn-cancel {
	background: rgba(220, 53, 69, 0.2);
	color: #ff6b7a;
	border: 1px solid rgba(220, 53, 69, 0.4);
}

.btn-cancel:hover {
	background: rgba(220, 53, 69, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.btn-auto {
	background: rgba(79, 134, 247, 0.2);
	color: #4f86f7;
	border: 1px solid rgba(79, 134, 247, 0.4);
}

.btn-auto:hover {
	background: rgba(79, 134, 247, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(79, 134, 247, 0.4);
}

.btn:active {
	transform: translateY(0);
}

.footer {
	margin-top: auto;
	padding: 2rem 0 1rem;
	text-align: center;
	font-size: 0.9rem;
	color: #808080;
}

.footer a {
	color: #4f86f7;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer a:hover {
	color: #6fa3ff;
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
	.content {
		padding: 2rem 1.5rem;
	}

	h1 {
		font-size: 1.5rem;
	}

	.redirect-url {
		font-size: 1rem;
	}

	.countdown {
		font-size: 3rem;
	}

	.button-group {
		flex-direction: column;
		width: 100%;
	}

	.btn {
		width: 100%;
	}
}
