body {
	margin: 0;
	padding: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: "Arial", sans-serif;
	overflow: hidden;
	text-align: center;
	position: relative; /* Tambahkan ini */
}

/* Tambahkan styling untuk video background */
#video-background {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -1;
	object-fit: cover;
}

.container {
	display: flex;
	flex-direction: column;
	height: 100vh;
	width: 100%;
	position: relative !important; /* Pastikan konten di atas video */
	background-color: rgba(0, 0, 0, 0.3); /* Optional: overlay semi-transparent */
}

.top-section {
	flex: 1; /* Mengambil ruang yang sama */
	display: flex;
	flex-direction: column;
	justify-content: flex-end; /* Teks di bagian bawah section */
	align-items: center;
	padding-bottom: 50px; /* Jarak dari bawah */
}

.top-section h1 {
	color: #920303;
	font-size: 3.5rem;
	margin: 0;
	text-shadow: 1px 1px 0 #fff, /* Posisi bayangan 1 */ -1px -1px 0 #fff,
		/* Posisi bayangan 2 */ 1px -1px 0 #fff,
		/* Posisi bayangan 3 */ -1px 1px 0 #fff;
	/* Posisi bayangan 4 */
}
.top-section h2 {
	color: #920303;
	font-size: 2.5rem;
	margin: 0;
	text-shadow: 1px 1px 0 #fff, /* Posisi bayangan 1 */ -1px -1px 0 #fff,
		/* Posisi bayangan 2 */ 1px -1px 0 #fff,
		/* Posisi bayangan 3 */ -1px 1px 0 #fff;
	/* Posisi bayangan 4 */
}
.top-section h3 {
	color: #920303;
	font-size: 2rem;
	margin: 0;
	text-shadow: 1px 1px 0 #fff, /* Posisi bayangan 1 */ -1px -1px 0 #fff,
		/* Posisi bayangan 2 */ 1px -1px 0 #fff,
		/* Posisi bayangan 3 */ -1px 1px 0 #fff;
	/* Posisi bayangan 4 */
}
.top-section img {
	height: 100px;
	width: 85px;
	margin-top: 1%;
	margin-bottom: 1%;
}
.middle-section {
	flex: 1; /* Mengambil ruang yang sama */
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -2%;
}

.bottom-section {
	flex: 1; /* Mengambil ruang yang sama */
	display: flex;
	flex-direction: column;
	justify-content: flex-start; /* Teks di bagian atas section */
	align-items: center;
	padding-top: 150px; /* Jarak dari atas */
	color: white;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.launch-button {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	position: relative;
	overflow: hidden;
	outline: none;
}

.launch-button img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	display: block;
	box-shadow: 0 0 30px rgba(255, 77, 77, 0.7);
	transition: all 0.3s ease;
	position: absolute;
	top: 0;
	left: 0;
}

/* Default state - show RKFT.png */
.default-image {
	opacity: 1;
}

/* Default state - hide RKFT-STAR.png */
.hover-image {
	opacity: 0;
}

/* Hover state - hide RKFT.png */
.launch-button:hover .default-image {
	opacity: 0;
}

/* Hover state - show RKFT-STAR.png */
.launch-button:hover .hover-image {
	width: 300px;
	height: 300px;
	opacity: 1;
	transform: scale(1.35);
	box-shadow: 0 0 50px rgba(255, 77, 77, 0.9);
	filter: brightness(1.1) drop-shadow(0 0 20px rgba(227, 6, 6, 0.9));
}

/* Style animasi tetap sama */
.animation-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	overflow: hidden;
}

.animation-video {
	width: 100%;
	height: 100%;
	object-fit: contain; /* Ubah dari 'cover' ke 'contain' */
	background-color: #000; /* Warna latar jika ada letterbox */
}
@font-face {
	font-family: Kugile_Demo;
	src: url("https://cdn.jsdelivr.net/gh/zteward85/ztew_repo/fonts/Kugile_Demo.ttf")
		format("truetype");
}
@font-face {
	font-family: Borisna;
	src: url("https://cdn.jsdelivr.net/gh/zteward85/ztew_repo/fonts/Borisna.ttf")
		format("truetype");
}
@font-face {
	font-family: Wasted_Vindey;
	src: url("https://cdn.jsdelivr.net/gh/zteward85/ztew_repo/fonts/Wasted_Vindey.ttf")
		format("truetype");
}

/* Responsive Styles */
@media only screen and (min-width: 1920px) and (min-height: 1080px) {
	.top-section {
		padding-bottom: 100px;
	}

	.top-section h1 {
		font-size: 5rem;
		margin-bottom: 20px;
	}

	.top-section h2 {
		font-size: 3.5rem;
		margin-bottom: 15px;
	}

	.top-section h3 {
		font-size: 2.8rem;
	}

	.top-section img {
		height: 150px;
		width: 127px;
		margin-bottom: 30px;
	}

	.launch-button {
		width: 400px;
		height: 400px;
	}

	.launch-button:hover .hover-image {
		width: 400px;
		height: 400px;
		transform: scale(1.35);
	}

	.bottom-section {
		padding-top: 200px;
	}

	.bottom-section p {
		font-size: 1.5rem;
	}
}

@media only screen and (max-width: 1200px) {
	.top-section h1 {
		font-size: 3rem;
	}
	.top-section h2 {
		font-size: 2rem;
	}
	.top-section h3 {
		font-size: 1.7rem;
	}
	.launch-button {
		width: 250px;
		height: 250px;
	}
}

@media only screen and (max-width: 992px) {
	/* iPad landscape and similar tablets */
	.top-section {
		padding-bottom: 30px;
	}
	.top-section h1 {
		font-size: 2.5rem;
	}
	.top-section h2 {
		font-size: 1.7rem;
	}
	.top-section h3 {
		font-size: 1.5rem;
	}
	.bottom-section {
		padding-top: 100px;
	}
	.launch-button {
		width: 220px;
		height: 220px;
	}
}

@media only screen and (max-width: 768px) {
	/* iPad portrait and similar tablets */
	.top-section {
		padding-bottom: 20px;
	}
	.top-section h1 {
		font-size: 2.2rem;
	}
	.top-section h2 {
		font-size: 1.5rem;
	}
	.top-section h3 {
		font-size: 1.3rem;
	}
	.top-section img {
		height: 80px;
		width: 68px;
	}
	.middle-section {
		margin-top: -5%;
	}
	.bottom-section {
		padding-top: 80px;
	}
	.launch-button {
		width: 200px;
		height: 200px;
	}
}

@media only screen and (max-width: 576px) {
	/* Mobile phones */
	body {
		overflow: auto;
	}
	.container {
		height: auto;
		min-height: 100vh;
	}
	.top-section {
		padding-bottom: 15px;
	}
	.top-section h1 {
		font-size: 1.8rem;
	}
	.top-section h2 {
		font-size: 1.2rem;
	}
	.top-section h3 {
		font-size: 1rem;
	}
	.top-section img {
		height: 60px;
		width: 51px;
	}
	.middle-section {
		margin: 20px 0;
	}
	.bottom-section {
		padding-top: 40px;
		padding-bottom: 20px;
	}
	.launch-button {
		width: 180px;
		height: 180px;
	}
}

@media only screen and (max-width: 400px) {
	/* Small mobile phones */
	.top-section h1 {
		font-size: 1.5rem;
	}
	.top-section h2 {
		font-size: 1rem;
	}
	.top-section h3 {
		font-size: 0.9rem;
	}
	.launch-button {
		width: 150px;
		height: 150px;
	}
}
@media (aspect-ratio: 1707/1067) {
	.animation-video {
		object-fit: cover;
		width: 100%;
		height: auto;
		min-height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}
