@charset "UTF-8";
@import url("https://hangeul.pstatic.net/hangeul_static/css/nanum-gothic.css");
@import url("https://hangeul.pstatic.net/hangeul_static/css/nanum-barun-gothic.css");
body[data-scroll="false"] {
  overflow: hidden; }

#devils-whisper-app ul,
#devils-whisper-app ol {
  list-style: none; }

#devils-whisper-app a {
  text-decoration: none;
  color: inherit; }

#devils-whisper-app button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit; }

#devils-whisper-app img {
  max-width: 100%; }

#devils-whisper-app h1,
#devils-whisper-app h2,
#devils-whisper-app h3,
#devils-whisper-app h4,
#devils-whisper-app h5,
#devils-whisper-app h6 {
  font-weight: inherit; }

#devils-whisper-app .hide {
  display: none; }

#devils-whisper-app .text-hidden {
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  letter-spacing: 0 !important; }

@counter-style counter-style-pad-2 {
  system: numeric;
  symbols: "0" "1" "2" "3" "4" "5" "6" "7" "8" "9";
  suffix: " ";
  pad: 2 "0"; }
/* ===== layout.css ===== */
/* ============================================================
   CSS CUSTOM PROPERTIES (Variables)
   ============================================================ */
#devils-whisper-app {
  --layout-max-width: 2560px;
  --layout-header-height: 90px;
  --layout-footer-height: 60px;
  --layout-min-width: 1400px;
  --floating-base-width: 2560px;
  --layout-color: #fff;
  --layout-background-color: #fff;
  /* Header */
  --header-bg: #33313e;
  --header-border: #474456;
  --nav-color: #c8c8c8;
  --nav-icon-color: #ffdd6b;
  --nav-active-color: #ffdd6b;
  --nav-disabled-color: #6e6c6c;
  --nav-sub-color: #f1f1f1;
  --nav-sub-bg: #2d2b36;
  --nav-sub-active-color: #ffdd6b;
  --nav-sub-active-bg: #3c3a44;
  --history-color: #fff;
  --history-active-color: #ff005a;
  --game-start-color: #000;
  --game-start-bg: #ffdd6b;
  --game-start-active-bg: #e944b5;
  --not-today-color: #fff;
  /* Popup */
  --popup-bg: #fff;
  --popup-play-bg: #000;
  --popup-icon-color: #fff;
  /* Right menu */
  --right-menu-width: 114px;
  --right-menu-arc: 29px;
  --right-menu-bg: #fff;
  --right-menu-toggle-bg: #ef2e96;
  --right-menu-toggle-icon: #fff;
  --right-menu-color: #848484;
  --right-menu-active-color: #000;
  --right-menu-active-number-color: #455ecd;
  --right-menu-border: #ddd; }

/* ============================================================
   FLOATING SYSTEM (핵심 포지셔닝 시스템)
   floating-child > * 는 절대 포지션으로 배치됨
   --top, --left CSS 변수를 사용하여 위치 결정
   ============================================================ */
.floating-child {
  position: relative; }

.floating,
.floating-child > * {
  position: absolute;
  top: var(--top, 0px);
  left: calc(50% + var(--left, 0px) - (var(--floating-base-width) / 2)); }

/* ============================================================
   LAYOUT WRAP
   ============================================================ */
.layout-wrap {
  position: relative;
  transition-property: min-width, max-width;
  margin: 0 auto;
  background: var(--layout-background-color);
  padding-top: 0;
  min-width: var(--layout-min-width);
  max-width: var(--layout-max-width);
  overflow: hidden;
  color: var(--layout-color);
  /* floating-child의 자식들이 이 값을 참조 */
  --floating-base-width: 2560px; }

/* ============================================================
   POPUP
   ============================================================ */
.popup-overlay {
  display: flex;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 900;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 0;
  overflow: hidden;
  overflow-y: auto; }

.popup-overlay.popup-play {
  background: rgba(0, 0, 0, 0.85); }

.popup-enter-active,
.popup-leave-active {
  transition: opacity 0.3s; }

.popup-enter,
.popup-leave-to {
  opacity: 0; }

.popup-body {
  display: block;
  position: relative;
  margin: auto; }

.popup-close-btn {
  position: absolute;
  z-index: 100;
  inset: 25px 25px auto auto;
  border: 1px solid var(--popup-icon-color, #fff);
  background: rgba(255, 255, 255, 0.3);
  width: 54px;
  height: 54px;
  overflow: hidden; }

.popup-play .popup-close-btn {
  inset: -69px 0 auto auto; }

.popup-close-btn span {
  position: absolute;
  inset: 0; }

.popup-close-btn span::before,
.popup-close-btn span::after {
  position: absolute;
  rotate: 45deg;
  margin: auto;
  inset: 0;
  background: #fff;
  width: 30px;
  height: 2px;
  content: ""; }

.popup-close-btn span::after {
  rotate: -45deg; }

.popup-images {
  overflow: hidden; }

.flicking-viewport {
  overflow: hidden;
  position: relative; }

.flicking-camera {
  display: flex;
  transition: transform 0.3s ease; }

.popup-arrow {
  position: absolute;
  z-index: 100;
  margin: auto 0;
  inset: 0 auto 0 25px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.3);
  width: 54px;
  height: 54px;
  overflow: hidden; }

.popup-arrow.next {
  inset: 0 25px 0 auto; }

.popup-arrow span {
  position: absolute;
  inset: 0; }

.popup-arrow.prev span::after {
  display: inline-block;
  position: absolute;
  rotate: 135deg;
  margin: auto;
  inset: 0 0 0 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  width: 15px;
  height: 15px;
  content: ""; }

.popup-arrow.next span::after {
  display: inline-block;
  position: absolute;
  rotate: -45deg;
  margin: auto;
  inset: 0 7px 0 0;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  width: 15px;
  height: 15px;
  content: ""; }

.popup-player {
  width: 1280px;
  height: 720px; }

.popup-player * {
  width: 100% !important;
  height: 100% !important; }

/* ============================================================
   LEFT TITLE COMPONENT
   ============================================================ */
.left-title {
  --lt-top: 85px;
  --lt-left: 72px;
  --lt-width: 84px;
  --lt-height: 84px;
  --lt-color: #000;
  display: flex;
  position: absolute;
  top: calc(-2px + var(--lt-top) + (var(--lt-height) / 2));
  left: var(--lt-left);
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  z-index: 1;
  transition-property: top, left, border, width, height, color;
  border: 1px solid var(--lt-color);
  width: var(--lt-width);
  height: var(--lt-height);
  color: var(--lt-color);
  white-space: nowrap; }

.left-title::before {
  display: block;
  position: absolute;
  top: 50%;
  left: calc(var(--lt-left) * -1);
  transition-property: left, background, width;
  background: var(--lt-color);
  width: var(--lt-left);
  height: 1px;
  content: ""; }

.left-title.no-border {
  border-color: transparent; }

.left-title-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: bold; }

.left-title-text {
  font-size: 14px;
  line-height: 17px; }

.left-title-sub {
  font-size: 28px;
  line-height: 28px;
  font-family: NanumGothicLight, serif; }

/* ============================================================
   RIGHT MENU COMPONENT
   ============================================================ */
.right-menu {
  position: absolute;
  right: 103px;
  bottom: calc(50% + -250px);
  z-index: 500; }

@media screen and (max-width: 1716px) {
  .right-menu {
    right: 0; } }
.right-menu-toggle {
  position: absolute;
  z-index: 1;
  margin: 0 auto;
  inset: -10px 0 0;
  border-radius: 50%;
  background: var(--right-menu-toggle-bg);
  width: 47px;
  height: 47px; }

.right-menu-toggle::before,
.right-menu-toggle::after {
  position: absolute;
  margin: auto;
  inset: 0;
  background: var(--right-menu-toggle-icon);
  width: 14px;
  height: 2px;
  content: "";
  transition-property: rotate; }

.right-menu-toggle.collapsed::before {
  rotate: 180deg; }

.right-menu-toggle.collapsed::after {
  rotate: 90deg; }

.right-menu-toggle.collapsed + .right-menu-list-wrap {
  opacity: 0;
  pointer-events: none; }

.right-menu-list-wrap {
  clip-path: polygon(50% 0, 100% var(--right-menu-arc), 100% calc(100% - var(--right-menu-arc)), 50% 100%, 0 calc(100% - var(--right-menu-arc)), 0 var(--right-menu-arc));
  transition-property: opacity, clip-path, background, padding, width;
  background: var(--right-menu-border);
  padding: var(--right-menu-arc) 0;
  width: var(--right-menu-width);
  position: relative; }

.right-menu-list-wrap::before {
  display: block;
  position: absolute;
  z-index: -1;
  clip-path: polygon(50% 0, 100% var(--right-menu-arc), 100% calc(100% - var(--right-menu-arc)), 50% 100%, 0 calc(100% - var(--right-menu-arc)), 0 var(--right-menu-arc));
  transition-property: clip-path, background;
  inset: 1px;
  background: var(--right-menu-bg);
  content: ""; }

.right-menu-list {
  display: flex;
  position: relative;
  flex-direction: column;
  counter-reset: list-counter;
  margin: 15px 0 11px;
  overflow: hidden;
  color: var(--right-menu-color);
  padding: 0; }

.right-menu-list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 34px;
  transition-property: background;
  background: var(--right-menu-border);
  width: 1px;
  content: ""; }

.right-menu-list > :first-child {
  margin-top: -7px; }

.right-menu-list > :last-child {
  margin-bottom: -7px; }

.right-menu-item {
  display: block;
  position: relative;
  transition-property: color, font-weight;
  padding: 10px 0 10px 40px;
  color: var(--right-menu-color);
  font-size: 13px;
  line-height: 17px; }

.right-menu-item::before {
  position: absolute;
  top: 10px;
  left: 14px;
  transition-property: border;
  counter-increment: list-counter;
  border-right: 1px solid var(--right-menu-border);
  width: 21px;
  content: counter(list-counter,counter-style-pad-2);
  font-size: 12px; }

.right-menu-item::after {
  position: absolute;
  top: 16px;
  left: 33px;
  transition-property: background;
  border-radius: 50%;
  background: var(--right-menu-border);
  width: 3px;
  height: 3px;
  content: ""; }

.right-menu-item:hover,
.right-menu-item.router-link-active {
  color: var(--right-menu-active-color);
  font-weight: bold; }

.right-menu-item:hover::before,
.right-menu-item.router-link-active::before {
  border-color: var(--right-menu-active-number-color);
  color: var(--right-menu-active-number-color); }

.right-menu-item:hover::after,
.right-menu-item.router-link-active::after {
  background: var(--right-menu-active-number-color); }

/* ============================================================
   RIPPLE EFFECT
   ============================================================ */
.ripple {
  position: relative;
  z-index: 0;
  overflow: hidden; }

.ripple::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  opacity: 0;
  z-index: -1;
  transition-duration: 0.3s;
  transition-property: opacity, padding, width, height;
  border-radius: 50%;
  background: rgba(154, 154, 154, 0.4);
  padding: 0;
  width: 0;
  height: 0;
  content: ""; }

.ripple:hover::before {
  opacity: 1;
  padding: 50%;
  width: calc(100% * 1.41421356);
  height: calc(100% * 1.41421356); }

/* ============================================================
   ANIMATION SYSTEM (IntersectionObserver 기반)
   ============================================================ */
[data-anim] {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease; }

[data-anim].anim-done {
  opacity: 1;
  transform: none !important; }

[data-anim="slide-top"] {
  transform: translateY(100px); }

[data-anim="slide-bottom"] {
  transform: translateY(-100px); }

[data-anim="slide-left"] {
  transform: translateX(100px); }

[data-anim="slide-right"] {
  transform: translateX(-100px); }

[data-anim="fade"] {
  opacity: 0; }

[data-anim="slide-flip-top"] {
  transform: perspective(1200px) rotateX(45deg) translateY(100px);
  opacity: 0; }

/* ===== pages.css ===== */
/* ============================================================
   PAGES CSS
   각 페이지별 스타일 (소스의 floating 값들을 CSS 변수로 변환)
   floating(top, left) => --top: topPx; --left: leftPx;
   ============================================================ */
/* ============================================================
   MAIN PAGE - 인트로
   ============================================================ */
#main-intro {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/main/intro/bg.jpg") no-repeat center 0;
  background-size: cover;
  position: relative;
  overflow: hidden;
  height: 1376px; }

/* char-1: floating(-89, 0) => top: -89px, left: 0px */
#main-intro .char-1 {
  --top: -89px;
  --left: 0px;
  width: 2583px;
  height: 1376px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2)); }

#main-intro .char-1 svg {
  position: absolute;
  width: 100%;
  height: 100%; }

#main-intro .char-1 .char-1-effect-img {
  position: absolute;
  transform: translate(404px, 77px);
  animation: blinking2 1.5s ease-in infinite 2s alternate backwards; }

#main-intro .char-1 .char-1-hand-img {
  position: absolute;
  transform: translate(1040px, 571px); }

/* mirror: floating(548, 990) */
#main-intro .mirror {
  --top: 548px;
  --left: 990px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/main/intro/mirror.png") no-repeat 0 0;
  background-size: 591px 749px;
  width: 591px;
  height: 749px; }

/* mirror-effect: floating(673, 1146) */
#main-intro .mirror-effect {
  --top: 673px;
  --left: 1146px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/main/intro/mirror_effect.png") no-repeat 0 0;
  background-size: 290px 262px;
  width: 290px;
  height: 262px;
  animation: blinking2 1.5s ease-in infinite alternate backwards; }

/* char-3: floating(628, 1169) */
#main-intro .char-3 {
  --top: 628px;
  --left: 1169px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/main/intro/char_3.png") no-repeat 0 0;
  background-size: 322px 580px;
  width: 322px;
  height: 580px;
  opacity: 0;
  transition: opacity 0.5s; }

#main-intro .char-3.on {
  opacity: 1; }

/* char-2: floating(626, 1175) */
#main-intro .char-2 {
  --top: 626px;
  --left: 1175px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/main/intro/char_2.png") no-repeat 0 0;
  background-size: 419px 423px;
  width: 419px;
  height: 423px; }

/* bg-cover: floating(459, -60) */
#main-intro .bg-cover {
  --top: 459px;
  --left: -60px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/main/intro/bg_cover.png") no-repeat 0 0;
  background-size: 2645px 1053px;
  width: 2645px;
  height: 1053px; }

/* title: floating(760, 143) */
#main-intro .main-title {
  --top: 760px;
  --left: 143px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  width: 2183px;
  height: 527px; }

#main-intro .main-title svg {
  width: 100%;
  height: 100%; }

/* char-3-hover zone: floating(399, 1010) */
#main-intro .char-3-hover {
  --top: 399px;
  --left: 1010px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  width: 533px;
  height: 593px;
  cursor: pointer; }

/* ============================================================
   MAIN PAGE - 업데이트
   ============================================================ */
#main-update {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/main/update/bg.jpg") no-repeat center 0;
  background-size: cover;
  position: relative;
  overflow: hidden;
  height: 1440px; }

/* title: floating(168, 930) */
#main-update .update-title {
  --top: 168px;
  --left: 930px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  width: 700px !important;
  height: auto !important;
  background: none !important;
  text-align: center; }

#main-update .update-title .title {
  font-family: 'Cinzel', serif !important;
  font-size: 56px !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  -webkit-text-stroke: 1.5px #5836db !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(88, 54, 219, 0.8), 0 4px 15px rgba(0, 0, 0, 0.9) !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
  line-height: 1.1 !important;
  margin-bottom: 20px; }

#main-update .update-title .sub-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #d1c9ea !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9) !important;
  line-height: 1.6 !important; }

/* menu 공통: floating(475) */
#main-update .update-deco-butterfly {
  position: absolute !important;
  top: 370px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 76px !important;
  height: 86px !important;
  animation: flutter 3s ease-in-out infinite alternate !important; }

#main-update .update-deco-butterfly img {
  width: 100% !important;
  height: auto !important; }

@keyframes flutter {
  0% {
    transform: translateX(-50%) translateY(0px); }
  50% {
    transform: translateX(-50%) translateY(-8px); }
  100% {
    transform: translateX(-50%) translateY(0px); } }
#main-update .update-menu {
  --top: 475px;
  position: absolute;
  top: var(--top);
  transition-property: scale; }

#main-update .update-menu:hover {
  scale: 1.1; }

/* map-senario: floating(false, 652) */
#main-update .update-menu-map {
  --left: 652px;
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/main/update/btn_map-senario.png") no-repeat 0 0;
  background-size: 395px 668px;
  width: 395px;
  height: 668px; }

/* monster: floating(false, 1081) */
#main-update .update-menu-monster {
  --left: 1081px;
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/main/update/btn_monster.png") no-repeat 0 0;
  background-size: 395px 668px;
  width: 395px;
  height: 668px; }

/* npc: floating(false, 1509) */
#main-update .update-menu-npc {
  --left: 1509px;
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/main/update/btn_npc.png") no-repeat 0 0;
  background-size: 395px 668px;
  width: 395px;
  height: 668px; }

#main-update .update-menu .menu-title {
  position: absolute !important;
  top: 42px !important;
  left: 0 !important;
  width: 100% !important;
  font-family: 'Cinzel', serif !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 0 10px rgba(255, 255, 255, 0.4) !important;
  letter-spacing: 1.5px !important;
  text-align: center !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important; }

#main-update .update-menu:hover .menu-title {
  color: #ffdd6b !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 221, 107, 0.8) !important; }

#main-update .update-menu .menu-btn {
  position: absolute !important;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  pointer-events: none !important;
  transition: all 0.3s ease !important; }

#main-update .update-menu:hover .menu-btn {
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.9), 0 0 8px rgba(255, 255, 255, 0.8) !important; }

/* ============================================================
   SENARIO PAGE
   ============================================================ */
#senario {
  --lt-color: #fff;
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/senario/bg.jpg") no-repeat center 0;
  background-size: cover;
  position: relative;
  overflow: hidden;
  height: 1351px; }

/* description: floating(138, 780) */
#senario .senario-description {
  --top: 138px;
  --left: 780px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/senario/frame.png") no-repeat 0 0;
  background-size: 858px 907px;
  width: 858px;
  height: 907px;
  display: flex;
  flex-direction: column;
  justify-content: center; }

#senario .senario-description p {
  display: block;
  margin: -60px 0 0 295px;
  width: 410px;
  color: #220f4f;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: -0.5px;
  text-align: center;
  white-space: normal; }

#senario .senario-description p + p {
  margin: 30px 0 0 300px; }

/* char: floating(211, 408) */
#senario .senario-char {
  --top: 211px;
  --left: 408px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/senario/char.png") no-repeat 0 0;
  background-size: 671px 1134px;
  width: 671px;
  height: 1134px; }

/* ============================================================
   MAP PAGE
   ============================================================ */
#map {
  position: relative;
  --map-color: #000;
  --map-thumbnail-icon-color: #fff;
  --map-sub-title-icon-color: #fff;
  --map-sub-title-icon-background-color: #267f4a; }

.map-view {
  --animation-duration: 0.75s;
  --animation-distance-y: 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh; }

/* title: floating(145, 663) */
.map-view .map-title {
  --top: 145px;
  --left: 620px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2)); }

/* thumbnail: floating(144) left: 944 */
.map-view .map-thumbnail {
  --top: 144px;
  --left: 944px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  cursor: pointer;
  overflow: hidden; }

/* sub-title, description: left: 944, top: 666 */
.map-view .map-sub-title,
.map-view .map-description {
  --top: 666px;
  --left: 944px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  color: var(--map-color);
  width: 450px !important; }

.map-view .map-sub-title {
  display: flex;
  font-weight: bold;
  font-size: 18px;
  font-family: NanumBarunGothic, serif; }

.map-view .map-description {
  --top: 709px;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: -0.5px; }

.map-view .map-description p + p {
  margin-top: 25px; }

/* thumbnail-2: left: 1462 */
.map-view .map-thumbnail-2 {
  --top: 144px;
  --left: 1462px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  cursor: pointer;
  overflow: hidden; }

.map-view .map-sub-title-2,
.map-view .map-description-2 {
  --top: 666px;
  --left: 1462px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  color: var(--map-color);
  width: 450px !important; }

.map-view .map-sub-title-2 {
  display: flex;
  font-weight: bold;
  font-size: 18px;
  font-family: NanumBarunGothic, serif; }

.map-view .map-description-2 {
  --top: 709px;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: -0.5px; }

.map-view .map-description-2 p + p {
  margin-top: 25px; }

/* zoom button */
.map-view .map-zoom-btn {
  position: absolute;
  right: 17px;
  bottom: 17px;
  border: 1px solid var(--map-thumbnail-icon-color);
  background: rgba(255, 255, 255, 0.3);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-property: background;
  overflow: hidden; }

.map-view .map-zoom-btn:hover {
  background: rgba(255, 255, 255, 0.5); }

.map-view .map-zoom-btn .icon-zoom {
  display: block;
  position: relative;
  width: 26px;
  height: 26px; }

.map-view .map-zoom-btn .icon-zoom::before,
.map-view .map-zoom-btn .icon-zoom::after {
  display: block;
  position: absolute;
  background: var(--map-thumbnail-icon-color);
  content: ""; }

.map-view .map-zoom-btn .icon-zoom::before {
  top: 9px;
  left: 5px;
  width: 9px;
  height: 1px; }

.map-view .map-zoom-btn .icon-zoom::after {
  top: 5px;
  left: 9px;
  width: 1px;
  height: 9px; }

.map-view .map-zoom-btn .icon-zoom span {
  position: absolute;
  top: 0;
  left: 0; }

.map-view .map-zoom-btn .icon-zoom span::before,
.map-view .map-zoom-btn .icon-zoom span::after {
  display: block;
  position: absolute;
  content: ""; }

.map-view .map-zoom-btn .icon-zoom span::before {
  top: 0;
  left: 0;
  border: 1px solid var(--map-thumbnail-icon-color);
  border-radius: 50%;
  width: 19px;
  height: 19px;
  box-sizing: border-box; }

.map-view .map-zoom-btn .icon-zoom span::after {
  top: 18px;
  left: 19px;
  transform: rotate(34deg);
  border-radius: 1px;
  background: var(--map-thumbnail-icon-color);
  width: 7px;
  height: 2px; }

/* MAP 1 - 데베시스: 4b2e22.jpg(1076x562)=bg, 236a91.jpg(502x481)=title, 3a4d28.jpg(502x481)=thumbnail */
/* MAP 1 - 데베시스: map/1/bg.jpg(2560x1351)=bg, map/1/title.png(221x158)=title, map/1/thumbnail.jpg(1016x481)=thumbnail */
#map-1 {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/1/bg.jpg") no-repeat center 0;
  background-size: cover;
  height: 1351px; }

#map-1 .map-title {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/1/title.png") no-repeat 0 0;
  background-size: 221px 158px;
  width: 221px;
  height: 158px; }

#map-1 .map-thumbnail {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/1/thumbnail.jpg") no-repeat 0 0;
  background-size: 1016px 481px;
  width: 1016px;
  height: 481px; }

/* MAP 2 - 속삭임의 언덕: map/2/bg.jpg=bg, map/2/title.png(235x230)=title, map/2/thumbnail.jpg(1016x481)=thumbnail */
#map-2 {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/2/bg.jpg") no-repeat center 0;
  background-size: cover;
  height: 1351px; }

#map-2 .map-title {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/2/title.png") no-repeat 0 0;
  background-size: 235px 230px;
  width: 235px;
  height: 230px; }

#map-2 .map-thumbnail {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/2/thumbnail.jpg") no-repeat 0 0;
  background-size: 1016px 481px;
  width: 1016px;
  height: 481px; }

/* MAP 3 - 눈먼 새의 둥지: map/3/bg.jpg=bg, map/3/title.png(237x262)=title, map/3/thumbnail.jpg(1016x481)=thumbnail */
#map-3 {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/3/bg.jpg") no-repeat center 0;
  background-size: cover;
  height: 1351px; }

#map-3 .map-title {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/3/title.png") no-repeat 0 0;
  background-size: 237px 262px;
  width: 237px;
  height: 262px; }

#map-3 .map-thumbnail {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/3/thumbnail.jpg") no-repeat 0 0;
  background-size: 1016px 481px;
  width: 1016px;
  height: 481px; }

/* MAP 4 - 리키모 폐케: map/4/bg.jpg=bg, map/4/title.png(194x226)=title, map/4/thumbnail_1.jpg(502x481)=thumbnail1, map/4/thumbnail_2.jpg(502x481)=thumbnail2 */
#map-4 {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/4/bg.jpg") no-repeat center 0;
  background-size: cover;
  height: 1351px; }

#map-4 .map-title {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/4/title.png") no-repeat 0 0;
  background-size: 194px 226px;
  width: 194px;
  height: 226px; }

#map-4 .map-thumbnail {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/4/thumbnail_1.jpg") no-repeat 0 0;
  background-size: 502px 481px;
  width: 502px;
  height: 481px; }

#map-4 .map-thumbnail-2 {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/4/thumbnail_2.jpg") no-repeat 0 0;
  background-size: 502px 481px;
  width: 502px;
  height: 481px; }

/* MAP IMAGE POPUPS */
/* Map1: map/1/image.jpg(1361x710) */
.map-image-1 {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/1/image.jpg") no-repeat 0 0;
  background-size: 1361px 710px;
  width: 1361px;
  height: 710px;
  flex-shrink: 0; }

/* Map2: map/2/image.jpg(1361x710) */
.map-2-image-1 {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/2/image.jpg") no-repeat 0 0;
  background-size: 1361px 710px;
  width: 1361px;
  height: 710px;
  flex-shrink: 0; }

/* Map3: map/3/image.jpg(1361x710) */
.map-3-image-1 {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/3/image.jpg") no-repeat 0 0;
  background-size: 1361px 710px;
  width: 1361px;
  height: 710px;
  flex-shrink: 0; }

/* Map4 popups: map/4/image_1.jpg(1076x562), map/4/image_2.jpg(1076x562) */
.map-4-image-1 {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/4/image_1.jpg") no-repeat 0 0;
  background-size: 1076px 562px;
  width: 1076px;
  height: 562px;
  flex-shrink: 0; }

.map-4-image-2 {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/map/4/image_2.jpg") no-repeat 0 0;
  background-size: 1076px 562px;
  width: 1076px;
  height: 562px;
  flex-shrink: 0; }

/* ============================================================
   BOSS MONSTER PAGE
   ============================================================ */
#boss-monster {
  --lt-color: #fff;
  --boss-monster-color: #fff;
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/boss-monster/bg.jpg") no-repeat center 0;
  background-size: cover;
  position: relative;
  height: 1351px; }

.boss-monster-view {
  --animation-duration: 0.75s;
  --animation-distance-x: 100px;
  position: relative; }

/* title: floating(387, 681) */
.boss-monster-view .bm-title {
  --top: 387px;
  --left: 681px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2)); }

/* sub-title, description: floating(516, 685) */
.boss-monster-view .bm-sub-title,
.boss-monster-view .bm-description {
  --top: 516px;
  --left: 685px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  color: var(--boss-monster-color);
  width: 290px !important; }

.boss-monster-view .bm-sub-title {
  font-weight: bold;
  font-size: 18px;
  font-family: NanumBarunGothic, serif; }

.boss-monster-view .bm-description {
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: -0.3px; }

.boss-monster-view .bm-description p + p {
  margin-top: 25px; }

/* Boss Monster 1 - 괴조 페리도트 */
#boss-monster-1 {
  position: relative; }

#boss-monster-1 .bm-title {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/boss-monster/1/title.png") no-repeat 0 0;
  background-size: 359px 96px;
  width: 359px;
  height: 96px; }

/* image: floating(186, 994) */
#boss-monster-1 .bm-image {
  --top: 186px;
  --left: 994px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/boss-monster/1/image.png") no-repeat 0 0;
  background-size: 1553px 830px;
  width: 1553px;
  height: 830px; }

/* Boss Monster 2 - 라우마 */
#boss-monster-2 {
  position: relative; }

#boss-monster-2 .bm-title {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/boss-monster/2/title.png") no-repeat 0 0;
  background-size: 179px 96px;
  width: 179px;
  height: 96px; }

/* image: floating(161, 1124) */
#boss-monster-2 .bm-image {
  --top: 161px;
  --left: 1124px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/boss-monster/2/image.png") no-repeat 0 0;
  background-size: 949px 1081px;
  width: 949px;
  height: 1081px; }

/* Boss Monster 3 - 길티네 */
#boss-monster-3 {
  position: relative; }

#boss-monster-3 .bm-title {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/boss-monster/3/title.png") no-repeat 0 0;
  background-size: 949px 677px;
  width: 949px;
  height: 677px; }

/* image: floating(199, 732) */
#boss-monster-3 .bm-image {
  --top: 199px;
  --left: 732px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/boss-monster/3/image.png") no-repeat 0 0;
  background-size: 1326px 1068px;
  width: 1326px;
  height: 1068px; }

/* Boss Monster 4 - 벨리알 */
#boss-monster-4 {
  position: relative; }

#boss-monster-4 .bm-title {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/boss-monster/4/title.png") no-repeat 0 0;
  background-size: 1262px 1016px;
  width: 1262px;
  height: 1016px; }

/* image: floating(169, 843) */
#boss-monster-4 .bm-image {
  --top: 169px;
  --left: 843px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/boss-monster/4/image.png") no-repeat 0 0;
  background-size: 1517px 1100px;
  width: 1517px;
  height: 1100px; }

/* ============================================================
   NORMAL MONSTER PAGE
   ============================================================ */
#normal-monster {
  --lt-color: #fff;
  --normal-monster-color: #fff;
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/bg.jpg") no-repeat center 0;
  background-size: 2560px auto;
  position: relative; }

.normal-monster-item {
  position: relative; }

.normal-monster-item .nm-title {
  position: absolute; }

.normal-monster-item .nm-image {
  position: absolute; }

.normal-monster-item .nm-text {
  position: absolute;
  color: var(--normal-monster-color);
  width: 420px !important; }

.nm-description {
  font-size: 15px;
  line-height: 25px; }

.nm-description p + p {
  margin-top: 25px; }

/* odd items: title/text left=1362 */
.normal-monster-item:nth-child(odd) .nm-title,
.normal-monster-item:nth-child(odd) .nm-text {
  --left: 1362px;
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2)); }

/* even items: title/text left=681 */
.normal-monster-item:nth-child(even) .nm-title,
.normal-monster-item:nth-child(even) .nm-text {
  --left: 681px;
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2)); }

/* 괴조 쥬얼 - item 1: top=200, image floating(109, 726) */
.normal-monster-item:nth-child(1) .nm-title {
  --top: 200px;
  top: var(--top);
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/title_1.png") no-repeat 0 0;
  background-size: 272px 91px;
  width: 272px;
  height: 91px; }

.normal-monster-item:nth-child(1) .nm-image {
  --top: 109px;
  --left: 726px;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/image_1.png") no-repeat 0 0;
  background-size: 458px 402px;
  width: 458px;
  height: 402px; }

.normal-monster-item:nth-child(1) .nm-text {
  --top: 310px;
  top: var(--top); }

/* 바위 트롤 - item 2 */
.normal-monster-item:nth-child(2) .nm-title {
  --top: 592px;
  top: var(--top);
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/title_2.png") no-repeat 0 0;
  background-size: 250px 91px;
  width: 250px;
  height: 91px; }

.normal-monster-item:nth-child(2) .nm-image {
  --top: 597px;
  --left: 1234px;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/image_2.png") no-repeat 0 0;
  background-size: 735px 333px;
  width: 735px;
  height: 333px; }

.normal-monster-item:nth-child(2) .nm-text {
  --top: 662px;
  top: var(--top); }

/* 데베시스 거미 - item 3 */
.normal-monster-item:nth-child(3) .nm-title {
  --top: 1021px;
  top: var(--top);
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/title_3.png") no-repeat 0 0;
  background-size: 358px 94px;
  width: 358px;
  height: 94px; }

.normal-monster-item:nth-child(3) .nm-image {
  --top: 1001px;
  --left: 630px;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/image_3.png") no-repeat 0 0;
  background-size: 656px 305px;
  width: 656px;
  height: 305px; }

.normal-monster-item:nth-child(3) .nm-text {
  --top: 1091px;
  top: var(--top); }

/* 라가나즈 - item 4 */
.normal-monster-item:nth-child(4) .nm-title {
  --top: 1472px;
  top: var(--top);
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/title_4.png") no-repeat 0 0;
  background-size: 233px 94px;
  width: 233px;
  height: 94px; }

.normal-monster-item:nth-child(4) .nm-image {
  --top: 1378px;
  --left: 1241px;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/image_4.png") no-repeat 0 0;
  background-size: 659px 437px;
  width: 659px;
  height: 437px; }

.normal-monster-item:nth-child(4) .nm-text {
  --top: 1542px;
  top: var(--top); }

/* 지브리나 - item 5 */
.normal-monster-item:nth-child(5) .nm-title {
  --top: 1915px;
  top: var(--top);
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/title_5.png") no-repeat 0 0;
  background-size: 232px 91px;
  width: 232px;
  height: 91px; }

.normal-monster-item:nth-child(5) .nm-image {
  --top: 1785px;
  --left: 638px;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/image_5.png") no-repeat 0 0;
  background-size: 614px 505px;
  width: 614px;
  height: 505px; }

.normal-monster-item:nth-child(5) .nm-text {
  --top: 1985px;
  top: var(--top); }

/* 바인 - item 6 */
.normal-monster-item:nth-child(6) .nm-title {
  --top: 2438px;
  top: var(--top);
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/title_6.png") no-repeat 0 0;
  background-size: 121px 91px;
  width: 121px;
  height: 91px; }

.normal-monster-item:nth-child(6) .nm-image {
  --top: 2339px;
  --left: 1222px;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/image_6.png") no-repeat 0 0;
  background-size: 672px 524px;
  width: 672px;
  height: 524px; }

.normal-monster-item:nth-child(6) .nm-text {
  --top: 2508px;
  top: var(--top); }

/* 치우카 - item 7 */
.normal-monster-item:nth-child(7) .nm-title {
  --top: 2948px;
  top: var(--top);
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/title_7.png") no-repeat 0 0;
  background-size: 177px 92px;
  width: 177px;
  height: 92px; }

.normal-monster-item:nth-child(7) .nm-image {
  --top: 2841px;
  --left: 585px;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/image_7.png") no-repeat 0 0;
  background-size: 768px 504px;
  width: 768px;
  height: 504px; }

.normal-monster-item:nth-child(7) .nm-text {
  --top: 3018px;
  top: var(--top); }

/* 바우바드 - item 8 */
.normal-monster-item:nth-child(8) .nm-title {
  --top: 3525px;
  top: var(--top);
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/title_8.png") no-repeat 0 0;
  background-size: 232px 91px;
  width: 232px;
  height: 91px; }

.normal-monster-item:nth-child(8) .nm-image {
  --top: 3448px;
  --left: 1226px;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/normal-monster/image_8.png") no-repeat 0 0;
  background-size: 765px 408px;
  width: 765px;
  height: 408px; }

.normal-monster-item:nth-child(8) .nm-text {
  --top: 3595px;
  top: var(--top); }

/* Normal monster page height */
#normal-monster .monsters-container {
  position: relative;
  height: 4090px; }

/* ============================================================
   NPC PAGE
   ============================================================ */
#npc {
  --lt-color: #fff;
  --npc-color: #000;
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/npc/bg.jpg") no-repeat center 0;
  background-size: cover;
  position: relative;
  height: 1351px; }

.npc-view {
  --animation-duration: 0.75s;
  --animation-distance-x: 100px;
  position: relative; }

/* title: floating(387, 681) / left common: 1449 */
.npc-view .npc-title {
  --top: 387px;
  --left: 681px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2)); }

/* sub-title, description: left 1449, top 500 */
.npc-view .npc-sub-title,
.npc-view .npc-description {
  --top: 500px;
  --left: 1449px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  color: var(--npc-color);
  width: 450px !important; }

.npc-view .npc-sub-title {
  font-weight: bold;
  font-size: 15px;
  line-height: 25px;
  font-family: NanumBarunGothic, serif; }

.npc-view .npc-description {
  --top: 555px;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: -0.3px; }

.npc-view .npc-description p + p {
  margin-top: 25px; }

/* NPC 1 - 파텔로 */
#npc-1 .npc-title {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/npc/1/title.png") no-repeat 0 0;
  background-size: 176px 100px;
  width: 176px;
  height: 100px; }

/* image: floating(225, 872) */
#npc-1 .npc-image {
  --top: 225px;
  --left: 872px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/npc/1/image.png") no-repeat 0 0;
  background-size: 473px 1510px;
  width: 473px;
  height: 1510px; }

/* NPC 2 - 슈비에 */
/* ac7c7b.png(473x1510) = 슈비에 타이틀 */
#npc-2 .npc-title {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/npc/2/title.png") no-repeat 0 0;
  background-size: 173px 96px;
  width: 173px;
  height: 96px; }

/* image: floating(263, 814). bc9d7e.png(500x1169) = 슈비에 캐릭터 */
#npc-2 .npc-image {
  --top: 263px;
  --left: 814px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/npc/2/image.png") no-repeat 0 0;
  background-size: 792px 1135px;
  width: 792px;
  height: 1135px; }

/* NPC 3 - 라셀리스: cc96f9.jpg(2560x1351)=배경처럼 쓰는 큰 이미지→타이틀로, 5e1cea.png(594x1342)=캐릭터 */
#npc-3 .npc-title {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/npc/3/title.png") no-repeat 0 0;
  background-size: 231px 96px;
  width: 231px;
  height: 96px; }

/* image: floating(312, 866) */
#npc-3 .npc-image {
  --top: 312px;
  --left: 866px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/npc/3/image.png") no-repeat 0 0;
  background-size: 500px 1169px;
  width: 500px;
  height: 1169px; }

/* NPC 4 - 마르타: 타이틀 재사용, 2a26e6.png(468x949)=마르타 캐릭터 */
#npc-4 .npc-title {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/npc/4/title.png") no-repeat 0 0;
  background-size: 178px 96px;
  width: 178px;
  height: 96px; }

/* image: floating(291, 797) */
#npc-4 .npc-image {
  --top: 291px;
  --left: 797px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/npc/4/image.png") no-repeat 0 0;
  background-size: 594px 1342px;
  width: 594px;
  height: 1342px; }

/* NPC 5 - 쥬리링: 166984.png(576x825)=타이틀, 604a72.png(516x1209)=서브 그래픽, 875ed4.png(792x855)=캐릭터 */
#npc-5 .npc-title {
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/npc/5/title.png") no-repeat 0 0;
  background-size: 175px 100px;
  width: 175px;
  height: 100px; }

/* image: floating(408, 735) */
#npc-5 .npc-image {
  --top: 408px;
  --left: 735px;
  position: absolute;
  top: var(--top);
  left: calc(50% + var(--left) - (var(--floating-base-width) / 2));
  background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/page/npc/5/image.png") no-repeat 0 0;
  background-size: 664px 572px;
  width: 664px;
  height: 572px; }

/* ============================================================
   HISTORY PAGE
   ============================================================ */
#history {
  position: relative;
  background: radial-gradient(circle at 0.25px 0.25px, #e5e5e5 1px, #fdfdfd 0) 0 0/3px 3px;
  min-height: 100vh;
  overflow: hidden; }

.history-content {
  margin: 92px auto 160px;
  width: 1450px;
  overflow: hidden; }

.history-title {
  display: flex;
  align-items: center;
  height: 36px;
  color: #000;
  font-weight: lighter;
  font-size: 24px;
  line-height: 36px;
  text-transform: uppercase; }

.history-title::before {
  display: block;
  margin: 0 7px 0 0;
  background: #000;
  width: 2px;
  height: 18px;
  content: ""; }

.history-title em {
  font-weight: bold; }

.history-title em::before {
  content: "\00a0"; }

.history-list {
  margin: 37px 0 0; }

.history-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 54px 47px; }

.history-list a {
  display: block;
  position: relative;
  transition-property: border;
  border: 1px solid #b9b9b9;
  width: 450px;
  height: 304px;
  overflow: hidden; }

.history-list a::after {
  position: absolute;
  opacity: 0;
  z-index: 3;
  transition-property: opacity;
  inset: 0;
  background: #fff;
  content: ""; }

.history-list a:hover {
  border-color: #fc1aa7; }

.history-list a:hover::after {
  opacity: 0.43; }

.history-list a:hover .history-thumbnail {
  transform: scale(1.1); }

.history-thumbnail {
  display: block;
  transition-property: transform;
  background: #000 no-repeat center;
  background-size: 100% auto;
  width: 450px;
  height: 258px; }

.history-item-title {
  position: relative;
  z-index: 1;
  background: #33313e;
  height: 46px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 46px;
  text-align: center; }

/* Paging */
.history-paging {
  display: flex;
  justify-content: center;
  margin: 50px auto; }

.paging-link {
  display: flex;
  justify-content: center;
  align-items: center;
  transition-property: color, font-weight;
  background: transparent;
  width: 29px;
  height: 29px;
  color: #535353;
  font-size: 18px;
  line-height: 20px;
  cursor: pointer; }

.paging-link.current,
.paging-link:hover {
  color: #000;
  font-weight: bold; }

.paging-link.page + .shortcut {
  margin-left: 12px; }

.paging-link.shortcut {
  position: relative;
  transition-property: background;
  margin: 0 6px;
  border: 1px solid #867d7e;
  background: #fff; }

.paging-link.shortcut::before,
.paging-link.shortcut::after {
  display: block;
  position: absolute;
  rotate: 45deg;
  margin: auto;
  inset: 0 0 0 5px;
  border: 1px solid #867d7e;
  border-top: 0;
  border-right: 0;
  width: 10px;
  height: 10px;
  content: ""; }

.paging-link.shortcut:hover {
  background: #e2e2e2; }

.paging-link.shortcut + .page {
  margin-left: 6px; }

.paging-link.first::before {
  translate: -3px; }

.paging-link.first::after {
  translate: 3px; }

.paging-link.last::before {
  translate: -3px; }

.paging-link.last::after {
  translate: 3px; }

.paging-link.prev::after,
.paging-link.next::after {
  display: none; }

.paging-link.next::before,
.paging-link.last::before,
.paging-link.next::after,
.paging-link.last::after {
  rotate: 225deg;
  inset: 0 5px 0 0; }

/* ============================================================
   ANIMATIONS (CSS Keyframes)
   ============================================================ */
@keyframes blinking2 {
  0% {
    opacity: 1; }
  100% {
    opacity: 0.2; } }
@keyframes jello-horizontal {
  0% {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  100% {
    transform: scale3d(1, 1, 1); } }
/* ============================================================
   SVG DISPLACEMENT MASK FILTERS
   ============================================================ */
#main-intro .char-1 .displacement {
  filter: url("#displacementFilter1"); }

#main-intro .main-title .displacement {
  filter: url("#displacementFilter2"); }

/* ============================================================
   ENGLISH localization font and title overrides
   ============================================================ */
#devils-whisper-app {
  font-family: 'Outfit', sans-serif !important; }

/* Boss Monster Title (Dark background - White text) */
.boss-monster-view .bm-title {
  background: none !important;
  width: 350px !important;
  height: auto !important;
  font-family: 'Cinzel', serif !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 20px rgba(0, 0, 0, 0.8) !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  text-align: left !important;
  transform: translateY(-20px);
  white-space: normal !important;
  word-wrap: normal !important;
  word-break: keep-all !important; }

/* Map Title (Light background - Black text - Wrapped to prevent overlapping thumbnail) */
.map-view .map-title {
  background: none !important;
  width: 320px !important;
  height: auto !important;
  font-family: 'Cinzel', serif !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #000000 !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.4) !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  text-align: left !important;
  transform: translateY(-20px);
  white-space: normal !important;
  word-wrap: normal !important;
  word-break: keep-all !important; }

/* NPC Title (Light background - Black text - Wrapped to prevent overlapping image) */
.npc-view .npc-title {
  background: none !important;
  width: 300px !important;
  height: auto !important;
  font-family: 'Cinzel', serif !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.4) !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  text-align: left !important;
  transform: translateY(-20px);
  white-space: normal !important;
  word-wrap: normal !important;
  word-break: keep-all !important; }

/* Normal Monster Title */
.normal-monster-item .nm-title {
  background: none !important;
  width: 400px !important;
  height: auto !important;
  font-family: 'Cinzel', serif !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #f3c246 !important;
  text-shadow: 0 0 10px rgba(243, 194, 70, 0.3), 0 0 15px rgba(0, 0, 0, 0.9) !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  text-align: left !important;
  transform: translateY(-10px);
  white-space: normal !important;
  word-wrap: normal !important;
  word-break: keep-all !important; }

/* ============================================================
   FLOATING BANNER (TO UPDATE 2)
   ============================================================ */
.floating-banner {
  position: fixed;
  top: 300px;
  right: 20px;
  z-index: 799;
  width: 200px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4)); }

.floating-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px; }

.floating-banner:hover {
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 15px 24px rgba(0, 0, 0, 0.6)) brightness(1.05); }

@media screen and (min-width: 2600px) {
  .floating-banner {
    right: calc(50% - 1280px + 20px); } }
@media screen and (max-width: 1024px) {
  .floating-banner {
    display: none !important; } }
/* ===== mobile.css ===== */
/* ============================================================
   MOBILE RESPONSIVE STYLESHEET
   Targets screens <= 1024px (and simulated mobile viewports)
   ============================================================ */
@media screen and (max-width: 1024px) {
  /* ============================================================
     LAYOUT OVERRIDES
     ============================================================ */
  #devils-whisper-app {
    min-width: 720px !important; }

  .layout-wrap {
    width: 720px !important;
    min-width: 720px !important;
    max-width: 720px !important;
    margin: 0 auto !important;
    padding-top: 0 !important;
    overflow: hidden !important;
    --floating-base-width: 720px; }

  /* ============================================================
     MOBILE RIGHT FLOATING SUBMENU
     ============================================================ */
  .right-menu.is-mobile {
    position: fixed !important;
    z-index: 500 !important;
    inset: 230px 30px auto auto !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    background: transparent !important; }

  .right-menu.is-mobile .right-menu-toggle {
    position: relative !important;
    inset: auto !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.77) !important;
    width: 100px !important;
    height: 100px !important;
    border: none !important;
    cursor: pointer !important;
    transition: transform 0.3s !important; }

  .right-menu.is-mobile .right-menu-toggle::before,
  .right-menu.is-mobile .right-menu-toggle::after {
    display: block !important;
    position: absolute !important;
    margin: auto !important;
    inset: 0 !important;
    background: #fff !important;
    width: 36px !important;
    height: 3px !important;
    content: "" !important; }

  .right-menu.is-mobile .right-menu-toggle::after {
    transform: rotate(90deg) !important; }

  .right-menu.is-mobile .right-menu-toggle.on {
    transform: rotate(135deg) !important; }

  .right-menu.is-mobile .right-menu-list-wrap {
    position: absolute !important;
    top: 120px !important;
    right: 0 !important;
    background: rgba(0, 0, 0, 0.77) !important;
    width: 220px !important;
    border: 1px solid #7a7a7a !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    clip-path: none !important;
    padding: 0 !important; }

  .right-menu.is-mobile .right-menu-list-wrap::before {
    display: none !important; }

  .right-menu.is-mobile .right-menu-list {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important; }

  .right-menu.is-mobile .right-menu-list::before {
    display: none !important; }

  .right-menu.is-mobile .right-menu-list > :first-child {
    margin-top: 0 !important; }

  .right-menu.is-mobile .right-menu-list > :last-child {
    margin-bottom: 0 !important; }

  .right-menu.is-mobile .right-menu-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 90px !important;
    color: #a0a0a0 !important;
    font-size: 24px !important;
    line-height: 28px !important;
    text-align: center !important;
    text-decoration: none !important;
    border-bottom: 1px solid #7a7a7a !important;
    padding: 0 !important; }

  .right-menu.is-mobile .right-menu-item::before {
    display: none !important; }

  .right-menu.is-mobile .right-menu-item::after {
    display: none !important; }

  .right-menu.is-mobile .right-menu-list li:last-child .right-menu-item {
    border-bottom: none !important; }

  .right-menu.is-mobile .right-menu-item.router-link-active {
    color: #fff !important;
    font-weight: bold !important; }

  /* ============================================================
     MAIN INTRO - MOBILE
     ============================================================ */
  #main-mobile {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/main/bg.jpg") no-repeat center 0;
    background-size: 720px 1170px;
    width: 720px;
    height: 1170px;
    position: relative;
    overflow: hidden; }

  #main-mobile .char-1-effect {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/main/char_1_effect.png") no-repeat 0 0;
    background-size: 720px 1000px;
    width: 720px;
    height: 1000px;
    --top: -102px;
    --left: 0px;
    animation: blinking2 2s infinite; }

  #main-mobile .char-1 {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/main/char_1.png") no-repeat 0 0;
    background-size: 720px 1025px;
    width: 720px;
    height: 1025px;
    --top: -102px;
    --left: 0px; }

  #main-mobile .mirror {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/main/mirror.png") no-repeat 0 0;
    background-size: 412px 529px;
    width: 412px;
    height: 529px;
    --top: 355px;
    --left: 171px; }

  #main-mobile .char-1-hand {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/main/char_1_hand.png") no-repeat 0 0;
    background-size: 269px 224px;
    width: 269px;
    height: 224px;
    --top: 379px;
    --left: 197px; }

  #main-mobile .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/main/title.png") no-repeat 0 0;
    background-size: 678px 376px;
    width: 678px;
    height: 376px;
    --top: 697px;
    --left: 24px; }

  @keyframes blinking2 {
    0% {
      opacity: 1; }
    50% {
      opacity: 0.5; }
    100% {
      opacity: 1; } }
  /* ============================================================
     SCENARIO - MOBILE
     ============================================================ */
  #senario-mobile {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/senario/bg.jpg") no-repeat center 0;
    background-size: 720px 1330px;
    width: 720px;
    height: 1330px;
    position: relative;
    overflow: hidden; }

  #senario-mobile .description {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/senario/frame.png") no-repeat 0 0;
    background-size: 682px 1174px;
    width: 682px;
    height: 1174px;
    --top: 55px;
    --left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 40px; }

  #senario-mobile .description p {
    color: #220f4f;
    font-weight: normal;
    font-size: 30px;
    line-height: 48px;
    letter-spacing: -0.5px;
    text-align: center;
    white-space: nowrap;
    margin: 0; }

  #senario-mobile .description p + p {
    margin-top: 50px; }

  /* ============================================================
     MAP PAGE - MOBILE
     ============================================================ */
  .mobile-map-view {
    width: 720px;
    position: relative;
    overflow: hidden; }

  .mobile-map-view .title {
    --top: 57px;
    --left: 36px; }

  .mobile-map-view .thumbnail {
    display: block;
    border: none;
    padding: 0;
    cursor: pointer;
    position: absolute;
    top: var(--top);
    left: calc(50% + var(--left) - 360px); }

  #map-1-mobile {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/map/1/bg.jpg") no-repeat center 0;
    background-size: 720px 2931px;
    height: 2931px; }

  #map-1-mobile .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/map/1/title.png") no-repeat 0 0;
    background-size: 396px 190px;
    width: 396px;
    height: 190px; }

  #map-1-mobile .thumbnail {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/map/1/thumbnail.jpg") no-repeat 0 0;
    background-size: 736px 480px;
    width: 736px;
    height: 480px;
    --top: 315px;
    --left: -9px; }

  #map-2-mobile {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/map/2/bg.jpg") no-repeat center 0;
    background-size: 720px 2193px;
    height: 2193px; }

  #map-2-mobile .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/map/2/title.png") no-repeat 0 0;
    background-size: 405px 312px;
    width: 405px;
    height: 312px; }

  #map-2-mobile .thumbnail {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/map/2/thumbnail.jpg") no-repeat 0 0;
    background-size: 736px 480px;
    width: 736px;
    height: 480px;
    --top: 445px;
    --left: -9px; }

  #map-3-mobile {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/map/3/bg.jpg") no-repeat center 0;
    background-size: 720px 3126px;
    height: 3126px; }

  #map-3-mobile .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/map/3/title.png") no-repeat 0 0;
    background-size: 428px 312px;
    width: 428px;
    height: 312px; }

  #map-3-mobile .thumbnail {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/map/3/thumbnail.jpg") no-repeat 0 0;
    background-size: 736px 480px;
    width: 736px;
    height: 480px;
    --top: 445px;
    --left: -9px; }

  #map-4-mobile {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/map/4/bg.jpg") no-repeat center 0;
    background-size: 720px 3394px;
    height: 3394px; }

  #map-4-mobile .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/map/4/title.png") no-repeat 0 0;
    background-size: 292px 311px;
    width: 292px;
    height: 311px; }

  #map-4-mobile .thumbnail {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/map/4/thumbnail_1.jpg") no-repeat 0 0;
    background-size: 736px 480px;
    width: 736px;
    height: 480px;
    --top: 445px;
    --left: -9px; }

  #map-4-mobile .thumbnail-2 {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/map/4/thumbnail_2.jpg") no-repeat 0 0;
    background-size: 736px 480px;
    width: 736px;
    height: 480px;
    display: block;
    border: none;
    padding: 0;
    cursor: pointer;
    position: absolute;
    --top: 1720px;
    --left: -9px;
    top: var(--top);
    left: calc(50% + var(--left) - 360px); }

  /* Map content styling */
  .mobile-map-view .text {
    position: relative;
    margin: 60px 30px 0;
    color: #000;
    left: auto !important; }

  .mobile-map-view #map-1-mobile .text:nth-of-type(1) {
    margin-top: 860px; }

  .mobile-map-view #map-1-mobile .text:nth-of-type(2) {
    margin-top: 50px; }

  .mobile-map-view #map-2-mobile .text:nth-of-type(1) {
    margin-top: 990px; }

  .mobile-map-view #map-3-mobile .text:nth-of-type(1) {
    margin-top: 990px; }

  .mobile-map-view #map-3-mobile .text:nth-of-type(2) {
    margin-top: 50px; }

  .mobile-map-view #map-4-mobile .text:nth-of-type(1) {
    margin-top: 990px; }

  .mobile-map-view #map-4-mobile .text:nth-of-type(2) {
    margin-top: 550px; }

  .mobile-map-view .sub-title {
    font-weight: bold;
    font-size: 30px;
    line-height: 48px;
    font-family: NanumBarunGothic, serif;
    margin: 0 0 20px 0;
    color: #000; }

  .mobile-map-view .sub-title.icon::before {
    display: block;
    margin: 0 0 22px;
    background: #267f4a;
    padding: 0 17px;
    width: fit-content;
    height: 42px;
    content: "PART 1";
    color: #fff;
    font-weight: 400;
    font-size: 30px;
    line-height: 44px; }

  .mobile-map-view .sub-title-2.icon::before {
    content: "PART 2" !important; }

  .mobile-map-view .description {
    font-weight: 500;
    font-size: 30px;
    line-height: 48px;
    letter-spacing: -0.7px;
    color: #333; }

  .mobile-map-view .description p {
    margin: 0; }

  .mobile-map-view .description p + p {
    margin-top: 40px; }

  /* ============================================================
     BOSS MONSTER - MOBILE
     ============================================================ */
  #boss-monster.is-mobile {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/boss-monster/bg.jpg") no-repeat center 0;
    background-size: 720px 1681px;
    height: 1681px;
    position: relative; }

  .mobile-boss-monster-view {
    width: 720px;
    height: 1681px;
    position: relative; }

  .mobile-boss-monster-view .title {
    --top: 755px;
    --left: 31px; }

  .mobile-boss-monster-view .image {
    --top: 29px;
    --left: -184px; }

  #boss-monster-1-mobile .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/boss-monster/1/title.png") no-repeat 0 0;
    background-size: 563px 148px;
    width: 563px;
    height: 148px; }

  #boss-monster-1-mobile .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/boss-monster/1/image.png") no-repeat 0 0;
    background-size: 1275px 680px;
    width: 1275px;
    height: 680px; }

  #boss-monster-2-mobile .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/boss-monster/2/title.png") no-repeat 0 0;
    background-size: 279px 149px;
    width: 279px;
    height: 149px; }

  #boss-monster-2-mobile .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/boss-monster/2/image.png") no-repeat 0 0;
    background-size: 949px 677px;
    width: 949px;
    height: 677px; }

  #boss-monster-3-mobile .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/boss-monster/3/title.png") no-repeat 0 0;
    background-size: 273px 148px;
    width: 273px;
    height: 148px; }

  #boss-monster-3-mobile .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/boss-monster/3/image.png") no-repeat 0 0;
    background-size: 1262px 1016px;
    width: 1262px;
    height: 1016px; }

  #boss-monster-4-mobile .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/boss-monster/4/title.png") no-repeat 0 0;
    background-size: 280px 149px;
    width: 280px;
    height: 149px; }

  #boss-monster-4-mobile .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/boss-monster/4/image.png") no-repeat 0 0;
    background-size: 1517px 992px;
    width: 1517px;
    height: 992px; }

  .mobile-boss-monster-view .text {
    --top: 952px;
    --left: 30px;
    z-index: 1;
    color: #fff;
    width: 660px; }

  .mobile-boss-monster-view .description {
    font-weight: 500;
    font-size: 30px;
    line-height: 48px;
    letter-spacing: -1px; }

  .mobile-boss-monster-view .description p {
    margin: 0; }

  /* ============================================================
     NORMAL MONSTER - MOBILE
     ============================================================ */
  #normal-monster-mobile {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/bg.jpg") no-repeat center 0;
    background-size: 720px 10093px;
    width: 720px;
    height: 10093px;
    position: relative; }

  #normal-monster-mobile .monsters {
    position: relative;
    width: 720px;
    height: 10093px; }

  #normal-monster-mobile .monster-item {
    position: absolute;
    left: 0;
    top: 0;
    width: 720px;
    height: 100%; }

  #normal-monster-mobile .monster-item .text {
    z-index: 1;
    color: #fff;
    width: 660px; }

  #normal-monster-mobile .monster-item .description {
    font-weight: 500;
    font-size: 30px;
    line-height: 48px;
    letter-spacing: -1px; }

  #normal-monster-mobile .monster-item .description p {
    margin: 0; }

  /* Item positions and assets */
  #normal-monster-mobile .monsters > :nth-child(1) .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/image_1.png") no-repeat 0 0;
    background-size: 584px 587px;
    width: 584px;
    height: 587px;
    --top: 125px;
    --left: 59px; }

  #normal-monster-mobile .monsters > :nth-child(1) .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/title_1.png") no-repeat 0 0;
    background-size: 607px 149px;
    width: 607px;
    height: 149px;
    --top: 754px;
    --left: 31px; }

  #normal-monster-mobile .monsters > :nth-child(1) .text {
    --top: 952px;
    --left: 30px; }

  #normal-monster-mobile .monsters > :nth-child(2) .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/image_2.png") no-repeat 0 0;
    background-size: 688px 312px;
    width: 688px;
    height: 312px;
    --top: 1528px;
    --left: 23px; }

  #normal-monster-mobile .monsters > :nth-child(2) .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/title_2.png") no-repeat 0 0;
    background-size: 394px 149px;
    width: 394px;
    height: 149px;
    --top: 1904px;
    --left: 31px; }

  #normal-monster-mobile .monsters > :nth-child(2) .text {
    --top: 2102px;
    --left: 30px; }

  #normal-monster-mobile .monsters > :nth-child(3) .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/image_3.png") no-repeat 0 0;
    background-size: 656px 305px;
    width: 656px;
    height: 305px;
    --top: 2752px;
    --left: 32px; }

  #normal-monster-mobile .monsters > :nth-child(3) .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/title_3.png") no-repeat 0 0;
    background-size: 568px 156px;
    width: 568px;
    height: 156px;
    --top: 3104px;
    --left: 31px; }

  #normal-monster-mobile .monsters > :nth-child(3) .text {
    --top: 3302px;
    --left: 30px; }

  #normal-monster-mobile .monsters > :nth-child(4) .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/image_4.png") no-repeat 0 0;
    background-size: 659px 437px;
    width: 659px;
    height: 437px;
    --top: 3716px;
    --left: 36px; }

  #normal-monster-mobile .monsters > :nth-child(4) .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/title_4.png") no-repeat 0 0;
    background-size: 367px 155px;
    width: 367px;
    height: 155px;
    --top: 4205px;
    --left: 31px; }

  #normal-monster-mobile .monsters > :nth-child(4) .text {
    --top: 4402px;
    --left: 30px; }

  #normal-monster-mobile .monsters > :nth-child(5) .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/image_5.png") no-repeat 0 0;
    background-size: 624px 445px;
    width: 624px;
    height: 445px;
    --top: 4961px;
    --left: 46px; }

  #normal-monster-mobile .monsters > :nth-child(5) .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/title_5.png") no-repeat 0 0;
    background-size: 366px 148px;
    width: 366px;
    height: 148px;
    --top: 5479px;
    --left: 31px; }

  #normal-monster-mobile .monsters > :nth-child(5) .text {
    --top: 5676px;
    --left: 30px; }

  #normal-monster-mobile .monsters > :nth-child(6) .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/image_6.png") no-repeat 0 0;
    background-size: 675px 467px;
    width: 675px;
    height: 467px;
    --top: 6317px;
    --left: 10px; }

  #normal-monster-mobile .monsters > :nth-child(6) .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/title_6.png") no-repeat 0 0;
    background-size: 188px 149px;
    width: 188px;
    height: 149px;
    --top: 6858px;
    --left: 31px; }

  #normal-monster-mobile .monsters > :nth-child(6) .text {
    --top: 7056px;
    --left: 30px; }

  #normal-monster-mobile .monsters > :nth-child(7) .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/image_7.png") no-repeat 0 0;
    background-size: 682px 448px;
    width: 682px;
    height: 448px;
    --top: 7624px;
    --left: 21px; }

  #normal-monster-mobile .monsters > :nth-child(7) .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/title_7.png") no-repeat 0 0;
    background-size: 278px 151px;
    width: 278px;
    height: 151px;
    --top: 8134px;
    --left: 31px; }

  #normal-monster-mobile .monsters > :nth-child(7) .text {
    --top: 8334px;
    --left: 30px; }

  #normal-monster-mobile .monsters > :nth-child(8) .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/image_8.png") no-repeat 0 0;
    background-size: 765px 408px;
    width: 765px;
    height: 408px;
    --top: 8882px;
    --left: -7px; }

  #normal-monster-mobile .monsters > :nth-child(8) .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/normal-monster/title_8.png") no-repeat 0 0;
    background-size: 365px 149px;
    width: 365px;
    height: 149px;
    --top: 9340px;
    --left: 31px; }

  #normal-monster-mobile .monsters > :nth-child(8) .text {
    --top: 9538px;
    --left: 30px; }

  /* ============================================================
     NPC - MOBILE
     ============================================================ */
  #npc.is-mobile {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/npc/bg.jpg") no-repeat center 0;
    background-size: 720px 1898px;
    height: 1898px;
    position: relative; }

  .mobile-npc-view {
    width: 720px;
    height: 1898px;
    position: relative; }

  .mobile-npc-view .title {
    --top: 72px;
    --left: 23px; }

  .mobile-npc-view .image {
    --top: 99px;
    --left: 186px; }

  #npc-1-mobile .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/npc/1/title.png") no-repeat 0 0;
    background-size: 273px 150px;
    width: 273px;
    height: 150px; }

  #npc-1-mobile .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/npc/1/image.png") no-repeat 0 0;
    background-size: 468px 949px;
    width: 468px;
    height: 949px; }

  #npc-2-mobile .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/npc/2/title.png") no-repeat 0 0;
    background-size: 269px 143px;
    width: 269px;
    height: 143px; }

  #npc-2-mobile .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/npc/2/image.png") no-repeat 0 0;
    background-size: 792px 855px;
    width: 792px;
    height: 855px;
    --top: 130px;
    --left: 108px; }

  #npc-3-mobile .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/npc/3/title.png") no-repeat 0 0;
    background-size: 359px 143px;
    width: 359px;
    height: 143px; }

  #npc-3-mobile .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/npc/3/image.png") no-repeat 0 0;
    background-size: 516px 1209px;
    width: 516px;
    height: 1209px;
    --top: 175px;
    --left: 164px; }

  #npc-4-mobile .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/npc/4/title.png") no-repeat 0 0;
    background-size: 277px 143px;
    width: 277px;
    height: 143px; }

  #npc-4-mobile .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/npc/4/image.png") no-repeat 0 0;
    background-size: 576px 825px;
    width: 576px;
    height: 825px;
    --top: 129px;
    --left: 91px; }

  #npc-5-mobile .title {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/npc/5/title.png") no-repeat 0 0;
    background-size: 272px 150px;
    width: 272px;
    height: 150px; }

  #npc-5-mobile .image {
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/mobile/page/npc/5/image.png") no-repeat 0 0;
    background-size: 520px 448px;
    width: 520px;
    height: 448px;
    --top: 307px;
    --left: 108px; }

  .mobile-npc-view .text {
    --top: 900px;
    --left: 30px;
    z-index: 1;
    color: #000;
    width: 660px; }

  .mobile-npc-view .sub-title {
    font-style: italic;
    font-weight: bold;
    font-size: 30px;
    line-height: 48px;
    font-family: NanumBarunGothic, serif;
    margin: 0 0 45px 0; }

  .mobile-npc-view .description {
    font-weight: 500;
    font-size: 30px;
    line-height: 48px;
    letter-spacing: -1px; }

  .mobile-npc-view .description p {
    margin: 0; }

  /* ============================================================
     POPUP / OVERLAYS ON MOBILE
     ============================================================ */
  .popup-overlay.popup-play .popup-player {
    width: 720px !important;
    height: 405px !important; }

  .popup-overlay.popup-play .popup-close-btn {
    inset: -69px 10px auto auto !important; }

  /* ============================================================
     UPDATE HISTORY ON MOBILE
     ============================================================ */
  #history.is-mobile {
    position: relative;
    background: radial-gradient(circle at 0.25px 0.25px, #e5e5e5 1px, #fdfdfd 0) 0 0/3px 3px;
    min-height: calc(100vh - 130px);
    overflow: hidden; }

  #history.is-mobile .content {
    margin: 60px auto 200px;
    width: 660px;
    overflow: hidden; }

  #history.is-mobile .list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none; }

  #history.is-mobile .list a {
    display: block;
    position: relative;
    transition-property: border;
    border: 1px solid #b9b9b9;
    width: 324px;
    height: 282px;
    overflow: hidden;
    text-decoration: none; }

  #history.is-mobile .thumbnail {
    display: block;
    transition-property: transform;
    background: #000 no-repeat center;
    background-size: 100% auto;
    width: 322px;
    height: 185px; }

  #history.is-mobile .title {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: #33313e;
    padding: 0 20px;
    height: 95px;
    color: #fff;
    font-weight: normal;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    margin: 0; }

  #history.is-mobile .paging {
    display: flex;
    justify-content: center;
    margin-top: 60px; }

  #history.is-mobile .view-more {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #000;
    background: transparent;
    width: 660px;
    height: 115px;
    color: #000;
    font-size: 30px;
    font-family: inherit;
    cursor: pointer; }

  /* Translation Overrides for Mobile Text Titles (Dark background - White text) */
  .mobile-boss-monster-view .title,
  #normal-monster-mobile .monster-item .title {
    background: none !important;
    width: 660px !important;
    height: auto !important;
    font-family: 'Cinzel', serif !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 15px rgba(0, 0, 0, 0.9) !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    text-align: center !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-20px) !important; }

  /* Translation Overrides for Mobile Text Titles (Light background - Black text) */
  .mobile-map-view .title,
  .mobile-npc-view .title {
    background: none !important;
    width: 660px !important;
    height: auto !important;
    font-family: 'Cinzel', serif !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #000000 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.4) !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    text-align: center !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-20px) !important; } }
/* ===== update1 internal header/footer, scoped for Tiles content ===== */
#devils-whisper-app {
  /* ============================================================
     HEADER
     ============================================================ */
  /* History Link */
  /* Page Menu */
  /* Game Start Block */
  /* Aside Floating Menu */
  /* ============================================================
     FOOTER
     ============================================================ */
  /* ============================================================
     DESKTOP NAVIGATION CENTER ALIGNMENT OVERRIDES (update1)
     ============================================================ */ }
  #devils-whisper-app .devils-whisper-header-slot {
    box-sizing: content-box;
    padding-top: 88px;
    height: var(--layout-header-height); }
  #devils-whisper-app #devils-whisper-header.sticky {
    position: fixed;
    top: 88px;
    width: 100%; }
  #devils-whisper-app #devils-whisper-header {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    translate: none;
    z-index: 800;
    transition-property: border, background, min-width, height;
    border-bottom: 1px solid var(--header-border);
    background: var(--header-bg);
    min-width: var(--layout-min-width);
    height: var(--layout-header-height); }
  #devils-whisper-app .header-wrap {
    display: flex;
    position: absolute;
    align-items: center;
    transition-property: max-width;
    margin: 0 auto;
    inset: 0;
    max-width: var(--layout-max-width); }
  #devils-whisper-app .logo {
    display: flex; }
  #devils-whisper-app .to-main {
    display: block;
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/logo.png") no-repeat 0 0;
    background-size: 678px 376px;
    width: 678px;
    height: 376px;
    margin: 14px 0 0 27px;
    transform-origin: 0 0;
    transform: scale(0.16);
    margin-bottom: -310px; }
  #devils-whisper-app .navigation {
    display: flex;
    flex-grow: 1;
    margin-left: 130px; }
  #devils-whisper-app .navigation > ul {
    display: flex;
    flex-grow: 1;
    flex-wrap: nowrap; }
  #devils-whisper-app .navigation > ul > li {
    display: flex;
    position: relative;
    flex-grow: 1;
    padding: 0 10px;
    max-width: 180px; }
  #devils-whisper-app .navigation > ul > li > .menu {
    display: block;
    position: relative;
    flex-grow: 1;
    align-content: center;
    transition-property: height, color;
    background: transparent;
    height: calc(var(--layout-header-height) - 2px);
    color: var(--nav-color);
    font-size: 17px;
    text-align: center;
    white-space: nowrap; }
  #devils-whisper-app .navigation > ul > li > .menu::before {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: scale(0) translateY(10px);
    translate: 0 -23px;
    opacity: 0;
    filter: drop-shadow(0 0 3px var(--nav-icon-color));
    transition-property: transform, opacity;
    margin: 0 auto;
    border-top: 4px solid var(--nav-icon-color);
    border-right: 3px solid transparent;
    border-left: 3px solid transparent;
    width: 0;
    height: 0;
    content: ""; }
  #devils-whisper-app .navigation > ul > li:hover > .menu,
  #devils-whisper-app .navigation > ul > li > .menu.router-link-active {
    color: var(--nav-active-color); }
  #devils-whisper-app .navigation > ul > li:hover > .menu::before,
  #devils-whisper-app .navigation > ul > li > .menu.router-link-active::before {
    transform: scale(1) translateY(0);
    opacity: 1; }
  #devils-whisper-app .navigation > ul > li:hover > ul {
    scale: 1 1;
    opacity: 1; }
  #devils-whisper-app .navigation > ul > li > ul {
    display: flex;
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    flex-direction: column;
    transform-origin: center top;
    translate: -50%;
    scale: 1 0;
    opacity: 0;
    transition-property: opacity, scale;
    min-width: 100%; }
  #devils-whisper-app .navigation > ul > li > ul > li {
    position: relative;
    transition-property: background;
    background: var(--nav-sub-bg); }
  #devils-whisper-app .navigation > ul > li > ul > li > .menu {
    display: block;
    align-content: center;
    transition-property: background, color;
    padding: 0 20px;
    height: 46px;
    color: var(--nav-sub-color);
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden; }
  #devils-whisper-app .navigation > ul > li > ul > li > .menu:hover {
    color: var(--nav-sub-active-color);
    background: var(--nav-sub-active-bg); }
  #devils-whisper-app .history {
    display: flex;
    align-items: center;
    transition-property: color;
    margin-left: 20px;
    color: var(--history-color);
    text-transform: uppercase;
    white-space: nowrap; }
  #devils-whisper-app .history::before {
    display: block;
    transition-property: box-shadow, background;
    margin: 0 17px 8px 0;
    box-shadow: 8px 0 0 0 var(--history-color), 0 8px 0 0 var(--history-color), 8px 8px 0 0 var(--history-color);
    background: var(--history-color);
    width: 6px;
    height: 6px;
    content: ""; }
  #devils-whisper-app .history:hover {
    color: var(--history-active-color); }
  #devils-whisper-app .history:hover::before {
    box-shadow: 8px 0 0 0 var(--history-active-color), 0 8px 0 0 var(--history-active-color), 8px 8px 0 0 var(--history-active-color);
    background: var(--history-active-color); }
  #devils-whisper-app .page-menu {
    display: flex;
    align-items: center; }
  #devils-whisper-app .page-menu ul {
    display: flex;
    padding-right: 10px; }
  #devils-whisper-app .page-menu li + li {
    margin-left: 6px; }
  #devils-whisper-app .page-menu .menu {
    display: block;
    position: relative;
    transition-property: background;
    border-radius: 50%;
    background: transparent no-repeat center;
    width: 40px;
    height: 40px;
    overflow: hidden; }
  #devils-whisper-app .page-menu .menu::before {
    display: block;
    position: absolute;
    margin: auto;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: 34px;
    height: 34px;
    content: "";
    pointer-events: none; }
  #devils-whisper-app .page-menu .menu::after {
    display: block;
    position: absolute;
    margin: auto;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    content: "";
    pointer-events: none; }
  #devils-whisper-app .page-menu .menu.home {
    background-image: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/icon_home.png");
    background-size: contain; }
  #devils-whisper-app .page-menu .menu.music {
    background-image: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/icon_music_off.png");
    background-size: contain; }
  #devils-whisper-app .page-menu .menu.music.playing {
    background-image: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/icon_music.png");
    background-size: contain; }
  #devils-whisper-app .game-start-block {
    display: flex;
    position: relative;
    flex-basis: 300px;
    align-self: stretch;
    margin-left: 20px; }
  #devils-whisper-app .game-start {
    display: block;
    position: relative;
    overflow: hidden;
    transition-property: background, color;
    background: var(--game-start-bg);
    width: 100%;
    color: var(--game-start-color);
    font-size: 26px;
    text-transform: uppercase; }
  #devils-whisper-app .game-start::before {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    opacity: 0;
    z-index: -1;
    transition-duration: 0.5s;
    transition-property: opacity, padding;
    border-radius: 50%;
    background: var(--game-start-active-bg);
    padding: 0;
    width: 0;
    height: 0;
    content: ""; }
  #devils-whisper-app .game-start:hover {
    color: #fff; }
  #devils-whisper-app .game-start:hover::before {
    opacity: 1;
    padding: 50%;
    width: calc(100% * 1.41421356);
    height: calc(100% * 1.41421356); }
  #devils-whisper-app aside {
    position: fixed;
    z-index: 1;
    width: 311px;
    overflow: hidden;
    pointer-events: none;
    top: 0;
    bottom: 0;
    left: 0; }
  #devils-whisper-app .floating-menu {
    height: 100%; }
  #devils-whisper-app .floating-menu .close-wrap {
    transition-property: translate;
    background: #232323;
    width: 240px;
    height: 100%;
    pointer-events: auto;
    overflow-y: auto; }
  #devils-whisper-app .floating-menu .scroll-wrap-inner {
    display: flex;
    flex-direction: column;
    min-height: 100vh; }
  #devils-whisper-app .floating-menu .logo {
    display: block;
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/logo_latale.png") no-repeat center;
    background-size: contain;
    width: 183px;
    height: 58px;
    align-self: center;
    margin: 36px 0 40px;
    border-bottom: 1px solid #353535; }
  #devils-whisper-app .floating-menu .menu-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    border-top: 1px solid #353535; }
  #devils-whisper-app .floating-menu .menu-list li {
    border-bottom: 1px solid #353535;
    width: 100%;
    height: 100px; }
  #devils-whisper-app .floating-menu .menu-list li:hover {
    transition-property: background;
    background-color: #404040; }
  #devils-whisper-app .floating-menu .menu {
    display: block;
    background: #232323 no-repeat center;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100px;
    background-size: auto 100%; }
  #devils-whisper-app .floating-menu .menu-1 {
    background-image: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/btn_menu_1.png"); }
  #devils-whisper-app .floating-menu .menu-1:hover {
    background-image: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/btn_menu_1_hover.png"); }
  #devils-whisper-app .floating-menu .menu-3 {
    background-image: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/btn_menu_3.png"); }
  #devils-whisper-app .floating-menu .menu-3:hover {
    background-image: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/btn_menu_3_hover.png"); }
  #devils-whisper-app .floating-menu .menu-4 {
    background-image: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/btn_menu_4.png"); }
  #devils-whisper-app .floating-menu .menu-4:hover {
    background-image: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/btn_menu_4_hover.png"); }
  #devils-whisper-app .floating-menu .menu-5 {
    background-image: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/btn_menu_5.png"); }
  #devils-whisper-app .floating-menu .menu-5:hover {
    background-image: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/btn_menu_5_hover.png"); }
  #devils-whisper-app .floating-menu .menu-6 {
    background-image: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/btn_menu_6.png"); }
  #devils-whisper-app .floating-menu .menu-6:hover {
    background-image: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/btn_menu_6_hover.png"); }
  #devils-whisper-app .floating-menu .toggle {
    position: absolute;
    top: 50%;
    left: 240px;
    transform: translateY(-50%);
    transition-property: background;
    background: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/btn_menu_close.png") no-repeat center transparent;
    background-size: contain;
    width: 67px;
    height: 83px;
    pointer-events: auto; }
  #devils-whisper-app .floating-menu.closed .close-wrap {
    translate: -240px; }
  #devils-whisper-app .floating-menu.closed .toggle {
    background-image: url("https://static.papayaplay.com/static/assets/images/latale/portal/update/devils_whisper/web/layout/header/btn_menu_open.png"); }
  #devils-whisper-app #devils-whisper-footer {
    position: relative;
    z-index: 1;
    margin-top: calc(var(--layout-footer-height) * -1);
    height: var(--layout-footer-height);
    pointer-events: none;
    color: #000;
    font-weight: normal;
    font-size: 12px;
    line-height: var(--layout-footer-height);
    font-family: arial, sans-serif;
    letter-spacing: -0.6px;
    text-align: center; }
  #devils-whisper-app #devils-whisper-footer.white {
    color: #fff; }
  #devils-whisper-app #devils-whisper-footer.black {
    color: #000; }
  @media screen and (min-width: 1025px) {
    #devils-whisper-app .navigation {
      position: absolute !important;
      left: 50% !important;
      top: 50% !important;
      transform: translate(-50%, -50%) !important;
      margin: 0 !important;
      width: auto !important;
      flex-grow: 0 !important;
      z-index: 10 !important; }
    #devils-whisper-app .navigation > ul {
      display: flex !important;
      flex-grow: 0 !important;
      justify-content: center !important; }
    #devils-whisper-app .navigation > ul > li {
      flex-grow: 0 !important;
      width: 180px !important;
      max-width: none !important;
      padding: 0 10px !important; }
    #devils-whisper-app .page-menu {
      margin-left: auto !important; } }
  @media screen and (max-width: 1024px) {
    #devils-whisper-app {
      /* Reset desktop elements if they are visible */
      /* ============================================================
         MOBILE HEADER
         ============================================================ */
      /* Aside Menu sliding drawer */
      /* Aside Navigation Accordion list */
      /* ============================================================
         MOBILE FOOTER
         ============================================================ */ }
      #devils-whisper-app #devils-whisper-header:not(.mobile-header),
      #devils-whisper-app #devils-whisper-footer:not(.mobile-footer) {
        display: none !important; }
      #devils-whisper-app header.mobile-header {
        position: relative !important;
        top: auto !important;
        right: 0 !important;
        left: 0 !important;
        z-index: 800 !important;
        margin: 0 auto !important;
        width: 720px !important;
        height: 130px !important;
        background: #33313e !important;
        border-bottom: 2px solid #474456 !important;
        translate: none !important;
        min-width: 720px !important; }
      #devils-whisper-app .mobile-header .header {
        display: flex;
        position: relative;
        height: 130px;
        align-items: center; }
      #devils-whisper-app .mobile-header .menu-open {
        position: relative;
        background: transparent;
        border: none;
        width: 100px;
        height: 130px;
        cursor: pointer; }
      #devils-whisper-app .mobile-header .menu-open::before {
        position: absolute;
        margin: auto;
        inset: 0 auto 0 22px;
        box-shadow: 0 -13px 0 0 #fff, 0 13px 0 0 #fff;
        background: #fff;
        width: 38px;
        height: 3px;
        content: ""; }
      #devils-whisper-app .mobile-header .to-main {
        flex: 1;
        text-align: left;
        margin: 0 0 0 20px !important;
        display: block !important;
        background: none !important;
        width: auto !important;
        height: auto !important;
        transform: none !important;
        margin-bottom: 0 !important; }
      #devils-whisper-app .mobile-header .to-main a {
        color: #fff;
        text-decoration: none;
        font-size: 30px;
        font-weight: normal;
        font-family: NanumBarunGothic, sans-serif; }
      #devils-whisper-app .mobile-header .shortcut {
        position: relative;
        background: transparent;
        border: none;
        width: 130px;
        height: 130px;
        cursor: pointer; }
      #devils-whisper-app .mobile-header .shortcut::before {
        position: absolute;
        inset: 20px auto 20px 0;
        background: #474456;
        width: 2px;
        content: ""; }
      #devils-whisper-app .mobile-header .history::after {
        position: absolute;
        translate: 0 -10px;
        margin: auto;
        inset: 0 auto 0 38px;
        box-shadow: 0 20px 0 0 #fff, 20px 0 0 0 #fff, 20px 20px 0 0 #fff;
        border-radius: 2px;
        background: #fff;
        width: 16px;
        height: 16px;
        content: ""; }
      #devils-whisper-app .mobile-header .home::after {
        position: absolute;
        clip-path: polygon(18px 0, 36px 22px, 36px 42px, 25px 42px, 25px 26px, 11px 26px, 11px 42px, 0 42px, 0 22px);
        margin: auto;
        inset: 0;
        background: #fff;
        width: 36px;
        height: 42px;
        content: ""; }
      #devils-whisper-app .mobile-header .aside-menu-back {
        position: fixed;
        inset: 130px 0 0 0 !important;
        z-index: 998;
        background: rgba(0, 0, 0, 0.7);
        border: none;
        width: 100vw;
        height: calc(100vh - 130px) !important;
        cursor: pointer; }
      #devils-whisper-app .mobile-header .aside-menu {
        position: fixed;
        top: 130px !important;
        left: 0;
        z-index: 999;
        width: 624px;
        height: calc(100vh - 130px) !important;
        background: #fff;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3); }
      #devils-whisper-app .mobile-header .aside-menu.open {
        transform: translateX(0); }
      #devils-whisper-app .mobile-header .user-menu {
        display: flex;
        align-items: center;
        background: #33313e;
        height: 130px;
        padding: 0 30px;
        position: relative; }
      #devils-whisper-app .mobile-header .menu-close {
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        width: 60px;
        height: 60px;
        cursor: pointer; }
      #devils-whisper-app .mobile-header .menu-close::before,
      #devils-whisper-app .mobile-header .menu-close::after {
        position: absolute;
        inset: 0;
        margin: auto;
        background: #fff;
        width: 38px;
        height: 3px;
        content: ""; }
      #devils-whisper-app .mobile-header .menu-close::before {
        transform: rotate(45deg); }
      #devils-whisper-app .mobile-header .menu-close::after {
        transform: rotate(-45deg); }
      #devils-whisper-app .mobile-header .user-menu .login {
        position: relative;
        border: 2px solid #ff018a;
        background: transparent;
        padding-right: 48px;
        height: 56px;
        color: #ff018a;
        font-size: 30px;
        line-height: 52px;
        text-align: left;
        text-indent: 18px;
        white-space: nowrap;
        border-radius: 4px;
        cursor: pointer; }
      #devils-whisper-app .mobile-header .user-menu .login::before,
      #devils-whisper-app .mobile-header .user-menu .login::after {
        display: block;
        position: absolute;
        translate: 0 -4px;
        rotate: 33deg;
        margin: auto;
        inset: 0 19px 0 auto;
        background: #ff018a;
        width: 17px;
        height: 3px;
        content: ""; }
      #devils-whisper-app .mobile-header .user-menu .login::after {
        translate: 0 4px;
        rotate: -33deg; }
      #devils-whisper-app .mobile-header .mobile-navigation {
        height: calc(100vh - 130px);
        overflow-y: auto;
        color: #000; }
      #devils-whisper-app .mobile-header .mobile-navigation ul {
        list-style: none;
        padding: 0;
        margin: 0; }
      #devils-whisper-app .mobile-header .mobile-navigation > ul > li {
        position: relative;
        border-bottom: 1px solid #e3e3e3; }
      #devils-whisper-app .mobile-header .mobile-navigation input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        width: 100%;
        height: 100px;
        cursor: pointer;
        z-index: 2;
        margin: 0; }
      #devils-whisper-app .mobile-header .mobile-navigation .menu {
        display: flex;
        align-items: center;
        height: 100px;
        font-size: 30px;
        text-indent: 30px;
        color: #000;
        text-decoration: none;
        position: relative; }
      #devils-whisper-app .mobile-header .mobile-navigation > ul > li > .menu::after {
        content: "";
        display: none;
        position: absolute;
        right: 30px;
        top: 50%;
        margin-top: -8px;
        border-top: 10px solid #8f8f8f;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        transition: transform 0.3s; }
      #devils-whisper-app .mobile-header .mobile-navigation input[type="checkbox"] + .menu::after {
        display: block; }
      #devils-whisper-app .mobile-header .mobile-navigation input[type="checkbox"]:checked ~ .menu::after {
        transform: rotate(180deg); }
      #devils-whisper-app .mobile-header .mobile-navigation ul ul {
        display: none;
        background: #fcfcfc;
        padding: 10px 0; }
      #devils-whisper-app .mobile-header .mobile-navigation input[type="checkbox"]:checked ~ ul {
        display: block; }
      #devils-whisper-app .mobile-header .mobile-navigation ul ul a.menu {
        display: flex;
        align-items: center;
        height: 90px;
        font-size: 26px;
        color: #747474;
        text-decoration: none;
        text-indent: 60px;
        border-bottom: 1px solid #eee; }
      #devils-whisper-app .mobile-header .mobile-navigation ul ul li:last-child a.menu {
        border-bottom: none; }
      #devils-whisper-app footer.mobile-footer {
        position: relative;
        z-index: 10;
        margin-top: -100px;
        height: 100px;
        pointer-events: none;
        font-weight: normal;
        font-size: 15px;
        line-height: 100px;
        font-family: arial, sans-serif;
        letter-spacing: -0.75px;
        text-align: center; }
      #devils-whisper-app footer.mobile-footer.white {
        color: rgba(255, 255, 255, 0.7); }
      #devils-whisper-app footer.mobile-footer.black {
        color: rgba(0, 0, 0, 0.7); } }

/*# sourceMappingURL=devils_whisper.css.map */
