@charset "UTF-8";
:root {
  --color-primary: #0d6af6;
  --color-primary-dark: #0033cc;
  --color-primary-light: #4a7bff;
  --color-primary-50: #eaf1ff;
  --color-primary-100: #d6e3ff;
  --color-primary-200: #a8c2ff;
  --bg-hero-from: #dceaff;
  --bg-hero-to: #f2f7ff;
  --bg-page: #ffffff;
  --bg-card: #efefef;
  --bg-card-soft: #eef2f7;
  --bg-foot: #161618;
  --text-default: #1a1a1a;
  --text-muted: #5c6271;
  --text-light: #8a8f99;
  --text-on-dark: #ececec;
  --text-on-dark-muted: #6e7178;
  --shadow-card: 0 8px 24px rgba(20, 60, 160, 0.08);
  --shadow-card-hover: 0 16px 36px rgba(20, 60, 160, 0.14);
  --shadow-cta: 0 12px 28px rgba(27, 77, 255, 0.35);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container-max: 720px;
  --container-pad: 40px;
}

@keyframes panel-in {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tabs-slide-in {
  0% {
    transform: translateY(-16px);
    opacity: 0;
  }
  60% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button, input, textarea, select {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section, main {
  display: block;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}
button:focus {
  outline: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

em, i {
  font-style: normal;
}

::selection {
  background: #1B4DFF;
  color: #fff;
}

html, body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Segoe UI", "Malgun Gothic", sans-serif;
  color: var(--text-default);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: keep-all;
  line-height: 1.45;
}

html {
  overflow-x: hidden;
}

body {
  min-width: 320px;
  background: linear-gradient(180deg, var(--bg-hero-from) 0%, var(--bg-hero-to) 28%, #FFFFFF 38%);
}
@media (min-width: 1080px) {
  body {
    background: radial-gradient(1200px 600px at 50% 0%, var(--bg-hero-from) 0%, var(--bg-hero-to) 32%, #FFFFFF 50%) no-repeat;
  }
}

.page {
  width: 100%;
  background: transparent;
  position: relative;
}

@media (max-width: 720px) {
  body {
    width: 720px;
    zoom: calc(0.1388888889vw / 1px);
  }
}
[data-anim] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
[data-anim][data-anim=fade-up] {
  transform: translate3d(0, 24px, 0);
}
[data-anim][data-anim=fade-down] {
  transform: translate3d(0, -16px, 0);
}
[data-anim][data-anim=zoom-in] {
  transform: scale(0.9);
}
[data-anim].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-anim] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
.main-banner {
  position: relative;
  padding: 56px var(--container-pad) 60px;
  overflow: hidden;
  background: linear-gradient(to bottom, rgb(221, 241, 255) 0%, rgb(209, 236, 255) 69%);
}
@media (max-width: 720px) {
  .main-banner {
    padding: 56px 0 60px;
  }
}
@media (min-width: 1080px) {
  .main-banner {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
.main-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
}
.main-banner__brand {
  display: flex;
  justify-content: center;
}
.main-banner__logo {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px 18px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.main-banner__logo-image {
  display: block;
  height: 38px;
  width: auto;
}
.main-banner__title {
  margin-top: 40px;
}
.main-banner__title-sub {
  display: block;
  font-size: 50px;
  font-weight: 600;
  color: #2a3140;
  letter-spacing: -1px;
}
.main-banner__title-main {
  display: block;
  position: relative;
  margin: 10px auto 0;
  max-width: 480px;
  font-size: 80px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -2px;
  background: linear-gradient(to right, rgb(0, 112, 217) 0%, rgb(0, 86, 163) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.main-banner__title-main em {
  display: block;
}
.main-banner__title-main .sparkle--1 {
  top: 42%;
  right: 0%;
  width: 56px;
  animation-delay: 0s;
}
.main-banner__title-main .sparkle--2 {
  top: 50%;
  left: 2%;
  width: 32px;
  animation-delay: 0.6s;
}
.main-banner__title-main .sparkle--3 {
  bottom: 15%;
  right: -2%;
  width: 30px;
  animation-delay: 1.2s;
}
.main-banner__image {
  position: relative;
  width: 100%;
  margin: 0 auto 0;
  background-image: url(/assets/images/img-main-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1200px;
}
.main-banner__image img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
}

.tabs-sentinel {
  width: 100%;
  height: 1px;
  margin-top: -1px;
  pointer-events: none;
}

.tabs {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-primary);
  box-shadow: 0 2px 6px rgba(20, 50, 130, 0.08);
  transition: box-shadow 0.5s ease;
}
.tabs.is-stuck {
  animation: tabs-slide-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
  box-shadow: 0 6px 18px rgba(20, 50, 130, 0.22);
}
.tabs__inner {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  height: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.tabs__btn {
  flex: 1;
  height: 100%;
  color: rgba(255, 255, 255, 0.65);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.6px;
  transition: color 0.25s ease;
  position: relative;
  z-index: 2;
}
.tabs__btn:hover {
  color: rgba(255, 255, 255, 0.9);
}
.tabs__btn.is-active {
  color: #ffffff;
  font-weight: 800;
}
.tabs__indicator {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 33.3333%;
  background: #bbd6ff;
  transition: transform 0.35s cubic-bezier(0.45, 0.05, 0.15, 1);
  transform: translateX(0);
  will-change: transform;
}

.panel {
  display: none;
  background: #ffffff;
}
.panel.is-active {
  display: block;
  animation: panel-in 0.5s ease both;
}
.panel__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px var(--container-pad) 72px;
}
.panel__title {
  text-align: center;
  margin-bottom: 44px;
}
.panel__title-sub {
  display: block;
  font-size: 50px;
  font-weight: 500;
  color: #2a3140;
  letter-spacing: -0.6px;
}
.panel__title-main {
  display: block;
  margin-top: -5px;
  font-size: 60px;
  font-weight: 800;
  color: var(--text-default);
  letter-spacing: -1.4px;
}
.panel__title-main em {
  color: var(--color-primary);
}
.panel__visual {
  position: relative;
  width: 100%;
  margin: 0 auto 56px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(50, 100, 220, 0.15);
}
.panel__visual > img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.foot {
  background: var(--bg-foot);
  color: var(--text-on-dark);
  padding: 56px var(--container-pad) 0;
  margin-top: 16px;
}
.foot__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.foot__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-on-dark);
}
.foot__list li {
  font-size: 24px;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  position: relative;
  padding-left: 16px;
}
.foot__list li::before {
  content: "·";
  position: absolute;
  left: 0;
}
.foot__copy {
  margin: 56px calc(var(--container-pad) * -1) 0;
  padding: 32px var(--container-pad);
  background: #d5d5d5;
  text-align: center;
}
.foot__copy p {
  font-size: 16px;
  color: #6e7178;
  letter-spacing: -0.4px;
}

.info-block {
  margin-bottom: 65px;
  text-align: center;
}
.info-block__chip {
  display: inline-block;
  padding: 5px 14px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0070d9+0,0056a3+100 */
  background: linear-gradient(to right, rgb(0, 112, 217) 0%, rgb(0, 86, 163) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  color: #fff;
  border-radius: 999px;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}
.info-block__text {
  font-size: 29px;
  font-weight: 600;
  color: var(--text-default);
  letter-spacing: -0.6px;
}
.info-block__text--em {
  font-size: 36px;
  font-weight: 800;
}
.info-block__text--small {
  font-size: 26px;
  font-weight: 500;
  margin-top: 28px;
  background: var(--bg-card);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  line-height: 1.55;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 108px;
  margin-top: 56px;
  color: #ffffff;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: -0.6px;
  border-radius: 20px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0070d9+0,0056a3+100 */
  background: linear-gradient(to right, rgb(0, 112, 217) 0%, rgb(0, 86, 163) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  box-shadow: 0 8px 18px rgba(20, 60, 170, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(20, 60, 170, 0.35);
  filter: brightness(1.05);
}
.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(20, 60, 170, 0.25);
}

.sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  animation: sparkle-twinkle 2.4s ease-in-out infinite;
}
.sparkle img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes sparkle-twinkle {
  0%, 100% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.coin {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.coin img {
  display: block;
  width: 100%;
  height: auto;
}

#tab-attend .panel__visual .coin--1 {
  top: 32%;
  left: 15%;
  width: 68px;
  animation: attend-coin-1 3.6s ease-in-out infinite;
}
#tab-attend .panel__visual .coin--2 {
  top: 12%;
  right: 12%;
  width: 100px;
  animation: attend-coin-2 4.8s ease-in-out infinite 0.6s;
}
#tab-attend .panel__visual .coin--3 {
  bottom: 32%;
  right: 5%;
  width: 44px;
  animation: attend-coin-3 3s ease-in-out infinite 1.4s;
}
#tab-attend .panel__visual .sparkle--1 {
  top: 20%;
  left: 10%;
  width: 32px;
  animation-delay: 0s;
}
#tab-attend .panel__visual .sparkle--2 {
  top: 50%;
  left: 4%;
  width: 22px;
  animation-delay: 0.4s;
}
#tab-attend .panel__visual .sparkle--3 {
  top: 10%;
  right: 30%;
  width: 16px;
  animation-delay: 0.9s;
}
#tab-attend .panel__visual .sparkle--4 {
  bottom: 20%;
  right: 12%;
  width: 30px;
  animation-delay: 1.4s;
}

@keyframes attend-coin-1 {
  0%, 100% {
    transform: translateY(0) rotate(-14deg);
  }
  50% {
    transform: translateY(-14px) rotate(-22deg);
  }
}
@keyframes attend-coin-2 {
  0%, 100% {
    transform: translateY(0) rotate(12deg);
  }
  50% {
    transform: translateY(-22px) rotate(20deg);
  }
}
@keyframes attend-coin-3 {
  0%, 100% {
    transform: translateY(0) rotate(-48deg);
  }
  50% {
    transform: translateY(-9px) rotate(-42deg);
  }
}
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.benefit-card {
  position: relative;
  padding: 36px 24px;
  background: var(--bg-card);
  border-radius: 28px;
  text-align: center;
  overflow: hidden;
}
.benefit-card__lead {
  font-size: 27px;
  font-weight: 600;
  color: var(--text-default);
  line-height: 1.2;
  letter-spacing: -0.6px;
}
.benefit-card__highlight {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}
.benefit-card__highlight strong {
  font-size: 32px;
  font-weight: 800;
}
.benefit-card__highlight--accent {
  color: var(--text-default);
}
.benefit-card__highlight--accent strong {
  color: var(--color-primary);
}
.benefit-card__sub {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 500;
}
.benefit-card__badge {
  display: inline-block;
  padding: 0 5px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.benefit-card__badge--filled {
  background: var(--color-primary);
  color: #ffffff;
}
.benefit-card__image {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefit-card__image img {
  display: block;
  width: 64px;
  height: auto;
}
.benefit-card__image--multi img {
  width: 56px;
}
.benefit-card__image--multi img + img {
  margin-left: -20px;
}

#tab-lottery .panel__visual .sparkle--1 {
  bottom: 50%;
  left: 8%;
  width: 35px;
  animation-delay: 0s;
}
#tab-lottery .panel__visual .sparkle--2 {
  top: 12%;
  right: 20%;
  width: 28px;
  animation-delay: 0.5s;
}
#tab-lottery .panel__visual .sparkle--3 {
  top: 12%;
  left: 14%;
  width: 18px;
  animation-delay: 1s;
}
#tab-lottery .panel__visual .sparkle--4 {
  top: 44%;
  right: 6%;
  width: 20px;
  animation-delay: 1.5s;
}

.step-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border-radius: 28px;
  text-align: center;
}
.step-card + .step-card {
  margin-top: 36px;
}
.step-card__chip {
  display: inline-block;
  padding: 5px 16px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 999px;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}
.step-card__title {
  font-size: 29px;
  font-weight: 700;
  color: var(--text-default);
  line-height: 1.3;
  letter-spacing: -0.9px;
}
.step-card__caution {
  margin-top: 5px;
  font-size: 18px;
  color: var(--text-light);
  font-weight: 500;
}
.step-card__row {
  margin-top: 16px;
  padding: 30px 24px;
  background: #ffffff;
  border-radius: 18px;
}
.step-card__rowtitle {
  display: inline-block;
  padding: 0px 5px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
}
.step-card__rowtitle--filled {
  background: var(--color-primary);
}
.step-card__rowdesc {
  font-size: 26px;
  color: var(--text-default);
  font-weight: 600;
}
.step-card__image {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.step-card__image img {
  display: block;
  width: 112px;
  height: auto;
}
.step-card__image--multi {
  gap: 0;
}
.step-card__image--multi img {
  width: 100px;
}
.step-card__image--multi img + img {
  margin-left: -36px;
}
.step-card__image--coin img {
  width: 72px;
}

#tab-mytag .panel__visual .sparkle--1 {
  top: 20%;
  left: 12%;
  width: 28px;
  animation-delay: 0s;
}
#tab-mytag .panel__visual .sparkle--2 {
  top: 6%;
  right: 5%;
  width: 22px;
  animation-delay: 0.5s;
}
#tab-mytag .panel__visual .sparkle--3 {
  bottom: 44%;
  left: 32%;
  width: 34px;
  animation-delay: 1s;
}
#tab-mytag .panel__visual .sparkle--4 {
  bottom: 48%;
  right: 28%;
  width: 30px;
  animation-delay: 1.5s;
}

.howto-card {
  margin-bottom: 25px;
  padding: 40px 32px 36px;
  background: var(--bg-card);
  border-radius: 28px;
  text-align: center;
}
.howto-card--narrow {
  padding: 36px 32px;
}
.howto-card__step {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 12px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 999px;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.howto-card__step em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
}
.howto-card__notes {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
}
.howto-card__notes li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
  font-size: 25px;
  color: var(--text-default);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.8px;
}
.howto-card__num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--text-default);
  color: var(--text-default);
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.howto-card__desc {
  font-size: 27px;
  color: var(--text-default);
  font-weight: 500;
  line-height: 1.6;
}
.howto-card__desc strong {
  color: var(--text-default);
  font-weight: 700;
}
.howto-card__image {
  margin: 12px 0 24px;
}
.howto-card__image img {
  display: block;
  width: 100%;
  height: auto;
}
