body,
div,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
code,
blockquote,
figure {
	margin: 0;
	padding: 0;
	border-width: 0;
	text-rendering: optimizeSpeed;
}


header {
	position: sticky;
	top: 0;
	background-color: #ffffff;
	z-index: 9999;
}

.nav-bar {
	display: flex;
	justify-content: space-between;
	align-content: center;
	gap: 10px;
	background-color: white;
	padding: 15px 90px 100px 15px;
	left: 10px;
	font-family: 'Noto Sans KR Black', sans-serif;
}

.nav-bar a {
	color: black;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
}

.nav-bar a:hover {
	text-decoration: underline;
}

.nav-bar img {
	padding: 0px 20px 0px 20px;
}

.nav-links {
	list-style: none;
}

.nav-links li {
	display: inline-block;
	padding: 0px 10px;
}

.nav-links li a {
	transition: all 0.3s ease-in-out 0s;
}

.nav-links li a:hover {
	color: greenyellow;
	text-decoration: underline;
}

.hidden {
	display: none;
}

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 25px;
	height: 18px;
	cursor: pointer;
	z-index: 1001;
}

.hamburger span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: black;
	border-radius: 2px;
	transition: all 0.3s ease;
	transform-origin: center;
}

/* Animate to X */
.hamburger.open span:nth-child(1) {
	transform: rotate(45deg) translateY(8px);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
}

.hamburger.open span:nth-child(3) {
	transform: rotate(-45deg) translateY(-8px);
}

@media (max-width: 1000px) {
	.hamburger {
		display: flex;
	}
}





@media (max-width: 1000px) {

	.nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		padding-left: 10px;
	}

	.nav-links a {
		padding: 10px 0;
	}

	.nav-links.mobile-visible {
		display: flex;
	}

	.hamburger {
		display: flex;
	}

	.title {
		width: 100% !important;
		max-width: 100%;
	}
}



.lang-image-container {
	position: fixed;
	top: 10px;
	right: 40px;
	width: 50px;
	height: 50px;
	z-index: 1000;
}

.clickable-lang-image {
	position: absolute;
	width: 50px;
	height: auto;
	cursor: pointer;
	transition: transform 0.2s ease;
}

/* Animation keyframes */
@keyframes clickScale {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1);
	}
}

/* Animation class */
.scale-on-click {
	animation: clickScale 200ms ease;
}

#lang-ko-image {
	top: 15px;
	left: 0;
	z-index: 1;
}

#lang-en-image {
	top: 0px;
	left: 30px;
	z-index: 2;
}


.text-overlay {
	height: 196.00px;
	width: 670.00px;
	position: absolute;
	color: white;
	padding: 10px;
	border-radius: 8px;
	top: 85%;
	left: 35%;
	transform: translate(-50%, -50%);
	text-align: right;
	font-family: "Noto Sans KR", sans-serif;
	font-size: 63px;
	font-style: normal;
	font-weight: bold;
}



.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.screenshot {
  text-align: center;
  background: #f8f9fa;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.screenshot img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.screenshot p {
  font-size: 1.1em;
  font-weight: 600;
  color: #333;
  font-family: "Noto Sans KR", sans-serif;
}
.screenshot div p {
  font-size: 1.1em;
  font-weight: 600;
  color: #333;
  font-family: "Noto Sans KR", sans-serif;
}






#_idImageIcon {
	height: 50.13px;
	width: 82.87px;
}

#_idScreenShot img {
	height: 500px;
}

#_idTextBlock {
	padding: 50px 50px 50px 50px;
}

#_idTextBlock-Centered {
	padding: 50px 50px 100px 50px;
	text-align: center;
}

.Text-Button {
	color: #ffffff;
	font-family: "Noto Sans KR", sans-serif;
	font-size: 44px;
	font-style: normal;
	font-weight: bold;
}

.Text-Contact-Title {
	color: #000000;
	font-family: "Noto Sans KR Black", sans-serif;
	font-size: 44px;
	font-style: normal;
	font-weight: 900;
}

#_idFooter {
	padding: 50px;
	text-align: center;
}

#_idDivider {
	padding: 50px;
}

#_idDivider img {
	max-width: 100%;
}


.inline-flex {
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin: 0 auto;
	flex-wrap: wrap;
	padding: 20px 0;
}

.inline-flex img {
	max-width: 100%;
	height: auto;
	display: block;
}


#image-container {
	position: relative;
	max-width: 100%;
}

#image-container img {
	width: 100%;
	height: auto;
	display: block;
}

.inline-flex-2 {
	display: flex;
	justify-content: left;
	gap: 24px;
	margin: 0 auto;
	flex-wrap: wrap;
	padding: 10px 0;
}

.inline-flex-2 img {
	max-width: 100%;
	height: auto;
	display: block;
}

.signup {
	padding: 3rem 1rem;
	text-align: center;
}

form {
	max-width: 400px;
	margin: 1rem auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

input,
textarea {
	padding: 0.75rem;
	font-size: 1rem;
	border: 1px solid #bbb;
	border-radius: 4px;
}

button {
	background: #7F6EB1;
	color: white;
	border: none;
	padding: 3rem;
	border-radius: 40px;
	font-size: 2rem;
	font-weight: bold;
	font-style: normal;
	cursor: pointer;
}

button:hover {
	background: #21867a;
}

.footer {
	padding: 2rem 1rem;
	text-align: center;
	font-size: 0.9rem;
	background: #f3f1f1;
}