* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
}

body.main-body {
	color: white;
	background: #071a35;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	min-height: 100dvh;
	padding: 30px 20px;
}

h1 {
	font-size: 2.5rem;
	text-align: center;
}

.description {
	font-size: 1rem;
	margin-top: 20px;
	line-height: 1.6;
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.description p {
	margin: 0;
}

#download-button {
	display: inline-block;
	padding: 12px 24px;
	background: #731ae8;
	color: white;
	width: 250px;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	transition: background 0.3s ease;
	text-align: center;
	cursor: pointer;
}

#download-button:hover {
	background: #8c33ff;
}

#download-button:active {
	background: #8c33ff;
}

.main-container {
	border: 1px solid #ffffff11;
	background: #0d2b52;
	padding: 2em;
	margin-bottom: 40px;
	width: 1200px;
	max-width: calc(100vw - 40px);
	border-radius: 12px;
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
	height: fit-content;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 40px;
}

.iframe-container {
	position: relative;
	padding-top: 56.25%; /* 16:9 aspect ratio */
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	width: 100%;
	height: 0;
}

.iframe-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: contain;
}

.logo {
	max-width: 200px;
	margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
	h1 {
		font-size: 2rem;
	}

	.main-container {
		padding: 1em;
	}

	.logo {
		max-width: 150px;
	}
}
