body { font-family: 'Pretendard', sans-serif; font-size: 1rem; color: #fff; font-weight: 400; background: #2C3E50; flex-direction: column; }
input { font-size: 1.125rem; font-weight: 500; color: #333; width: 504px; padding: 18px 20px; border: 0; border-radius: 12px; background: #fff; }
:focus { outline: none; }

.slide-bottom { width: 100%; animation: slide-bottom .6s both; animation-timing-function : ease;}
.slide-bottom-delay { width: 100%; display: flex; flex-direction: column; align-items: center; animation: slide-bottom-delay .6s .4s both; animation-timing-function : ease;}

.wrap { width: 700px; padding: 20px; flex: 1; min-height: 84vh; }
.title { font-size: 3.375rem; font-weight: 700; color: #FFD700; text-align: center; padding-top: 100px; }
.text { font-size: 1.375rem; text-align: center; margin-top: 40px; margin-bottom: 40px; }
.gold { color: #FFD700; }

.inputBox { display: flex; gap: 6px; }
.inputBox button { width: 150px; }

.goldBtn { font-size: 1.25rem; font-weight: 700; color: #2C3E50; border-radius: 12px; background: #FFD700; }
.cyanBtn { font-size: 1.25rem; font-weight: 700; color: #2C3E50; border-radius: 12px; background: #00CFCF; }

.adBox { margin-top: 30px; overflow: hidden; border-radius: 16px; }
.adBox a { display: block; width: 660px; height: 300px; min-height: 100px; background: rgba(255,255,255,0.1); position: relative; }
.adBox a img { width: 100%; height: auto; }
.fBox { position: absolute; top: 0; right: 0; width: 100%; height: 100%; z-index: 1; }
.fBox .closeBtn { position: absolute; top: 10px; right: 10px; width: 18px; height: 18px; background: url(/skin/lte/img/ico_close.png) no-repeat; opacity: .2; }
.fBox p { position: absolute; bottom: 10px; right: 10px; font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.5); padding: 4px 12px; border-radius: 30px; background: rgba(0,0,0,0.2); }

.btmBox { padding-top: 14px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.btmBox .short { font-size: 1.125rem; font-weight: 500; width: 504px; padding: 14px 20px; border-radius: 12px; background: #fff; }
.btmBox .short a { color: #333; }
.btmBox .short a:hover { color: #007fff; }
.btmBox .btnBox { display: flex; gap: 10px; }
.btmBox .btnBox button { width: 180px; padding: 12px; }

footer { width: 100%; background: #1d2c3b; padding: 30px 0; min-height: 16vh; }
footer .inner { display: flex; align-items: center; justify-content: center; gap: 20px; }
footer .inner p { font-size: 0.875rem; font-weight: 300; color: #ddd; }
footer .copyright { font-size: 0.875rem; font-weight: 400; color: #999; padding-top: 30px; text-align: center; }


/* Media Query */
@media (min-width: 1024px) {
	body { display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 1023px) {
	.wrap { width: 100%; padding: 24px; }
	.text { font-size: 1.25rem; margin-top: 36px; margin-bottom: 24px; }

	.inputBox { width: 100%; align-items: center; flex-direction: column; gap: 10px; }
	.inputBox input { width: 100%; padding: 16px 18px; }
	.inputBox button { padding: 12px; }

	footer { padding: 30px 20px; }
	footer .inner { flex-direction: column; gap: 14px; }
}

@media (max-width: 767px) {
	.title { font-size: 2.375rem; padding-top: 60px; }
	.text { font-size: 1rem; }

	.adBox { width: 100%; margin-top: 16px; }
	.adBox a { width: 100%; height: auto; }
	.fBox p { font-size: 0.625rem; padding: 4px 10px; }

	.inputBox input { width: 100%; font-size: 1rem; padding: 14px; border-radius: 8px; }
	.btmBox { width: 100%; gap: 10px; }
	.btmBox .short { width: 100%; font-size: 0.875rem; padding: 12px; border-radius: 8px; }
	.btmBox .btnBox { width: 100%; gap: 6px; }
	.btmBox .btnBox button { width: calc(100% / 3); font-size: 0.875rem; padding: 10px 6px; border-radius: 8px; }

	footer .inner p { font-size: 0.75rem; }
	footer .copyright { font-size: 0.75rem; }
}

/* Keyframes */
@keyframes slide-bottom {
  0% {
    transform: translateY(-20px);
	opacity: 0;
  }
  100% {
    transform: translateY(0);
	opacity: 1;
  }
}

@keyframes slide-bottom-delay {
  0% {
    transform: translateY(-20px);
	opacity: 0;
  }
  100% {
    transform: translateY(0);
	opacity: 1;
  }
}

/* mouse cursor style */
button, .btmBox .short a { cursor: url(/skin/lte/img/cursor01.svg) 2 2, pointer; }
.adBox a, .adBox button { cursor: url(/skin/lte/img/cursor02.svg) 2 2, pointer; }