.page-container {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 40px 20px;
}

.content-wrapper {
	background: white;
	border-radius: 24px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
	max-width: 900px;
	margin: 0 auto;
	padding: 50px 80px;
	display: flex;
	flex-direction: column;
	gap: 35px;
}

.head {
	text-align: center;
}

.logo_p {
	font-size: 24px;
	font-weight: 800;
	color: #FF6B6B;
	margin-bottom: 12px;
}

.title {
	font-size: 36px;
	font-weight: 800;
	color: #333;
	margin-bottom: 8px;
}

.motivation {
	background: linear-gradient(135deg, #FFF5F5 0%, #FFF0E6 100%);
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	border: 2px solid #FFE4E1;
}

.motivation-text {
	font-size: 22px;
	font-weight: 600;
	color: #333;
	line-height: 1.6;
}

.highlight {
	color: #FF6B6B;
	font-weight: 800;
	font-size: 26px;
}

.test-info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.info-item {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 24px;
	text-align: center;
	transition: all 0.3s ease;
}

.info-item:hover {
	background: #e9ecef;
	transform: translateY(-2px);
}

.info-icon {
	font-size: 32px;
	margin-bottom: 10px;
}

.info-label {
	font-size: 14px;
	color: #666;
	margin-bottom: 6px;
}

.info-value {
	font-size: 18px;
	font-weight: 700;
	color: #333;
}

.checklist {
	background: #F0F7FF;
	border-radius: 12px;
	padding: 24px;
}

.checklist-title {
	font-weight: 700;
	color: #333;
	margin-bottom: 16px;
	font-size: 18px;
}

.checklist-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.checklist-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: #555;
}

.check-icon {
	color: #4CAF50;
	font-size: 18px;
}

.cta-section {
	text-align: center;
}

.start-button {
	background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
	color: white;
	border: none;
	padding: 20px 100px;
	font-size: 20px;
	font-weight: 700;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 24px rgba(255,107,107,0.25);
}

.start-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(255,107,107,0.35);
}

.live-status {
	margin-top: 16px;
	color: #666;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.live-dot {
	width: 6px;
	height: 6px;
	background: #4CAF50;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

@media (max-width: 768px) {
	.content-wrapper {
		padding: 40px 30px;
		gap: 25px;
	}

	.title {
		font-size: 30px;
	}

	.motivation-text {
		font-size: 20px;
	}

	.highlight {
		font-size: 22px;
	}

	.test-info {
		gap: 12px;
	}

	.info-item {
		padding: 20px 12px;
	}

	.checklist-grid {
		grid-template-columns: 1fr 1fr;
	}

	.start-button {
		padding: 18px 60px;
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.content-wrapper {
		padding: 30px 20px;
	}

	.test-info {
		grid-template-columns: 1fr;
	}

	.checklist-grid {
		grid-template-columns: 1fr;
	}
}