* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0;
	background: #fff;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Rubik', 'Roboto', sans-serif;
}

.container-fluid {
	width: 100%;
	max-width: 480px;
	padding: 40px 30px;
}

.redirect-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 60px 50px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.icon-wrapper {
	width: 80px;
	height: 80px;
	margin: 0 auto 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #0268f9;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.icon-circle svg {
	width: 40px;
	height: 40px;
}

.countdown-wrapper {
	margin: 40px 0;
}


.countdown-circle {
	width: 100px;
	height: 100px;
	margin: 30px auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.countdown-text {
	position: absolute;
	font-size: 32px;
	font-weight: 600;
	color: #0268f9;
	font-family: 'Rubik', 'Roboto', sans-serif;
	z-index: 1;
}

.countdown-circle svg {
	transform: rotate(-90deg);
}

.countdown-circle circle {
	fill: none;
	stroke-width: 4;
}

.countdown-circle .bg {
	stroke: #e5e7eb;
}

.countdown-circle .progress {
	stroke: #0268f9;
	stroke-dasharray: 283;
	stroke-dashoffset: 0;
	stroke-linecap: round;
	transition: stroke-dashoffset 1s linear;
}

.title {
	font-size: 24px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 12px;
	line-height: 1.4;
}

.subtitle {
	font-size: 15px;
	color: #6b7280;
	margin-bottom: 40px;
	line-height: 1.5;
}

.redirect {
	font-size: 16px;
	font-family: 'Rubik', 'Roboto', sans-serif;
	display: inline-block;
	font-weight: 500;
	color: #fff;
	text-align: center;
	cursor: pointer;
	user-select: none;
	padding: 14px 32px;
	line-height: 1.5;
	border-radius: 12px;
	background: #0268f9;
	border: 0;
	transition: background-color 0.2s ease;
	text-decoration: none;
}

.redirect:hover {
	background: #0256d1;
	color: #fff;
}

.redirect:active {
	background: #0245a8;
}

.footer-text {
	font-size: 13px;
	color: #9ca3af;
	margin-top: 30px;
	line-height: 1.5;
}

a {
	text-decoration: none;
}

/* Адаптивность */
@media (max-width: 600px) {
	.container-fluid {
		padding: 20px;
	}
	
	.redirect-card {
		padding: 50px 30px;
	}
	
	.title {
		font-size: 22px;
	}
	
	.subtitle {
		font-size: 14px;
	}
	
	.redirect {
		font-size: 15px;
		padding: 12px 28px;
	}
	
	.icon-wrapper {
		width: 70px;
		height: 70px;
		margin-bottom: 30px;
	}
	
	.icon-circle {
		width: 70px;
		height: 70px;
	}
	
	.icon-circle svg {
		width: 36px;
		height: 36px;
	}
	
	.countdown-text {
		font-size: 28px;
	}
}