* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 背景层设置 */
.background-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 2s ease-in-out;
	z-index: 1;
}

.bg-layer.active {
	opacity: 1;
	z-index: 2;
}

/* 毛玻璃卡片 */
.glass-card {
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	padding: 40px 50px;
	width: 90%;
	max-width: 500px;
	text-align: center;
	position: relative;
	overflow: hidden;
	z-index: 10;
}

.glass-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: rgba(255, 255, 255, 0.1);
	transform: rotate(30deg);
	z-index: -1;
}

h1 {
	color: #333;
	font-size: 2.5rem;
	margin-bottom: 30px;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.password-display {
	background: rgba(255, 255, 255, 0.4);
	border-radius: 12px;
	padding: 15px;
	margin: 25px 0;
	font-size: 1.5rem;
	letter-spacing: 3px;
	color: #333;
	display: inline-block;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.buttons-container {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.btn {
	padding: 14px 30px;
	border-radius: 50px;
	border: none;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-copy {
	background: linear-gradient(45deg, #6a11cb, #2575fc);
	color: white;
}

.btn-visit {
	background: linear-gradient(45deg, #00b09b, #96c93d);
	color: white;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn:active {
	transform: translateY(1px);
}

/* 复制提示 */
.notification {
	position: fixed;
	top: 30px;
	left: 50%;
	transform: translateX(-50%) translateY(-100px);
	background: rgba(40, 40, 40, 0.9);
	color: white;
	padding: 15px 30px;
	border-radius: 50px;
	font-size: 1.1rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	gap: 10px;
	z-index: 1000;
	transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification.show {
	transform: translateX(-50%) translateY(0);
}

/* 响应式设计 */
@media (max-width: 600px) {
	.glass-card {
		padding: 30px 20px;
		width: 95%;
	}

	h1 {
		font-size: 2rem;
	}

	.buttons-container {
		flex-direction: column;
		gap: 15px;
	}

	.btn {
		width: 100%;
		justify-content: center;
	}
}