@font-face {
	font-family: 'Akrobat';
	src: url('/assets/fonts/Akrobat-Regular.otf') format('opentype');
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Akrobat', sans-serif;
}

body {
	background-color: #fff;
	color: #000;
	min-height: 100vh;
	text-align: center;
}

header {
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-wrapper {
	position: absolute;
	left: -77px;
	top: -105px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo {
	display: block;
	height: 250px;
	max-height: 250px;
	object-fit: contain;
	pointer-events: none;
}

.logo-hit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 27%;
    display: block;
    cursor: pointer;
    background: transparent;
}

.nav {
	display: flex;
	gap: 1.5rem;
}

.top-link {
	color: #000;
	text-decoration: none;
	font-size: 1.6rem;
	border-bottom: 2px solid transparent;
	padding-bottom: 0.2rem;
	padding-top: 0.4rem;
	transition: border-color 0.2s ease;
	cursor: pointer;
}

.top-link:hover {
	border-bottom-color: #666;
}

.top-link.active {
	border-bottom-color: #000;
}

.menu-toggle {
	display: none;
}

.download-section {
	max-width: 900px;
	width: 80vw;
	margin: 0 auto;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 1rem;
}

.download-section h1 {
	font-size: 1.9rem;
	line-height: 1.3;
	margin-bottom: 1.5rem;
}

.download-btn {
	background-color: #000;
	color: #fff;
	padding: 1rem 2.5rem;
	border-radius: 10px;
	font-size: 1.6rem;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border: none;
	transition: transform 0.1s ease;
}

.download-btn i {
	font-size: 1.8rem;
}

.download-btn:active {
	transform: scale(0.92);
}

@media (max-width: 768px) {
	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background: #fff;
		z-index: 100;
		padding: 8px 16px 8px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
	}

	.logo-wrapper {
		position: relative;
		left: 0;
		right: 0;
		width: 100%;
		margin-top: 60px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.logo {
		width: 100%;
		max-width: 300px;
		height: auto;
	}

	.logo-hit {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 60%;
		height: 40%;
		background: transparent;
		cursor: pointer;
	}

	.menu-toggle {
		display: block;
		position: absolute;
		right: 32px;
		top: 32px;
		width: 30px;
		height: 24px;
		border: none;
		background: none;
		cursor: pointer;
		padding: 0;
	}

	.menu-toggle span {
		display: block;
		width: 100%;
		height: 3px;
		background: #000;
		margin: 4px 0;
		transition: transform 0.2s ease, opacity 0.2s ease;
	}

	.menu-toggle.is-open span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.menu-toggle.is-open span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.is-open span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.nav {
		display: none;
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
		margin-top: -155px;
		z-index: 999;
	}

	.nav.open {
		display: flex;
	}

	.top-link {
		font-size: 1.3rem;
	}

	.download-section {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 80vw;
		max-width: 900px;
		text-align: center;
		padding: 0;
	}

	.download-section h1 {
		font-size: 1.5rem;
	}

	.download-btn {
		font-size: 1.4rem;
		width: 100%;
		max-width: 360px;
	}
}
