* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior:smooth
}

body {
	font-family: 'Roboto', sans-serif;
	background: #0f0f1a;
	color: white;
	min-height: 100vh;
	overflow-y: scroll;
	scrollbar-color: #9900bb #1a1a2e;
}
body::-webkit-scrollbar { width: 12px; }
body::-webkit-scrollbar-track { background: #1a1a2e; }
body::-webkit-scrollbar-thumb { background: #9900bb; border-radius: 6px; }

/* ---OTHER PAGES SETUP--- */

.page {
	display: none;
	min-height: calc(100vh - 60px);
	flex-direction: column;
}

.page.active-page {
	display: flex;
}

/* ---BACKGROUND--- */

.bg-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
	filter: blur(5px);
	pointer-events: none;
	transition: opacity 0.6s ease;
}

.bg-video-default {
	opacity: 1;
}

.bg-video-hover {
	opacity: 0;
	z-index: -2;
}

/* ---HEADER--- */

.header-text {
	position: sticky;
	top: 20vh;
	margin: 35vh auto 0;
	width: 90%;
	text-align: center;
	z-index: -1;
	background: transparent;
}

.header-text .tagline {
	font-family: 'Orbitron', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: 1rem;
	opacity: 0.7;
}

.header-text h1 {
	font-family: 'Orbitron', sans-serif;
	font-size: clamp(3rem, 12vw, 6rem);
	font-weight: 900;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin: 0.5rem 0;
	line-height: 1.1;
}

.header-text h1 .meow {
	color: #ffffff;
	filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6))
			drop-shadow(0 0 40px rgba(200, 200, 255, 0.4));
}

.header-text h1 .smp {
	background: linear-gradient(180deg, rgba(210, 145, 245, 1) 0%, rgba(110, 40, 165, 1) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	filter: drop-shadow(0 0 20px rgba(155, 70, 215, 0.7))
	drop-shadow(0 0 40px rgba(185, 110, 230, 0.5))
	drop-shadow(0 0 60px rgba(140, 50, 195, 0.3));
}

.header-text h1 .meow,
.header-text h1 .smp {
	display: inline-block;
	margin-right: 0.3em;
}

/* ------ */

.arrow-down {
	text-align: center;
	margin-top: 24rem;
	font-size: 3rem;
	color: white;
	opacity: 1;
	visibility: visible;
	animation:animate 2s linear infinite;
	transition: opacity 0.2s ease-in-out;
}

.arrow-down.remove {
	opacity: 0;
}

@keyframes animate{
	0%{
		transform: translateY(0px);
	}
	50%{
		transform: translateY(10px);
	}
	100%{
		transform: translateY(0px);
	}
}

/* ---ADDRESS--- */

.address-info {
	display: flex;
	gap: 16px;
	position: absolute;
	top: 47%;
	left: 50%;
	transform: translate(-52.5%, 525%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.address-info.show {
	opacity: 1;
}

.ip-address, .port-address {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 80px;
	padding-left: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
	background: #0f0f1a;
	border: 2px outset #303040;
	border-radius: 10px;
}

.ip-address h5, .port-address h5 {
	font-size: 0.73rem;
	font-weight: 500;
	padding-bottom: 5px;
}

.ip-address p, .port-address p {
	font-weight: 800;
}

.copy-btn {
	position: absolute;
	font-size: 1.3rem;
	line-height: 1;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	padding: 6px 10px;
	border-radius: 30px;
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.copy-btn:hover {
	background: #242424;
}

.copy-btn.copied {
	color: #7CFC9A;
}
}

.java-bedrock-support-info {
	flex: 1;
	background: green;
	padding-right: 20px;
	padding-left: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
	background: #0f0f1a;
	border: 2px outset #303040;
	border-radius: 10px;
}

.java-bedrock-support-info h5 {
	padding-bottom: 5px;
}

.java-bedrock-support-info p {
	font-size: 0.73rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	padding-bottom: 5px;
	padding-left: 26px;
}

/* ---FOOTER--- */

.footer {
	width: 100%;
	background: rgba(10, 10, 15, 0.95);
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 2px 3% 2px 0px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	color: white;
	box-sizing: border-box;
	min-height: 60px;
	margin-top: auto;
}

.footer-links {
	display: flex;
	gap: 12px;
	justify-self: start;
}

.rights-btn {
	background: #22232b;
	color: white;
	padding: 9px 18px;
	border-radius: 8px;
	border: none;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
}

.adminlogin-btn {
	background: transparent;
	padding: 25px 25px;
	border: none;
}

.rights-btn:hover {
	background: #333541;
	transform: translateY(-3px);
}

.footer-bottom {
	justify-self: center;
	text-align: center;
	color: #888;
	font-size: 14px;
}

.footer-bottom #made {
	font-size: 11px;
	margin-bottom: 3px;
}

.footer-bottom p {
	margin: 0;
}

.footer-socials {
	display: flex;
	gap: 14px;
	justify-self: end;
}

.socialmedia-btn {
	width: 40px;
	height: 40px;
	background: #22232b;
	border-radius: 50%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
	cursor: pointer;
}

.socialmedia-btn img {
	width: 25px;
	height: 25px;
}

.socialmedia-btn:hover {
	background: #46464F;
}
