* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
	min-height: 100vh;
	background: #000000;
	color: white;
	overflow: hidden;
}

.waves-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(2px);
}

.content {
	position: relative;
	z-index: 1;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	text-align: center;
}

.glass-panel {
	background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
	backdrop-filter: blur(16px) saturate(180%);
	-webkit-backdrop-filter: blur(16px) saturate(180%);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow:
		0 8px 32px 0 rgba(0, 0, 0, 0.5),
		inset 0 0 0 1px rgba(255, 255, 255, 0.05);
	padding: 3rem;
	max-width: 500px;
	width: 100%;
	transition: all 0.3s ease;
	animation: fadeIn 0.8s ease-out;
	position: relative;
	overflow: hidden;
}

.glass-panel::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(to bottom right,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0) 40%,
			rgba(255, 0, 0, 0.05) 50%,
			rgba(255, 255, 255, 0) 60%,
			rgba(255, 255, 255, 0) 100%);
	transform: rotate(30deg);
	pointer-events: none;
}

.glass-panel:hover {
	transform: translateY(-5px);
	box-shadow:
		0 12px 40px 0 rgba(0, 0, 0, 0.6),
		inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.logo {
	width: 100px;
	height: 100px;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	overflow: hidden;
}

.logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 15px;
}

h1 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: 600;
	background: #e60000;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

p {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.8);
}

.countdown-message {
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	color: rgba(255, 255, 255, 0.7);
}

.discord-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #e60000;
	color: white;
	padding: 1rem 2rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	width: 100%;
	margin-bottom: 1.5rem;
}

.discord-btn svg {
	margin-right: 0.75rem;
	width: 20px;
	height: 20px;
}

.member-count {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 1.5rem;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.member-count span {
	display: flex;
	align-items: center;
}

.member-count svg {
	margin-right: 0.5rem;
	opacity: 0.8;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 600px) {
	.glass-panel {
		padding: 2rem;
	}

	h1 {
		font-size: 1.5rem;
	}

	.logo {
		width: 80px;
		height: 80px;
	}
}