body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	max-width: 600px;
	margin: 50px auto;
	padding: 20px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	box-sizing: border-box;
}

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

h1 {
	color: #333;
	margin-bottom: 10px;
	font-size: 2rem;
}

.subtitle {
	color: #666;
	margin-bottom: 30px;
	font-size: 1.1rem;
}

.info-box {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 20px;
	margin: 30px 0;
	text-align: left;
}

.info-box h3 {
	margin-top: 0;
	color: #495057;
	font-size: 1.1rem;
}

.info-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0;
	padding: 8px 0;
	border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
	border-bottom: none;
}

.info-label {
	font-weight: 600;
	color: #495057;
}

.info-value {
	font-family: 'Courier New', monospace;
	font-size: 0.9rem;
	color: #007bff;
	background: rgba(0, 123, 255, 0.1);
	padding: 4px 8px;
	border-radius: 4px;
}

.test-button {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	color: white;
	border: none;
	padding: 15px 30px;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 20px 0;
}

.test-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
}

.test-button:active {
	transform: translateY(0);
}

.result {
	margin: 20px 0;
	padding: 15px;
	border-radius: 6px;
	font-weight: 500;
	display: none;
}

.result.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	display: block;
}

.footer {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #e9ecef;
	color: #6c757d;
	font-size: 0.9rem;
}

code {
	background: #f8f9fa;
	padding: 2px 6px;
	border-radius: 3px;
	font-family: 'Courier New', monospace;
	font-size: 0.85rem;
}

@media (max-width: 600px) {
	body {
		margin: 20px auto;
		padding: 10px;
	}

	.container {
		padding: 20px;
	}

	h1 {
		font-size: 1.5rem;
	}

	.info-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
}
