@import url("https://fonts.googleapis.com/css2?family=Trade+Winds&family=Keania+One&display=swap");

body {
	margin: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background: radial-gradient(circle, #0d0d0d 20%, #222222 50%, #000000);
	color: #ffffff;
	font-family: "Trade Winds", serif;
	user-select: none;
	position: relative;
	text-align: center;
}

pre,
p,
.notice {
	position: relative;
	z-index: 1;
}

pre {
	margin: 0;
	padding: 10px;
	font-family: "Keania One", serif;
	font-size: clamp(50px, 10vw, 90px);
	letter-spacing: 4px;
	border-bottom: 3px solid #ffffff;
	opacity: 0;
	transform: scale(0.8);
	animation: fadeInScale 1.8s ease-out forwards;
	transition: transform 0.5s ease-in-out;
	filter: drop-shadow(0px 0px 10px #e7e7e7);
	max-width: 90%;
}

p {
	font-size: clamp(14px, 2vw, 18px);
	color: #c9c9c9;
	line-height: 1.5;
	opacity: 0;
	animation: slideInFade 2.2s ease-out forwards 0.6s;
	max-width: 90%;
}
#members {
	font-size: clamp(14px, 2vw, 18px);
	color: #c9c9c9;
	opacity: 0;
	animation: slideInFade 2.2s ease-out forwards 0.6s;
	max-width: 90%;
}
button {
	background-color: #f1f1f1de;
	color: #333333;
	border: none;
	padding: 5px 10px;
	font-size: 14px;
	font-family: "Keania One", serif;
	letter-spacing: 2px;
	cursor: pointer;
	border-radius: 5px;
	opacity: 0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s ease, transform 0.3s ease;
	animation: slideInFade 2.0s ease-out forwards 1.2s;
	display: inline-block;
	width: 240px;
}

button:hover {
	background-color: #3e3e3e;
	color: #ffffff;
	transform: translateY(-2px);
}

.stars {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
}

.star {
	position: absolute;
	background-color: white;
	border-radius: 50%;
	animation: flash 2s infinite alternate;
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
	z-index: -1;
}

.shooting-star {
	position: absolute;
	background-color: white;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
	z-index: -1;
}

.notice {
	margin: 30px;
	max-width: 80%;
	border-radius: 20px;
	background: #1f1f1fa1;
	font-family: "Rethink Sans", serif;
	padding: 20px;
	font-size: clamp(14px, 2vw, 18px);
	color: #bdbdbd;
	line-height: 1.5;
	backdrop-filter: blur(30px);
	animation: slideInFade 2.2s ease-out forwards 0.6s;
	position: relative;
	opacity: 0;
	max-height: 100%;
	overflow-y: auto;
	word-wrap: break-word;
	white-space: normal;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	scroll-behavior: smooth;
	user-select: text;
}

.crypto {
	text-align: center;
	color: #c9c9c9;
	text-decoration: none;
	font-family: "Keania One", serif;
	letter-spacing: 1px;
	transition: color 0.3s ease;
	font-size: clamp(14px, 2vw, 16px);
}

.crypto:hover {
	color: #fafafa;
	text-decoration: underline;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #1f1f1f;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #747474, #5a5a5a);
	border-radius: 10px;
	border: 2px solid #1f1f1f;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #ffffff, #e7e7e7);
}

@keyframes fadeInScale {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideInFade {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes shoot {
	0% {
		transform: translate(0, 0);
		opacity: 1;
	}
	100% {
		transform: translate(100vw, 100vh);
		opacity: 0;
	}
}

@keyframes flash {
	0% {
		opacity: 0.3;
	}
	100% {
		opacity: 1;
	}
}

@media (max-width: 768px) {
	pre {
		font-size: clamp(35px, 10vw, 70px);
		margin-top: 10px;
	}

	p {
		font-size: clamp(12px, 4vw, 16px);
	}
	.crypto  {
		font-size: clamp(12px, 4vw, 16px);
	}

	button {
		font-size: 11px;
		max-width: 170px;
	}
}
