@font-face {
  font-family: "YeogiOttaeJalnan";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.2/JalnanOTF00.woff")
    format("woff");
  font-weight: normal;
  font-display: swap;
}
@keyframes lanternSway {
  0%,
  100% {
    transform: rotate(-6deg);
  }
  50% {
    transform: rotate(6deg);
  }
}
@keyframes sparkleTwinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes moonPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 10px rgba(244, 201, 104, 0.08),
      0 0 42px rgba(244, 201, 104, 0.28);
  }
  50% {
    box-shadow:
      0 0 0 16px rgba(244, 201, 104, 0.14),
      0 0 64px rgba(244, 201, 104, 0.42);
  }
}
@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes shineSweep {
  0% {
    left: -40%;
  }
  100% {
    left: 120%;
  }
}
@keyframes popupPop {
  from {
    transform: translateY(12px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

/* 배경 */
.night_sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% -10%, #22306b 0%, transparent 55%),
    linear-gradient(180deg, #050814 0%, #0b1130 35%, #131b3f 65%, #1a2150 100%);
}
.night_sky_video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.night_sky .rabbit_icon {
  position: absolute;
  bottom: 5%;
  right: 100px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.8));
}
.rabbit_icon img:first-child {
  display: block;
}

/* 두 번째 이미지(눈뜸)를 첫 번째 이미지 위에 완전히 겹침 */
.rabbit_icon img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: blink 4s infinite;
}

/* 주기 설정 (눈 뜨고 있다가 깜빡) */
@keyframes blink {
  0%,
  75% {
    opacity: 1;
  }
  80%,
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.night_sky_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 20, 0.42) 0%,
    rgba(11, 17, 48, 0.28) 40%,
    rgba(19, 27, 63, 0.38) 70%,
    rgba(26, 33, 80, 0.62) 100%
  );
}
.sky_glow {
  position: absolute;
  left: 50%;
  top: -8%;
  z-index: 2;
  width: 720px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(244, 201, 104, 0.18) 0%,
    transparent 68%
  );
  pointer-events: none;
}

/* 공통 */
.evt_wrp {
  position: relative;
}
.evt_wrp * {
  word-break: keep-all;
}
.inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
img{max-width:100%;width:auto;}

/* 윙배너 */
.wing_banner {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 100;
}
.wing_banner a {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 30px;
  border-radius: 18px 0 0 18px;
  background:#1a1d47;
  border: 1px solid rgba(244, 201, 104, 0.45);
  color: #fff;
  text-align: center;
  transition: transform 0.2s ease;
}
.wing_banner a:hover {
  transform: translateX(-4px);
}
.wing_badge {
  padding-bottom:10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.wing_tit {
  margin-bottom:10px;
  font-family: "YeogiOttaeJalnan", sans-serif;
  font-size: 18px;
  line-height: 1.45;
  color: #fff6d4;
}
.wing_cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 9px 0;
  border-radius: 99px;
  font-size: 18px;
  font-weight: 800;
  color: #23264d;
  background: linear-gradient(90deg, #ffe7a8, #f4c968 55%, #e8b03a);
  box-shadow: 0 6px 14px rgba(232, 176, 58, 0.35);
  margin-top:20px;
}

/* 장식 등롱 / 반짝이 */
.deco_lantern {
  position: absolute;
  top: -8px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  transform-origin: top center;
  animation: lanternSway 4.8s ease-in-out infinite;
}
.deco_lantern_l {
  left: 4%;
}
.deco_lantern_r {
  right: 4%;
  animation-delay: -2.2s;
}
.lantern_string {
  width: 2px;
  height: 54px;
  background: linear-gradient(#f4c968, rgba(244, 201, 104, 0.2));
}
.lantern_body {
  font-size: 42px;
  line-height: 1;
  filter: drop-shadow(0 10px 16px rgba(212, 59, 59, 0.45));
}
/* 비주얼 */
.visual {
  padding: 80px 0 8px;
  text-align: center;
}
.visual .visual_txt {
  margin-bottom: 8px;
}
.visual .badge {
  display: inline-block;
  padding: 12px 28px;
  font-family: "YeogiOttaeJalnan";
  font-size: 30px;
  border: 1px solid rgba(244, 201, 104, 0.75);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(244, 201, 104, 0.16),
    rgba(8, 14, 40, 0.55)
  );
  color: #f4c968;
  box-shadow:
    0 0 24px rgba(244, 201, 104, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.visual h1 {
  padding-top: 40px;
  font-family: "YeogiOttaeJalnan";
  font-size: 74px;
  font-weight: normal;
  line-height: 1.18;
  color: #fff;
  text-shadow:
    0 0 28px rgba(180, 220, 255, 0.4),
    0 10px 22px rgba(0, 0, 0, 0.5);
}
.visual h1 .h1_sub {
  font-family: "YeogiOttaeJalnan";
  margin-bottom: 6px;
  background: linear-gradient(
    90deg,
    #ffe7a8,
    #f4c968 40%,
    #fff6d4 70%,
    #e8b03a
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.visual .sub_txt {
  padding-top: 30px;
  text-align: center;
  font-size: 25px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
}
.visual .sub_txt strong {
  color: #ffdf8a;
  font-weight: 800;
}
.guarantee_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.visual .guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}
.visual .guarantee strong {
  color: #ffdf8a;
  font-family: "YeogiOttaeJalnan";
}
.visual .period {
  display: inline-block;
  padding-top: 30px;
  font-size: 25px;
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid rgba(244, 201, 104, 0.7);
}
.visual .prize_item {
  display: flex;
  justify-content: center;
  padding-top: 70px;
}
.visual .prize {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* 컨텐츠1 */
.cont_1 {
  padding-bottom: 48px;
}
.game_box {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 36px 32px;
  border-radius: 32px;
  border: 1px solid #6b6456;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  text-align: center;
  backdrop-filter: blur(12px);
  box-sizing: border-box;
}
.game_box::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  border: 1px dashed rgba(244, 201, 104, 0.22);
  pointer-events: none;
}
.game_corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid #f4c968;
  pointer-events: none;
  z-index: 1;
}
.game_corner.tl {
  top: 16px;
  left: 16px;
  border-right: 0;
  border-bottom: 0;
}
.game_corner.tr {
  top: 16px;
  right: 16px;
  border-left: 0;
  border-bottom: 0;
}
.game_corner.bl {
  bottom: 16px;
  left: 16px;
  border-right: 0;
  border-top: 0;
}
.game_corner.br {
  bottom: 16px;
  right: 16px;
  border-left: 0;
  border-top: 0;
}
.game_box .guide {
  padding: 40px 0;
  font-family: "YeogiOttaeJalnan";
  font-size: 40px;
  color: #fff;
}
.hand_display {
  position: relative;
  z-index: 1;
  width: 210px;
  height: 210px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(
    circle at 38% 32%,
    #ffe7a8 0%,
    #f4c968 28%,
    rgba(244, 201, 104, 0.18) 58%,
    rgba(8, 14, 40, 0.2) 100%
  );
  border: 3px solid rgba(255, 246, 212, 0.55);
  animation: moonPulse 3.2s ease-in-out infinite;
}
.hand_ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(244, 201, 104, 0.45);
  animation: ringSpin 16s linear infinite;
  pointer-events: none;
}
.hand_emoji {
  position: relative;
  z-index: 1;
  font-size: 104px;
  line-height: 1;
  display: inline-block;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.35));
}
.hand_emoji.is_shaking {
  animation: handShake 0.55s ease;
}


@keyframes handShake {
  0% {
    transform: rotate(0deg) scale(1);
  }
  15% {
    transform: rotate(-18deg) scale(1.05);
  }
  32% {
    transform: rotate(16deg) scale(1.08);
  }
  50% {
    transform: rotate(-12deg) scale(1.05);
  }
  68% {
    transform: rotate(8deg) scale(1.03);
  }
  84% {
    transform: rotate(-4deg) scale(1.01);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
.btn_group {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
}
.game_btn {
  position: relative;
  flex: 1;
  max-width: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 10px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(180deg, #2a326c 0%, #161d42 100%);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.game_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 36%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: skewX(-18deg);
}
.game_btn:hover::after {
  animation: shineSweep 0.7s ease;
}
.game_btn .emoji {
  font-size: 68px;
  line-height: 1.25;
}
.game_btn .label {
  font-size: 22px;
  font-weight: 800;
}
.btn_scissors {
  border-color: rgba(244, 201, 104, 0.35);
}
.btn_rock {
  border-color: rgba(255, 255, 255, 0.28);
}
.btn_paper {
  border-color: rgba(90, 108, 192, 0.55);
}
.game_btn:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.42);
  border-color: #f4c968;
  background: linear-gradient(180deg, #39407a 0%, #1e2758 100%);
}

/* 개인정보 수집/이용 동의 */
.consent_box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(8, 14, 40, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.consent_box.is_alert {
  border-color: rgba(217, 75, 75, 0.7);
  background: rgba(217, 75, 75, 0.1);
  animation: handShake 0.5s ease;
}
.consent_box_txt {
  display: flex;
  align-items: center;
  gap: 10px;
}
.consent_box .txt {
  margin: 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
}
.consent_box .required {
  color: #ff7a7a;
  font-weight: 800;
  margin-right: 2px;
}
.consent_box .terms_btn {
  padding: 7px 14px;
  font-size: 15px;
  font-weight: 700;
  color: #fff6d4;
  background: rgba(244, 201, 104, 0.16);
  border: 1px solid rgba(244, 201, 104, 0.45);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}
.consent_box .terms_btn:hover {
  background: rgba(244, 201, 104, 0.28);
  transform: translateY(-1px);
}
.consent_box .check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}
.consent_box .check input[type="checkbox"] {
  width: 28px;
  height: 28px;
  accent-color: #f4c968;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s ease;
}
.consent_box .check input[type="checkbox"]:checked {
  background: #f4c968;
}
.consent_box .check span {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.consent_warning {
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  color: #ff8a8a;
  opacity: 0;
  padding-top: 10px;
  transition:
    opacity 0.2s ease,
    max-height 0.2s ease,
    margin 0.2s ease;
}
.consent_warning.show {
  max-height: 30px;
  opacity: 1;
  margin: 0 0 10px;
}
.prize_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.prize_list .item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.prize_list .item .emoji {
  font-size: 14px;
}
.prize_list .item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
}

/* 팝업 미리보기 (퍼블리싱 확인용) */
.preview_box {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 18px 20px 20px;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  box-sizing: border-box;
}
.preview_box .tit {
  margin: 0 0 14px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}
.preview_box .tit span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}
.preview_box .btn_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.preview_btn {
  padding: 9px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.preview_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}
.preview_btn_win {
  background: linear-gradient(120deg, #e8b03a, #f4c968);
  color: #23264d;
}
.preview_btn_tie {
  background: linear-gradient(120deg, #3a4a8f, #5a6cc0);
}
.preview_btn_lose {
  background: linear-gradient(120deg, #55597a, #767ba6);
}
.preview_btn_already {
  background: linear-gradient(120deg, #2f3a6e, #4a5a9a);
}
.preview_btn_terms {
  background: linear-gradient(120deg, #3a4a8f, #5a6cc0);
}

/* 유의사항 */
.notice {
  max-width: 760px;
  margin: 36px auto 0;
  padding: 24px 26px 22px;
  border-radius: 20px;
  background: rgba(8, 14, 40, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(8px);
  box-sizing: border-box;
}
.notice .tit {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: #f4c968;
}
.notice ul {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
}
.notice ul li {
  position: relative;
  padding:0 0 8px 14px;
}
.notice .coupon_info {
  padding: 6px 0 2px 16px;
  line-height: 1.6;
}
.notice ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  margin-right: 8px;
  color: #f4c968;
  font-weight: 800;
}
.notice a {
  color: #c5d8f9;
  text-decoration: underline;
  text-underline-offset: 2px;
  display:inline-flex;
}
.notice .dot,
.notice .indent {
  margin: 4px 0 0;
}
.notice .dot::before {
  content: "•";
  margin-right: 8px;
}
.notice .indent {
  padding-left: 16px;
}

/* 결과 팝업 */
.popup_wrap.is-open {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 10052;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 6, 16, 0.76);
  box-sizing: border-box;
}
.popup {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 42px 28px 30px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(244, 201, 104, 0.22),
      transparent 42%
    ),
    linear-gradient(165deg, #fffdf7, #f6efd9);
  color: #23264d;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
  animation: popupPop 0.28s ease;
}
.popup_deco {
  position: absolute;
  inset: 0 0 auto;
  height: 90px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(244, 201, 104, 0.35),
      transparent 40%
    ),
    radial-gradient(circle at 80% 10%, rgba(212, 59, 59, 0.18), transparent 36%);
  pointer-events: none;
}
.popup_close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(35, 38, 77, 0.08);
  color: #23264d;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.popup_close:hover {
  background: rgba(35, 38, 77, 0.18);
}
.popup_icon {
  position: relative;
  font-size: 50px;
  margin-bottom: 4px;
}
.popup_eyebrow {
  margin: 0 0 4px;
  font-family: "YeogiOttaeJalnan", sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  opacity: 0.55;
}
.popup_title {
  margin: 0 0 10px;
  font-family: "YeogiOttaeJalnan", sans-serif;
  font-size: 30px;
  font-weight: normal;
}
.popup_desc {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(35, 38, 77, 0.75);
}
.popup_gift_desc {
  color: rgba(35, 38, 77, 0.75);
  padding-bottom:7px;
}

.popup_gift {
  margin: 4px 0 16px;
}
.popup_gift_emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  margin: 8px auto 18px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 35%,
    #fff,
    rgba(244, 201, 104, 0.18)
  );
  box-shadow: inset 0 0 0 6px rgba(244, 201, 104, 0.18);
  font-size: 72px;
}
.popup_gift img {
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.18));
  height:22vh;
  width:80%;
}
.popup_note {
  margin: -6px 0 18px;
  font-size: 14px;
  color: rgba(35, 38, 77, 0.5);
}
.popup_btn {
  width: 100%;
  padding: 14px 0;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease;
}

/* 승리 팝업 */
.popup_win {
  border-top: 8px solid #e8b03a;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 0 6px rgba(244, 201, 104, 0.18);
}
.popup_win .popup_title {
  color: #d43b3b;
}
.popup_btn_win {
  background: linear-gradient(120deg, #d43b3b, #e85d5d);
}

/* 무승부 팝업 */
.popup_tie {
  border-top: 8px solid #5a6cc0;
}
.popup_tie .popup_title {
  color: #33397a;
}
.popup_btn_tie {
  background: linear-gradient(120deg, #3a4a8f, #5a6cc0);
}

/* 패배 팝업 */
.popup_lose {
  border-top: 8px solid #9296b8;
}
.popup_lose .popup_title {
  color: #5b5f80;
}
.popup_btn_lose {
  background: linear-gradient(120deg, #6a6f96, #8b8fb8);
}

/* 이미 참여 팝업 */
.popup_already {
  border-top: 8px solid #3a4a8f;
}
.popup_already .popup_title {
  color: #23264d;
  font-size: 26px;
}
.popup_date {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(35, 38, 77, 0.7);
}
.popup_date span {
  margin-left: 4px;
  color: #23264d;
}
.popup_desc_prize {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 800;
  color: #23264d;
}
.popup_desc_prize strong {
  color: #d43b3b;
}
.popup_btn_already {
  background: linear-gradient(120deg, #3a4a8f, #5a6cc0);
}

/* 약관 팝업 */
.popup_terms {
  max-width: 560px;
  text-align: left;
  padding: 40px 28px 26px;
  border-top: 8px solid #5a6cc0;
}
.popup_terms .popup_eyebrow,
.popup_terms .popup_title {
  text-align: center;
}
.popup_title_sm {
  font-size: 22px;
}
.terms_table {
  width: 100%;
  border-collapse: collapse;
  margin: 4px 0 16px;
  font-size: 13px;
  table-layout: fixed;
}
.terms_table th,
.terms_table td {
  border: 1px solid rgba(35, 38, 77, 0.15);
  padding: 10px 8px;
  text-align: center;
  line-height: 1.45;
  vertical-align: middle;
}
.terms_table th {
  background: rgba(90, 108, 192, 0.12);
  font-weight: 700;
  color: #33397a;
}
.popup_btn_terms {
  background: linear-gradient(120deg, #3a4a8f, #5a6cc0);
}

/* 컨텐츠2 */
.cont_2 {
  padding-bottom: 120px;
}
.cont_2 .inner {
  padding: 40px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(244, 201, 104, 0.18), transparent 18%),
    linear-gradient(165deg, #fffdf8, #f3efe4);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
  color: #23264d;
  border: 1px solid rgba(244, 201, 104, 0.28);
}
.cont_2 .typo_wrap {
  text-align: center;
  padding-bottom: 26px;
}
.lec_kicker {
  font-size: 22px;
  letter-spacing: 0.22em;
  color: rgba(212, 59, 59, 0.7);
  font-weight: 800;
}
.cont_2 .typo_wrap h2 {
  padding-top: 10px;
  font-family: "YeogiOttaeJalnan", sans-serif;
  font-size: 40px;
  font-weight: normal;
  color: #23264d;
}
.cont_2 .typo_wrap h2 strong {
  color: #d43b3b;
}
.cont_2 .lec_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.cont_2 .lec_list li {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(35, 38, 77, 0.08);
  box-shadow: 0 8px 18px rgba(35, 38, 77, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  overflow: hidden;
}
.cont_2 .lec_list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(35, 38, 77, 0.16);
}
.cont_2 .lec_list a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 22px 18px 18px;
  color: inherit;
  box-sizing: border-box;
  border-top: 4px solid #f4c968;
}
.cont_2 .badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}
.cont_2 .badge_offline {
  background: #2a2d3f;
}
.cont_2 .badge_online {
  background: linear-gradient(90deg, #2f6fe0, #4c8aff);
}
.cont_2 .cat {
  padding: 6px 0 2px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(35, 38, 77, 0.5);
}
.cont_2 .name {
  font-size: 30px;
  font-weight: 800;
  color: #23264d;
  line-height: 1.3;
}
.cont_2 .desc {
  font-size: 22px;
  color: #23264d;
  font-weight: 700;
  line-height: 1.4;
}
.cont_2 .more {
  padding-top: 16px;
  font-size: 16px;
  font-weight: 800;
  color: #d43b3b;
  margin-top:auto;
}
.cont_2 .typo_wrap{
  padding-bottom:16px;
}
.mo {
  display: none;
}
.pc {
  display: block;
}

/* 반응형 */
@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
  .cont_2 .lec_list {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 820px) {
  .wing_banner{position: relative;top:0;}
  .wing_banner a{text-align:left;padding:15px;border-radius:0;}
  .wing_cta{
    width: 30%;
    position: absolute;
    top: 11px;
    right: 10px;
    padding:2px 0;
    margin-top: 0;
    font-size: 16px;
  }
  .wing_tit{margin-bottom:0;}
  .mo {
    display: block;
  }
  .pc {
    display: none;
  }
  .evt_wrp{overflow:hidden;}
  .deco_lantern_l {
    left: -6px;
  }
  .deco_lantern_r {
    right: -6px;
  }
  .lantern_body {
    font-size: 32px;
  }
  .visual {
    padding-top: 56px;
  }
  .visual .badge {
    font-size: 1rem;
    font-size: clamp(1rem, 0.84rem + 0.8vw, 1.25rem);
    padding: 10px 20px;
  }
  .visual h1 {
    font-size: 2.5rem;
    font-size: clamp(2.5rem, 1.8599999999999999rem + 3.2vw, 3.5rem);
  }
  .visual .sub_txt {
    font-size: 1.0625rem;
    font-size: 1.125rem;
font-size: clamp(1.125rem, 0.965rem + 0.8vw, 1.375rem);
  }
  .visual .guarantee {
    font-size: 1.125rem;
font-size: clamp(1.125rem, 0.845rem + 1.4000000000000001vw, 1.5625rem);
  }
  .visual .period {
    font-size: 1.125rem;
font-size: clamp(1.125rem, 0.965rem + 0.8vw, 1.375rem);
white-space: nowrap;
  }
  .consent_box_txt {
    align-items: self-start;
    flex-direction: column;
  }
  .visual .prize_item{
    padding-top: 40px;
  }
  .consent_box .txt {
    text-align: left;
  }
  .consent_box .check {
    position: absolute;
    right: 20px;
    bottom: 21px;
  }
  .consent_box .check input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }
  .game_box {
    padding: 30px 16px 24px;
  }
  .game_box .guide {
    font-size: 26px;
  }
  .hand_display {
    width: 168px;
    height: 168px;
  }
  .hand_emoji {
    font-size: 82px;
  }
  .cont_2 .inner {
    padding: 20px;
  }
  .lec_kicker {
    font-size: 16px;
  }
  .cont_2 .typo_wrap h2 {
    font-size: 1.375rem;
    font-size: clamp(1.375rem, 1.135rem + 1.2vw, 1.75rem);
  }
  .cont_2 .lec_list {
    grid-template-columns: repeat(1, 1fr);
  }
  .cont_2 .lec_list li:hover {
    transform: none;
    box-shadow: none;
  }
  .cont_2 .lec_list a{padding:16px;}
  .cont_2 .desc{line-height:1.2;}
  .cont_2 .name{font-size:22px;}
}
