@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Exo+2&display=swap');

:root {
	--sisucraft-main: #008170;
	--sisucraft-soft: #008170;
	--sisucraft-bg: #031317;
	--sisucraft-card: rgba(5, 24, 28, 0.8);
	--move-x: 0deg;
	--move-y: 0deg;
	--transition: .28s cubic-bezier(.05, .5, 0, 1);
}

body, html {
	height: 100%;
	margin: 0;
	background: var(--sisucraft-bg);
	overflow: hidden;
}

body {
	display: flex;
	flex-direction: column;
}

.copyTooltip {
	font-family: 'Exo 2', sans-serif;
	border: 2px solid var(--sisucraft-main);
	border-radius: 6px;
	z-index: 5;
	padding: 2px;
	margin-top: 10px;
	color: white;
	width: 130px;
	left: 0; 
	right: 0; 
	margin-left: auto; 
	margin-right: auto; 
	position: fixed;
	top: 8px;
    transition: opacity 1s ease-out;
    opacity: 0;
	text-align: center;
}

.logo {
	font-family: 'Bungee', sans-serif;
	font-size: min(7em, 16vw);
	line-height: 1;
	text-align: center;
	margin: 0;
	color: var(--sisucraft-main);
}

.info {
   font-family: 'Exo 2', sans-serif;
   font-size: min(1.8em, 3.3vw);
   color: white;
   padding: 4px 0 4px 0;
}

.status-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 4px;
}

.status {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Exo 2', sans-serif;
	font-size: clamp(14px, 0.95vw, 19px);
	line-height: 1.2;
	color: #f2f7f6;
	background: transparent;
	border: 1px solid rgba(0, 129, 112, 0.95);
	box-shadow: none;
	padding: 5px 14px 6px;
	margin-top: 0;
	border-radius: 15px;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.7);
	text-transform: none;
	letter-spacing: 0;
}

.status-dot {
	display: block;
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #00d39e;
	box-shadow: 0 0 10px rgba(0, 211, 158, 0.8);
}

.status-text {
	white-space: nowrap;
}

.status.offline .status-dot {
	background: #808b8a;
	box-shadow: none;
}

.ip-inline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Exo 2', sans-serif;
	font-size: clamp(14px, 0.95vw, 19px);
	line-height: 1.2;
	color: #f2f7f6;
	background: transparent;
	border: 1px solid rgba(0, 129, 112, 0.95);
	border-radius: 15px;
	padding: 5px 14px 6px;
	text-transform: none;
	letter-spacing: 0;
	cursor: pointer;
}

.ip-inline img {
	width: 18px;
	filter: brightness(0) saturate(100%) invert(39%) sepia(17%) saturate(3095%) hue-rotate(130deg) brightness(92%) contrast(102%);
}

.links img + img {
	margin-left: 5px;
}

.links {
	display: flex;
	justify-content: center;
}

.links img {
	width: 42px;
	filter: brightness(0) saturate(100%) invert(39%) sepia(17%) saturate(3095%) hue-rotate(130deg) brightness(92%) contrast(102%);
	padding-top: 5px;
}

.layers {
	perspective: 1000px;
	overflow: hidden;
	position: fixed;
	inset: 0;
	min-height: 100vh;
	z-index: 0;
}

.layers__container {
	height: 100vh;
	min-height: 100vh;
	position: relative;
	z-index: 1;

	transform-style: preserve-3d;
	transform: rotateX(var(--move-y)) rotateY(var(--move-x));
	will-change: transform;
	transition: transform var(--transition);
}

.scroll {
	height: 100%;
}

.layers__item {
	position: absolute;
	inset: -5vw;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.layer-1 {
	transform: translateZ(-55px) scale(1.06);
	pointer-events: none;
}

.layer-2 {
	transform: translateZ(80px) scale(.88);
	pointer-events: none;
}

.layer-3{
	--move-x: 0deg;
    --move-y: 0deg;
	inset: 0;
	align-items: flex-start;
	padding-top: 4px;
}

.hero-content {
	transform: translateZ(120px) scale(0.78);
}

.layer-4 {
	transform: translateZ(80px) scale(.95);
	pointer-events: none;
}

.layer-5 {
	transform: translateX(-14vw) translateZ(300px) scale(1.1);
	pointer-events: none;
}

.hero-content {
	font-size: calc(var(--index) * 4.9);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: calc(var(--index) * -.15);
	line-height: 1.35em;
	margin-top: 0;
}

.server-details {
	position: relative;
	z-index: 2;
	margin-top: 240px;
	height: calc(100vh - 240px);
	overflow-y: auto;
	padding: 6px 20px 28px;
	background: transparent;
}

.server-details-inner {
	transform-style: preserve-3d;
	transform: rotateX(var(--move-y)) rotateY(var(--move-x));
	will-change: transform;
	transition: transform var(--transition);
	transform-origin: center top;
}

.details-grid {
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.card {
	font-family: 'Exo 2', sans-serif;
	color: #f2f6f5;
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 18px;
	line-height: 1.45;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.card h2 {
	margin: 0 0 10px;
	color: var(--sisucraft-soft);
}

.card p {
	margin: 0 0 10px;
}

.card ul {
	margin: 0 0 12px;
	padding-left: 18px;
}

.card a {
	color: var(--sisucraft-soft);
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.faq-item {
	border-left: 2px solid rgba(0, 129, 112, 0.95);
	background: rgba(3, 19, 23, 0.35);
	padding: 10px 12px;
	border-radius: 4px;
}

.faq-question {
	margin: 0 0 6px;
	font-weight: 700;
	color: #eff8f6;
}

.faq-answer {
	margin: 0;
	color: #d2dfdc;
}

.resources {
	max-width: 980px;
	margin: 10px auto 0;
	padding: 8px 18px 20px;
	text-align: center;
}

.resources h2 {
	margin: 0 0 10px;
	font-family: 'Exo 2', sans-serif;
	color: var(--sisucraft-main);
}

.resources-links {
	justify-content: center;
	gap: 8px;
}

.resources-links a {
	display: inline-flex;
}

.resources-links img {
	width: 50px;
	padding-top: 0;
}

@media (max-width: 900px) {
	.details-grid {
		gap: 10px;
	}

	.links img {
		width: 38px;
	}

	.logo {
		font-size: min(5em, 18vw);
	}

	.status-row {
		gap: 8px;
	}

	.ip-inline {
		font-size: 14px;
		padding: 5px 10px 6px;
	}

	.ip-inline img {
		width: 15px;
	}

	.info {
		font-size: min(1.2em, 4.6vw);
	}

	.server-details {
		margin-top: 210px;
		height: calc(100vh - 210px);
	}

	.layer-5 {
		transform: translateX(-9vw) translateZ(300px) scale(1.1);
	}
}
