.header {
  width: 100%;
  height: 5rem;
  position: fixed;
  top: 55px;
  left: 0;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 1rem;
  z-index: 999;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843) 0%, rgba(0, 0, 0, 0) 100%);
  transition: top .1s linear;
}
.header .menu_close,
.header .menu_open {
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}
.header .menu_close img,
.header .menu_open img {
  display: block;
  width: 100%;
  height: auto;
}
.header a.logo img {
  display: block;
  width: 120px;
  filter: invert(1);
}
.header .menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: min(343px, 100%);
  height: 100vh;
  background: #fff;
  border-radius: 0 18px 0 0;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  box-shadow: 8px 0 24px rgba(0, 0, 0, 0.12);
}
.header .menu.is-open {
  transform: translateX(0);
}
.header .menu__head {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 1px solid #eee;
}
.header .menu__head a.logo img {
  display: block;
  width: 120px;
  filter: invert(0);
}
.header .menu__list {
  list-style: none;
  padding: 2rem 0 0 2.5rem;
  margin: 0;
}
.header .menu__list li + li {
  margin-top: 1.5rem;
}
.header .menu__list a {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #666;
  text-decoration: none;
}
.header .menu__list a:hover, .header .menu__list a.is-active {
  color: #00b56a;
}
.header .link {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.header .link__btn {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f4f5;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.header .link__btn img {
  display: block;
  width: auto;
  max-width: 22px;
  max-height: 22px;
  height: auto;
  transition: filter 0.2s ease;
}
.header .link__btn:hover img, .header .link__btn:focus-visible img {
  filter: brightness(0) invert(1);
}
.header .link__btn.btn_home:hover, .header .link__btn.btn_home:focus-visible {
  background: #2BAF7E;
}
.header .link__btn.btn_dc:hover, .header .link__btn.btn_dc:focus-visible {
  background: #5865f2;
}
.header .link__btn.btn_yt:hover, .header .link__btn.btn_yt:focus-visible {
  background: #ff0000;
}
.header .link__btn.btn_threads:hover, .header .link__btn.btn_threads:focus-visible {
  background: #000;
}

@media (max-width: 768px) {
  .header {
    padding: 0 1rem;
    width: 100%;
    height: 3.5rem;
    background: rgba(0, 0, 0, 0.7960784314);
  }
  .header .link {
    top: 12px;
    right: 12px;
    gap: 6px;
  }
  .header .link__btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
  }
  .header .link__btn img {
    max-width: 14px;
    max-height: 14px;
  }
  .header a.logo img {
    width: 90px;
  }
  .header .menu__head {
    height: 3.5rem;
    padding: 0 1rem;
  }
  .header .menu__head a.logo img {
    width: 90px;
  }
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  font-family: "Noto Sans TC", "Lucida Grande", Helvetica, Arial, sans-serif;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body {
  background-color: #000;
}
body::-webkit-scrollbar {
  width: 0.5rem;
}
body::-webkit-scrollbar-track {
  background: #050505;
}
body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  border: 2px solid #050505;
}
body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.55);
}

body.menu-open,
body.no-scroll {
  overflow: hidden;
}

section {
  width: 100%;
  height: 100vh;
  display: block;
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
section .video-wrap {
  position: fixed;
  top: 0;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
section .video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}
section .bg_video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 100px 1rem;
  box-sizing: border-box;
  overflow: hidden;
}
.main .video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.main .bg_video {
  display: block;
}
.main__center {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  box-sizing: border-box;
  transform: translateX(-50%);
}
.main__bi {
  width: clamp(92px, 8vw, 150px);
}
.main__play {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: clamp(64px, 5.2vw, 96px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3764705882);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transform: rotate(45deg);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}
.main__play img {
  display: block;
  width: clamp(20px, 1.6vw, 30px);
  height: auto;
  margin-left: 10px;
  transform: rotate(-45deg);
}
.main__play:hover {
  background: #0fb376;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 0 8px rgba(47, 207, 148, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.36);
  transform: rotate(45deg) scale(1.06);
}
.main__play:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 6px;
}
.main__title {
  display: block;
  width: min(900px, 80vw);
  height: auto;
  margin-top: clamp(48px, 3.75vw, 96px);
}
.main__sub {
  display: block;
  width: min(864px, 78vw);
  height: auto;
}
.main__title, .main__sub {
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
}
.main__center > picture {
  display: block;
  margin-top: clamp(8px, 1vw, 15px);
  line-height: 0;
}
.main__platform {
  width: min(682px, 90vw);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(20px, 1.25vw, 32px);
}
.main__platform a {
  display: block;
  flex: 1 1 0;
  max-width: 200px;
  transition: transform 0.25s ease;
}
.main__platform a:hover {
  transform: scale(1.05);
}
.main__platform a img {
  display: block;
  width: 100%;
  height: auto;
}
.main__join {
  display: block;
  width: min(720px, 90vw);
  height: auto;
  margin-top: clamp(20px, 1.25vw, 32px);
  transition: transform 0.25s ease;
}
.main__join:hover {
  transform: scale(1.05);
}
.main__join img {
  display: block;
  width: 100%;
  height: auto;
}
.main .scroll_button {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 16px auto 16px;
  animation: scrollButton 3s reverse linear infinite;
  pointer-events: none;
  z-index: 5;
}
.main .scroll_button::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath fill='%23fff' d='M8 4a.667.667 0 0 1 .667.667v7.723l.862-.861a.666.666 0 0 1 .88-.056l.062.056a.667.667 0 0 1 .056.88l-.056.062-2 2a.667.667 0 0 1-.88.056l-.062-.056-2-2a.666.666 0 0 1 .88-.998l.062.056.862.861V4.667A.667.667 0 0 1 8 4Zm0-2.667a3.333 3.333 0 0 1 1.333 6.39V6.58a2.333 2.333 0 1 0-2.666 0v1.142A3.334 3.334 0 0 1 8 1.333Z'/%3E%3C/svg%3E") no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1920px) {
  .main__center {
    top: 30%;
  }
  .main__title {
    width: min(700px, 80vw);
  }
  .main__sub {
    width: min(680px, 78vw);
  }
  .main__platform {
    width: min(546px, 90vw);
  }
  .main__join {
    width: min(640px, 90vw);
  }
}
@media (max-width: 1440px) {
  .main__center {
    top: 34%;
  }
  .main__bi {
    width: clamp(70px, 9vw, 90px);
  }
  .main__play {
    width: clamp(56px, 6.5vw, 74px);
  }
  .main__play img {
    width: clamp(18px, 2vw, 22px);
    margin-left: 6px;
  }
  .main__title {
    width: min(520px, 75vw);
    margin-top: clamp(32px, 4vw, 48px);
  }
  .main__sub {
    width: min(500px, 72vw);
  }
  .main__platform {
    width: min(440px, 80vw);
  }
  .main__join {
    width: min(500px, 80vw);
  }
}
@media (max-width: 768px) {
  .main {
    padding: 80px 1rem 30px;
  }
  .main__center {
    top: 40%;
    padding: 0 10px;
  }
  .main__bi {
    width: 90px;
  }
  .main__play {
    width: 74px;
    border-width: 2px;
    border-radius: 10px;
  }
  .main__play img {
    width: 22px;
    margin-left: 4px;
  }
  .main__title {
    width: min(460px, 100vw - 24px);
    margin-top: 48px;
  }
  .main__sub {
    width: min(460px, 100vw - 20px);
  }
  .main__center > picture {
    margin-top: 8px;
  }
  .main__platform {
    width: min(300px, 100vw - 32px);
    gap: 12px;
    margin-top: 20px;
  }
  .main__platform a {
    flex: 0 0 calc((100% - 12px) / 2);
    width: calc((100% - 12px) / 2);
    margin: 0;
  }
  .main__platform a:nth-child(3) {
    display: none;
  }
  .main__join {
    width: min(460px, 100vw - 32px);
    margin-top: 20px;
  }
  .main .scroll_button {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 10px auto 14px;
  }
  .main .scroll_button::before {
    width: 16px;
    height: 16px;
  }
}
.footer {
  /* position: fixed; */
  position: relative;
  left: 0;
  bottom: 0;
  z-index: 50;
  width: 100%;
  padding: 1.5rem;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  transition: background 0.35s ease, box-shadow 0.35s ease;
  box-sizing: border-box;
  z-index: 888;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.footer__logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__logos .logo {
  display: block;
  height: 1.5rem;
}
.footer__logos .logo--white {
  display: none;
}
.footer__copyright {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__copyright p {
  font-size: 12px;
  line-height: 1.4;
  color: #ccc;
  white-space: nowrap;
  letter-spacing: 0;
}
.footer__copyright .rating {
  display: block;
  height: 1.5rem;
}
.footer__rating-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__notice {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__notice li {
  font-size: 12px;
  line-height: 1.4;
  color: #ccc;
}
.footer.is-white {
  background: #fff;
}
.footer.is-white .logo--default {
  display: none;
}
.footer.is-white .logo--white {
  display: block;
}
.footer.is-white .footer__notice li {
  color: #888;
}
.footer.is-white .footer__copyright p {
  color: #888;
}

@media (max-width: 768px) {
  .footer {
    position: relative;
    left: auto;
    bottom: auto;
    background: #fff;
    padding: 1rem 0.5rem;
  }
  .footer__inner {
    position: relative;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer__logos {
    gap: 1rem;
  }
  .footer__logos img {
    height: 1rem;
  }
  .footer__logos .logo--default {
    display: none;
  }
  .footer__logos .logo--white {
    display: block;
  }
  .footer__copyright p {
    font-size: 10px;
    letter-spacing: 0;
  }
  .footer__rating-wrap {
    gap: 0.5rem;
  }
  .footer__rating-wrap img.rating {
    height: 1.5rem;
  }
  .footer__notice li {
    font-size: 10px;
    letter-spacing: 0;
  }
}
.pop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.pop.is-open {
  display: block;
}
.pop__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.pop__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(640px, 90vw);
  max-height: 80vh;
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pop__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}
.pop__header .pop__close {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  border: none;
  background-color: transparent;
}
.pop__header .pop__close img {
  width: 100%;
}
.pop__header img {
  height: 1.5rem;
}
.pop__content {
  background: #F6F4F4;
  overflow-y: auto;
  flex: 1;
  padding: 1rem 1.5rem;
}
.pop__content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.3px;
  text-align: center;
  padding: 1rem 0;
  color: #626262;
}
.pop__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pop__list li {
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
}
.pop__list li .date {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #999;
  min-width: 90px;
  border-right: 1px solid #eee;
  padding-right: 1rem;
}
.pop__list li .date::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: url("https://nxtw.dn.nexoncdn.co.kr/mbm/event/2026/0717_08gnd3iuz3/common/icon_time.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.pop__list li p {
  font-size: 1rem;
  color: #333;
}
.pop__content--list {
  letter-spacing: 1px;
}
.pop__content--list table {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  border-collapse: collapse;
  overflow: hidden;
}
.pop__content--list tr:first-child th {
  padding: 1.5rem 1rem 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.pop__content--list tr:first-child th h1 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 0.5rem;
}
.pop__content--list tr:first-child th p {
  font-size: 0.875rem;
  color: #999;
}
.pop__content--list tr:last-child td {
  width: 50%;
  padding: 1.5rem 1rem;
  text-align: center;
  vertical-align: top;
}
.pop__content--list tr:last-child td:first-child {
  border-right: 1px solid #eee;
}
.pop__content--list tr:last-child td p {
  font-size: 0.875rem;
  color: #999;
}
.pop__content--list tr:last-child td p span {
  color: #2BAF7E;
  font-weight: 700;
}
.pop__content--list tr:last-child td p:nth-of-type(2) {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  color: #333;
  margin-top: 0.25rem;
}
.pop__content--list tr:last-child td a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: #4A4F58;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}
.pop__content--list tr:last-child td a:hover {
  background: #2BAF7E;
}
.pop__notice-button {
  display: flex;
  width: 100%;
  gap: 10px;
  padding: 10px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.pop__notice-button:hover {
  background: #e6e6e6;
}
.pop__notice-button .date {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #999;
  min-width: 90px;
  border-right: 1px solid #eee;
  padding-right: 1rem;
}
.pop__notice-button .date::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: url("https://nxtw.dn.nexoncdn.co.kr/mbm/event/2026/0717_08gnd3iuz3/common/icon_time.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.pop__notice-button p {
  font-size: 1rem;
  color: #333;
}
.pop__content--notice {
  display: none;
  flex-direction: column;
  gap: 12px;
}
.pop.js-pop-news.is-notice-open .pop__content--list {
  display: none;
}
.pop.js-pop-news.is-notice-open .pop__content--notice {
  display: flex;
}
.pop__back {
  align-self: flex-start;
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #626262;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}
.pop__notice-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  background: #fff;
  border-radius: 10px;
}
.pop__footer {
  padding: 1rem 0;
  text-align: center;
  background: #F6F4F4;
}
.pop__btn {
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background: #2BAF7E;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2px;
}
.pop__btn:hover {
  background: #20c889;
}

.pop--movie .pop__box {
  position: relative;
  width: min(900px, 90vw);
}
.pop--movie .pop__content {
  padding: 1.5rem;
  background: #F6F4F4;
}
.pop--movie .pop__movie-main {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 0.5rem;
  overflow: hidden;
}
.pop--movie .pop__movie-main video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pop--movie .pop__movie-main iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.pop--movie .pop__thumb-wrap {
  width: min(900px, 86vw);
  margin: 0 auto;
  padding: 1rem;
  background: #fff;
  border-radius: 1rem;
  box-sizing: border-box;
}
.pop--movie .pop__movie-swiper {
  width: 100%;
}
.pop--movie .pop__thumb {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  background: #000;
  cursor: pointer;
  border-radius: 0.75rem;
  overflow: hidden;
}
.pop--movie .pop__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.pop--movie .pop__thumb span {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.pop--movie .pop__thumb.is-active {
  box-sizing: border-box;
  aspect-ratio: 16/9;
  border: 4px solid #2BAF7E;
}
.pop--movie .pop__arrow {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 880px;
}
.pop--movie .pop__arrow img {
  width: 16px;
}
.pop--movie .pop__arrow--prev, .pop--movie .pop__arrow--next {
  position: absolute;
  padding: 0.75rem;
  border: 0;
  border-radius: 0.75rem;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.pop--movie .pop__arrow--prev {
  left: -64px;
}
.pop--movie .pop__arrow--next {
  right: -64px;
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .pop__content {
    padding: 0.5rem 1rem;
  }
  .pop__content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.3px;
  }
  .pop__list li p {
    font-size: 14px;
  }
  .pop__btn {
    font-size: 1rem;
  }
  .pop__content--list tr:first-child th {
    padding: 1rem 0.5rem 0.75rem;
  }
  .pop__content--list tr:first-child th h1 {
    font-size: 1.25rem;
  }
  .pop__content--list tr:last-child {
    display: flex;
    flex-direction: column;
  }
  .pop__content--list tr:last-child td {
    width: 100%;
    padding: 1rem;
  }
  .pop__content--list tr:last-child td:first-child {
    border-right: 0;
    border-bottom: 1px solid #eee;
  }
  .pop--movie .pop__box {
    width: 94vw;
  }
  .pop--movie .pop__content {
    padding: 0.75rem;
  }
  .pop--movie .pop__thumb-wrap {
    display: block;
    padding: 0.75rem 0;
  }
  .pop--movie .pop__movie-swiper {
    padding: 0;
  }
  .pop--movie .pop__thumb {
    border-radius: 0.5rem;
  }
  .pop--movie .pop__thumb img {
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .pop--movie .pop__thumb span {
    display: none;
  }
  .pop--movie .pop__arrow {
    top: auto;
    bottom: 10vh;
    width: 44px;
    height: 44px;
    transform: translate(-50%, auto);
  }
  .pop--movie .pop__arrow--prev {
    left: calc(50% - 52px);
  }
  .pop--movie .pop__arrow--next {
    right: calc(50% - 52px);
    transform: scaleX(-1);
  }
}
#mabinogim .game_info_class .detail_wrap .inner .detail_layout .back_button,
#mabinogim .info .detail_wrap .inner .detail_layout .back_button,
#mabinogim .container .detail_wrap .inner .detail_layout .back_button,
#mabinogim .info .map_wrap .map_detail .inner > div .back_button,
#mabinogim .container .map_wrap .map_detail .inner > div .back_button {
  top: 5.75rem;
}

#mabinogim .info .story_wrap .bg,
#mabinogim .container .story_wrap .bg,
#mabinogim .info .story_wrap .bg .video_area,
#mabinogim .container .story_wrap .bg .video_area,
#mabinogim .info .story_wrap .bg .video_area video,
#mabinogim .container .story_wrap .bg .video_area video {
  filter: none !important;
  backdrop-filter: none !important;
}

#mabinogim .game_info_story #infoMenu.pagination,
#mabinogim .game_info_story #infoMenu.pagination .swiper {
  backdrop-filter: none !important;
}

#mabinogim .info .story_wrap .story,
#mabinogim .container .story_wrap .story,
#mabinogim .info .contents_wrap .contents,
#mabinogim .container .contents_wrap .contents {
  padding-bottom: clamp(3rem, 5vh, 6rem);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  #mabinogim .game_info_class .detail_wrap .inner .detail_layout .back_button,
  #mabinogim .info .detail_wrap .inner .detail_layout .back_button,
  #mabinogim .container .detail_wrap .inner .detail_layout .back_button,
  #mabinogim .info .map_wrap .map_detail .inner > div .back_button,
  #mabinogim .container .map_wrap .map_detail .inner > div .back_button {
    top: 4.75rem;
  }
  #mabinogim .info .story_wrap .bg,
  #mabinogim .container .story_wrap .bg,
  #mabinogim .info .story_wrap .bg .video_area,
  #mabinogim .container .story_wrap .bg .video_area,
  #mabinogim .info .story_wrap .bg .video_area video,
  #mabinogim .container .story_wrap .bg .video_area video {
    filter: none;
    backdrop-filter: none;
  }
  #mabinogim .info .story_wrap .bg .video_area::before,
  #mabinogim .container .story_wrap .bg .video_area::before {
    display: none;
  }
  #mabinogim .info .story_wrap .story,
  #mabinogim .container .story_wrap .story,
  #mabinogim .info .contents_wrap .contents,
  #mabinogim .container .contents_wrap .contents {
    padding-bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */