@charset "UTF-8";
/* vendors */
/* abstracts */
/*
 * - 컬러사용시 짝이 있는지 확인한다 (뒤 넘버가 붙을 경우 아래 깔리는 레이어가 존재하는 색상이다.
 * - Light 와 dark 컨트롤은 body dataset 으로 컨트롤 한다.(변수값을 변경해서 대칭 색상이 자동으로 들어가게 한다.)
 * - 없는 컬러 또는 색상 추가는 디자인 팀에 문의 후 dark 모드 색상과 Light 색상 같이 받아 변수명에 등록 후 사용한다. (페이지 내에 사용한다 하여도 주석 사용후 사용 하는걸 지향한다.)
 */
:root {
  --spacing-3xs: 3px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 96px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --size-icon-sm: 16px;
  --size-icon-md: 32px;
  --size-icon-lg: 40px;
  --blur-sm: 4px;
  --blur-md: 12px;
  --line-height-xs: 2px;
}
:root {
  --size-base-font: 62.5%;
}

/*
 * clearfix
 * @include clearfix;
*/
/*
* overflowScrolling
* @include overflowScrolling;
*/
/*
* calc
* @include calc('width', 250px)
*/
/*
* calc
* @include camobile-size-calc('width', 87px);
*/
/*
* textEllipsis 한 줄
* @include textEllipsis;
*/
/*
* textEllipsis 두 줄
* @include textEllipsisClamp;
*/
/*
* translate3D
* @include translate3D;
*/
/*
* scale
* @include scale(-1, 1);
*/
/*
* transition
* @include allTransition();
*/
/*
* transition
* @include allTransition();
*/
/* Typography */
/* info */
/* 20240605 */
.text-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 0 0, 0 0);
          clip-path: polygon(0 0, 0 0, 0 0);
}

/* font mixin
 * - font size는 px 에서 단위만 제외하고 숫자만 적어 사용한다 (rem으로 계산 처리함)
 * - line height는 단위 까지 적는다.
 * - line height는 될수있으면 배수로 적는다.
 * - 기본적용
    {
        font-size: 1.4rem;
        line-height: 1.5;
        font-weight: 400;
        font-family: 'Pretendard'; 
    }
 * - 적용방법
    @include font-rem-package($size: 폰트사이즈, $height: 폰트 높이 간격, $weight: 폰트 굵기, $family: 폰트 종류)
 */
/* Typography 
 *  Type : Pretendard
 *  Weight : Bold, Semibold, Medium, Regular
*/
/* H1
 * - 화면에서 예외적으로 크게 강조되어야 하는 타이틀이나 금액 등에서 사용
 */
/* H2
 * - 가장 큰 사이즈의 타이틀
 * - 두 줄 이상의 문장형 텍스트에 스타일로 사용
 */
/* H3
 * - 큰 사이즈의 타이틀
 * - 두 줄 이상의 문장형 텍스트에 스타일로 사용
 */
/* H4
 * - 보통 사이즈의 타이틀
 * - 두 줄 이상의 문장형 텍스트에 스타일로 사용
 */
/* H5
 * - 작은 사이즈의 타이틀, 짧은 레이블
 * - H5 이하는 화면을 대표하는 타이틀로 사용할 수 없음
 * - 주 사용 Weight는 SemiBold
 */
/* H6
 * - 리스트, 카드 등 컴포넌트 항목의 타이틀로 사용
 * - 두 줄 이상의 문장형 텍스트에 스타일로 사용
 */
/* B1 */
/* B2 */
/* B3 */
/* D1 */
/* D2 */
/* D3 */
/* D4 */
/*
 * 텍스트 컬러 적용
 * @include text-color(color-text-primary);
 * @include text-color(color-text-primary, true); // !important
 */
/*
 * 배경 컬러 적용
 * @include bg-color(color-bg-primary);
 * @include bg-color(color-bg-primary, true); // !important
 */
/*
 * 테두리 컬러 적용
 * @include border-color(color-border-primary);
 * @include border-color(color-border-primary, true); // !important
 */
/*
 * 버튼 배경 컬러 적용 (상태별)
 * @include button-bg-color(primary, enabled);
 * @include button-bg-color(primary, hover);
 * @include button-bg-color(primary, pressed);
 * @include button-bg-color(primary, disabled);
 * @include button-bg-color(secondary, enabled);
 * @include button-bg-color(tertiary, enabled);
 * @include button-bg-color(quaternary, enabled);
 * @include button-bg-color(quinary, enabled);
 */
/*
 * 버튼 테두리 컬러 적용 (상태별)
 * @include button-border-color(primary, enabled);
 * @include button-border-color(primary, hover);
 * @include button-border-color(primary, pressed);
 * @include button-border-color(primary, disabled);
 * @include button-border-color(secondary, enabled);
 * @include button-border-color(tertiary, enabled);
 * @include button-border-color(quaternary, enabled);
 * @include button-border-color(quinary, enabled);
 */
/*
 * 버튼 텍스트 컬러 적용 - 배경용 (상태별)
 * 배경색이 있는 버튼에 사용
 * @include button-bg-text-color(primary, enabled);
 * @include button-bg-text-color(primary, hover);
 * @include button-bg-text-color(primary, pressed);
 * @include button-bg-text-color(primary, disabled);
 * @include button-bg-text-color(secondary, enabled);
 * @include button-bg-text-color(tertiary, enabled);
 * @include button-bg-text-color(quaternary, enabled);
 * @include button-bg-text-color(quinary, enabled);
 */
/*
 * 버튼 텍스트 컬러 적용 - 테두리용 (상태별)
 * 배경이 body 배경색과 동일하거나 투명한 버튼에 사용
 * @include button-border-text-color(primary, enabled);
 * @include button-border-text-color(primary, hover);
 * @include button-border-text-color(primary, pressed);
 * @include button-border-text-color(primary, disabled);
 * @include button-border-text-color(secondary, enabled);
 * @include button-border-text-color(tertiary, enabled);
 * @include button-border-text-color(quaternary, enabled);
 * @include button-border-text-color(quinary, enabled);
 */
/*
 * 버튼 스타일 전체 적용 (배경 버튼)
 * 배경색, 테두리색, 텍스트색을 한 번에 적용
 * @include button-style(primary, enabled);
 * @include button-style(primary, hover);
 * @include button-style(primary, pressed);
 * @include button-style(primary, disabled);
 * @include button-style(secondary, enabled);
 * @include button-style(tertiary, enabled);
 * @include button-style(quaternary, enabled);
 * @include button-style(quinary, enabled);
 */
/*
 * 버튼 스타일 전체 적용 (테두리만 있는 버튼 - 배경이 body 배경색과 동일)
 * 배경을 body 배경색으로, 테두리색, 텍스트색을 한 번에 적용
 * @include button-outline-style(primary, enabled);
 * @include button-outline-style(primary, hover);
 * @include button-outline-style(primary, pressed);
 * @include button-outline-style(primary, disabled);
 * @include button-outline-style(secondary, enabled);
 * @include button-outline-style(tertiary, enabled);
 * @include button-outline-style(quaternary, enabled);
 * @include button-outline-style(quinary, enabled);
 */
/* 아이콘 사이즈가 고정(px) 인경우가 있고 큰글씨 적용시 아이콘도 같이 커져야 하는경우(rem)가 있음, 기본은 rem 방식 */
/*
    @include endFeedback(
        $con : 다음컨텐츠유무 (true false 선택}, 
        $next: 다음태그 ('box', 'text'),
        $value: 별도사용자사이즈입력;
    )
*/
/* theme */
/* base */
:root {
  --n-color-primary: rgba(139, 92, 246, 1);
  --n-color-primary-hover: rgba(124, 58, 237, 1);
  --n-color-primary-pressed: rgba(109, 40, 217, 1);
  --n-color-primary-suppl: rgba(167, 139, 250, 1);
  --n-text-color: rgba(15, 23, 42, 1);
  --n-text-color-1: rgba(15, 23, 42, 1);
  --n-text-color-2: rgba(71, 85, 105, 1);
  --n-text-color-3: rgba(148, 163, 184, 1);
  --n-border-color: rgba(226, 232, 240, 1);
  --n-border-color-1: rgba(226, 232, 240, 1);
  --n-border-color-2: rgba(203, 213, 225, 1);
  --n-border-color-3: rgba(148, 163, 184, 1);
  --n-color-embed: rgba(248, 250, 252, 1);
  --n-color-embed-1: rgba(248, 250, 252, 1);
  --n-color-embed-2: rgba(241, 245, 249, 1);
  --n-color-embed-3: rgba(226, 232, 240, 1);
  --n-color-overlay: rgba(248, 250, 252, 0.6);
  --n-color-info: rgba(59, 130, 246, 1);
  --n-color-success: rgba(34, 197, 94, 1);
  --n-color-warning: rgba(251, 191, 36, 1);
  --n-color-error: rgba(239, 68, 68, 1);
}

body[data-color-mode=dark] {
  --n-color-primary: rgba(139, 92, 246, 1);
  --n-color-primary-hover: rgba(167, 139, 250, 1);
  --n-color-primary-pressed: rgba(196, 181, 253, 1);
  --n-color-primary-suppl: rgba(124, 58, 237, 1);
  --n-text-color: rgba(248, 250, 252, 1);
  --n-text-color-1: rgba(248, 250, 252, 1);
  --n-text-color-2: rgba(220, 220, 220, 1);
  --n-text-color-3: rgba(148, 163, 184, 1);
  --n-border-color: rgba(148, 163, 184, 1);
  --n-border-color-1: rgba(148, 163, 184, 1);
  --n-border-color-2: rgba(100, 116, 139, 1);
  --n-border-color-3: rgba(71, 85, 105, 1);
  --n-color-embed: rgba(15, 23, 42, 1);
  --n-color-embed-1: rgba(15, 23, 42, 1);
  --n-color-embed-2: rgba(30, 41, 59, 1);
  --n-color-embed-3: rgba(51, 65, 85, 1);
  --n-color-overlay: rgba(0, 0, 0, 0.6);
  --n-color-info: rgba(96, 165, 250, 1);
  --n-color-success: rgba(74, 222, 128, 1);
  --n-color-warning: rgba(252, 211, 77, 1);
  --n-color-error: rgba(248, 113, 113, 1);
}

@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard Bold"), url(../font/Pretendard-Bold.woff2) format("woff2"), url(../font/Pretendard-Bold.woff) format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard SemiBold"), url(../font/Pretendard-SemiBold.woff2) format("woff2"), url(../font/Pretendard-SemiBold.woff) format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard Medium"), url(../font/Pretendard-Medium.woff2) format("woff2"), url(../font/Pretendard-Medium.woff) format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard Regular"), url(../font/Pretendard-Regular.woff2) format("woff2"), url(../font/Pretendard-Regular.woff) format("woff");
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: normal;
}

input, select, textarea {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

textarea {
  resize: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

* {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
} /* 아이폰 가로모드시 글씨 커지는 문제 */
i, em {
  font-style: normal;
}

blockquote, q {
  quotes: none;
}

sub {
  vertical-align: sub;
  font-size: smaller;
  line-height: 0;
}

sup {
  vertical-align: super;
  font-size: smaller;
  line-height: 0;
}

img, fieldset {
  vertical-align: middle;
}

a {
  color: inherit;
  vertical-align: inherit;
  text-decoration: none;
}

a:link, a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}

ol, ul, li {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

th, td {
  text-align: center;
  vertical-align: middle;
}

caption, legend {
  width: 1px;
  height: 1px;
  margin: -1px 0 0 0;
  padding: 0;
  border: 0; /* clip:rect(0 0 0 0) !important; */
  overflow: hidden;
  font-size: 0;
  color: transparent;
  line-height: 0;
}

fieldset, legend {
  border: 0;
  background-color: transparent;
}

/*hr {display:none;}*/
hr {
  height: 0;
  border: 0;
  background-color: transparent;
}

button {
  display: inline-block;
  border: 0;
  background-color: transparent;
  font-size: inherit;
  text-align: center;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: button;
}

body:not(.isMobile) a[href^=tel] {
  cursor: text;
  pointer-events: none;
}

body:not(.isMobile) a[href^=tel]:hover {
  color: currentColor;
  text-decoration: none;
}

/* 아이폰(사파리) 터치 메뉴 활성화 관련 */
a, button,
[role=button], [role=link], [role=tab] { /*outline:none;*/
  -webkit-touch-callout: none;
}

/* 아이폰(사파리) form 요소 박스선 없애기 */
input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

@media (max-width: 330px) {
  html {
    font-size: 10px !important;
  }
}
* {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
}

html, body {
  width: 100%;
  min-height: 100%;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  color: rgb(15, 23, 42);
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] body {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] body {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] body {
  background-color: rgb(0, 0, 0);
}

h1, h2, h3, h4, h5, h6 {
  word-break: keep-all;
}

p, span, label, strong, a {
  word-break: unset;
}

body.hidden {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ============================================
   Typography System - BEM 방식
   웹사이트에서 자주 사용되는 텍스트 스타일을
   용도별, 사이즈별로 제공합니다.
   ============================================ */
.heading--h1-bold {
  font-size: 2.9rem;
  line-height: 137.931%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h1-bold {
  color: rgb(248, 250, 252);
}

.heading--h1-semibold {
  font-size: 2.9rem;
  line-height: 137.931%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h1-semibold {
  color: rgb(248, 250, 252);
}

.heading--h1-medium {
  font-size: 2.9rem;
  line-height: 137.931%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h1-medium {
  color: rgb(248, 250, 252);
}

.heading--h2-bold {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h2-bold {
  color: rgb(248, 250, 252);
}

.heading--h2-semibold {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h2-semibold {
  color: rgb(248, 250, 252);
}

.heading--h2-medium {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h2-medium {
  color: rgb(248, 250, 252);
}

.heading--h3-bold {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h3-bold {
  color: rgb(248, 250, 252);
}

.heading--h3-semibold {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h3-semibold {
  color: rgb(248, 250, 252);
}

.heading--h3-medium {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h3-medium {
  color: rgb(248, 250, 252);
}

.heading--h4-bold {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h4-bold {
  color: rgb(248, 250, 252);
}

.heading--h4-semibold {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h4-semibold {
  color: rgb(248, 250, 252);
}

.heading--h4-medium {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h4-medium {
  color: rgb(248, 250, 252);
}

.heading--h4-regular {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h4-regular {
  color: rgb(248, 250, 252);
}

.heading--h5-bold {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h5-bold {
  color: rgb(248, 250, 252);
}

.heading--h5-semibold {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h5-semibold {
  color: rgb(248, 250, 252);
}

.heading--h5-medium {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h5-medium {
  color: rgb(248, 250, 252);
}

.heading--h5-regular {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h5-regular {
  color: rgb(248, 250, 252);
}

.heading--h6-bold {
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h6-bold {
  color: rgb(248, 250, 252);
}

.heading--h6-semibold {
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h6-semibold {
  color: rgb(248, 250, 252);
}

.heading--h6-medium {
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h6-medium {
  color: rgb(248, 250, 252);
}

.heading--h6-regular {
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .heading--h6-regular {
  color: rgb(248, 250, 252);
}

.body--b1-bold {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .body--b1-bold {
  color: rgb(248, 250, 252);
}

.body--b1-semibold {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .body--b1-semibold {
  color: rgb(248, 250, 252);
}

.body--b1-medium {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .body--b1-medium {
  color: rgb(248, 250, 252);
}

.body--b1-regular {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .body--b1-regular {
  color: rgb(248, 250, 252);
}

.body--b2-bold {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .body--b2-bold {
  color: rgb(248, 250, 252);
}

.body--b2-semibold {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .body--b2-semibold {
  color: rgb(248, 250, 252);
}

.body--b2-medium {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .body--b2-medium {
  color: rgb(248, 250, 252);
}

.body--b2-regular {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .body--b2-regular {
  color: rgb(248, 250, 252);
}

.caption--d1-bold {
  font-size: 1.2rem;
  line-height: 1.385;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .caption--d1-bold {
  color: rgb(220, 220, 220);
}

.caption--d1-semibold {
  font-size: 1.2rem;
  line-height: 1.385;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .caption--d1-semibold {
  color: rgb(220, 220, 220);
}

.caption--d1-medium {
  font-size: 1.2rem;
  line-height: 1.385;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .caption--d1-medium {
  color: rgb(220, 220, 220);
}

.caption--d1-regular {
  font-size: 1.2rem;
  line-height: 1.385;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .caption--d1-regular {
  color: rgb(220, 220, 220);
}

.caption--d2-bold {
  font-size: 1.1rem;
  line-height: 1.334;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .caption--d2-bold {
  color: rgb(220, 220, 220);
}

.caption--d2-semibold {
  font-size: 1.1rem;
  line-height: 1.334;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .caption--d2-semibold {
  color: rgb(220, 220, 220);
}

.caption--d2-medium {
  font-size: 1.1rem;
  line-height: 1.334;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .caption--d2-medium {
  color: rgb(220, 220, 220);
}

.caption--d2-regular {
  font-size: 1.1rem;
  line-height: 1.334;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .caption--d2-regular {
  color: rgb(220, 220, 220);
}

.caption--d3-bold {
  font-size: 1.1rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .caption--d3-bold {
  color: rgb(148, 163, 184);
}

.caption--d3-semibold {
  font-size: 1.1rem;
  line-height: 136.364%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .caption--d3-semibold {
  color: rgb(148, 163, 184);
}

.caption--d3-medium {
  font-size: 1.1rem;
  line-height: 136.364%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .caption--d3-medium {
  color: rgb(148, 163, 184);
}

.caption--d3-regular {
  font-size: 1.1rem;
  line-height: 136.364%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .caption--d3-regular {
  color: rgb(148, 163, 184);
}

.caption--d4-bold {
  font-size: 1rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .caption--d4-bold {
  color: rgb(148, 163, 184);
}

.caption--d4-semibold {
  font-size: 1rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .caption--d4-semibold {
  color: rgb(148, 163, 184);
}

.caption--d4-medium {
  font-size: 1rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .caption--d4-medium {
  color: rgb(148, 163, 184);
}

.caption--d4-regular {
  font-size: 1rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .caption--d4-regular {
  color: rgb(148, 163, 184);
}

.link {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
  text-decoration: none;
  -webkit-transition: var(--transition-base);
  transition: var(--transition-base);
  cursor: pointer;
}
body[data-color-mode=dark] .link {
  color: rgb(139, 92, 246);
}

.link:hover {
  color: rgb(167, 139, 250);
  text-decoration: underline;
}
body[data-color-mode=dark] .link:hover {
  color: rgb(167, 139, 250);
}

.link:active {
  color: rgb(124, 58, 237);
}
body[data-color-mode=dark] .link:active {
  color: rgb(124, 58, 237);
}

.link:visited {
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .link:visited {
  color: rgb(139, 92, 246);
}

.link--b1 {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .link--b1 {
  color: rgb(139, 92, 246);
}

.link--b2 {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .link--b2 {
  color: rgb(139, 92, 246);
}

.link--d1 {
  font-size: 1.2rem;
  line-height: 1.385;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .link--d1 {
  color: rgb(139, 92, 246);
}

.label--big {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .label--big {
  color: rgb(248, 250, 252);
}

.label--big strong {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .label--big strong {
  color: rgb(139, 92, 246);
}

.label--medium {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .label--medium {
  color: rgb(248, 250, 252);
}

.label--small {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .label--small {
  color: rgb(248, 250, 252);
}

.label--required::after {
  content: " *";
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .label--required::after {
  color: rgb(139, 92, 246);
}

.text-description--medium {
  font-size: 1.2rem;
  line-height: 1.385;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .text-description--medium {
  color: rgb(220, 220, 220);
}

.text-description--small {
  font-size: 1.1rem;
  line-height: 1.334;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .text-description--small {
  color: rgb(148, 163, 184);
}

.emphasis {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .emphasis {
  color: rgb(248, 250, 252);
}

.emphasis--primary {
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .emphasis--primary {
  color: rgb(139, 92, 246);
}

.emphasis--strong {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  font-weight: 700;
}
body[data-color-mode=dark] .emphasis--strong {
  color: rgb(248, 250, 252);
}

.muted--b1 {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .muted--b1 {
  color: rgb(148, 163, 184);
}

.muted--b2 {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .muted--b2 {
  color: rgb(148, 163, 184);
}

.muted--d1 {
  font-size: 1.2rem;
  line-height: 1.385;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .muted--d1 {
  color: rgb(148, 163, 184);
}

.status-text--error {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .status-text--error {
  color: rgb(248, 250, 252);
}

.status-text--success {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .status-text--success {
  color: rgb(139, 92, 246);
}

.status-text--warning {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .status-text--warning {
  color: rgb(220, 220, 220);
}

.status-text--info {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .status-text--info {
  color: rgb(148, 163, 184);
}

.price--large {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .price--large {
  color: rgb(248, 250, 252);
}

.price--medium {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .price--medium {
  color: rgb(248, 250, 252);
}

.price--small {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .price--small {
  color: rgb(248, 250, 252);
}

.price__currency {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-right: var(--spacing-xs);
}
body[data-color-mode=dark] .price__currency {
  color: rgb(220, 220, 220);
}

.price__unit {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  margin-left: var(--spacing-xs);
}
body[data-color-mode=dark] .price__unit {
  color: rgb(148, 163, 184);
}

.code {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  font-family: "Courier New", Courier, monospace;
  background-color: transparent;
  background-color: rgb(226, 232, 240);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
}
body[data-color-mode=dark] .code {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] .code {
  background-color: rgb(51, 65, 85);
}

.code--inline {
  display: inline;
  padding: 2px 4px;
}
.code--block {
  display: block;
  padding: var(--spacing-md);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  border-radius: var(--radius-md);
  overflow-x: auto;
}
body[data-color-mode=dark] .code--block {
  border-color: rgb(148, 163, 184);
}

.pre {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  font-family: "Courier New", Courier, monospace;
  background-color: rgb(226, 232, 240);
  padding: var(--spacing-md);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  border-radius: var(--radius-md);
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}
body[data-color-mode=dark] .pre {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] .pre {
  background-color: rgb(51, 65, 85);
}

body[data-color-mode=dark] .pre {
  border-color: rgb(148, 163, 184);
}

.section__area {
  margin-top: var(--spacing-xl);
}
.section__area + .section__area {
  margin-top: var(--spacing-3xl);
}
.section__header {
  margin-bottom: var(--spacing-md);
}
.section__body {
  margin-top: var(--spacing-md);
}

.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  background-color: rgb(241, 245, 249);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-top: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .fixed-bottom {
  background-color: rgb(30, 41, 59);
}

body[data-color-mode=dark] .fixed-bottom {
  border-color: rgb(148, 163, 184);
}

.button-area {
  margin-top: 0;
  padding: var(--spacing-lg);
}

.call-button-wrapper {
  padding: var(--spacing-md) 0;
}

.n-button {
  border-radius: var(--radius-md) !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
}

/* layout */
.wrap {
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .wrap {
  background-color: rgb(0, 0, 0);
}

.layout {
  position: relative;
  min-height: 100vh;
}
.layout .main {
  padding: 5.2rem 0 4.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
.layout .main .page-content {
  position: relative;
  width: 100%;
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .layout .main .page-content {
    padding: 0;
  }
}
.layout .main .page-content--with-steps {
  padding-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .layout .main .page-content--with-steps {
    padding-bottom: var(--spacing-2xl);
  }
}

.article {
  margin-top: var(--spacing-lg);
}
.article:first-child {
  margin: 0;
}

/* components, templates, pages 각 항목들의 하위 파일목록 각각 import */
.logo-icon_ribbon {
  width: 32px;
  height: 32px;
  background-image: url("/assets/images/icon/ico_logo_small.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.n-button {
  padding: var(--spacing-md) var(--spacing-lg) !important;
  border-radius: var(--radius-md) !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
}
.n-button--primary-type {
  background-color: rgb(139, 92, 246) !important;
  border-color: rgb(139, 92, 246) !important;
  color: rgb(255, 255, 255) !important;
  border: none !important;
}
body[data-color-mode=dark] .n-button--primary-type {
  background-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .n-button--primary-type {
  border-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .n-button--primary-type {
  color: rgb(255, 255, 255) !important;
}

.n-button--primary-type:hover:not(:disabled) {
  background-color: rgb(124, 58, 237) !important;
  border-color: rgb(124, 58, 237) !important;
  color: rgb(255, 255, 255) !important;
  -webkit-transform: translateY(-1px) !important;
          transform: translateY(-1px) !important;
  -webkit-box-shadow: var(--shadow-lg) !important;
          box-shadow: var(--shadow-lg) !important;
}
body[data-color-mode=dark] .n-button--primary-type:hover:not(:disabled) {
  background-color: rgb(167, 139, 250) !important;
}

body[data-color-mode=dark] .n-button--primary-type:hover:not(:disabled) {
  border-color: rgb(167, 139, 250) !important;
}

body[data-color-mode=dark] .n-button--primary-type:hover:not(:disabled) {
  color: rgb(255, 255, 255) !important;
}

.n-button--primary-type:active:not(:disabled), .n-button--primary-type:focus:not(:disabled) {
  background-color: rgb(109, 40, 217) !important;
  border-color: rgb(109, 40, 217) !important;
  color: rgb(255, 255, 255) !important;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}
body[data-color-mode=dark] .n-button--primary-type:active:not(:disabled), body[data-color-mode=dark] .n-button--primary-type:focus:not(:disabled) {
  background-color: rgb(196, 181, 253) !important;
}

body[data-color-mode=dark] .n-button--primary-type:active:not(:disabled), body[data-color-mode=dark] .n-button--primary-type:focus:not(:disabled) {
  border-color: rgb(196, 181, 253) !important;
}

body[data-color-mode=dark] .n-button--primary-type:active:not(:disabled), body[data-color-mode=dark] .n-button--primary-type:focus:not(:disabled) {
  color: rgb(255, 255, 255) !important;
}

.n-button--primary-type:disabled {
  background-color: rgb(221, 214, 255) !important;
  border-color: rgb(196, 181, 253) !important;
  color: rgb(124, 58, 237) !important;
  cursor: not-allowed !important;
}
body[data-color-mode=dark] .n-button--primary-type:disabled {
  background-color: rgb(67, 56, 108) !important;
}

body[data-color-mode=dark] .n-button--primary-type:disabled {
  border-color: rgb(91, 78, 145) !important;
}

body[data-color-mode=dark] .n-button--primary-type:disabled {
  color: rgb(91, 78, 145) !important;
}

.n-button--default-type {
  background-color: rgb(255, 255, 255) !important;
  border-color: rgb(139, 92, 246) !important;
  color: rgb(139, 92, 246) !important;
}
body[data-color-mode=dark] .n-button--default-type {
  background-color: rgb(0, 0, 0) !important;
}

body[data-color-mode=dark] .n-button--default-type {
  border-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .n-button--default-type {
  color: rgb(139, 92, 246) !important;
}

.n-button--default-type:hover:not(:disabled) {
  border-color: rgb(124, 58, 237) !important;
  color: rgb(124, 58, 237) !important;
  -webkit-transform: translateY(-1px) !important;
          transform: translateY(-1px) !important;
  -webkit-box-shadow: var(--shadow-md) !important;
          box-shadow: var(--shadow-md) !important;
}
body[data-color-mode=dark] .n-button--default-type:hover:not(:disabled) {
  border-color: rgb(167, 139, 250) !important;
}

body[data-color-mode=dark] .n-button--default-type:hover:not(:disabled) {
  color: rgb(167, 139, 250) !important;
}

.n-button--default-type:active:not(:disabled), .n-button--default-type:focus:not(:disabled) {
  border-color: rgb(109, 40, 217) !important;
  color: rgb(109, 40, 217) !important;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}
body[data-color-mode=dark] .n-button--default-type:active:not(:disabled), body[data-color-mode=dark] .n-button--default-type:focus:not(:disabled) {
  border-color: rgb(196, 181, 253) !important;
}

body[data-color-mode=dark] .n-button--default-type:active:not(:disabled), body[data-color-mode=dark] .n-button--default-type:focus:not(:disabled) {
  color: rgb(196, 181, 253) !important;
}

.n-button--default-type:disabled {
  border-color: rgb(196, 181, 253) !important;
  color: rgb(148, 163, 184) !important;
  cursor: not-allowed !important;
}
body[data-color-mode=dark] .n-button--default-type:disabled {
  border-color: rgb(91, 78, 145) !important;
}

body[data-color-mode=dark] .n-button--default-type:disabled {
  color: rgb(148, 163, 184) !important;
}

.n-button--tertiary-type {
  background-color: rgb(196, 181, 253) !important;
  border-color: rgb(196, 181, 253) !important;
  color: rgb(124, 58, 237) !important;
  border: none !important;
}
body[data-color-mode=dark] .n-button--tertiary-type {
  background-color: rgb(91, 78, 145) !important;
}

body[data-color-mode=dark] .n-button--tertiary-type {
  border-color: rgb(91, 78, 145) !important;
}

body[data-color-mode=dark] .n-button--tertiary-type {
  color: rgb(255, 255, 255) !important;
}

.n-button--tertiary-type:hover:not(:disabled) {
  background-color: rgb(167, 139, 250) !important;
  border-color: rgb(167, 139, 250) !important;
  color: rgb(255, 255, 255) !important;
  -webkit-transform: translateY(-1px) !important;
          transform: translateY(-1px) !important;
  -webkit-box-shadow: var(--shadow-md) !important;
          box-shadow: var(--shadow-md) !important;
}
body[data-color-mode=dark] .n-button--tertiary-type:hover:not(:disabled) {
  background-color: rgb(124, 114, 183) !important;
}

body[data-color-mode=dark] .n-button--tertiary-type:hover:not(:disabled) {
  border-color: rgb(124, 114, 183) !important;
}

body[data-color-mode=dark] .n-button--tertiary-type:hover:not(:disabled) {
  color: rgb(255, 255, 255) !important;
}

.n-button--tertiary-type:active:not(:disabled), .n-button--tertiary-type:focus:not(:disabled) {
  background-color: rgb(139, 92, 246) !important;
  border-color: rgb(139, 92, 246) !important;
  color: rgb(255, 255, 255) !important;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}
body[data-color-mode=dark] .n-button--tertiary-type:active:not(:disabled), body[data-color-mode=dark] .n-button--tertiary-type:focus:not(:disabled) {
  background-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .n-button--tertiary-type:active:not(:disabled), body[data-color-mode=dark] .n-button--tertiary-type:focus:not(:disabled) {
  border-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .n-button--tertiary-type:active:not(:disabled), body[data-color-mode=dark] .n-button--tertiary-type:focus:not(:disabled) {
  color: rgb(255, 255, 255) !important;
}

.n-button--tertiary-type:disabled {
  background-color: rgb(245, 243, 255) !important;
  border-color: rgb(233, 227, 255) !important;
  color: rgb(196, 181, 253) !important;
  cursor: not-allowed !important;
}
body[data-color-mode=dark] .n-button--tertiary-type:disabled {
  background-color: rgb(30, 27, 50) !important;
}

body[data-color-mode=dark] .n-button--tertiary-type:disabled {
  border-color: rgb(44, 36, 75) !important;
}

body[data-color-mode=dark] .n-button--tertiary-type:disabled {
  color: rgb(44, 36, 75) !important;
}

.n-button--text-type {
  color: rgb(233, 227, 255) !important;
  background: transparent !important;
  border: none !important;
}
body[data-color-mode=dark] .n-button--text-type {
  color: rgb(44, 36, 75) !important;
}

.n-button--text-type:hover:not(:disabled) {
  color: rgb(221, 214, 255) !important;
  background-color: rgb(203, 213, 225) !important;
}
body[data-color-mode=dark] .n-button--text-type:hover:not(:disabled) {
  color: rgb(67, 56, 108) !important;
}

body[data-color-mode=dark] .n-button--text-type:hover:not(:disabled) {
  background-color: rgb(71, 85, 105) !important;
}

.n-button--text-type:active:not(:disabled), .n-button--text-type:focus:not(:disabled) {
  color: rgb(196, 181, 253) !important;
  background-color: rgb(226, 232, 240) !important;
}
body[data-color-mode=dark] .n-button--text-type:active:not(:disabled), body[data-color-mode=dark] .n-button--text-type:focus:not(:disabled) {
  color: rgb(91, 78, 145) !important;
}

body[data-color-mode=dark] .n-button--text-type:active:not(:disabled), body[data-color-mode=dark] .n-button--text-type:focus:not(:disabled) {
  background-color: rgb(51, 65, 85) !important;
}

.n-button--text-type:disabled {
  color: rgb(148, 163, 184) !important;
  cursor: not-allowed !important;
}
body[data-color-mode=dark] .n-button--text-type:disabled {
  color: rgb(148, 163, 184) !important;
}

.button-area {
  margin-top: var(--spacing-lg);
  padding: 0;
}
.button-area--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--spacing-sm);
}

.action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-md);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.n-card {
  border-radius: var(--radius-xl) !important;
  border: 1px solid !important;
  border-color: rgb(226, 232, 240) !important;
  -webkit-box-shadow: var(--shadow-lg) !important;
          box-shadow: var(--shadow-lg) !important;
  background-color: rgb(255, 255, 255) !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
  overflow: hidden !important;
}
body[data-color-mode=dark] .n-card {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-card {
  background-color: rgb(0, 0, 0) !important;
}

.n-card:hover {
  -webkit-box-shadow: var(--shadow-xl) !important;
          box-shadow: var(--shadow-xl) !important;
  -webkit-transform: translateY(0px) !important;
          transform: translateY(0px) !important;
}
.n-card--bordered {
  border: 1px solid !important;
  border-color: rgb(226, 232, 240) !important;
}
body[data-color-mode=dark] .n-card--bordered {
  border-color: rgb(148, 163, 184) !important;
}

.n-card--shadow {
  -webkit-box-shadow: var(--shadow-lg) !important;
          box-shadow: var(--shadow-lg) !important;
}
.n-card--hoverable {
  cursor: pointer !important;
}
.n-card--hoverable:hover {
  -webkit-box-shadow: var(--shadow-xl) !important;
          box-shadow: var(--shadow-xl) !important;
  -webkit-transform: translateY(0px) !important;
          transform: translateY(0px) !important;
}
.n-card-header {
  padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-md) !important;
  border-bottom: 1px solid !important;
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(255, 255, 255) !important;
}
body[data-color-mode=dark] .n-card-header {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-card-header {
  background-color: rgb(0, 0, 0) !important;
}

.n-card-header__main {
  color: rgb(15, 23, 42) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px !important;
}
body[data-color-mode=dark] .n-card-header__main {
  color: rgb(248, 250, 252) !important;
}

body[data-color-mode=dark] .n-card-header__main {
  color: rgb(248, 250, 252);
}

.n-card-header__extra {
  color: rgb(71, 85, 105) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  letter-spacing: 0.2px !important;
}
body[data-color-mode=dark] .n-card-header__extra {
  color: rgb(220, 220, 220) !important;
}

body[data-color-mode=dark] .n-card-header__extra {
  color: rgb(220, 220, 220);
}

.n-card__cover {
  width: 100% !important;
  overflow: hidden !important;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0 !important;
}
.n-card__cover img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.n-card__content {
  padding: var(--spacing-lg) !important;
  color: rgb(15, 23, 42) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px !important;
}
body[data-color-mode=dark] .n-card__content {
  color: rgb(248, 250, 252) !important;
}

body[data-color-mode=dark] .n-card__content {
  color: rgb(248, 250, 252);
}

.n-card:not(:has(.n-card-header)) .n-card__content {
  padding-top: var(--spacing-lg) !important;
}
.n-card__footer {
  padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg) !important;
  border-top: 1px solid !important;
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(255, 255, 255) !important;
  color: rgb(71, 85, 105) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  letter-spacing: 0.2px !important;
}
body[data-color-mode=dark] .n-card__footer {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-card__footer {
  background-color: rgb(0, 0, 0) !important;
}

body[data-color-mode=dark] .n-card__footer {
  color: rgb(220, 220, 220) !important;
}

body[data-color-mode=dark] .n-card__footer {
  color: rgb(220, 220, 220);
}

.n-card__action {
  padding: var(--spacing-md) var(--spacing-lg) !important;
  border-top: 1px solid !important;
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(255, 255, 255) !important;
}
body[data-color-mode=dark] .n-card__action {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-card__action {
  background-color: rgb(0, 0, 0) !important;
}

.n-card__action .n-button,
.n-card__action .n-button-group {
  margin-right: var(--spacing-xs) !important;
}
.n-card__action .n-button:last-child,
.n-card__action .n-button-group:last-child {
  margin-right: 0 !important;
}
.n-card--small .n-card-header {
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-xs) !important;
}
.n-card--small .n-card-header__main {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-card--small .n-card-header__main {
  color: rgb(248, 250, 252);
}

.n-card--small .n-card-header__extra {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .n-card--small .n-card-header__extra {
  color: rgb(220, 220, 220);
}

.n-card--small .n-card__content {
  padding: var(--spacing-md) !important;
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-card--small .n-card__content {
  color: rgb(248, 250, 252);
}

.n-card--small .n-card__footer {
  padding: var(--spacing-xs) var(--spacing-md) var(--spacing-md) !important;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .n-card--small .n-card__footer {
  color: rgb(220, 220, 220);
}

.n-card--small .n-card__action {
  padding: var(--spacing-xs) var(--spacing-md) !important;
}
.n-card--medium .n-card-header {
  padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-md) !important;
}
.n-card--medium .n-card-header__main {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-card--medium .n-card-header__main {
  color: rgb(248, 250, 252);
}

.n-card--medium .n-card-header__extra {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .n-card--medium .n-card-header__extra {
  color: rgb(220, 220, 220);
}

.n-card--medium .n-card__content {
  padding: var(--spacing-lg) !important;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-card--medium .n-card__content {
  color: rgb(248, 250, 252);
}

.n-card--medium .n-card__footer {
  padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg) !important;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .n-card--medium .n-card__footer {
  color: rgb(220, 220, 220);
}

.n-card--medium .n-card__action {
  padding: var(--spacing-md) var(--spacing-lg) !important;
}
.n-card--large .n-card-header {
  padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-lg) !important;
}
.n-card--large .n-card-header__main {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-card--large .n-card-header__main {
  color: rgb(248, 250, 252);
}

.n-card--large .n-card-header__extra {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .n-card--large .n-card-header__extra {
  color: rgb(220, 220, 220);
}

.n-card--large .n-card__content {
  padding: var(--spacing-xl) !important;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-card--large .n-card__content {
  color: rgb(248, 250, 252);
}

.n-card--large .n-card__footer {
  padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xl) !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .n-card--large .n-card__footer {
  color: rgb(220, 220, 220);
}

.n-card--large .n-card__action {
  padding: var(--spacing-lg) var(--spacing-xl) !important;
}
.n-card--segmented .n-card-header {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.n-card--segmented .n-card__content {
  padding-top: var(--spacing-md) !important;
}

.n-card-group {
  display: grid !important;
  gap: var(--spacing-lg) !important;
}
.n-card-group .n-card {
  margin: 0 !important;
}
.n-card-group--grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
}
.n-card-group--horizontal {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}
.n-card-group--horizontal .n-card {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
  min-width: 280px !important;
}

.n-card + .n-card {
  margin-top: var(--spacing-lg) !important;
}

.n-checkbox {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
}
body[data-color-mode=dark] .n-checkbox {
  color: rgb(248, 250, 252);
}

.n-checkbox__input-box-wrapper {
  position: relative !important;
}
.n-checkbox__input-box {
  width: 18px !important;
  height: 18px !important;
  border: 2px solid !important;
  border-color: rgb(203, 213, 225) !important;
  background-color: rgb(226, 232, 240) !important;
  border-radius: var(--radius-sm) !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
  position: relative !important;
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}
body[data-color-mode=dark] .n-checkbox__input-box {
  border-color: rgb(100, 116, 139) !important;
}

body[data-color-mode=dark] .n-checkbox__input-box {
  background-color: rgb(51, 65, 85) !important;
}

.n-checkbox__input-box::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 5px !important;
  height: 9px !important;
  border: 2px solid !important;
  border-top: none !important;
  border-left: none !important;
  border-color: rgb(255, 255, 255) !important;
  -webkit-transform: translate(-50%, -60%) rotate(45deg) scale(0) !important;
          transform: translate(-50%, -60%) rotate(45deg) scale(0) !important;
  -webkit-transition: -webkit-transform var(--transition-base) !important;
  transition: -webkit-transform var(--transition-base) !important;
  transition: transform var(--transition-base) !important;
  transition: transform var(--transition-base), -webkit-transform var(--transition-base) !important;
}
body[data-color-mode=dark] .n-checkbox__input-box::after {
  border-color: rgb(0, 0, 0) !important;
}

.n-checkbox__label {
  color: rgb(15, 23, 42) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px !important;
  margin-left: var(--spacing-xs) !important;
}
body[data-color-mode=dark] .n-checkbox__label {
  color: rgb(248, 250, 252) !important;
}

body[data-color-mode=dark] .n-checkbox__label {
  color: rgb(248, 250, 252);
}

.n-checkbox--checked .n-checkbox__input-box {
  border-color: rgb(139, 92, 246) !important;
  background-color: rgb(139, 92, 246) !important;
}
body[data-color-mode=dark] .n-checkbox--checked .n-checkbox__input-box {
  border-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .n-checkbox--checked .n-checkbox__input-box {
  background-color: rgb(139, 92, 246) !important;
}

.n-checkbox--checked .n-checkbox__input-box::after {
  -webkit-transform: translate(-50%, -60%) rotate(45deg) scale(1) !important;
          transform: translate(-50%, -60%) rotate(45deg) scale(1) !important;
}
.n-checkbox--checked .n-checkbox__label {
  color: rgb(15, 23, 42) !important;
}
body[data-color-mode=dark] .n-checkbox--checked .n-checkbox__label {
  color: rgb(248, 250, 252) !important;
}

.n-checkbox--indeterminate .n-checkbox__input-box {
  border-color: rgb(139, 92, 246) !important;
  background-color: rgb(139, 92, 246) !important;
}
body[data-color-mode=dark] .n-checkbox--indeterminate .n-checkbox__input-box {
  border-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .n-checkbox--indeterminate .n-checkbox__input-box {
  background-color: rgb(139, 92, 246) !important;
}

.n-checkbox--indeterminate .n-checkbox__input-box::after {
  content: "" !important;
  width: 10px !important;
  height: 2px !important;
  border: none !important;
  background-color: rgb(255, 255, 255) !important;
  -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1) !important;
          transform: translate(-50%, -50%) rotate(0deg) scale(1) !important;
}
body[data-color-mode=dark] .n-checkbox--indeterminate .n-checkbox__input-box::after {
  background-color: rgb(0, 0, 0) !important;
}

.n-checkbox:focus-within .n-checkbox__input-box {
  -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
          box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
}
.n-checkbox:hover:not(.n-checkbox--disabled) .n-checkbox__input-box {
  border-color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-checkbox:hover:not(.n-checkbox--disabled) .n-checkbox__input-box {
  border-color: rgb(71, 85, 105) !important;
}

.n-checkbox:hover:not(.n-checkbox--disabled).n-checkbox--checked .n-checkbox__input-box {
  border-color: rgb(124, 58, 237) !important;
  background-color: rgb(124, 58, 237) !important;
}
body[data-color-mode=dark] .n-checkbox:hover:not(.n-checkbox--disabled).n-checkbox--checked .n-checkbox__input-box {
  border-color: rgb(124, 58, 237) !important;
}

body[data-color-mode=dark] .n-checkbox:hover:not(.n-checkbox--disabled).n-checkbox--checked .n-checkbox__input-box {
  background-color: rgb(124, 58, 237) !important;
}

.n-checkbox:hover:not(.n-checkbox--disabled) .n-checkbox__label {
  color: rgb(15, 23, 42) !important;
}
body[data-color-mode=dark] .n-checkbox:hover:not(.n-checkbox--disabled) .n-checkbox__label {
  color: rgb(248, 250, 252) !important;
}

.n-checkbox--disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}
.n-checkbox--disabled .n-checkbox__input-box {
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(241, 245, 249) !important;
  cursor: not-allowed !important;
}
body[data-color-mode=dark] .n-checkbox--disabled .n-checkbox__input-box {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-checkbox--disabled .n-checkbox__input-box {
  background-color: rgb(30, 41, 59) !important;
}

.n-checkbox--disabled .n-checkbox__label {
  color: rgb(148, 163, 184) !important;
  cursor: not-allowed !important;
}
body[data-color-mode=dark] .n-checkbox--disabled .n-checkbox__label {
  color: rgb(148, 163, 184) !important;
}

.n-checkbox--disabled.n-checkbox--checked .n-checkbox__input-box {
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(241, 245, 249) !important;
  opacity: 0.6 !important;
}
body[data-color-mode=dark] .n-checkbox--disabled.n-checkbox--checked .n-checkbox__input-box {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-checkbox--disabled.n-checkbox--checked .n-checkbox__input-box {
  background-color: rgb(30, 41, 59) !important;
}

.n-checkbox--disabled.n-checkbox--checked .n-checkbox__input-box::after {
  border-color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-checkbox--disabled.n-checkbox--checked .n-checkbox__input-box::after {
  border-color: rgb(148, 163, 184) !important;
}

.n-checkbox--disabled.n-checkbox--indeterminate .n-checkbox__input-box::after {
  background-color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-checkbox--disabled.n-checkbox--indeterminate .n-checkbox__input-box::after {
  background-color: rgb(148, 163, 184) !important;
}

.n-checkbox-button {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
}
body[data-color-mode=dark] .n-checkbox-button {
  color: rgb(248, 250, 252);
}

.n-checkbox-button .n-checkbox {
  display: none !important;
}
.n-checkbox-button__checkbox {
  padding: var(--spacing-xs) var(--spacing-md) !important;
  border: 1px solid !important;
  border-color: rgb(203, 213, 225) !important;
  background-color: rgb(226, 232, 240) !important;
  color: rgb(15, 23, 42) !important;
  border-radius: var(--radius-md) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}
body[data-color-mode=dark] .n-checkbox-button__checkbox {
  border-color: rgb(100, 116, 139) !important;
}

body[data-color-mode=dark] .n-checkbox-button__checkbox {
  background-color: rgb(51, 65, 85) !important;
}

body[data-color-mode=dark] .n-checkbox-button__checkbox {
  color: rgb(248, 250, 252) !important;
}

body[data-color-mode=dark] .n-checkbox-button__checkbox {
  color: rgb(248, 250, 252);
}

.n-checkbox-button--checked .n-checkbox-button__checkbox {
  border-color: rgb(139, 92, 246) !important;
  background-color: rgb(139, 92, 246) !important;
  color: rgb(255, 255, 255) !important;
}
body[data-color-mode=dark] .n-checkbox-button--checked .n-checkbox-button__checkbox {
  border-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .n-checkbox-button--checked .n-checkbox-button__checkbox {
  background-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .n-checkbox-button--checked .n-checkbox-button__checkbox {
  color: rgb(0, 0, 0) !important;
}

.n-checkbox-button:focus-within .n-checkbox-button__checkbox {
  -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
          box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
}
.n-checkbox-button:hover:not(.n-checkbox-button--disabled):not(.n-checkbox-button--checked) .n-checkbox-button__checkbox {
  border-color: rgb(148, 163, 184) !important;
  background-color: rgb(203, 213, 225) !important;
}
body[data-color-mode=dark] .n-checkbox-button:hover:not(.n-checkbox-button--disabled):not(.n-checkbox-button--checked) .n-checkbox-button__checkbox {
  border-color: rgb(71, 85, 105) !important;
}

body[data-color-mode=dark] .n-checkbox-button:hover:not(.n-checkbox-button--disabled):not(.n-checkbox-button--checked) .n-checkbox-button__checkbox {
  background-color: rgb(71, 85, 105) !important;
}

.n-checkbox-button:hover:not(.n-checkbox-button--disabled).n-checkbox-button--checked .n-checkbox-button__checkbox {
  border-color: rgb(124, 58, 237) !important;
  background-color: rgb(124, 58, 237) !important;
}
body[data-color-mode=dark] .n-checkbox-button:hover:not(.n-checkbox-button--disabled).n-checkbox-button--checked .n-checkbox-button__checkbox {
  border-color: rgb(124, 58, 237) !important;
}

body[data-color-mode=dark] .n-checkbox-button:hover:not(.n-checkbox-button--disabled).n-checkbox-button--checked .n-checkbox-button__checkbox {
  background-color: rgb(124, 58, 237) !important;
}

.n-checkbox-button--disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}
.n-checkbox-button--disabled .n-checkbox-button__checkbox {
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(241, 245, 249) !important;
  color: rgb(148, 163, 184) !important;
  cursor: not-allowed !important;
}
body[data-color-mode=dark] .n-checkbox-button--disabled .n-checkbox-button__checkbox {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-checkbox-button--disabled .n-checkbox-button__checkbox {
  background-color: rgb(30, 41, 59) !important;
}

body[data-color-mode=dark] .n-checkbox-button--disabled .n-checkbox-button__checkbox {
  color: rgb(148, 163, 184) !important;
}

.n-checkbox-button--small .n-checkbox-button__checkbox {
  padding: var(--spacing-xs) var(--spacing-sm) !important;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  height: 32px !important;
}
body[data-color-mode=dark] .n-checkbox-button--small .n-checkbox-button__checkbox {
  color: rgb(248, 250, 252);
}

.n-checkbox-button--medium .n-checkbox-button__checkbox {
  padding: var(--spacing-xs) var(--spacing-md) !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  height: 40px !important;
}
body[data-color-mode=dark] .n-checkbox-button--medium .n-checkbox-button__checkbox {
  color: rgb(248, 250, 252);
}

.n-checkbox-button--large .n-checkbox-button__checkbox {
  padding: var(--spacing-sm) var(--spacing-lg) !important;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  height: 48px !important;
}
body[data-color-mode=dark] .n-checkbox-button--large .n-checkbox-button__checkbox {
  color: rgb(248, 250, 252);
}

.n-checkbox-group {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  gap: var(--spacing-xs) !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}
.n-checkbox-group .n-checkbox,
.n-checkbox-group .n-checkbox-button {
  margin-right: var(--spacing-md) !important;
}
.n-checkbox-group .n-checkbox:last-child,
.n-checkbox-group .n-checkbox-button:last-child {
  margin-right: 0 !important;
}
.n-checkbox-group--vertical {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}
.n-checkbox-group--vertical .n-checkbox,
.n-checkbox-group--vertical .n-checkbox-button {
  margin-right: 0 !important;
  margin-bottom: var(--spacing-md) !important;
}
.n-checkbox-group--vertical .n-checkbox:last-child,
.n-checkbox-group--vertical .n-checkbox-button:last-child {
  margin-bottom: 0 !important;
}
.n-checkbox-group--button-group .n-checkbox-button {
  margin-right: 0 !important;
}
.n-checkbox-group--button-group .n-checkbox-button .n-checkbox-button__checkbox {
  border-radius: 0 !important;
}
.n-checkbox-group--button-group .n-checkbox-button .n-checkbox-button__checkbox:first-child {
  border-top-left-radius: var(--radius-md) !important;
  border-bottom-left-radius: var(--radius-md) !important;
}
.n-checkbox-group--button-group .n-checkbox-button .n-checkbox-button__checkbox:last-child {
  border-top-right-radius: var(--radius-md) !important;
  border-bottom-right-radius: var(--radius-md) !important;
}
.n-checkbox-group--button-group .n-checkbox-button .n-checkbox-button__checkbox:not(:first-child) {
  border-left: none !important;
  margin-left: -1px !important;
}
.n-checkbox-group--button-group .n-checkbox-button:hover:not(.n-checkbox-button--disabled):not(.n-checkbox-button--checked) {
  z-index: 1 !important;
}
.n-checkbox-group--button-group .n-checkbox-button:hover:not(.n-checkbox-button--disabled).n-checkbox-button--checked {
  z-index: 1 !important;
}

.n-checkbox-card {
  border: 1px solid !important;
  border-color: rgb(203, 213, 225) !important;
  background-color: rgb(226, 232, 240) !important;
  border-radius: var(--radius-md) !important;
  padding: var(--spacing-md) !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
  cursor: pointer !important;
}
body[data-color-mode=dark] .n-checkbox-card {
  border-color: rgb(100, 116, 139) !important;
}

body[data-color-mode=dark] .n-checkbox-card {
  background-color: rgb(51, 65, 85) !important;
}

.n-checkbox-card .n-checkbox {
  margin-bottom: var(--spacing-xs) !important;
}
.n-checkbox-card--checked {
  border-color: rgb(139, 92, 246) !important;
  background-color: rgb(203, 213, 225) !important;
  -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
          box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
}
body[data-color-mode=dark] .n-checkbox-card--checked {
  border-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .n-checkbox-card--checked {
  background-color: rgb(71, 85, 105) !important;
}

.n-checkbox-card:hover:not(.n-checkbox-card--disabled):not(.n-checkbox-card--checked) {
  border-color: rgb(148, 163, 184) !important;
  background-color: rgb(203, 213, 225) !important;
}
body[data-color-mode=dark] .n-checkbox-card:hover:not(.n-checkbox-card--disabled):not(.n-checkbox-card--checked) {
  border-color: rgb(71, 85, 105) !important;
}

body[data-color-mode=dark] .n-checkbox-card:hover:not(.n-checkbox-card--disabled):not(.n-checkbox-card--checked) {
  background-color: rgb(71, 85, 105) !important;
}

.n-checkbox-card:hover:not(.n-checkbox-card--disabled).n-checkbox-card--checked {
  border-color: rgb(124, 58, 237) !important;
}
body[data-color-mode=dark] .n-checkbox-card:hover:not(.n-checkbox-card--disabled).n-checkbox-card--checked {
  border-color: rgb(124, 58, 237) !important;
}

.n-checkbox-card--disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(241, 245, 249) !important;
}
body[data-color-mode=dark] .n-checkbox-card--disabled {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-checkbox-card--disabled {
  background-color: rgb(30, 41, 59) !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  height: 52px;
  border-bottom: 1px solid;
  background-color: rgb(255, 255, 255);
  border-color: rgb(226, 232, 240);
  z-index: 3000;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .header {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .header {
  border-color: rgb(148, 163, 184);
}

.header__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-md);
}
.header__left .header__ribbon {
  border-right: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .header__left .header__ribbon {
  border-color: rgb(148, 163, 184);
}

.header__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-xs);
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-xs);
}
.header__breadcrumb-link {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  text-decoration: none;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  letter-spacing: 0.1px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 16px !important;
}
body[data-color-mode=dark] .header__breadcrumb-link {
  color: rgb(220, 220, 220);
}

.header__breadcrumb-link:hover {
  color: rgb(139, 92, 246);
  text-decoration: underline;
}
body[data-color-mode=dark] .header__breadcrumb-link:hover {
  color: rgb(139, 92, 246);
}

.header__breadcrumb-link:focus-visible {
  outline: 2px solid;
  border-color: rgb(139, 92, 246);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
body[data-color-mode=dark] .header__breadcrumb-link:focus-visible {
  border-color: rgb(139, 92, 246);
}

.header__breadcrumb-icon {
  width: 16px;
  height: 16px;
  line-height: 16px;
  color: rgb(71, 85, 105);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
}
body[data-color-mode=dark] .header__breadcrumb-icon {
  color: rgb(220, 220, 220);
}

.header__breadcrumb-link:hover .header__breadcrumb-icon {
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .header__breadcrumb-link:hover .header__breadcrumb-icon {
  color: rgb(139, 92, 246);
}

.header__breadcrumb-text {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.1px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body[data-color-mode=dark] .header__breadcrumb-text {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] .header__breadcrumb-text {
  color: rgb(248, 250, 252);
}

.header__breadcrumb-separator {
  color: rgb(148, 163, 184);
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  margin: 0 var(--spacing-xs);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
body[data-color-mode=dark] .header__breadcrumb-separator {
  color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .header__breadcrumb-separator {
  color: rgb(148, 163, 184);
}

.header__logo-text {
  width: auto;
  height: 28px;
  min-width: 140px;
  font-size: 2.9rem;
  line-height: 137.931%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-style: italic !important;
  line-height: 1 !important;
}
body[data-color-mode=dark] .header__logo-text {
  color: rgb(248, 250, 252);
}

.header__logo-link {
  text-decoration: none;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.header__logo-link:hover {
  opacity: 0.8;
}
.header__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: var(--spacing-xs) 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.header__title span {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  background: linear-gradient(135deg, rgb(167, 139, 250) 0%, rgb(139, 92, 246) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .header__title span {
  color: rgb(248, 250, 252);
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-sm);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: var(--radius-full);
  background-color: rgb(226, 232, 240);
  color: rgb(148, 163, 184);
  cursor: pointer;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  padding: 0;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
body[data-color-mode=dark] .header__btn {
  background-color: rgb(51, 65, 85);
}

body[data-color-mode=dark] .header__btn {
  color: rgb(148, 163, 184);
}

.header__btn:hover:not(:disabled) {
  background-color: rgb(203, 213, 225);
  color: rgb(71, 85, 105);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .header__btn:hover:not(:disabled) {
  background-color: rgb(71, 85, 105);
}

body[data-color-mode=dark] .header__btn:hover:not(:disabled) {
  color: rgb(220, 220, 220);
}

.header__btn:active:not(:disabled) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
}
.header__btn:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .header__btn:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.header__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.header__icon {
  width: 18px;
  height: 18px;
  color: rgb(148, 163, 184);
  -webkit-transition: color var(--transition-base);
  transition: color var(--transition-base);
}
body[data-color-mode=dark] .header__icon {
  color: rgb(148, 163, 184);
}

.header__btn:hover .header__icon {
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .header__btn:hover .header__icon {
  color: rgb(220, 220, 220);
}

.header__credits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.header__credits:hover {
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.header__credits:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header__credits:focus {
  outline: 2px solid var(--primary-color, #18a058);
  outline-offset: 2px;
}

.header__credits-value {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .header__credits-value {
  color: rgb(248, 250, 252);
}

.header__credits-icon {
  width: 1.25rem;
  height: 1.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.header__logo-container {
  width: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  border-right: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .header__logo-container {
  border-color: rgb(148, 163, 184);
}

@media (max-width: 768px) {
  .header__logo-container {
    width: 210px;
  }
}

.header__ribbon-box {
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-left: 1px solid;
  border-right: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .header__ribbon-box {
  border-color: rgb(148, 163, 184);
}

.header__ribbon-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.header__text-logo {
  height: 52px;
  width: auto;
  display: block;
}

.header__text-logo text {
  font-family: "Arial", "Helvetica", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
}

@media (prefers-color-scheme: dark) {
  .header__text-logo text {
    fill: var(--text-color, #ffffff);
  }
}
@media (max-width: 768px) {
  .header__credits {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    margin-right: 0.25rem;
    gap: 0.375rem;
  }
  .header__credits-icon {
    width: 1rem;
    height: 1rem;
  }
  .header__ribbon-box {
    width: 40px;
    height: 40px;
  }
  .header__text-logo {
    height: 40px;
  }
  .header__text-logo text {
    font-size: 24px;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 768px) {
  .header__breadcrumb--desktop-only {
    display: none !important;
  }
  .header__btn--theme,
  .header__btn--language,
  .header__btn--profile,
  .header__btn--logout {
    display: none !important;
  }
}
.n-input {
  border: 1px solid;
  border-color: rgb(226, 232, 240) !important;
  border-radius: var(--radius-md) !important;
  background-color: rgb(255, 255, 255) !important;
  color: rgb(15, 23, 42) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}
body[data-color-mode=dark] .n-input {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-input {
  background-color: rgb(0, 0, 0) !important;
}

body[data-color-mode=dark] .n-input {
  color: rgb(248, 250, 252) !important;
}

body[data-color-mode=dark] .n-input {
  color: rgb(248, 250, 252);
}

.n-input::-webkit-input-placeholder {
  color: rgb(148, 163, 184) !important;
  opacity: 1 !important;
}

.n-input::-moz-placeholder {
  color: rgb(148, 163, 184) !important;
  opacity: 1 !important;
}

.n-input:-ms-input-placeholder {
  color: rgb(148, 163, 184) !important;
  opacity: 1 !important;
}

.n-input::-ms-input-placeholder {
  color: rgb(148, 163, 184) !important;
  opacity: 1 !important;
}

.n-input::placeholder {
  color: rgb(148, 163, 184) !important;
  opacity: 1 !important;
}
body[data-color-mode=dark] .n-input::-webkit-input-placeholder {
  color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-input::-moz-placeholder {
  color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-input:-ms-input-placeholder {
  color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-input::-ms-input-placeholder {
  color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-input::placeholder {
  color: rgb(148, 163, 184) !important;
}

.n-input__input {
  color: rgb(15, 23, 42) !important;
}
body[data-color-mode=dark] .n-input__input {
  color: rgb(248, 250, 252) !important;
}

.n-input:hover:not(:disabled) {
  border-color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-input:hover:not(:disabled) {
  border-color: rgb(71, 85, 105) !important;
}

.n-input--focus {
  border-color: rgb(139, 92, 246) !important;
}
body[data-color-mode=dark] .n-input--focus {
  border-color: rgb(139, 92, 246) !important;
}

.n-input:disabled {
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(241, 245, 249) !important;
  color: rgb(148, 163, 184) !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}
body[data-color-mode=dark] .n-input:disabled {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-input:disabled {
  background-color: rgb(30, 41, 59) !important;
}

body[data-color-mode=dark] .n-input:disabled {
  color: rgb(148, 163, 184) !important;
}

.n-input--error {
  border-color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-input--error {
  border-color: rgb(148, 163, 184) !important;
}

.n-input--error:hover:not(:disabled) {
  border-color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-input--error:hover:not(:disabled) {
  border-color: rgb(148, 163, 184) !important;
}

.n-input--error--focus {
  border-color: rgb(148, 163, 184) !important;
  -webkit-box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.15) !important;
          box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.15) !important;
}
body[data-color-mode=dark] .n-input--error--focus {
  border-color: rgb(148, 163, 184) !important;
}

.n-input--small {
  padding: var(--spacing-xs) var(--spacing-sm) !important;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  height: 32px !important;
}
body[data-color-mode=dark] .n-input--small {
  color: rgb(248, 250, 252);
}

.n-input--medium {
  padding: var(--spacing-sm) var(--spacing-md) !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  height: 40px !important;
}
body[data-color-mode=dark] .n-input--medium {
  color: rgb(248, 250, 252);
}

.n-input--large {
  padding: var(--spacing-md) var(--spacing-lg) !important;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  height: 48px !important;
}
body[data-color-mode=dark] .n-input--large {
  color: rgb(248, 250, 252);
}

.n-select-trigger {
  border-radius: var(--radius-md) !important;
  border: 1px solid !important;
  border-color: rgb(203, 213, 225) !important;
  background-color: rgb(226, 232, 240) !important;
  color: rgb(15, 23, 42) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
}
body[data-color-mode=dark] .n-select-trigger {
  border-color: rgb(100, 116, 139) !important;
}

body[data-color-mode=dark] .n-select-trigger {
  background-color: rgb(51, 65, 85) !important;
}

body[data-color-mode=dark] .n-select-trigger {
  color: rgb(248, 250, 252) !important;
}

body[data-color-mode=dark] .n-select-trigger {
  color: rgb(248, 250, 252);
}

.n-select-trigger:hover:not(:disabled) {
  border-color: rgb(148, 163, 184) !important;
  background-color: rgb(203, 213, 225) !important;
}
body[data-color-mode=dark] .n-select-trigger:hover:not(:disabled) {
  border-color: rgb(71, 85, 105) !important;
}

body[data-color-mode=dark] .n-select-trigger:hover:not(:disabled) {
  background-color: rgb(71, 85, 105) !important;
}

.n-select-trigger--active {
  border-color: rgb(139, 92, 246) !important;
  -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
          box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
}
body[data-color-mode=dark] .n-select-trigger--active {
  border-color: rgb(139, 92, 246) !important;
}

.n-select--disabled .n-select-trigger {
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(241, 245, 249) !important;
  color: rgb(148, 163, 184) !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}
body[data-color-mode=dark] .n-select--disabled .n-select-trigger {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-select--disabled .n-select-trigger {
  background-color: rgb(30, 41, 59) !important;
}

body[data-color-mode=dark] .n-select--disabled .n-select-trigger {
  color: rgb(148, 163, 184) !important;
}

.n-select--error .n-select-trigger {
  border-color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-select--error .n-select-trigger {
  border-color: rgb(148, 163, 184) !important;
}

.n-select--error .n-select-trigger:hover:not(:disabled) {
  border-color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-select--error .n-select-trigger:hover:not(:disabled) {
  border-color: rgb(148, 163, 184) !important;
}

.n-base-select-menu {
  border-radius: var(--radius-md) !important;
  border: 1px solid !important;
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(255, 255, 255) !important;
  -webkit-box-shadow: var(--shadow-lg) !important;
          box-shadow: var(--shadow-lg) !important;
}
body[data-color-mode=dark] .n-base-select-menu {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-base-select-menu {
  background-color: rgb(0, 0, 0) !important;
}

.n-base-select-menu .n-base-select-option {
  color: rgb(15, 23, 42) !important;
  -webkit-transition: all var(--transition-fast) !important;
  transition: all var(--transition-fast) !important;
}
body[data-color-mode=dark] .n-base-select-menu .n-base-select-option {
  color: rgb(248, 250, 252) !important;
}

.n-base-select-menu .n-base-select-option--hover {
  background-color: rgb(203, 213, 225) !important;
}
body[data-color-mode=dark] .n-base-select-menu .n-base-select-option--hover {
  background-color: rgb(71, 85, 105) !important;
}

.n-base-select-menu .n-base-select-option--selected {
  background-color: rgb(233, 227, 255) !important;
  color: rgb(15, 23, 42) !important;
}
body[data-color-mode=dark] .n-base-select-menu .n-base-select-option--selected {
  background-color: rgb(44, 36, 75) !important;
}

body[data-color-mode=dark] .n-base-select-menu .n-base-select-option--selected {
  color: rgb(248, 250, 252) !important;
}

.n-date-picker-input {
  border-radius: var(--radius-md) !important;
  border: 1px solid !important;
  border-color: rgb(203, 213, 225) !important;
  background-color: rgb(226, 232, 240) !important;
  color: rgb(15, 23, 42) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
}
body[data-color-mode=dark] .n-date-picker-input {
  border-color: rgb(100, 116, 139) !important;
}

body[data-color-mode=dark] .n-date-picker-input {
  background-color: rgb(51, 65, 85) !important;
}

body[data-color-mode=dark] .n-date-picker-input {
  color: rgb(248, 250, 252) !important;
}

body[data-color-mode=dark] .n-date-picker-input {
  color: rgb(248, 250, 252);
}

.n-date-picker-input:hover:not(:disabled) {
  border-color: rgb(148, 163, 184) !important;
  background-color: rgb(203, 213, 225) !important;
}
body[data-color-mode=dark] .n-date-picker-input:hover:not(:disabled) {
  border-color: rgb(71, 85, 105) !important;
}

body[data-color-mode=dark] .n-date-picker-input:hover:not(:disabled) {
  background-color: rgb(71, 85, 105) !important;
}

.n-date-picker-input--active {
  border-color: rgb(139, 92, 246) !important;
  -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
          box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
}
body[data-color-mode=dark] .n-date-picker-input--active {
  border-color: rgb(139, 92, 246) !important;
}

.n-date-picker--disabled .n-date-picker-input {
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(241, 245, 249) !important;
  color: rgb(148, 163, 184) !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}
body[data-color-mode=dark] .n-date-picker--disabled .n-date-picker-input {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-date-picker--disabled .n-date-picker-input {
  background-color: rgb(30, 41, 59) !important;
}

body[data-color-mode=dark] .n-date-picker--disabled .n-date-picker-input {
  color: rgb(148, 163, 184) !important;
}

.n-form-item {
  margin-bottom: var(--spacing-lg) !important;
}
.n-form-item__label {
  color: rgb(15, 23, 42) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px !important;
  margin-bottom: var(--spacing-xs) !important;
}
body[data-color-mode=dark] .n-form-item__label {
  color: rgb(248, 250, 252) !important;
}

body[data-color-mode=dark] .n-form-item__label {
  color: rgb(248, 250, 252);
}

.n-form-item__feedback {
  color: rgb(148, 163, 184) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  margin-top: var(--spacing-xs) !important;
}
body[data-color-mode=dark] .n-form-item__feedback {
  color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-form-item__feedback {
  color: rgb(148, 163, 184);
}

.n-form-item--required .n-form-item__label::before {
  content: "*";
  color: rgb(139, 92, 246);
  margin-right: var(--spacing-xs);
}

.layout .main .main__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-lg);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
}
@media (min-width: 768px) {
  .layout .main .main__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media (min-width: 768px) {
  .layout .main .main__content--with-lnb {
    gap: var(--spacing-xl);
  }
}
.layout .main .main__lnb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .layout .main .main__lnb {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .layout .main .main__lnb {
    width: 256px;
    min-width: 256px;
    max-width: 256px;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}

.lnb {
  background-color: rgb(255, 255, 255);
  border-right: 1px solid;
  border-color: rgb(226, 232, 240);
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 0;
}
body[data-color-mode=dark] .lnb {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .lnb {
  border-color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .lnb {
    width: 256px;
    min-width: 256px;
    max-width: 256px;
  }
}
.lnb:before {
  position: absolute;
  top: 0;
  left: 15px;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  border-right: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .lnb:before {
  border-color: rgb(148, 163, 184);
}

.lnb__list {
  list-style: none;
  margin: var(--spacing-lg) var(--spacing-md);
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% - 16px);
  gap: var(--spacing-xs);
}

.lnb__item {
  position: relative;
  padding-left: 1px;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.lnb__item--active .lnb__link {
  background-color: rgb(226, 232, 240);
  color: rgb(139, 92, 246);
  font-weight: 600;
}
body[data-color-mode=dark] .lnb__item--active .lnb__link {
  background-color: rgb(51, 65, 85);
}

body[data-color-mode=dark] .lnb__item--active .lnb__link {
  color: rgb(139, 92, 246);
}

.lnb__item--has-children .lnb__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lnb__item--expanded .lnb__toggle-icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.lnb__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.lnb__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: auto;
  margin-right: var(--spacing-xs);
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
body[data-color-mode=dark] .lnb__toggle {
  background-color: rgba(0, 0, 0, 0);
}

.lnb__toggle:hover {
  background-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .lnb__toggle:hover {
  background-color: rgb(51, 65, 85);
}

.lnb__toggle:focus-visible {
  outline: 2px solid;
  border-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .lnb__toggle:focus-visible {
  border-color: rgb(139, 92, 246);
}

.lnb__toggle-icon {
  width: 16px;
  height: 16px;
  color: rgb(71, 85, 105);
  -webkit-transition: -webkit-transform var(--transition-base);
  transition: -webkit-transform var(--transition-base);
  transition: transform var(--transition-base);
  transition: transform var(--transition-base), -webkit-transform var(--transition-base);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
body[data-color-mode=dark] .lnb__toggle-icon {
  color: rgb(220, 220, 220);
}

.lnb__toggle-icon--expanded {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.lnb__link--no-path {
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.lnb__link--no-path--active {
  background-color: rgb(226, 232, 240);
  color: rgb(139, 92, 246);
  font-weight: 600;
}
body[data-color-mode=dark] .lnb__link--no-path--active {
  background-color: rgb(51, 65, 85);
}

body[data-color-mode=dark] .lnb__link--no-path--active {
  color: rgb(139, 92, 246);
}

.lnb__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  text-decoration: none;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .lnb__link {
  color: rgb(220, 220, 220);
}

.lnb__link:hover {
  background-color: rgb(226, 232, 240);
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .lnb__link:hover {
  background-color: rgb(51, 65, 85);
}

body[data-color-mode=dark] .lnb__link:hover {
  color: rgb(139, 92, 246);
}

.lnb__link:focus-visible {
  outline: 2px solid;
  border-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .lnb__link:focus-visible {
  border-color: rgb(139, 92, 246);
}

.lnb__link[aria-current=page] {
  background-color: rgb(226, 232, 240);
  color: rgb(139, 92, 246);
  font-weight: 600;
}
body[data-color-mode=dark] .lnb__link[aria-current=page] {
  background-color: rgb(51, 65, 85);
}

body[data-color-mode=dark] .lnb__link[aria-current=page] {
  color: rgb(139, 92, 246);
}

.lnb__text {
  display: block;
  white-space: nowrap;
}

.lnb__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: var(--spacing-lg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-xs);
  overflow: hidden;
}

.lnb__subitem {
  position: relative;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  padding-left: var(--spacing-sm);
}
.lnb__subitem::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  line-height: 2;
}
body[data-color-mode=dark] .lnb__subitem::before {
  color: rgb(148, 163, 184);
}

.lnb__subitem--active::before {
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .lnb__subitem--active::before {
  color: rgb(139, 92, 246);
}

.lnb__subitem--active .lnb__sublink {
  color: rgb(139, 92, 246);
  font-weight: 600;
}
body[data-color-mode=dark] .lnb__subitem--active .lnb__sublink {
  color: rgb(139, 92, 246);
}

.lnb__sublink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  text-decoration: none;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  letter-spacing: 0.1px;
  border: none;
  background: transparent;
  padding-left: 0px;
}
body[data-color-mode=dark] .lnb__sublink {
  color: rgb(148, 163, 184);
}

.lnb__sublink:hover {
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .lnb__sublink:hover {
  color: rgb(139, 92, 246);
}

.lnb__sublink:focus-visible {
  outline: 2px solid;
  border-color: rgb(139, 92, 246);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
body[data-color-mode=dark] .lnb__sublink:focus-visible {
  border-color: rgb(139, 92, 246);
}

.lnb__sublink[aria-current=page] {
  color: rgb(139, 92, 246);
  font-weight: 600;
}
body[data-color-mode=dark] .lnb__sublink[aria-current=page] {
  color: rgb(139, 92, 246);
}

.lnb__subtext {
  display: block;
  white-space: nowrap;
}

.lnb-submenu-enter-active,
.lnb-submenu-leave-active {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  overflow: hidden;
}

.lnb-submenu-enter-from {
  opacity: 0;
  max-height: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.lnb-submenu-enter-to {
  opacity: 1;
  max-height: 500px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.lnb-submenu-leave-from {
  opacity: 1;
  max-height: 500px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.lnb-submenu-leave-to {
  opacity: 0;
  max-height: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.lnb__language {
  margin-top: auto;
  padding: var(--spacing-md) var(--spacing-lg);
  border-top: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .lnb__language {
  border-color: rgb(148, 163, 184);
}

.lnb__language-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-sm);
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: rgba(255, 255, 255, 0);
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  text-align: left;
}
body[data-color-mode=dark] .lnb__language-btn {
  background-color: rgba(0, 0, 0, 0);
}

body[data-color-mode=dark] .lnb__language-btn {
  color: rgb(220, 220, 220);
}

.lnb__language-btn:hover {
  background-color: rgb(226, 232, 240);
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .lnb__language-btn:hover {
  background-color: rgb(51, 65, 85);
}

body[data-color-mode=dark] .lnb__language-btn:hover {
  color: rgb(139, 92, 246);
}

.lnb__language-btn:focus-visible {
  outline: 2px solid;
  border-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .lnb__language-btn:focus-visible {
  border-color: rgb(139, 92, 246);
}

.lnb__language-icon {
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: rgb(71, 85, 105);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .lnb__language-icon {
  color: rgb(220, 220, 220);
}

.lnb__language-btn:hover .lnb__language-icon {
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .lnb__language-btn:hover .lnb__language-icon {
  color: rgb(139, 92, 246);
}

.lnb__language-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.layout .main .page-header {
  position: relative;
  width: 100%;
  padding: var(--spacing-xl) var(--spacing-lg);
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid;
  border-color: rgb(226, 232, 240);
  z-index: 10;
}
body[data-color-mode=dark] .layout .main .page-header {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .layout .main .page-header {
  border-color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .layout .main .page-header {
    padding: var(--spacing-lg) var(--spacing-lg);
  }
}
.layout .main .page-header--with-steps {
  padding-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .layout .main .page-header--with-steps {
    padding-bottom: var(--spacing-2xl);
  }
}
.layout .main .page-header__breadcrumb {
  margin-bottom: var(--spacing-md);
}
.layout .main .page-header__breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-xs);
  list-style: none;
  margin: 0;
  padding: 0;
}
.layout .main .page-header__breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-xs);
}
.layout .main .page-header__breadcrumb-link {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  text-decoration: none;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  letter-spacing: 0.1px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 16px !important;
}
body[data-color-mode=dark] .layout .main .page-header__breadcrumb-link {
  color: rgb(220, 220, 220);
}

.layout .main .page-header__breadcrumb-link:hover {
  color: rgb(139, 92, 246);
  text-decoration: underline;
}
body[data-color-mode=dark] .layout .main .page-header__breadcrumb-link:hover {
  color: rgb(139, 92, 246);
}

.layout .main .page-header__breadcrumb-link:focus-visible {
  outline: 2px solid;
  border-color: rgb(139, 92, 246);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
body[data-color-mode=dark] .layout .main .page-header__breadcrumb-link:focus-visible {
  border-color: rgb(139, 92, 246);
}

.layout .main .page-header__breadcrumb-icon {
  width: 16px;
  height: 16px;
  line-height: 16px;
  color: rgb(71, 85, 105);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
}
body[data-color-mode=dark] .layout .main .page-header__breadcrumb-icon {
  color: rgb(220, 220, 220);
}

.page-header__breadcrumb-link:hover .layout .main .page-header__breadcrumb-icon {
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .page-header__breadcrumb-link:hover .layout .main .page-header__breadcrumb-icon {
  color: rgb(139, 92, 246);
}

.layout .main .page-header__breadcrumb-text {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.1px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body[data-color-mode=dark] .layout .main .page-header__breadcrumb-text {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] .layout .main .page-header__breadcrumb-text {
  color: rgb(248, 250, 252);
}

.layout .main .page-header__breadcrumb-separator {
  color: rgb(148, 163, 184);
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  margin: 0 var(--spacing-xs);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
body[data-color-mode=dark] .layout .main .page-header__breadcrumb-separator {
  color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .layout .main .page-header__breadcrumb-separator {
  color: rgb(148, 163, 184);
}

.layout .main .page-header__title {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0 0 var(--spacing-sm) 0;
}
body[data-color-mode=dark] .layout .main .page-header__title {
  color: rgb(248, 250, 252);
}

.layout .main .page-header__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0;
  letter-spacing: 0.1px;
  max-width: 800px;
}
body[data-color-mode=dark] .layout .main .page-header__description {
  color: rgb(220, 220, 220);
}

body[data-color-mode=dark] .layout .main .page-header__description {
  color: rgb(220, 220, 220);
}

@media (min-width: 768px) {
  .layout .main .page-header__description {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 400;
    font-family: "Pretendard";
    color: rgb(71, 85, 105);
  }
  body[data-color-mode=dark] .layout .main .page-header__description {
    color: rgb(220, 220, 220);
  }
}
.layout .main .page-header__steps {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .layout .main .page-header__steps {
  border-color: rgb(148, 163, 184);
}

.layout .main .page-header__steps-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-sm);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .layout .main .page-header__steps-list {
    gap: var(--spacing-md);
  }
}
.layout .main .page-header__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
@media (min-width: 768px) {
  .layout .main .page-header__step {
    gap: var(--spacing-md);
  }
}
.layout .main .page-header__step-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: rgb(226, 232, 240);
  border-color: rgb(226, 232, 240);
  border: 2px solid;
  color: rgb(148, 163, 184);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
body[data-color-mode=dark] .layout .main .page-header__step-number {
  background-color: rgb(51, 65, 85);
}

body[data-color-mode=dark] .layout .main .page-header__step-number {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .layout .main .page-header__step-number {
  color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .layout .main .page-header__step-number {
  color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .layout .main .page-header__step-number {
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 600;
    font-family: "Pretendard";
    color: rgb(148, 163, 184);
  }
  body[data-color-mode=dark] .layout .main .page-header__step-number {
    color: rgb(148, 163, 184);
  }
}
.layout .main .page-header__step-check {
  color: rgb(255, 255, 255);
  font-weight: 700;
}
body[data-color-mode=dark] .layout .main .page-header__step-check {
  color: rgb(255, 255, 255);
}

.layout .main .page-header__step-label {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  letter-spacing: 0.1px;
  white-space: nowrap;
}
body[data-color-mode=dark] .layout .main .page-header__step-label {
  color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .layout .main .page-header__step-label {
  color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .layout .main .page-header__step-label {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 500;
    font-family: "Pretendard";
    color: rgb(148, 163, 184);
  }
  body[data-color-mode=dark] .layout .main .page-header__step-label {
    color: rgb(148, 163, 184);
  }
}
.layout .main .page-header__step-separator {
  color: rgb(148, 163, 184);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  margin: 0 var(--spacing-xs);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.5;
}
body[data-color-mode=dark] .layout .main .page-header__step-separator {
  color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .layout .main .page-header__step-separator {
  color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .layout .main .page-header__step-separator {
    margin: 0 var(--spacing-sm);
  }
}
.layout .main .page-header__step--active .page-header__step-number {
  background-color: rgb(139, 92, 246);
  border-color: rgb(139, 92, 246);
  color: rgb(255, 255, 255);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .layout .main .page-header__step--active .page-header__step-number {
  background-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .layout .main .page-header__step--active .page-header__step-number {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .layout .main .page-header__step--active .page-header__step-number {
  color: rgb(255, 255, 255);
}

.layout .main .page-header__step--active .page-header__step-label {
  color: rgb(15, 23, 42);
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .layout .main .page-header__step--active .page-header__step-label {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] .layout .main .page-header__step--active .page-header__step-label {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .layout .main .page-header__step--active .page-header__step-label {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 600;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .layout .main .page-header__step--active .page-header__step-label {
    color: rgb(248, 250, 252);
  }
}
.layout .main .page-header__step--completed .page-header__step-number {
  background-color: rgb(139, 92, 246);
  border-color: rgb(139, 92, 246);
  color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .layout .main .page-header__step--completed .page-header__step-number {
  background-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .layout .main .page-header__step--completed .page-header__step-number {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .layout .main .page-header__step--completed .page-header__step-number {
  color: rgb(255, 255, 255);
}

.layout .main .page-header__step--completed .page-header__step-label {
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .layout .main .page-header__step--completed .page-header__step-label {
  color: rgb(220, 220, 220);
}

.layout .main .page-header__actions {
  margin-top: var(--spacing-lg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-md);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.layout .main .page-body {
  position: relative;
  width: 100%;
  margin-top: var(--spacing-lg);
  padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-2xl) var(--spacing-lg);
}
.layout .main .page-body .n-layout, .layout .main .page-body .n-layout-content {
  background-color: rgba(255, 255, 255, 0) !important;
}
body[data-color-mode=dark] .layout .main .page-body .n-layout, body[data-color-mode=dark] .layout .main .page-body .n-layout-content {
  background-color: rgba(0, 0, 0, 0) !important;
}

.n-modal__mask {
  background-color: rgba(248, 250, 252, 0.6) !important;
  -webkit-backdrop-filter: blur(4px) !important;
          backdrop-filter: blur(4px) !important;
}
body[data-color-mode=dark] .n-modal__mask {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

.n-modal__box {
  border-radius: var(--radius-xl) !important;
  border: 1px solid !important;
  border-color: rgb(226, 232, 240) !important;
  -webkit-box-shadow: var(--shadow-xl) !important;
          box-shadow: var(--shadow-xl) !important;
  background-color: rgb(255, 255, 255) !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
}
body[data-color-mode=dark] .n-modal__box {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-modal__box {
  background-color: rgb(0, 0, 0) !important;
}

.n-modal-header {
  padding: var(--spacing-lg) var(--spacing-xl) !important;
  border-bottom: 1px solid !important;
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(255, 255, 255) !important;
  color: rgb(15, 23, 42) !important;
}
body[data-color-mode=dark] .n-modal-header {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-modal-header {
  background-color: rgb(0, 0, 0) !important;
}

body[data-color-mode=dark] .n-modal-header {
  color: rgb(248, 250, 252) !important;
}

.n-modal-header__title {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  font-weight: 600 !important;
  letter-spacing: -0.3px !important;
}
body[data-color-mode=dark] .n-modal-header__title {
  color: rgb(248, 250, 252);
}

.n-modal-header__close {
  color: rgb(148, 163, 184) !important;
  border-radius: var(--radius-sm) !important;
  -webkit-transition: all var(--transition-fast) !important;
  transition: all var(--transition-fast) !important;
}
body[data-color-mode=dark] .n-modal-header__close {
  color: rgb(148, 163, 184) !important;
}

.n-modal-header__close:hover {
  background-color: rgb(203, 213, 225) !important;
  color: rgb(15, 23, 42) !important;
}
body[data-color-mode=dark] .n-modal-header__close:hover {
  background-color: rgb(71, 85, 105) !important;
}

body[data-color-mode=dark] .n-modal-header__close:hover {
  color: rgb(248, 250, 252) !important;
}

.n-modal-body {
  padding: var(--spacing-xl) !important;
  background-color: rgb(255, 255, 255) !important;
  color: rgb(15, 23, 42) !important;
}
body[data-color-mode=dark] .n-modal-body {
  background-color: rgb(0, 0, 0) !important;
}

body[data-color-mode=dark] .n-modal-body {
  color: rgb(248, 250, 252) !important;
}

.n-modal-footer {
  padding: var(--spacing-lg) var(--spacing-xl) !important;
  border-top: 1px solid !important;
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(255, 255, 255) !important;
}
body[data-color-mode=dark] .n-modal-footer {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-modal-footer {
  background-color: rgb(0, 0, 0) !important;
}

.n-modal[class*=preset-card] .n-modal__box {
  border-radius: var(--radius-xl) !important;
}
.n-modal[class*=preset-dialog] .n-modal__box {
  border-radius: var(--radius-lg) !important;
  max-width: 90vw !important;
}
.n-modal[class*=fullscreen] .n-modal__box {
  border-radius: 0 !important;
}

.n-drawer__mask {
  background-color: rgba(248, 250, 252, 0.6) !important;
  -webkit-backdrop-filter: blur(4px) !important;
          backdrop-filter: blur(4px) !important;
}
body[data-color-mode=dark] .n-drawer__mask {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

.n-drawer__content {
  background-color: rgb(255, 255, 255) !important;
  border: 1px solid !important;
  border-color: rgb(226, 232, 240) !important;
  -webkit-box-shadow: var(--shadow-xl) !important;
          box-shadow: var(--shadow-xl) !important;
}
body[data-color-mode=dark] .n-drawer__content {
  background-color: rgb(0, 0, 0) !important;
}

body[data-color-mode=dark] .n-drawer__content {
  border-color: rgb(148, 163, 184) !important;
}

.n-drawer-header {
  padding: var(--spacing-lg) var(--spacing-xl) !important;
  border-bottom: 1px solid !important;
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(255, 255, 255) !important;
  color: rgb(15, 23, 42) !important;
}
body[data-color-mode=dark] .n-drawer-header {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-drawer-header {
  background-color: rgb(0, 0, 0) !important;
}

body[data-color-mode=dark] .n-drawer-header {
  color: rgb(248, 250, 252) !important;
}

.n-drawer-header__title {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  font-weight: 600 !important;
}
body[data-color-mode=dark] .n-drawer-header__title {
  color: rgb(248, 250, 252);
}

.n-drawer-header__close {
  color: rgb(148, 163, 184) !important;
  border-radius: var(--radius-sm) !important;
  -webkit-transition: all var(--transition-fast) !important;
  transition: all var(--transition-fast) !important;
}
body[data-color-mode=dark] .n-drawer-header__close {
  color: rgb(148, 163, 184) !important;
}

.n-drawer-header__close:hover {
  background-color: rgb(203, 213, 225) !important;
  color: rgb(15, 23, 42) !important;
}
body[data-color-mode=dark] .n-drawer-header__close:hover {
  background-color: rgb(71, 85, 105) !important;
}

body[data-color-mode=dark] .n-drawer-header__close:hover {
  color: rgb(248, 250, 252) !important;
}

.n-drawer-body {
  padding: var(--spacing-xl) !important;
  background-color: rgb(255, 255, 255) !important;
  color: rgb(15, 23, 42) !important;
}
body[data-color-mode=dark] .n-drawer-body {
  background-color: rgb(0, 0, 0) !important;
}

body[data-color-mode=dark] .n-drawer-body {
  color: rgb(248, 250, 252) !important;
}

.n-drawer-footer {
  padding: var(--spacing-lg) var(--spacing-xl) !important;
  border-top: 1px solid !important;
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(255, 255, 255) !important;
}
body[data-color-mode=dark] .n-drawer-footer {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-drawer-footer {
  background-color: rgb(0, 0, 0) !important;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: fadeIn var(--transition-base);
          animation: fadeIn var(--transition-base);
}

.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(248, 250, 252, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-animation: fadeIn var(--transition-base);
          animation: fadeIn var(--transition-base);
}
body[data-color-mode=dark] .popup__overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

.popup__content {
  position: relative;
  z-index: 2001;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
  background-color: rgb(248, 250, 252);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: slideUp var(--transition-base);
          animation: slideUp var(--transition-base);
  overflow: hidden;
}
body[data-color-mode=dark] .popup__content {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .popup__content {
  background-color: rgb(15, 23, 42);
}

.popup__content--full {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 0;
}

.popup__content--dialog {
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
}

.popup__content--bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  -webkit-animation: slideUpFromBottom var(--transition-base);
          animation: slideUpFromBottom var(--transition-base);
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.popup__header {
  padding: var(--spacing-xl);
  border-bottom: 1px solid;
  border-color: rgb(226, 232, 240);
  background-color: rgb(241, 245, 249);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
body[data-color-mode=dark] .popup__header {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .popup__header {
  background-color: rgb(30, 41, 59);
}

.popup__title {
  margin: 0;
}
.popup__title span {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .popup__title span {
  color: rgb(248, 250, 252);
}

.popup__body {
  padding: var(--spacing-xl);
  overflow-y: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: rgb(248, 250, 252);
}
body[data-color-mode=dark] .popup__body {
  background-color: rgb(15, 23, 42);
}

.popup__body::-webkit-scrollbar {
  width: 8px;
}
.popup__body::-webkit-scrollbar-track {
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .popup__body::-webkit-scrollbar-track {
  background-color: rgb(30, 41, 59);
}

.popup__body::-webkit-scrollbar-thumb {
  background-color: rgb(226, 232, 240);
  border-radius: var(--radius-full);
}
body[data-color-mode=dark] .popup__body::-webkit-scrollbar-thumb {
  background-color: rgb(51, 65, 85);
}

.popup__body::-webkit-scrollbar-thumb:hover {
  background-color: rgb(203, 213, 225);
}
body[data-color-mode=dark] .popup__body::-webkit-scrollbar-thumb:hover {
  background-color: rgb(71, 85, 105);
}

.popup__footer {
  padding: var(--spacing-lg) var(--spacing-xl);
  border-top: 1px solid;
  border-color: rgb(226, 232, 240);
  background-color: rgb(241, 245, 249);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: var(--spacing-md);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
body[data-color-mode=dark] .popup__footer {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .popup__footer {
  background-color: rgb(30, 41, 59);
}

.popup__close-btn {
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
  background-color: rgb(255, 255, 255);
  border-color: rgb(139, 92, 246);
  color: rgb(139, 92, 246);
  letter-spacing: 0.3px;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  border: 1px solid;
  cursor: pointer;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  min-width: 80px;
}
body[data-color-mode=dark] .popup__close-btn {
  color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .popup__close-btn {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .popup__close-btn {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .popup__close-btn {
  color: rgb(139, 92, 246);
}

.popup__close-btn:hover:not(:disabled) {
  background-color: rgb(255, 255, 255);
  border-color: rgb(124, 58, 237);
  color: rgb(124, 58, 237);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .popup__close-btn:hover:not(:disabled) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .popup__close-btn:hover:not(:disabled) {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .popup__close-btn:hover:not(:disabled) {
  color: rgb(167, 139, 250);
}

.popup__close-btn:active:not(:disabled) {
  background-color: rgb(255, 255, 255);
  border-color: rgb(109, 40, 217);
  color: rgb(109, 40, 217);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
body[data-color-mode=dark] .popup__close-btn:active:not(:disabled) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .popup__close-btn:active:not(:disabled) {
  border-color: rgb(196, 181, 253);
}

body[data-color-mode=dark] .popup__close-btn:active:not(:disabled) {
  color: rgb(196, 181, 253);
}

.popup__close-btn:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .popup__close-btn:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.popup__close-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px) scale(0.95);
            transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px) scale(0.95);
            transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes slideUpFromBottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideUpFromBottom {
  from {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.popup-manager {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1999;
  display: none;
  pointer-events: none;
  -webkit-transition: opacity var(--transition-base);
  transition: opacity var(--transition-base);
}

.popup-manager--visible {
  display: block;
  pointer-events: auto;
  -webkit-animation: fadeIn var(--transition-base);
          animation: fadeIn var(--transition-base);
}

.n-radio {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
}
body[data-color-mode=dark] .n-radio {
  color: rgb(248, 250, 252);
}

.n-radio__input {
  width: 18px !important;
  height: 18px !important;
  border: 2px solid !important;
  border-color: rgb(203, 213, 225) !important;
  background-color: rgb(226, 232, 240) !important;
  border-radius: 50% !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
}
body[data-color-mode=dark] .n-radio__input {
  border-color: rgb(100, 116, 139) !important;
}

body[data-color-mode=dark] .n-radio__input {
  background-color: rgb(51, 65, 85) !important;
}

.n-radio__input-inner {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: rgb(139, 92, 246) !important;
  -webkit-transform: scale(0) !important;
          transform: scale(0) !important;
  -webkit-transition: -webkit-transform var(--transition-base) !important;
  transition: -webkit-transform var(--transition-base) !important;
  transition: transform var(--transition-base) !important;
  transition: transform var(--transition-base), -webkit-transform var(--transition-base) !important;
}
body[data-color-mode=dark] .n-radio__input-inner {
  background-color: rgb(139, 92, 246) !important;
}

.n-radio__label {
  color: rgb(15, 23, 42) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px !important;
  margin-left: var(--spacing-xs) !important;
}
body[data-color-mode=dark] .n-radio__label {
  color: rgb(248, 250, 252) !important;
}

body[data-color-mode=dark] .n-radio__label {
  color: rgb(248, 250, 252);
}

.n-radio--checked .n-radio__input {
  border-color: rgb(139, 92, 246) !important;
  background-color: rgb(226, 232, 240) !important;
}
body[data-color-mode=dark] .n-radio--checked .n-radio__input {
  border-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .n-radio--checked .n-radio__input {
  background-color: rgb(51, 65, 85) !important;
}

.n-radio--checked .n-radio__input .n-radio__input-inner {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}
.n-radio--checked .n-radio__label {
  color: rgb(15, 23, 42) !important;
}
body[data-color-mode=dark] .n-radio--checked .n-radio__label {
  color: rgb(248, 250, 252) !important;
}

.n-radio:focus-within .n-radio__input {
  -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
          box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
}
.n-radio:hover:not(.n-radio--disabled) .n-radio__input {
  border-color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-radio:hover:not(.n-radio--disabled) .n-radio__input {
  border-color: rgb(71, 85, 105) !important;
}

.n-radio:hover:not(.n-radio--disabled) .n-radio__label {
  color: rgb(15, 23, 42) !important;
}
body[data-color-mode=dark] .n-radio:hover:not(.n-radio--disabled) .n-radio__label {
  color: rgb(248, 250, 252) !important;
}

.n-radio--disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}
.n-radio--disabled .n-radio__input {
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(241, 245, 249) !important;
  cursor: not-allowed !important;
}
body[data-color-mode=dark] .n-radio--disabled .n-radio__input {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-radio--disabled .n-radio__input {
  background-color: rgb(30, 41, 59) !important;
}

.n-radio--disabled .n-radio__label {
  color: rgb(148, 163, 184) !important;
  cursor: not-allowed !important;
}
body[data-color-mode=dark] .n-radio--disabled .n-radio__label {
  color: rgb(148, 163, 184) !important;
}

.n-radio--disabled.n-radio--checked .n-radio__input {
  border-color: rgb(226, 232, 240) !important;
  opacity: 0.6 !important;
}
body[data-color-mode=dark] .n-radio--disabled.n-radio--checked .n-radio__input {
  border-color: rgb(148, 163, 184) !important;
}

.n-radio-button {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
}
body[data-color-mode=dark] .n-radio-button {
  color: rgb(248, 250, 252);
}

.n-radio-button .n-radio {
  display: none !important;
}
.n-radio-button__radio {
  padding: var(--spacing-xs) var(--spacing-md) !important;
  border: 1px solid !important;
  border-color: rgb(203, 213, 225) !important;
  background-color: rgb(226, 232, 240) !important;
  color: rgb(15, 23, 42) !important;
  border-radius: var(--radius-md) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}
body[data-color-mode=dark] .n-radio-button__radio {
  border-color: rgb(100, 116, 139) !important;
}

body[data-color-mode=dark] .n-radio-button__radio {
  background-color: rgb(51, 65, 85) !important;
}

body[data-color-mode=dark] .n-radio-button__radio {
  color: rgb(248, 250, 252) !important;
}

body[data-color-mode=dark] .n-radio-button__radio {
  color: rgb(248, 250, 252);
}

.n-radio-button--checked .n-radio-button__radio {
  border-color: rgb(139, 92, 246) !important;
  background-color: rgb(139, 92, 246) !important;
  color: rgb(255, 255, 255) !important;
}
body[data-color-mode=dark] .n-radio-button--checked .n-radio-button__radio {
  border-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .n-radio-button--checked .n-radio-button__radio {
  background-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .n-radio-button--checked .n-radio-button__radio {
  color: rgb(0, 0, 0) !important;
}

.n-radio-button:focus-within .n-radio-button__radio {
  -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
          box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
}
.n-radio-button:hover:not(.n-radio-button--disabled):not(.n-radio-button--checked) .n-radio-button__radio {
  border-color: rgb(148, 163, 184) !important;
  background-color: rgb(203, 213, 225) !important;
}
body[data-color-mode=dark] .n-radio-button:hover:not(.n-radio-button--disabled):not(.n-radio-button--checked) .n-radio-button__radio {
  border-color: rgb(71, 85, 105) !important;
}

body[data-color-mode=dark] .n-radio-button:hover:not(.n-radio-button--disabled):not(.n-radio-button--checked) .n-radio-button__radio {
  background-color: rgb(71, 85, 105) !important;
}

.n-radio-button--disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}
.n-radio-button--disabled .n-radio-button__radio {
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(241, 245, 249) !important;
  color: rgb(148, 163, 184) !important;
  cursor: not-allowed !important;
}
body[data-color-mode=dark] .n-radio-button--disabled .n-radio-button__radio {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-radio-button--disabled .n-radio-button__radio {
  background-color: rgb(30, 41, 59) !important;
}

body[data-color-mode=dark] .n-radio-button--disabled .n-radio-button__radio {
  color: rgb(148, 163, 184) !important;
}

.n-radio-button--small .n-radio-button__radio {
  padding: var(--spacing-xs) var(--spacing-sm) !important;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  height: 32px !important;
}
body[data-color-mode=dark] .n-radio-button--small .n-radio-button__radio {
  color: rgb(248, 250, 252);
}

.n-radio-button--medium .n-radio-button__radio {
  padding: var(--spacing-xs) var(--spacing-md) !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  height: 40px !important;
}
body[data-color-mode=dark] .n-radio-button--medium .n-radio-button__radio {
  color: rgb(248, 250, 252);
}

.n-radio-button--large .n-radio-button__radio {
  padding: var(--spacing-sm) var(--spacing-lg) !important;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  height: 48px !important;
}
body[data-color-mode=dark] .n-radio-button--large .n-radio-button__radio {
  color: rgb(248, 250, 252);
}

.n-radio-group {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  gap: var(--spacing-xs) !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}
.n-radio-group .n-radio,
.n-radio-group .n-radio-button {
  margin-right: var(--spacing-md) !important;
}
.n-radio-group .n-radio:last-child,
.n-radio-group .n-radio-button:last-child {
  margin-right: 0 !important;
}
.n-radio-group--vertical {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}
.n-radio-group--vertical .n-radio,
.n-radio-group--vertical .n-radio-button {
  margin-right: 0 !important;
  margin-bottom: var(--spacing-md) !important;
}
.n-radio-group--vertical .n-radio:last-child,
.n-radio-group--vertical .n-radio-button:last-child {
  margin-bottom: 0 !important;
}
.n-radio-group--button-group .n-radio-button {
  margin-right: 0 !important;
}
.n-radio-group--button-group .n-radio-button .n-radio-button__radio {
  border-radius: 0 !important;
}
.n-radio-group--button-group .n-radio-button .n-radio-button__radio:first-child {
  border-top-left-radius: var(--radius-md) !important;
  border-bottom-left-radius: var(--radius-md) !important;
}
.n-radio-group--button-group .n-radio-button .n-radio-button__radio:last-child {
  border-top-right-radius: var(--radius-md) !important;
  border-bottom-right-radius: var(--radius-md) !important;
}
.n-radio-group--button-group .n-radio-button .n-radio-button__radio:not(:first-child) {
  border-left: none !important;
  margin-left: -1px !important;
}
.n-radio-group--button-group .n-radio-button:hover:not(.n-radio-button--disabled):not(.n-radio-button--checked) {
  z-index: 1 !important;
}

.n-radio-card {
  border: 1px solid !important;
  border-color: rgb(203, 213, 225) !important;
  background-color: rgb(226, 232, 240) !important;
  border-radius: var(--radius-md) !important;
  padding: var(--spacing-md) !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
  cursor: pointer !important;
}
body[data-color-mode=dark] .n-radio-card {
  border-color: rgb(100, 116, 139) !important;
}

body[data-color-mode=dark] .n-radio-card {
  background-color: rgb(51, 65, 85) !important;
}

.n-radio-card .n-radio {
  margin-bottom: var(--spacing-xs) !important;
}
.n-radio-card--checked {
  border-color: rgb(139, 92, 246) !important;
  background-color: rgb(203, 213, 225) !important;
  -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
          box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
}
body[data-color-mode=dark] .n-radio-card--checked {
  border-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .n-radio-card--checked {
  background-color: rgb(71, 85, 105) !important;
}

.n-radio-card:hover:not(.n-radio-card--disabled):not(.n-radio-card--checked) {
  border-color: rgb(148, 163, 184) !important;
  background-color: rgb(203, 213, 225) !important;
}
body[data-color-mode=dark] .n-radio-card:hover:not(.n-radio-card--disabled):not(.n-radio-card--checked) {
  border-color: rgb(71, 85, 105) !important;
}

body[data-color-mode=dark] .n-radio-card:hover:not(.n-radio-card--disabled):not(.n-radio-card--checked) {
  background-color: rgb(71, 85, 105) !important;
}

.n-radio-card--disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(241, 245, 249) !important;
}
body[data-color-mode=dark] .n-radio-card--disabled {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-radio-card--disabled {
  background-color: rgb(30, 41, 59) !important;
}

.n-textarea {
  border-radius: var(--radius-md) !important;
  border: 1px solid !important;
  border-color: rgb(203, 213, 225) !important;
  background-color: rgb(226, 232, 240) !important;
  color: rgb(15, 23, 42) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px !important;
  -webkit-transition: all var(--transition-base) !important;
  transition: all var(--transition-base) !important;
}
body[data-color-mode=dark] .n-textarea {
  border-color: rgb(100, 116, 139) !important;
}

body[data-color-mode=dark] .n-textarea {
  background-color: rgb(51, 65, 85) !important;
}

body[data-color-mode=dark] .n-textarea {
  color: rgb(248, 250, 252) !important;
}

body[data-color-mode=dark] .n-textarea {
  color: rgb(248, 250, 252);
}

.n-textarea::-webkit-input-placeholder {
  color: rgb(148, 163, 184) !important;
  opacity: 1 !important;
}

.n-textarea::-moz-placeholder {
  color: rgb(148, 163, 184) !important;
  opacity: 1 !important;
}

.n-textarea:-ms-input-placeholder {
  color: rgb(148, 163, 184) !important;
  opacity: 1 !important;
}

.n-textarea::-ms-input-placeholder {
  color: rgb(148, 163, 184) !important;
  opacity: 1 !important;
}

.n-textarea::placeholder {
  color: rgb(148, 163, 184) !important;
  opacity: 1 !important;
}
body[data-color-mode=dark] .n-textarea::-webkit-input-placeholder {
  color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-textarea::-moz-placeholder {
  color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-textarea:-ms-input-placeholder {
  color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-textarea::-ms-input-placeholder {
  color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-textarea::placeholder {
  color: rgb(148, 163, 184) !important;
}

.n-textarea__textarea {
  color: rgb(15, 23, 42) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  resize: vertical !important;
}
body[data-color-mode=dark] .n-textarea__textarea {
  color: rgb(248, 250, 252) !important;
}

.n-textarea__count {
  color: rgb(148, 163, 184) !important;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .n-textarea__count {
  color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-textarea__count {
  color: rgb(148, 163, 184);
}

.n-textarea:hover:not(:disabled) {
  border-color: rgb(148, 163, 184) !important;
  background-color: rgb(203, 213, 225) !important;
}
body[data-color-mode=dark] .n-textarea:hover:not(:disabled) {
  border-color: rgb(71, 85, 105) !important;
}

body[data-color-mode=dark] .n-textarea:hover:not(:disabled) {
  background-color: rgb(71, 85, 105) !important;
}

.n-textarea--focus {
  border-color: rgb(139, 92, 246) !important;
  -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
          box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
  background-color: rgb(226, 232, 240) !important;
}
body[data-color-mode=dark] .n-textarea--focus {
  border-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .n-textarea--focus {
  background-color: rgb(51, 65, 85) !important;
}

.n-textarea:disabled {
  border-color: rgb(226, 232, 240) !important;
  background-color: rgb(241, 245, 249) !important;
  color: rgb(148, 163, 184) !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}
body[data-color-mode=dark] .n-textarea:disabled {
  border-color: rgb(148, 163, 184) !important;
}

body[data-color-mode=dark] .n-textarea:disabled {
  background-color: rgb(30, 41, 59) !important;
}

body[data-color-mode=dark] .n-textarea:disabled {
  color: rgb(148, 163, 184) !important;
}

.n-textarea:disabled .n-textarea__textarea {
  cursor: not-allowed !important;
}
.n-textarea--error {
  border-color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-textarea--error {
  border-color: rgb(148, 163, 184) !important;
}

.n-textarea--error:hover:not(:disabled) {
  border-color: rgb(148, 163, 184) !important;
}
body[data-color-mode=dark] .n-textarea--error:hover:not(:disabled) {
  border-color: rgb(148, 163, 184) !important;
}

.n-textarea--error.n-textarea--focus {
  border-color: rgb(148, 163, 184) !important;
  -webkit-box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.15) !important;
          box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.15) !important;
}
body[data-color-mode=dark] .n-textarea--error.n-textarea--focus {
  border-color: rgb(148, 163, 184) !important;
}

.n-textarea--small {
  padding: var(--spacing-xs) var(--spacing-sm) !important;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  min-height: 64px !important;
}
body[data-color-mode=dark] .n-textarea--small {
  color: rgb(248, 250, 252);
}

.n-textarea--small .n-textarea__textarea {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-textarea--small .n-textarea__textarea {
  color: rgb(248, 250, 252);
}

.n-textarea--medium {
  padding: var(--spacing-sm) var(--spacing-md) !important;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  min-height: 80px !important;
}
body[data-color-mode=dark] .n-textarea--medium {
  color: rgb(248, 250, 252);
}

.n-textarea--medium .n-textarea__textarea {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-textarea--medium .n-textarea__textarea {
  color: rgb(248, 250, 252);
}

.n-textarea--large {
  padding: var(--spacing-md) var(--spacing-lg) !important;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  min-height: 120px !important;
}
body[data-color-mode=dark] .n-textarea--large {
  color: rgb(248, 250, 252);
}

.n-textarea--large .n-textarea__textarea {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-textarea--large .n-textarea__textarea {
  color: rgb(248, 250, 252);
}

.n-textarea--autosize .n-textarea__textarea {
  min-height: auto !important;
}

@media (max-width: 768px) {
  .header__btn--mobile-menu {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header__mobile-menu-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: var(--spacing-3xs);
  }
  .header__mobile-menu-line {
    width: var(--size-icon-sm);
    height: var(--line-height-xs);
    border-radius: var(--radius-full);
    background-color: rgb(148, 163, 184);
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
  }
  body[data-color-mode=dark] .header__mobile-menu-line {
    background-color: rgb(148, 163, 184);
  }
  .header__mobile-menu-line--open:nth-child(1) {
    -webkit-transform: translateY(5px) rotate(45deg);
            transform: translateY(5px) rotate(45deg);
  }
  .header__mobile-menu-line--open:nth-child(2) {
    opacity: 0;
  }
  .header__mobile-menu-line--open:nth-child(3) {
    -webkit-transform: translateY(-5px) rotate(-45deg);
            transform: translateY(-5px) rotate(-45deg);
  }
  .header__mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    padding: var(--spacing-md);
    background-color: rgb(248, 250, 252);
    -webkit-backdrop-filter: blur(var(--blur-md));
            backdrop-filter: blur(var(--blur-md));
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  }
  body[data-color-mode=dark] .header__mobile-menu {
    background-color: rgb(15, 23, 42);
  }
  .header__mobile-menu--open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .header__mobile-menu-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    gap: var(--radius-lg);
    margin-bottom: var(--spacing-md);
  }
  .header__mobile-menu-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--spacing-sm);
  }
  .header__mobile-menu-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: var(--size-icon-lg);
    height: var(--size-icon-lg);
    border-radius: var(--radius-full);
    border: 1px solid rgba(148, 163, 184, 0.6);
    background-color: rgb(248, 250, 252);
    color: rgb(148, 163, 184);
    -webkit-transition: all var(--transition-base);
    transition: all var(--transition-base);
  }
  body[data-color-mode=dark] .header__mobile-menu-btn {
    background-color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .header__mobile-menu-btn {
    color: rgb(148, 163, 184);
  }
  .header__mobile-menu-btn:hover {
    color: rgb(71, 85, 105);
  }
  body[data-color-mode=dark] .header__mobile-menu-btn:hover {
    color: rgb(220, 220, 220);
  }
  .header__mobile-menu-icon {
    width: var(--size-icon-sm);
    height: var(--size-icon-sm);
    color: rgb(148, 163, 184);
    -webkit-transition: color var(--transition-base);
    transition: color var(--transition-base);
  }
  body[data-color-mode=dark] .header__mobile-menu-icon {
    color: rgb(148, 163, 184);
  }
  .header__mobile-menu-btn:hover .header__mobile-menu-icon {
    color: rgb(71, 85, 105);
  }
  body[data-color-mode=dark] .header__mobile-menu-btn:hover .header__mobile-menu-icon {
    color: rgb(220, 220, 220);
  }
  .header__mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--spacing-sm);
  }
  .header__mobile-menu-item {
    width: 100%;
  }
  .header__mobile-menu-link {
    width: 100%;
    text-align: left;
    padding: 10px var(--radius-lg);
    border-radius: var(--radius-full);
    border: 1px solid rgba(148, 163, 184, 0.4);
    background-color: rgb(248, 250, 252);
    font-size: 1.4rem;
    line-height: 140%;
    font-weight: 500;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .header__mobile-menu-link {
    background-color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .header__mobile-menu-link {
    color: rgb(248, 250, 252);
  }
  .header__mobile-menu-lnb {
    width: 100%;
    overflow-y: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0;
  }
  .header__mobile-menu-lnb .lnb {
    background: transparent;
    padding: 0;
    border-right: none !important;
  }
  .header__mobile-menu-lnb .lnb__list {
    gap: var(--spacing-sm);
  }
  .header__mobile-menu-lnb .lnb__item {
    margin-bottom: 0;
  }
  .header__mobile-menu-lnb .lnb__item-header {
    position: relative;
  }
  .header__mobile-menu-lnb .lnb__link,
  .header__mobile-menu-lnb .lnb__sublink {
    padding: var(--radius-lg) var(--spacing-md);
    padding-right: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.4);
    background-color: rgb(248, 250, 252);
    font-size: 1.4rem;
    line-height: 140%;
    font-weight: 500;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
    -webkit-transition: all var(--transition-base);
    transition: all var(--transition-base);
    width: 100%;
    position: relative;
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__link,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__sublink {
    background-color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__link,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__sublink {
    color: rgb(248, 250, 252);
  }
  .header__mobile-menu-lnb .lnb__link:hover,
  .header__mobile-menu-lnb .lnb__sublink:hover {
    background-color: rgb(241, 245, 249);
    border-color: rgb(167, 139, 250);
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__link:hover,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__sublink:hover {
    background-color: rgb(30, 41, 59);
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__link:hover,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__sublink:hover {
    border-color: rgb(167, 139, 250);
  }
  .header__mobile-menu-lnb .lnb__link--active, .header__mobile-menu-lnb .lnb__link.lnb__link--active,
  .header__mobile-menu-lnb .lnb__sublink--active,
  .header__mobile-menu-lnb .lnb__sublink.lnb__link--active {
    background-color: rgb(139, 92, 246);
    color: rgb(255, 255, 255);
    border-color: rgb(139, 92, 246);
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__link--active, body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__link.lnb__link--active,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__sublink--active,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__sublink.lnb__link--active {
    background-color: rgb(139, 92, 246);
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__link--active, body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__link.lnb__link--active,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__sublink--active,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__sublink.lnb__link--active {
    color: rgb(255, 255, 255);
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__link--active, body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__link.lnb__link--active,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__sublink--active,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__sublink.lnb__link--active {
    border-color: rgb(139, 92, 246);
  }
  .header__mobile-menu-lnb .lnb__link--active ~ .lnb__toggle .lnb__toggle-icon,
  .header__mobile-menu-lnb .lnb__link--active + .lnb__toggle .lnb__toggle-icon, .header__mobile-menu-lnb .lnb__link.lnb__link--active ~ .lnb__toggle .lnb__toggle-icon,
  .header__mobile-menu-lnb .lnb__link.lnb__link--active + .lnb__toggle .lnb__toggle-icon,
  .header__mobile-menu-lnb .lnb__sublink--active ~ .lnb__toggle .lnb__toggle-icon,
  .header__mobile-menu-lnb .lnb__sublink--active + .lnb__toggle .lnb__toggle-icon,
  .header__mobile-menu-lnb .lnb__sublink.lnb__link--active ~ .lnb__toggle .lnb__toggle-icon,
  .header__mobile-menu-lnb .lnb__sublink.lnb__link--active + .lnb__toggle .lnb__toggle-icon {
    color: rgb(255, 255, 255) !important;
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__link--active ~ .lnb__toggle .lnb__toggle-icon,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__link--active + .lnb__toggle .lnb__toggle-icon, body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__link.lnb__link--active ~ .lnb__toggle .lnb__toggle-icon,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__link.lnb__link--active + .lnb__toggle .lnb__toggle-icon,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__sublink--active ~ .lnb__toggle .lnb__toggle-icon,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__sublink--active + .lnb__toggle .lnb__toggle-icon,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__sublink.lnb__link--active ~ .lnb__toggle .lnb__toggle-icon,
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__sublink.lnb__link--active + .lnb__toggle .lnb__toggle-icon {
    color: rgb(255, 255, 255) !important;
  }
  .header__mobile-menu-lnb .lnb__item--active .lnb__toggle-icon {
    color: rgb(255, 255, 255) !important;
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__item--active .lnb__toggle-icon {
    color: rgb(255, 255, 255) !important;
  }
  .header__mobile-menu-lnb .lnb__sublist {
    margin-top: var(--spacing-xs);
    padding-left: var(--spacing-lg);
    gap: var(--spacing-xs);
  }
  .header__mobile-menu-lnb .lnb__subitem {
    margin-bottom: 0;
    padding-left: var(--spacing-md);
  }
  .header__mobile-menu-lnb .lnb__subitem::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: rgb(148, 163, 184);
    font-size: 1.2em;
    line-height: 1;
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__subitem::before {
    color: rgb(148, 163, 184);
  }
  .header__mobile-menu-lnb .lnb__subitem--active::before {
    color: rgb(139, 92, 246);
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__subitem--active::before {
    color: rgb(139, 92, 246);
  }
  .header__mobile-menu-lnb .lnb__sublink {
    position: relative;
    border: none !important;
    background: transparent !important;
    padding: var(--radius-sm) var(--spacing-md);
    padding-left: 0 !important;
  }
  .header__mobile-menu-lnb .lnb__toggle {
    position: absolute;
    right: var(--spacing-sm);
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: var(--size-icon-md);
    height: var(--size-icon-md);
    border-radius: var(--radius-md);
    margin: 0;
    background-color: rgba(255, 255, 255, 0);
    color: rgb(148, 163, 184);
    z-index: 1;
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__toggle {
    background-color: rgba(0, 0, 0, 0);
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__toggle {
    color: rgb(148, 163, 184);
  }
  .header__mobile-menu-lnb .lnb__toggle:hover {
    background-color: rgba(255, 255, 255, 0);
    color: rgb(71, 85, 105);
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__toggle:hover {
    background-color: rgba(0, 0, 0, 0);
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__toggle:hover {
    color: rgb(220, 220, 220);
  }
  .header__mobile-menu-lnb .lnb__toggle-icon {
    width: var(--size-icon-sm);
    height: var(--size-icon-sm);
    color: rgb(148, 163, 184);
    -webkit-transition: color var(--transition-base), -webkit-transform var(--transition-base);
    transition: color var(--transition-base), -webkit-transform var(--transition-base);
    transition: transform var(--transition-base), color var(--transition-base);
    transition: transform var(--transition-base), color var(--transition-base), -webkit-transform var(--transition-base);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  body[data-color-mode=dark] .header__mobile-menu-lnb .lnb__toggle-icon {
    color: rgb(148, 163, 184);
  }
  .header__mobile-menu-lnb .lnb__toggle-icon--expanded {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .header__mobile-menu-lnb .lnb__language {
    display: none;
  }
}
@media (min-width: 769px) {
  .header__btn--mobile-menu,
  .header__mobile-menu {
    display: none !important;
  }
}
.layout .footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: auto;
  border-top: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  background-color: rgb(241, 245, 249);
  z-index: 500;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .layout .footer {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .layout .footer {
  background-color: rgb(30, 41, 59);
}

.layout .footer .footer--visible {
  display: block;
}
.layout .footer .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-lg);
  gap: var(--spacing-lg);
}
@media (min-width: 1200px) {
  .layout .footer .footer__inner {
    padding: var(--spacing-lg) var(--spacing-xl);
  }
}
.layout .footer .footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--spacing-sm);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.layout .footer .footer__text {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0;
  letter-spacing: 0.2px;
  line-height: 1.5;
}
body[data-color-mode=dark] .layout .footer .footer__text {
  color: rgb(220, 220, 220);
}

.layout .footer .footer__business-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--spacing-xs);
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  line-height: 1.6;
  width: 100%;
}
body[data-color-mode=dark] .layout .footer .footer__business-info {
  color: rgb(220, 220, 220);
}

.layout .footer .footer__business-item {
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.layout .footer .footer__business-divider {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0.6;
}
body[data-color-mode=dark] .layout .footer .footer__business-divider {
  color: rgb(220, 220, 220);
}

.layout .footer .footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: var(--spacing-sm);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: var(--spacing-xs);
}
.layout .footer .footer__link {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: color var(--transition-base);
  transition: color var(--transition-base);
  white-space: nowrap;
}
body[data-color-mode=dark] .layout .footer .footer__link {
  color: rgb(220, 220, 220);
}

.layout .footer .footer__link:hover {
  color: rgb(15, 23, 42);
  text-decoration: underline;
}
body[data-color-mode=dark] .layout .footer .footer__link:hover {
  color: rgb(248, 250, 252);
}

.layout .footer .footer__link:active {
  opacity: 0.8;
}
.layout .footer .footer__divider {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  opacity: 0.6;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
body[data-color-mode=dark] .layout .footer .footer__divider {
  color: rgb(220, 220, 220);
}

@media (max-width: 768px) {
  .layout .footer .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: var(--spacing-md);
    gap: var(--spacing-md);
  }
  .layout .footer .footer__left {
    width: 100%;
  }
  .layout .footer .footer__text {
    width: 100%;
  }
  .layout .footer .footer__business-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: var(--spacing-xxs);
    font-size: 0.75rem;
    line-height: 1.8;
  }
  .layout .footer .footer__business-item {
    white-space: normal;
    word-break: keep-all;
  }
  .layout .footer .footer__business-divider {
    display: none;
  }
  .layout .footer .footer__nav {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: var(--spacing-xs);
    margin-top: 0;
  }
  .layout .footer .footer__divider {
    display: inline;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .layout .footer .footer__inner {
    padding: var(--spacing-md) var(--spacing-lg);
  }
  .layout .footer .footer__business-info {
    font-size: 0.8rem;
  }
}

.chat-messages {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-lg);
}

.message-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-xs);
  max-width: 100%;
  margin: 0;
  -webkit-animation: fadeInUp 0.3s ease-out;
          animation: fadeInUp 0.3s ease-out;
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .message-item {
  color: rgb(248, 250, 252);
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.message-item__header {
  font-size: 1.2rem;
  line-height: 1.385;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  letter-spacing: 0.2px;
}
body[data-color-mode=dark] .message-item__header {
  color: rgb(220, 220, 220);
}

.message-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-xs);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.message-item__bubble {
  --bubble-bg: rgba(139, 92, 246, 0.06);
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-2xs);
  padding: 1.2rem 1.6rem 1rem 1.6rem;
  border-radius: 1.2rem 1.6rem 1.6rem 1.6rem;
  background-color: rgb(241, 245, 249);
  background: var(--bubble-bg);
  -webkit-box-shadow: 0 12px 24px -16px rgba(16, 18, 30, 0.35);
          box-shadow: 0 12px 24px -16px rgba(16, 18, 30, 0.35);
  border: 1px solid transparent;
  border-color: rgb(226, 232, 240);
  max-width: 100%;
  word-break: break-word;
}
body[data-color-mode=dark] .message-item__bubble {
  background-color: rgb(30, 41, 59);
}

body[data-color-mode=dark] .message-item__bubble {
  border-color: rgb(148, 163, 184);
}

.message-item__bubble::after {
  content: "";
  position: absolute;
  bottom: 0.6rem;
  left: -0.7rem;
  width: 1.4rem;
  height: 1.4rem;
  background-color: rgb(241, 245, 249);
  border-bottom-left-radius: 1.2rem;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-box-shadow: -4px 6px 12px -10px rgba(17, 17, 27, 0.45);
          box-shadow: -4px 6px 12px -10px rgba(17, 17, 27, 0.45);
  border-left: inherit;
  border-bottom: inherit;
}
body[data-color-mode=dark] .message-item__bubble::after {
  background-color: rgb(30, 41, 59);
}

.message-item__text {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  line-height: 1.6;
  white-space: pre-wrap;
}
body[data-color-mode=dark] .message-item__text {
  color: rgb(248, 250, 252);
}

.message-item__time {
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .message-item__time {
  color: rgb(148, 163, 184);
}

.message-item__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-xs);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.message-item__actions .n-text {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .message-item__actions .n-text {
  color: rgb(148, 163, 184);
}

.message-item__actions .n-button {
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  line-height: 1.385;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px;
  -webkit-box-shadow: none;
          box-shadow: none;
  min-width: 110px;
}
body[data-color-mode=dark] .message-item__actions .n-button {
  color: rgb(248, 250, 252);
}

.message-item__actions .n-button.n-button--primary-type {
  background-color: rgb(139, 92, 246);
  border: none;
  color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .message-item__actions .n-button.n-button--primary-type {
  background-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .message-item__actions .n-button.n-button--primary-type {
  color: rgb(255, 255, 255);
}

.message-item__actions .n-button.n-button--success-type {
  color: rgb(255, 255, 255);
  background-color: linear-gradient(135deg, #34d399, #059669);
  border: none;
}
body[data-color-mode=dark] .message-item__actions .n-button.n-button--success-type {
  color: rgb(255, 255, 255);
}

body[data-color-mode=dark] .message-item__actions .n-button.n-button--success-type {
  background-color: linear-gradient(135deg, #34d399, #059669);
}

.message-item__actions .n-button.n-button--info-type {
  color: rgb(255, 255, 255);
  background-color: linear-gradient(135deg, #3b82f6, #2563eb);
  border: none;
}
body[data-color-mode=dark] .message-item__actions .n-button.n-button--info-type {
  color: rgb(255, 255, 255);
}

body[data-color-mode=dark] .message-item__actions .n-button.n-button--info-type {
  background-color: linear-gradient(135deg, #3b82f6, #2563eb);
}

.message-item__status {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .message-item__status {
  color: rgb(248, 250, 252);
}

.message-item--user {
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
}
.message-item--user .message-item__header {
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .message-item--user .message-item__header {
  color: rgb(220, 220, 220);
}

.message-item--user .message-item__body {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.message-item--user .message-item__bubble {
  --bubble-bg: #f1ecff;
  color: rgb(15, 23, 42);
  border-radius: 1.6rem 1.6rem 0.6rem 1.6rem;
  border-color: rgb(167, 139, 250);
  border-color: rgba(139, 92, 246, 0.28);
  -webkit-box-shadow: 0 18px 32px -24px rgba(49, 35, 89, 0.32);
          box-shadow: 0 18px 32px -24px rgba(49, 35, 89, 0.32);
}
body[data-color-mode=dark] .message-item--user .message-item__bubble {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] .message-item--user .message-item__bubble {
  border-color: rgb(167, 139, 250);
}

.message-item--user .message-item__bubble::after {
  right: -0.7rem;
  left: auto;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 1.2rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-box-shadow: 6px 10px 18px -20px rgba(49, 35, 89, 0.28);
          box-shadow: 6px 10px 18px -20px rgba(49, 35, 89, 0.28);
  border-left: none;
  border-top: inherit;
  border-right: inherit;
  border-bottom: inherit;
}
.message-item--user .message-item__time {
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .message-item--user .message-item__time {
  color: rgb(220, 220, 220);
}

.message-item--ai {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.message-item--ai .message-item__bubble {
  --bubble-bg: rgba(255, 255, 255, 0.5);
  border-radius: 1.6rem 1.6rem 1.6rem 0.6rem;
  border-color: rgb(203, 213, 225);
}
body[data-color-mode=dark] .message-item--ai .message-item__bubble {
  border-color: rgb(100, 116, 139);
}

.message-item--ai .message-item__bubble::after {
  border-left: inherit;
  border-top: inherit;
  border-bottom: inherit;
  background-color: rgb(255, 255, 255);
  border-color: rgb(203, 213, 225);
}
body[data-color-mode=dark] .message-item--ai .message-item__bubble::after {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .message-item--ai .message-item__bubble::after {
  border-color: rgb(100, 116, 139);
}

.message-item--ai .message-item__actions {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 768px) {
  .chat-messages {
    gap: var(--spacing-md);
  }
  .message-item {
    max-width: 100%;
  }
  .message-item__bubble {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid;
    border-color: rgba(210, 214, 255, 0.28);
  }
  .message-item--user .message-item__bubble {
    --bubble-bg: rgba(245, 236, 255, 0.795);
    background: var(--bubble-bg);
    border-color: rgba(139, 92, 246, 0.24);
  }
  .message-item__actions {
    width: 100%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .message-item__actions .n-button {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    padding: 0 var(--spacing-md);
    height: 36px;
    font-size: 1.2rem;
    line-height: 1.385;
    font-weight: 500;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .message-item__actions .n-button {
    color: rgb(248, 250, 252);
  }
  .message-item__actions .n-button--success-type {
    background: linear-gradient(135deg, #34d399, #059669);
    border: none;
    color: #ffffff;
  }
  .message-item__actions .n-button--success-type:hover {
    background: linear-gradient(135deg, #31c28d, #047857);
  }
  .message-item__status {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .message-item__bubble {
    border-radius: 1.6rem;
  }
  .message-item--user .message-item__bubble,
  .message-item--ai .message-item__bubble {
    border-radius: 1.6rem;
  }
  .message-item__bubble::after {
    display: none;
  }
}
.n-form-item:last-child {
  margin-bottom: 0 !important;
}

.box--bg-gray {
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  background-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .box--bg-gray {
  background-color: rgb(51, 65, 85);
}

.box--round-bg {
  min-height: 6rem;
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .box--round-bg {
  background-color: rgb(0, 0, 0);
}

.box--round-border {
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid;
  background-color: rgb(241, 245, 249);
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .box--round-border {
  background-color: rgb(30, 41, 59);
}

body[data-color-mode=dark] .box--round-border {
  border-color: rgb(148, 163, 184);
}

.list--basic {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list__item--active {
  background-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .list__item--active {
  background-color: rgb(51, 65, 85);
}

.list__link {
  color: rgb(15, 23, 42);
  text-decoration: none;
  -webkit-transition: var(--transition-base);
  transition: var(--transition-base);
}
body[data-color-mode=dark] .list__link {
  color: rgb(248, 250, 252);
}

.list__link:hover {
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .list__link:hover {
  color: rgb(139, 92, 246);
}

.recommend-list {
  max-height: 160px;
  overflow-y: auto;
}
.recommend-list__item {
  padding: var(--spacing-sm);
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .recommend-list__item {
  color: rgb(248, 250, 252);
}

.recommend-list__item:hover {
  background-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .recommend-list__item:hover {
  background-color: rgb(51, 65, 85);
}

.message--error {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .message--error {
  color: rgb(248, 250, 252);
}

.message--success {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .message--success {
  color: rgb(139, 92, 246);
}

.message--warning {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .message--warning {
  color: rgb(220, 220, 220);
}

.message--info {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .message--info {
  color: rgb(148, 163, 184);
}

.terms {
  padding: var(--spacing-2xl) var(--spacing-xl);
  max-width: 960px;
  margin: 0 auto;
}
.terms .policy__title {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-xs);
}
body[data-color-mode=dark] .terms .policy__title {
  color: rgb(248, 250, 252);
}

.terms .policy__updated {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-bottom: var(--spacing-xl);
}
body[data-color-mode=dark] .terms .policy__updated {
  color: rgb(220, 220, 220);
}

.terms .policy__content {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  line-height: 1.7;
}
body[data-color-mode=dark] .terms .policy__content {
  color: rgb(248, 250, 252);
}

.terms .policy__content h2 {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-xs);
}
body[data-color-mode=dark] .terms .policy__content h2 {
  color: rgb(248, 250, 252);
}

.terms .policy__content p,
.terms .policy__content ol {
  margin-bottom: var(--spacing-sm);
}
.terms .policy__content ol {
  padding-left: 1.25rem;
}
.terms .policy__loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 400px;
}
.terms .policy__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 400px;
}
@media (max-width: 768px) {
  .terms {
    padding: var(--spacing-xl) var(--spacing-md);
  }
  .terms .policy__title {
    font-size: 1.8rem;
    line-height: 136.364%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .terms .policy__title {
    color: rgb(248, 250, 252);
  }
}

.home-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-2xl) var(--spacing-lg);
  background-color: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
}
body[data-color-mode=dark] .home-container {
  background-color: rgb(0, 0, 0);
}

@media (min-width: 768px) {
  .home-container {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }
}
.home-container::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.home-container .hero-section {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 1;
}
.home-container .hero-section__title {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: -1.5px;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, rgb(167, 139, 250) 0%, rgb(139, 92, 246) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body[data-color-mode=dark] .home-container .hero-section__title {
  color: rgb(248, 250, 252);
}

.home-container .hero-section__subtitle {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-bottom: var(--spacing-2xl);
  letter-spacing: 0.2px;
}
body[data-color-mode=dark] .home-container .hero-section__subtitle {
  color: rgb(220, 220, 220);
}

.home-container .character-selection {
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 1;
}
.home-container .character-list {
  margin-bottom: var(--spacing-3xl);
}
.home-container .character-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--spacing-lg);
}
.home-container .character-list__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .home-container .character-list__title {
  color: rgb(248, 250, 252);
}

.home-container .character-list__more-btn {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid;
  border-color: rgb(139, 92, 246);
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  letter-spacing: 0.2px;
}
body[data-color-mode=dark] .home-container .character-list__more-btn {
  color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .home-container .character-list__more-btn {
  border-color: rgb(139, 92, 246);
}

.home-container .character-list__more-btn:hover {
  background-color: rgb(139, 92, 246);
  color: rgb(255, 255, 255);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .home-container .character-list__more-btn:hover {
  background-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .home-container .character-list__more-btn:hover {
  color: rgb(255, 255, 255);
}

.home-container .character-list__more-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.home-container .character-list__create-btn {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(255, 255, 255);
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  background-color: rgb(139, 92, 246);
  border-color: rgb(139, 92, 246);
  color: rgb(255, 255, 255);
  border: none;
  cursor: pointer;
  margin-top: var(--spacing-md);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
}
body[data-color-mode=dark] .home-container .character-list__create-btn {
  color: rgb(255, 255, 255);
}

body[data-color-mode=dark] .home-container .character-list__create-btn {
  background-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .home-container .character-list__create-btn {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .home-container .character-list__create-btn {
  color: rgb(255, 255, 255);
}

.home-container .character-list__create-btn:hover {
  background-color: rgb(124, 58, 237);
  border-color: rgb(124, 58, 237);
  color: rgb(255, 255, 255);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}
body[data-color-mode=dark] .home-container .character-list__create-btn:hover {
  background-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .home-container .character-list__create-btn:hover {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .home-container .character-list__create-btn:hover {
  color: rgb(255, 255, 255);
}

.home-container .character-list__create-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.home-container .character-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}
@media (min-width: 768px) {
  .home-container .character-list__grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--spacing-xl);
  }
}
.home-container .character-list__empty {
  text-align: center;
  padding: var(--spacing-2xl);
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  border-radius: var(--radius-xl);
  border: 1px dashed;
  border-color: rgb(226, 232, 240);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .home-container .character-list__empty {
  color: rgb(220, 220, 220);
}

body[data-color-mode=dark] .home-container .character-list__empty {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .home-container .character-list__empty {
  background-color: rgb(30, 41, 59);
}

.home-container .character-list__login-prompt {
  text-align: center;
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  background-color: rgb(241, 245, 249);
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .home-container .character-list__login-prompt {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .home-container .character-list__login-prompt {
  background-color: rgb(30, 41, 59);
}

body[data-color-mode=dark] .home-container .character-list__login-prompt {
  color: rgb(220, 220, 220);
}

.home-container .character-card {
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  background-color: rgb(248, 250, 252);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  cursor: pointer;
  text-align: center;
}
body[data-color-mode=dark] .home-container .character-card {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .home-container .character-card {
  background-color: rgb(15, 23, 42);
}

.home-container .character-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
  border-color: rgb(139, 92, 246);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .home-container .character-card:hover {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .home-container .character-card:hover {
  background-color: rgb(30, 41, 59);
}

.home-container .character-card__avatar {
  margin-bottom: var(--spacing-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home-container .character-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-xs);
}
.home-container .character-card__name {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0;
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .home-container .character-card__name {
  color: rgb(248, 250, 252);
}

.home-container .character-card__description {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0;
}
body[data-color-mode=dark] .home-container .character-card__description {
  color: rgb(220, 220, 220);
}

.home-container .services {
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 1;
}
.home-container .services__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-2xl);
  text-align: center;
  letter-spacing: -0.5px;
}
body[data-color-mode=dark] .home-container .services__title {
  color: rgb(248, 250, 252);
}

.home-container .services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}
@media (min-width: 768px) {
  .home-container .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }
}
.home-container .service-card {
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  background-color: rgb(248, 250, 252);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}
body[data-color-mode=dark] .home-container .service-card {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .home-container .service-card {
  background-color: rgb(15, 23, 42);
}

.home-container .service-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
  border-color: rgb(139, 92, 246);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .home-container .service-card:hover {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .home-container .service-card:hover {
  background-color: rgb(30, 41, 59);
}

.home-container .service-card__icon {
  font-size: 4rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(167, 139, 250);
  margin-bottom: var(--spacing-md);
  text-align: center;
  color: rgb(167, 139, 250);
}
body[data-color-mode=dark] .home-container .service-card__icon {
  color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .home-container .service-card__icon {
  color: rgb(167, 139, 250);
}

.home-container .service-card__title {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.3px;
  text-align: center;
}
body[data-color-mode=dark] .home-container .service-card__title {
  color: rgb(248, 250, 252);
}

.home-container .service-card__description {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-bottom: var(--spacing-md);
  text-align: center;
}
body[data-color-mode=dark] .home-container .service-card__description {
  color: rgb(220, 220, 220);
}

.home-container .service-card__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--spacing-sm);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: var(--spacing-md);
}
.home-container .service-card__feature {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  border: 1px solid;
  border-color: rgb(139, 92, 246);
  background-color: rgb(245, 243, 255);
  font-size: 12px;
  letter-spacing: 0.2px;
}
body[data-color-mode=dark] .home-container .service-card__feature {
  color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .home-container .service-card__feature {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .home-container .service-card__feature {
  background-color: rgb(30, 27, 50);
}

.home-container .cta-section,
.home-container .welcome-section {
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(139, 92, 246);
  background-color: rgb(248, 250, 252);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(167, 139, 250, 0.08) 100%);
  text-align: center;
}
body[data-color-mode=dark] .home-container .cta-section,
body[data-color-mode=dark] .home-container .welcome-section {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .home-container .cta-section,
body[data-color-mode=dark] .home-container .welcome-section {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .home-container .cta-section,
body[data-color-mode=dark] .home-container .welcome-section {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(167, 139, 250, 0.15) 100%);
}
.home-container .cta-section__title,
.home-container .welcome-section__title {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.5px;
}
body[data-color-mode=dark] .home-container .cta-section__title,
body[data-color-mode=dark] .home-container .welcome-section__title {
  color: rgb(248, 250, 252);
}

.home-container .cta-section__description,
.home-container .welcome-section__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-bottom: var(--spacing-lg);
}
body[data-color-mode=dark] .home-container .cta-section__description,
body[data-color-mode=dark] .home-container .welcome-section__description {
  color: rgb(220, 220, 220);
}

.home-container .action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-md);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home-container .action-buttons__btn {
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(255, 255, 255);
  letter-spacing: 0.3px;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  min-width: 140px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .home-container .action-buttons__btn {
  color: rgb(255, 255, 255);
}

.home-container .action-buttons__btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}
.home-container .action-buttons__btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.home-container .action-buttons__btn--primary {
  background-color: rgb(139, 92, 246);
  border-color: rgb(139, 92, 246);
  color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .home-container .action-buttons__btn--primary {
  background-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--primary {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--primary {
  color: rgb(255, 255, 255);
}

.home-container .action-buttons__btn--primary:hover:not(:disabled) {
  background-color: rgb(124, 58, 237);
  border-color: rgb(124, 58, 237);
  color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .home-container .action-buttons__btn--primary:hover:not(:disabled) {
  background-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--primary:hover:not(:disabled) {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--primary:hover:not(:disabled) {
  color: rgb(255, 255, 255);
}

.home-container .action-buttons__btn--primary:active:not(:disabled) {
  background-color: rgb(109, 40, 217);
  border-color: rgb(109, 40, 217);
  color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .home-container .action-buttons__btn--primary:active:not(:disabled) {
  background-color: rgb(196, 181, 253);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--primary:active:not(:disabled) {
  border-color: rgb(196, 181, 253);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--primary:active:not(:disabled) {
  color: rgb(255, 255, 255);
}

.home-container .action-buttons__btn--primary:disabled {
  background-color: rgb(221, 214, 255);
  border-color: rgb(196, 181, 253);
  color: rgb(124, 58, 237);
  opacity: 0.6;
  cursor: not-allowed;
}
body[data-color-mode=dark] .home-container .action-buttons__btn--primary:disabled {
  background-color: rgb(67, 56, 108);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--primary:disabled {
  border-color: rgb(91, 78, 145);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--primary:disabled {
  color: rgb(91, 78, 145);
}

.home-container .action-buttons__btn--secondary {
  background-color: rgb(255, 255, 255);
  border-color: rgb(167, 139, 250);
  color: rgb(167, 139, 250);
}
body[data-color-mode=dark] .home-container .action-buttons__btn--secondary {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--secondary {
  border-color: rgb(124, 114, 183);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--secondary {
  color: rgb(124, 114, 183);
}

.home-container .action-buttons__btn--secondary:hover:not(:disabled) {
  background-color: rgb(255, 255, 255);
  border-color: rgb(139, 92, 246);
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .home-container .action-buttons__btn--secondary:hover:not(:disabled) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--secondary:hover:not(:disabled) {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--secondary:hover:not(:disabled) {
  color: rgb(139, 92, 246);
}

.home-container .action-buttons__btn--secondary:active:not(:disabled) {
  background-color: rgb(255, 255, 255);
  border-color: rgb(124, 58, 237);
  color: rgb(124, 58, 237);
}
body[data-color-mode=dark] .home-container .action-buttons__btn--secondary:active:not(:disabled) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--secondary:active:not(:disabled) {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--secondary:active:not(:disabled) {
  color: rgb(167, 139, 250);
}

.home-container .action-buttons__btn--secondary:disabled {
  background-color: rgb(255, 255, 255);
  border-color: rgb(221, 214, 255);
  color: rgb(148, 163, 184);
  opacity: 0.6;
  cursor: not-allowed;
}
body[data-color-mode=dark] .home-container .action-buttons__btn--secondary:disabled {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--secondary:disabled {
  border-color: rgb(67, 56, 108);
}

body[data-color-mode=dark] .home-container .action-buttons__btn--secondary:disabled {
  color: rgb(148, 163, 184);
}

.home-container .how-it-works {
  margin-top: var(--spacing-3xl);
  padding-top: var(--spacing-3xl);
  border-top: 1px solid;
  border-color: rgb(226, 232, 240);
  position: relative;
  z-index: 1;
}
body[data-color-mode=dark] .home-container .how-it-works {
  border-color: rgb(148, 163, 184);
}

.home-container .how-it-works__title {
  text-align: center;
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-2xl);
  letter-spacing: -0.5px;
}
body[data-color-mode=dark] .home-container .how-it-works__title {
  color: rgb(248, 250, 252);
}

.home-container .steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}
@media (min-width: 768px) {
  .home-container .steps {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-xl);
  }
}
@media (min-width: 1024px) {
  .home-container .steps {
    gap: var(--spacing-xl);
  }
}
.home-container .step {
  text-align: center;
  padding: var(--spacing-lg);
}
.home-container .step__number {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--spacing-lg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(135deg, rgb(124, 58, 237) 0%, rgb(139, 92, 246) 100%);
  color: rgb(255, 255, 255);
  border-radius: var(--radius-full);
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(255, 255, 255);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .home-container .step__number {
  color: rgb(255, 255, 255);
}

body[data-color-mode=dark] .home-container .step__number {
  color: rgb(255, 255, 255);
}

.home-container .step__title {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .home-container .step__title {
  color: rgb(248, 250, 252);
}

.home-container .step__description {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0;
}
body[data-color-mode=dark] .home-container .step__description {
  color: rgb(220, 220, 220);
}

.about-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-2xl) var(--spacing-lg);
  background-color: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
}
body[data-color-mode=dark] .about-container {
  background-color: rgb(0, 0, 0);
}

@media (min-width: 768px) {
  .about-container {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }
}
.about-container::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.about-container .hero-section {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 1;
  padding: var(--spacing-md) 0;
}
@media (min-width: 768px) {
  .about-container .hero-section {
    padding: var(--spacing-md) 0;
  }
}
.about-container .hero-section__title {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: -1.5px;
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, rgb(167, 139, 250) 0%, rgb(139, 92, 246) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body[data-color-mode=dark] .about-container .hero-section__title {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .about-container .hero-section__title {
    font-size: 2.9rem;
    line-height: 137.931%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
    margin-bottom: var(--spacing-xl);
  }
  body[data-color-mode=dark] .about-container .hero-section__title {
    color: rgb(248, 250, 252);
  }
}
.about-container .hero-section__subtitle {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-bottom: 0;
  letter-spacing: 0.2px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
body[data-color-mode=dark] .about-container .hero-section__subtitle {
  color: rgb(220, 220, 220);
}

.about-container .content-section {
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 1;
}
.about-container .content-section__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.5px;
}
body[data-color-mode=dark] .about-container .content-section__title {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .about-container .content-section__title {
    font-size: 2.5rem;
    line-height: 140%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
    margin-bottom: var(--spacing-xl);
  }
  body[data-color-mode=dark] .about-container .content-section__title {
    color: rgb(248, 250, 252);
  }
}
.about-container .content-section__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  letter-spacing: 0.2px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
body[data-color-mode=dark] .about-container .content-section__description {
  color: rgb(220, 220, 220);
}

@media (min-width: 768px) {
  .about-container .content-section__description {
    margin-bottom: var(--spacing-4xl);
  }
}
.about-container .features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
}
@media (min-width: 768px) {
  .about-container .features {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }
}
.about-container .feature-card {
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  background-color: rgb(248, 250, 252);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  text-align: center;
}
body[data-color-mode=dark] .about-container .feature-card {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .about-container .feature-card {
  background-color: rgb(15, 23, 42);
}

.about-container .feature-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
  border-color: rgb(139, 92, 246);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .about-container .feature-card:hover {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .about-container .feature-card:hover {
  background-color: rgb(30, 41, 59);
}

.about-container .feature-card:focus-within {
  outline: 2px solid;
  border-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .about-container .feature-card:focus-within {
  border-color: rgb(139, 92, 246);
}

.about-container .feature-card__icon {
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(167, 139, 250);
  margin-bottom: var(--spacing-md);
  text-align: center;
}
body[data-color-mode=dark] .about-container .feature-card__icon {
  color: rgb(167, 139, 250);
}

@media (min-width: 768px) {
  .about-container .feature-card__icon {
    font-size: 56px;
    margin-bottom: var(--spacing-lg);
  }
}
.about-container .feature-card__title {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .about-container .feature-card__title {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .about-container .feature-card__title {
    font-size: 2rem;
    line-height: 140%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
    margin-bottom: var(--spacing-md);
  }
  body[data-color-mode=dark] .about-container .feature-card__title {
    color: rgb(248, 250, 252);
  }
}
.about-container .feature-card__description {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0;
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .about-container .feature-card__description {
  color: rgb(220, 220, 220);
}

@media (min-width: 768px) {
  .about-container .feature-card__description {
    font-size: 1.4rem;
    line-height: 140%;
    font-weight: 400;
    font-family: "Pretendard";
    color: rgb(71, 85, 105);
  }
  body[data-color-mode=dark] .about-container .feature-card__description {
    color: rgb(220, 220, 220);
  }
}
.about-container .cta-section {
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(139, 92, 246);
  background-color: rgb(248, 250, 252);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(167, 139, 250, 0.08) 100%);
  text-align: center;
}
body[data-color-mode=dark] .about-container .cta-section {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .about-container .cta-section {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .about-container .cta-section {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(167, 139, 250, 0.15) 100%);
}
@media (min-width: 768px) {
  .about-container .cta-section {
    padding: var(--spacing-3xl);
  }
}
.about-container .cta-section__title {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.5px;
}
body[data-color-mode=dark] .about-container .cta-section__title {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .about-container .cta-section__title {
    font-size: 1.8rem;
    line-height: 136.364%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
    margin-bottom: var(--spacing-md);
  }
  body[data-color-mode=dark] .about-container .cta-section__title {
    color: rgb(248, 250, 252);
  }
}
.about-container .cta-section__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-bottom: var(--spacing-lg);
}
body[data-color-mode=dark] .about-container .cta-section__description {
  color: rgb(220, 220, 220);
}

@media (min-width: 768px) {
  .about-container .cta-section__description {
    margin-bottom: var(--spacing-xl);
  }
}
.about-container .action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-md);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.about-container .action-buttons__btn {
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(255, 255, 255);
  letter-spacing: 0.3px;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  min-width: 140px;
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .about-container .action-buttons__btn {
  color: rgb(255, 255, 255);
}

.about-container .action-buttons__btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}
.about-container .action-buttons__btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.about-container .action-buttons__btn:focus-visible {
  outline: 2px solid;
  border-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .about-container .action-buttons__btn:focus-visible {
  border-color: rgb(139, 92, 246);
}

.about-container .action-buttons__btn--primary {
  background-color: rgb(139, 92, 246);
  border-color: rgb(139, 92, 246);
  color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .about-container .action-buttons__btn--primary {
  background-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--primary {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--primary {
  color: rgb(255, 255, 255);
}

.about-container .action-buttons__btn--primary:hover:not(:disabled) {
  background-color: rgb(124, 58, 237);
  border-color: rgb(124, 58, 237);
  color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .about-container .action-buttons__btn--primary:hover:not(:disabled) {
  background-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--primary:hover:not(:disabled) {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--primary:hover:not(:disabled) {
  color: rgb(255, 255, 255);
}

.about-container .action-buttons__btn--primary:active:not(:disabled) {
  background-color: rgb(109, 40, 217);
  border-color: rgb(109, 40, 217);
  color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .about-container .action-buttons__btn--primary:active:not(:disabled) {
  background-color: rgb(196, 181, 253);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--primary:active:not(:disabled) {
  border-color: rgb(196, 181, 253);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--primary:active:not(:disabled) {
  color: rgb(255, 255, 255);
}

.about-container .action-buttons__btn--primary:disabled {
  background-color: rgb(221, 214, 255);
  border-color: rgb(196, 181, 253);
  color: rgb(124, 58, 237);
  opacity: 0.6;
  cursor: not-allowed;
}
body[data-color-mode=dark] .about-container .action-buttons__btn--primary:disabled {
  background-color: rgb(67, 56, 108);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--primary:disabled {
  border-color: rgb(91, 78, 145);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--primary:disabled {
  color: rgb(91, 78, 145);
}

.about-container .action-buttons__btn--secondary {
  background-color: rgb(255, 255, 255);
  border-color: rgb(167, 139, 250);
  color: rgb(167, 139, 250);
}
body[data-color-mode=dark] .about-container .action-buttons__btn--secondary {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--secondary {
  border-color: rgb(124, 114, 183);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--secondary {
  color: rgb(124, 114, 183);
}

.about-container .action-buttons__btn--secondary:hover:not(:disabled) {
  background-color: rgb(255, 255, 255);
  border-color: rgb(139, 92, 246);
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .about-container .action-buttons__btn--secondary:hover:not(:disabled) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--secondary:hover:not(:disabled) {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--secondary:hover:not(:disabled) {
  color: rgb(139, 92, 246);
}

.about-container .action-buttons__btn--secondary:active:not(:disabled) {
  background-color: rgb(255, 255, 255);
  border-color: rgb(124, 58, 237);
  color: rgb(124, 58, 237);
}
body[data-color-mode=dark] .about-container .action-buttons__btn--secondary:active:not(:disabled) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--secondary:active:not(:disabled) {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--secondary:active:not(:disabled) {
  color: rgb(167, 139, 250);
}

.about-container .action-buttons__btn--secondary:disabled {
  background-color: rgb(255, 255, 255);
  border-color: rgb(221, 214, 255);
  color: rgb(148, 163, 184);
  opacity: 0.6;
  cursor: not-allowed;
}
body[data-color-mode=dark] .about-container .action-buttons__btn--secondary:disabled {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--secondary:disabled {
  border-color: rgb(67, 56, 108);
}

body[data-color-mode=dark] .about-container .action-buttons__btn--secondary:disabled {
  color: rgb(148, 163, 184);
}

.video-room-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  z-index: 2000;
}
body[data-color-mode=dark] .video-room-container {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .video-room-container {
  border-color: rgb(148, 163, 184);
}

.video-room-container .n-layout-header--bordered {
  height: 52px;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: var(--shadow-xl) !important;
          box-shadow: var(--shadow-xl) !important;
}
.video-room-container .n-layout-header--bordered h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .video-room-container .n-layout-header--bordered h2 {
  color: rgb(248, 250, 252);
}

.video-room-container .n-layout-header--bordered .n-button {
  font-size: 1rem;
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .video-room-container .n-layout-header--bordered .n-button {
  color: rgb(248, 250, 252);
}

.video-room-container .n-layout-header--bordered .n-button:hover {
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .video-room-container .n-layout-header--bordered .n-button:hover {
  color: rgb(139, 92, 246);
}

.video-room-container .n-layout-content {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 140px);
  overflow: hidden;
}
.video-room-container .avater-chat-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  gap: var(--spacing-lg);
}
.video-room-container .avater-chat-wrap .n-avatar {
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
}
.video-room-container .avater-chat-wrap .n-avatar :deep(img) {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}

/* Premium Avatar Section */
.avatar-section {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.avatar-wrapper {
  width: 100%;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.avatar-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16/9;
  background-color: rgb(255, 255, 255);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .avatar-container {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .avatar-container {
  border-color: rgb(148, 163, 184);
}

.avatar-video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: rgb(241, 245, 249);
  color: rgb(148, 163, 184);
  border-radius: 0;
}
body[data-color-mode=dark] .avatar-placeholder {
  background-color: rgb(30, 41, 59);
}

body[data-color-mode=dark] .avatar-placeholder {
  color: rgb(148, 163, 184);
}

.avatar-placeholder > .avatar-image-wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: rgb(241, 245, 249);
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .avatar-placeholder > .avatar-image-wrapper {
  background-color: rgb(30, 41, 59);
}

body[data-color-mode=dark] .avatar-placeholder > .avatar-image-wrapper {
  color: rgb(148, 163, 184);
}

.avatar-placeholder > .avatar-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.avatar-placeholder > .call-button-wrapper {
  height: 60px;
}
.avatar-placeholder.loading {
  background-color: rgb(255, 255, 255);
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .avatar-placeholder.loading {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .avatar-placeholder.loading {
  color: rgb(248, 250, 252);
}

/* Premium Chat Section */
.chat-section {
  width: 100%;
  height: 100%;
}
.chat-section .chat-wrap {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-box-shadow: 0 22px 48px -32px rgba(10, 8, 20, 0.45);
          box-shadow: 0 22px 48px -32px rgba(10, 8, 20, 0.45);
}
.chat-section .chat-wrap .chat-header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 52px;
  padding: 0 var(--spacing-lg);
  border-bottom: 1px solid;
  font-size: 2rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  border-color: rgb(226, 232, 240);
  background-color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0;
}
body[data-color-mode=dark] .chat-section .chat-wrap .chat-header {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] .chat-section .chat-wrap .chat-header {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .chat-section .chat-wrap .chat-header {
  background-color: rgb(0, 0, 0);
}

.chat-section .chat-wrap .chat-header .n-button {
  padding: var(--spacing-sm) var(--spacing-md) !important;
}
.chat-section .chat-wrap .chat-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: var(--spacing-lg);
  background: transparent;
  scroll-behavior: smooth;
}
.chat-section .chat-wrap .chat-content::-webkit-scrollbar {
  width: 8px;
}
.chat-section .chat-wrap .chat-content::-webkit-scrollbar-track {
  background: transparent;
}
.chat-section .chat-wrap .chat-content::-webkit-scrollbar-thumb {
  background-color: rgb(226, 232, 240);
  border-radius: var(--radius-full);
}
body[data-color-mode=dark] .chat-section .chat-wrap .chat-content::-webkit-scrollbar-thumb {
  background-color: rgb(148, 163, 184);
}

.chat-section .chat-wrap .chat-content::-webkit-scrollbar-thumb:hover {
  background-color: rgb(203, 213, 225);
}
body[data-color-mode=dark] .chat-section .chat-wrap .chat-content::-webkit-scrollbar-thumb:hover {
  background-color: rgb(100, 116, 139);
}

/* Premium Input Section */
.input-section {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-sm);
}

.input-area {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: var(--spacing-sm);
}

.input-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: var(--spacing-md);
}
.input-row :deep(.n-input) {
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  background-color: rgb(255, 255, 255);
  color: rgb(15, 23, 42);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .input-row :deep(.n-input) {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .input-row :deep(.n-input) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .input-row :deep(.n-input) {
  color: rgb(248, 250, 252);
}

.input-row :deep(.n-input):hover {
  border-color: rgb(203, 213, 225);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .input-row :deep(.n-input):hover {
  border-color: rgb(100, 116, 139);
}

body[data-color-mode=dark] .input-row :deep(.n-input):hover {
  background-color: rgb(30, 41, 59);
}

.input-row :deep(.n-input).n-input--focus {
  border-color: rgb(167, 139, 250);
  -webkit-box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.2);
          box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.2);
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .input-row :deep(.n-input).n-input--focus {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .input-row :deep(.n-input).n-input--focus {
  background-color: rgb(0, 0, 0);
}

.input-row :deep(.n-input)::-webkit-input-placeholder {
  color: rgb(148, 163, 184);
}

.input-row :deep(.n-input)::-moz-placeholder {
  color: rgb(148, 163, 184);
}

.input-row :deep(.n-input):-ms-input-placeholder {
  color: rgb(148, 163, 184);
}

.input-row :deep(.n-input)::-ms-input-placeholder {
  color: rgb(148, 163, 184);
}

.input-row :deep(.n-input)::placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .input-row :deep(.n-input)::-webkit-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .input-row :deep(.n-input)::-moz-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .input-row :deep(.n-input):-ms-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .input-row :deep(.n-input)::-ms-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .input-row :deep(.n-input)::placeholder {
  color: rgb(148, 163, 184);
}

.stt-hint {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: rgba(99, 102, 241, 0.15);
  border-radius: var(--radius-sm);
  border: 1px solid;
  border-color: rgb(167, 139, 250);
}
body[data-color-mode=dark] .stt-hint {
  color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .stt-hint {
  border-color: rgb(167, 139, 250);
}

@media (max-width: 768px) {
  .video-room-container .n-layout-content {
    padding: 0;
    position: relative;
  }
  .video-room__body {
    gap: var(--spacing-lg);
  }
  .chat-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    z-index: 30;
  }
  .chat-wrap {
    background: rgba(13, 15, 27, 0.08);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    -webkit-box-shadow: 0 22px 48px -32px rgba(10, 8, 20, 0.45);
            box-shadow: 0 22px 48px -32px rgba(10, 8, 20, 0.45);
  }
  .chat-wrap .chat-header {
    height: 52px;
    padding: 0 var(--spacing-md);
  }
  .chat-wrap .chat-content {
    max-height: calc(100vh - 216px);
    padding: var(--spacing-md);
    background: transparent !important;
    overflow-y: auto;
  }
  .avatar-section {
    margin-top: 0;
    width: 100vw;
    height: calc(100vh - 164px);
    padding-top: 52px;
  }
  .avatar-section .n-avatar {
    width: 100%;
    height: 100%;
    border-radius: 0 !important;
  }
  .avatar-section .n-avatar :deep(img) {
    width: 100%;
    height: 100%;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    border-radius: 0;
  }
  .avatar-container {
    aspect-ratio: auto;
    border-radius: 0 !important;
  }
  .avatar-container video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: relative;
    z-index: 20;
  }
  .avatar-image-wrapper {
    position: relative;
  }
  .video-overlay-stop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    z-index: 50;
    opacity: 0;
  }
  .avater-chat-wrap.is-video-playing .chat-section {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity var(--transition-base);
    transition: opacity var(--transition-base);
  }
  .avater-chat-wrap.is-video-playing .avatar-container,
  .avater-chat-wrap.is-video-playing .avatar-container video,
  .avater-chat-wrap.is-video-playing .avatar-placeholder {
    position: relative;
    z-index: 40;
  }
  .avater-chat-wrap.is-video-playing .message-item__actions .n-button--success-type {
    background: linear-gradient(135deg, #22c55e, #16a34a);
  }
  .input-section {
    gap: var(--spacing-xs);
    padding-top: calc(42vh + var(--spacing-3xl));
  }
  .input-area {
    gap: var(--spacing-xs);
    padding-top: var(--spacing-sm);
    height: 112px !important;
  }
  .input-row {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    gap: var(--spacing-sm) !important;
  }
  .input-row button {
    width: calc(50% - var(--spacing-sm) / 2) !important;
  }
}
@media (max-width: 480px) {
  .video-room-container .n-layout-header--bordered {
    padding: 0 var(--spacing-md);
  }
  .avatar-container {
    aspect-ratio: auto;
  }
  .avatar-container video {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.character-detail-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-xl);
  min-height: 100vh;
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .character-detail-container {
  background-color: rgb(0, 0, 0);
}

@media (max-width: 768px) {
  .character-detail-container {
    padding: var(--spacing-md);
  }
}
.character-detail-container .character-detail-layout {
  padding: 0 !important;
  background: transparent !important;
}
.character-detail-container .character-detail-grid {
  gap: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.character-detail__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--spacing-xl);
}
@media (max-width: 768px) {
  .character-detail__profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: var(--spacing-lg);
  }
}

.character-detail__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-md);
}
@media (max-width: 768px) {
  .character-detail__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: var(--spacing-sm);
  }
}

.character-detail__header-title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .character-detail__header-title {
  color: rgb(248, 250, 252);
}

.character-detail__header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--spacing-sm);
}
@media (max-width: 768px) {
  .character-detail__header-actions {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.character-detail__manage-button {
  min-width: 124px;
  height: 40px;
  border-radius: var(--radius-md);
  font-weight: 500;
  letter-spacing: 0.2px;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  background-color: rgba(139, 92, 246, 0.08);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.16);
}
.character-detail__manage-button:hover {
  background-color: rgba(139, 92, 246, 0.14);
}
.character-detail__manage-button--danger {
  background-color: rgba(225, 67, 67, 0.08);
  color: #e14343;
  border-color: rgba(225, 67, 67, 0.16);
}
.character-detail__manage-button--danger:hover {
  background-color: rgba(225, 67, 67, 0.14);
}
@media (max-width: 768px) {
  .character-detail__manage-button {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    height: 44px;
  }
}

.character-detail__avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-md);
  min-width: 160px;
}
@media (max-width: 768px) {
  .character-detail__avatar {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.character-detail__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 768px) {
  .character-detail__photo {
    width: 100%;
    height: auto;
    min-height: 220px;
    border-radius: var(--radius-xl);
  }
}

.character-detail__avatar-image,
.character-detail__avatar-placeholder {
  cursor: pointer;
  -webkit-transition: -webkit-transform var(--transition-base), -webkit-box-shadow var(--transition-base);
  transition: -webkit-transform var(--transition-base), -webkit-box-shadow var(--transition-base);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  transition: transform var(--transition-base), box-shadow var(--transition-base), -webkit-transform var(--transition-base), -webkit-box-shadow var(--transition-base);
  -webkit-box-shadow: 0 12px 24px -8px rgba(12, 10, 18, 0.35);
          box-shadow: 0 12px 24px -8px rgba(12, 10, 18, 0.35);
}
.character-detail__avatar-image img,
.character-detail__avatar-placeholder img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .character-detail__avatar-image,
  .character-detail__avatar-placeholder {
    width: 100% !important;
    height: 100% !important;
    border-radius: var(--radius-xl);
  }
}

.character-detail__summary {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 260px;
          flex: 1 1 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-md);
}
@media (max-width: 768px) {
  .character-detail__summary {
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    background-color: rgb(241, 245, 249);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    border: 1px solid;
    border-color: rgb(226, 232, 240);
    -webkit-box-shadow: 0 18px 36px -28px rgba(10, 12, 20, 0.4);
            box-shadow: 0 18px 36px -28px rgba(10, 12, 20, 0.4);
  }
  body[data-color-mode=dark] .character-detail__summary {
    background-color: rgb(30, 41, 59);
  }
  body[data-color-mode=dark] .character-detail__summary {
    border-color: rgb(148, 163, 184);
  }
}

.character-detail__identity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  background-color: rgb(241, 245, 249);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: 0 14px 36px -24px rgba(19, 11, 35, 0.4);
          box-shadow: 0 14px 36px -24px rgba(19, 11, 35, 0.4);
}
body[data-color-mode=dark] .character-detail__identity {
  background-color: rgb(30, 41, 59);
}

body[data-color-mode=dark] .character-detail__identity {
  border-color: rgb(148, 163, 184);
}

@media (max-width: 768px) {
  .character-detail__identity {
    background-color: rgb(255, 255, 255);
    border: 1px solid;
    border-color: rgb(203, 213, 225);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  body[data-color-mode=dark] .character-detail__identity {
    background-color: rgb(0, 0, 0);
  }
  body[data-color-mode=dark] .character-detail__identity {
    border-color: rgb(100, 116, 139);
  }
}

.character-detail__identity-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: var(--spacing-sm);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.character-detail__identity-label {
  position: relative;
  min-width: 64px;
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px;
}
body[data-color-mode=dark] .character-detail__identity-label {
  color: rgb(248, 250, 252);
}

.character-detail__identity-label::after {
  content: ":";
  margin-left: var(--spacing-xs);
  color: rgba(100, 116, 139, 0.8);
}

.character-detail__identity-value {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  line-height: 1.6;
}
body[data-color-mode=dark] .character-detail__identity-value {
  color: rgb(220, 220, 220);
}

.character-detail__trained-badge {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: var(--spacing-xs);
}

.character-detail__profile-extra {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-lg);
}

.character-detail__detail-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-xs);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  background-color: rgb(241, 245, 249);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .character-detail__detail-section {
  background-color: rgb(30, 41, 59);
}

body[data-color-mode=dark] .character-detail__detail-section {
  border-color: rgb(148, 163, 184);
}

.character-detail__detail-title {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0 0 var(--spacing-xs) 0;
  letter-spacing: 0.2px;
}
body[data-color-mode=dark] .character-detail__detail-title {
  color: rgb(248, 250, 252);
}

.character-detail__bio,
.character-detail__detail-text {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  line-height: 1.7;
  letter-spacing: 0.1px;
  white-space: pre-line;
}
body[data-color-mode=dark] .character-detail__bio,
body[data-color-mode=dark] .character-detail__detail-text {
  color: rgb(220, 220, 220);
}

.character-detail__detail-text--sub {
  margin-top: var(--spacing-xs);
  padding-left: var(--spacing-md);
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  border-left: 2px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .character-detail__detail-text--sub {
  color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .character-detail__detail-text--sub {
  border-color: rgb(148, 163, 184);
}

.character-detail__a2e-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-xs);
}

.character-detail__voice-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(99, 102, 241, 0.05));
  -webkit-box-shadow: 0 10px 24px -18px rgba(21, 11, 36, 0.38);
          box-shadow: 0 10px 24px -18px rgba(21, 11, 36, 0.38);
}
@media (max-width: 768px) {
  .character-detail__voice-control {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .character-detail__voice-control .character-detail__voice-button {
    width: 100%;
    min-width: 0;
    height: 44px;
  }
  .character-detail__voice-control .character-detail__voice-caption {
    text-align: center;
  }
}

.character-detail__voice-button {
  min-width: 140px;
}

.character-detail__voice-caption {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .character-detail__voice-caption {
  color: rgb(148, 163, 184);
}

.character-detail__profile-bio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 var(--spacing-md) var(--spacing-sm);
  border-top: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .character-detail__profile-bio {
  border-color: rgb(148, 163, 184);
}

@media (max-width: 768px) {
  .character-detail__profile-bio {
    width: 100%;
  }
}

.character-detail__profile-toggle {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-lg);
  border: none;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.04));
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  -webkit-box-shadow: 0 6px 14px -8px rgba(12, 10, 18, 0.4);
          box-shadow: 0 6px 14px -8px rgba(12, 10, 18, 0.4);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .character-detail__profile-toggle {
  color: rgb(248, 250, 252);
}

.character-detail__profile-toggle:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(139, 92, 246, 0.08));
}
@media (max-width: 768px) {
  .character-detail__profile-toggle {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.character-detail__profile-toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform var(--transition-base);
  transition: -webkit-transform var(--transition-base);
  transition: transform var(--transition-base);
  transition: transform var(--transition-base), -webkit-transform var(--transition-base);
}
.character-detail__profile-toggle-icon circle {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 2;
  -webkit-transition: fill var(--transition-base), stroke var(--transition-base);
  transition: fill var(--transition-base), stroke var(--transition-base);
}
.character-detail__profile-toggle-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: stroke var(--transition-base);
  transition: stroke var(--transition-base);
}
.character-detail__profile-toggle-icon.is-open {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.character-detail__profile-toggle-icon.is-open circle {
  fill: currentColor;
  stroke: currentColor;
}
.character-detail__profile-toggle-icon.is-open path {
  stroke: #f3f0ff;
}

.character-detail__engage-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--spacing-md);
}
@media (max-width: 768px) {
  .character-detail__engage-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--spacing-sm);
  }
  .character-detail__engage-actions button {
    width: 100% !important;
  }
}

.character-detail__engage-button {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 180px;
          flex: 1 1 180px;
  min-width: 160px;
  height: 48px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  letter-spacing: 0.2px;
  -webkit-transition: -webkit-transform var(--transition-base), -webkit-box-shadow var(--transition-base);
  transition: -webkit-transform var(--transition-base), -webkit-box-shadow var(--transition-base);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  transition: transform var(--transition-base), box-shadow var(--transition-base), -webkit-transform var(--transition-base), -webkit-box-shadow var(--transition-base);
  color: rgb(15, 23, 42);
  border: 1px solid rgba(139, 92, 246, 0.12);
}
body[data-color-mode=dark] .character-detail__engage-button {
  color: rgb(248, 250, 252);
}

.character-detail__engage-button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 16px 28px -12px rgba(15, 15, 20, 0.28);
          box-shadow: 0 16px 28px -12px rgba(15, 15, 20, 0.28);
}
@media (max-width: 768px) {
  .character-detail__engage-button {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

.character-mailbox-modal :deep(.n-card) {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 92, 246, 0.16);
  background-color: rgb(241, 245, 249);
  -webkit-box-shadow: 0 24px 48px -32px rgba(15, 15, 23, 0.42);
          box-shadow: 0 24px 48px -32px rgba(15, 15, 23, 0.42);
}
body[data-color-mode=dark] .character-mailbox-modal :deep(.n-card) {
  background-color: rgb(30, 41, 59);
}

.character-mailbox-modal :deep(.n-card-header) {
  padding-bottom: 0;
}

.character-mailbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-lg);
}
.character-mailbox__tabs-wrapper {
  padding: 0 var(--spacing-xs);
  border-bottom: 1px solid rgba(139, 92, 246, 0.18);
}
.character-mailbox__tabs :deep(.n-tabs-nav) {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.character-mailbox__tabs :deep(.n-tabs-tab) {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  padding: var(--spacing-sm) var(--spacing-md);
}
body[data-color-mode=dark] .character-mailbox__tabs :deep(.n-tabs-tab) {
  color: rgb(248, 250, 252);
}

.character-mailbox__tabs :deep(.n-tabs-bar) {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgb(99, 102, 241) 0%, rgb(139, 92, 246) 100%);
  -webkit-box-shadow: 0 8px 16px -12px rgba(99, 102, 241, 0.6);
          box-shadow: 0 8px 16px -12px rgba(99, 102, 241, 0.6);
}
.character-mailbox__content {
  min-height: 260px;
}
.character-mailbox__composer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 247, 255, 0.88));
  border: 1px solid rgba(139, 92, 246, 0.16);
  -webkit-box-shadow: 0 20px 40px -30px rgba(19, 10, 35, 0.45);
          box-shadow: 0 20px 40px -30px rgba(19, 10, 35, 0.45);
}
.character-mailbox__composer-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--spacing-md);
}
.character-mailbox__composer-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-xs);
}
.character-mailbox__composer-label {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px;
}
body[data-color-mode=dark] .character-mailbox__composer-label {
  color: rgb(248, 250, 252);
}

.character-mailbox__composer-caption {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .character-mailbox__composer-caption {
  color: rgb(220, 220, 220);
}

.character-mailbox__composer-submit {
  min-width: 116px;
}
.character-mailbox__composer-textarea :deep(.n-input__textarea) {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.1px;
  border-radius: var(--radius-md);
}
body[data-color-mode=dark] .character-mailbox__composer-textarea :deep(.n-input__textarea) {
  color: rgb(248, 250, 252);
}

.character-mailbox__attachments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-sm);
}
.character-mailbox__attachment-label {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(124, 58, 237);
}
body[data-color-mode=dark] .character-mailbox__attachment-label {
  color: rgb(124, 58, 237);
}

.character-mailbox__attachment-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-sm);
}
@media (min-width: 769px) {
  .character-mailbox__attachment-fields {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.character-mailbox__attachment-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.character-mailbox__attachment-input :deep(.n-input__input-el) {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .character-mailbox__attachment-input :deep(.n-input__input-el) {
  color: rgb(248, 250, 252);
}

.character-mailbox__composer-alert {
  border-radius: var(--radius-md);
}
.character-mailbox__composer-alert :deep(.n-alert-body__content) {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .character-mailbox__composer-alert :deep(.n-alert-body__content) {
  color: rgb(248, 250, 252);
}

.character-mailbox__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-md);
}
.character-mailbox__list.has-composer {
  margin-top: var(--spacing-sm);
}
.character-mailbox__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-sm);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.92), rgba(236, 233, 252, 0.76));
  border: 1px solid rgba(139, 92, 246, 0.12);
  -webkit-box-shadow: 0 20px 40px -32px rgba(19, 11, 35, 0.45);
          box-shadow: 0 20px 40px -32px rgba(19, 11, 35, 0.45);
}
.character-mailbox__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-sm);
}
.character-mailbox__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-sm);
}
.character-mailbox__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 var(--spacing-sm);
  height: 28px;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.2px;
}
body[data-color-mode=dark] .character-mailbox__badge {
  color: rgb(248, 250, 252);
}

.character-mailbox__badge--received {
  background: rgba(99, 102, 241, 0.14);
  color: #4c1d95;
}
.character-mailbox__badge--sent {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}
.character-mailbox__meta-title {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .character-mailbox__meta-title {
  color: rgb(248, 250, 252);
}

.character-mailbox__timestamp {
  margin-left: auto;
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .character-mailbox__timestamp {
  color: rgb(148, 163, 184);
}

.character-mailbox__message {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  line-height: 1.7;
  letter-spacing: 0.1px;
  white-space: pre-line;
}
body[data-color-mode=dark] .character-mailbox__message {
  color: rgb(220, 220, 220);
}

.character-mailbox__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--spacing-sm);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.character-mailbox__action-button {
  min-width: 116px;
  height: 40px;
}
.character-mailbox__pagination {
  -ms-flex-item-align: center;
      align-self: center;
  padding-top: var(--spacing-sm);
}
.character-mailbox__empty {
  padding: var(--spacing-xl) 0;
}
.character-mailbox__empty :deep(.n-empty__description) {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .character-mailbox__empty :deep(.n-empty__description) {
  color: rgb(148, 163, 184);
}

:deep(.n-card) {
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  overflow: hidden;
  background-color: rgb(248, 250, 252);
}
body[data-color-mode=dark] :deep(.n-card) {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] :deep(.n-card) {
  background-color: rgb(15, 23, 42);
}

:deep(.n-card):hover {
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}

:deep(.n-layout-content) {
  padding: 0 !important;
}

:deep(.n-spin) {
  width: 100%;
}

.character-list-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-xl);
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .character-list-container {
  background-color: rgb(0, 0, 0);
}

@media (max-width: 768px) {
  .character-list-container {
    padding: var(--spacing-md);
  }
}
.character-list-container .character-list-section {
  margin-bottom: var(--spacing-4xl);
  position: relative;
  z-index: 1;
}
.character-list-container .character-list-section:last-child {
  margin-bottom: 0;
}
.character-list-container .character-list-section.default-characters {
  margin-bottom: var(--spacing-5xl);
}
.character-list-container .character-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 1;
}
@media (min-width: 769px) {
  .character-list-container .character-list__header {
    margin-bottom: var(--spacing-2xl);
  }
}
@media (max-width: 768px) {
  .character-list-container .character-list__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: var(--spacing-md);
  }
}
.character-list-container .character-list__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .character-list-container .character-list__title {
  color: rgb(248, 250, 252);
}

.character-list-container .character-list__content {
  position: relative;
  z-index: 1;
  min-height: 200px;
}
.character-list-container .character-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  padding: 0;
}
@media (max-width: 768px) {
  .character-list-container .character-list__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}
.character-list-container .character-list__card {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  cursor: pointer;
  position: relative;
  padding: var(--spacing-lg);
}
body[data-color-mode=dark] .character-list-container .character-list__card {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .character-list-container .character-list__card {
  border-color: rgb(148, 163, 184);
}

.character-list-container .character-list__card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
  border-color: rgb(167, 139, 250);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .character-list-container .character-list__card:hover {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .character-list-container .character-list__card:hover {
  background-color: rgb(30, 41, 59);
}

.character-list-container .character-list__card:hover .character-list__avatar {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.character-list-container .character-list__card:active {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.character-list-container .character-list__card:focus-visible {
  outline: 2px solid;
  border-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .character-list-container .character-list__card:focus-visible {
  border-color: rgb(139, 92, 246);
}

.character-list-container .character-list__avatar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-md);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.character-list-container .character-list__avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform var(--transition-base);
  transition: -webkit-transform var(--transition-base);
  transition: transform var(--transition-base);
  transition: transform var(--transition-base), -webkit-transform var(--transition-base);
  border-radius: var(--radius-lg);
  overflow: hidden;
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.character-list-container .character-list__avatar:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.character-list-container .character-list__info {
  width: 100%;
  text-align: center;
}
.character-list-container .character-list__name-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.character-list-container .character-list__name {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0;
  letter-spacing: -0.3px;
  word-break: break-word;
}
body[data-color-mode=dark] .character-list-container .character-list__name {
  color: rgb(248, 250, 252);
}

.character-list-container .character-list__trained-badge {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.character-list-container .character-list__title {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  font-size: 14px;
  margin-bottom: var(--spacing-xs);
  display: block;
}
body[data-color-mode=dark] .character-list-container .character-list__title {
  color: rgb(220, 220, 220);
}

.character-list-container .character-list__relation {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0 0 var(--spacing-xs) 0;
  letter-spacing: 0.1px;
  display: block;
}
body[data-color-mode=dark] .character-list-container .character-list__relation {
  color: rgb(220, 220, 220);
}

.character-list-container .character-list__date-range {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  margin: 0 0 var(--spacing-xs) 0;
  letter-spacing: 0.1px;
  display: block;
  font-size: 12px;
}
body[data-color-mode=dark] .character-list-container .character-list__date-range {
  color: rgb(148, 163, 184);
}

.character-list-container .character-list__bio {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  display: block;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: var(--spacing-xs);
  text-align: left;
  max-height: 60px;
  overflow: hidden;
}
body[data-color-mode=dark] .character-list-container .character-list__bio {
  color: rgb(220, 220, 220);
}

.character-list-container .character-list__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: var(--spacing-xs);
  padding-top: var(--spacing-xs);
  border-top: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .character-list-container .character-list__meta {
  border-color: rgb(148, 163, 184);
}

.character-list-container .character-list__empty {
  text-align: center;
  padding: var(--spacing-4xl) var(--spacing-lg);
  position: relative;
  z-index: 1;
}
.character-list-container .character-list__empty .n-empty {
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .character-list-container .character-list__empty .n-empty {
  color: rgb(220, 220, 220);
}

.character-list-container .character-list__empty .n-empty__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  margin-top: var(--spacing-md);
}
body[data-color-mode=dark] .character-list-container .character-list__empty .n-empty__description {
  color: rgb(148, 163, 184);
}

.character-list-container .character-list-layout {
  min-height: calc(100vh - 100px);
}
.character-list-container .character-list__add-btn {
  margin-left: auto;
}
@media (max-width: 768px) {
  .character-list-container .character-list__add-btn {
    width: 100%;
    margin-left: 0;
  }
}
.character-list-container .n-layout-content {
  padding: 0 !important;
}
.character-list-container .n-spin {
  width: 100%;
}
.character-list-container .n-avatar {
  border: 2px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .character-list-container .n-avatar {
  border-color: rgb(148, 163, 184);
}

.character-list-container .n-avatar:hover {
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-color: rgb(167, 139, 250);
}
body[data-color-mode=dark] .character-list-container .n-avatar:hover {
  border-color: rgb(167, 139, 250);
}

.character-list-container .n-text {
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .character-list-container .n-text {
  color: rgb(248, 250, 252);
}

.character-list-container .n-text[depth="3"] {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .character-list-container .n-text[depth="3"] {
  color: rgb(148, 163, 184);
}

.character-list__photo-modal .n-card {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-xl);
          box-shadow: var(--shadow-xl);
  width: 80vw !important;
  max-width: 80vw !important;
  max-height: 95vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
body[data-color-mode=dark] .character-list__photo-modal .n-card {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .character-list__photo-modal .n-card {
  border-color: rgb(148, 163, 184);
}

@media (max-width: 768px) {
  .character-list__photo-modal .n-card {
    width: 90vw !important;
    max-width: 90vw !important;
  }
}
.character-list__photo-modal .n-card-header {
  border-color: rgb(226, 232, 240);
  padding: var(--spacing-lg) var(--spacing-xl);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
body[data-color-mode=dark] .character-list__photo-modal .n-card-header {
  border-color: rgb(148, 163, 184);
}

@media (max-width: 768px) {
  .character-list__photo-modal .n-card-header {
    padding: var(--spacing-md) var(--spacing-lg);
  }
  .character-list__photo-modal .n-card-header .n-card-header__main {
    font-size: 1rem;
  }
}
.character-list__photo-modal .n-card-header .n-card-header__main {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .character-list__photo-modal .n-card-header .n-card-header__main {
  color: rgb(248, 250, 252);
}

.character-list__photo-modal .n-card__content {
  padding: var(--spacing-xl);
  text-align: center;
  background-color: rgb(255, 255, 255);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body[data-color-mode=dark] .character-list__photo-modal .n-card__content {
  background-color: rgb(0, 0, 0);
}

@media (max-width: 768px) {
  .character-list__photo-modal .n-card__content {
    padding: var(--spacing-md);
  }
}

.character-list__photo-container {
  width: 100%;
  height: calc(80vh - 140px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.character-list__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: var(--radius-lg);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}

.character-update__photo-upload-item {
  width: 50%;
  margin: 0 auto;
}

.letterbox-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-lg);
  background-color: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
}
body[data-color-mode=dark] .letterbox-container {
  background-color: rgb(0, 0, 0);
}

@media (min-width: 768px) {
  .letterbox-container {
    padding: var(--spacing-2xl) var(--spacing-xl);
  }
}
.letterbox-container::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.letterbox-container .letterbox-header {
  margin-bottom: var(--spacing-2xl);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .letterbox-container .letterbox-header {
    margin-bottom: var(--spacing-3xl);
  }
}
.letterbox-container .letterbox-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-md);
}
.letterbox-container .letterbox-header__back-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  background-color: rgb(248, 250, 252);
  color: rgb(15, 23, 42);
  cursor: pointer;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  padding: 0;
}
body[data-color-mode=dark] .letterbox-container .letterbox-header__back-btn {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .letterbox-container .letterbox-header__back-btn {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .letterbox-container .letterbox-header__back-btn {
  color: rgb(248, 250, 252);
}

.letterbox-container .letterbox-header__back-btn:hover {
  border-color: rgb(139, 92, 246);
  background-color: rgb(241, 245, 249);
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
}
body[data-color-mode=dark] .letterbox-container .letterbox-header__back-btn:hover {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .letterbox-container .letterbox-header__back-btn:hover {
  background-color: rgb(30, 41, 59);
}

.letterbox-container .letterbox-header__back-btn:active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.letterbox-container .letterbox-header__back-btn:focus-visible {
  outline: 2px solid;
  border-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-header__back-btn:focus-visible {
  border-color: rgb(139, 92, 246);
}

.letterbox-container .letterbox-header__back-icon {
  width: 20px;
  height: 20px;
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .letterbox-container .letterbox-header__back-icon {
  color: rgb(248, 250, 252);
}

.letterbox-container .letterbox-header__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.letterbox-container .letterbox-header__title {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-xs);
  letter-spacing: -0.5px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-header__title {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .letterbox-container .letterbox-header__title {
    font-size: 2.9rem;
    line-height: 137.931%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
    margin-bottom: var(--spacing-sm);
  }
  body[data-color-mode=dark] .letterbox-container .letterbox-header__title {
    color: rgb(248, 250, 252);
  }
}
.letterbox-container .letterbox-header__subtitle {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-header__subtitle {
  color: rgb(220, 220, 220);
}

.letterbox-container .letterbox-tabs {
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .letterbox-container .letterbox-tabs {
    margin-bottom: var(--spacing-2xl);
  }
}
.letterbox-container .letterbox-tabs__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-xs);
  border-bottom: 2px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .letterbox-container .letterbox-tabs__wrapper {
  border-color: rgb(148, 163, 184);
}

.letterbox-container .letterbox-tabs__tab {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  padding: var(--spacing-md) var(--spacing-lg);
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  position: relative;
  bottom: -2px;
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-tabs__tab {
  color: rgb(220, 220, 220);
}

.letterbox-container .letterbox-tabs__tab:hover {
  color: rgb(139, 92, 246);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .letterbox-container .letterbox-tabs__tab:hover {
  color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .letterbox-container .letterbox-tabs__tab:hover {
  background-color: rgb(30, 41, 59);
}

.letterbox-container .letterbox-tabs__tab:focus-visible {
  outline: 2px solid;
  border-color: rgb(139, 92, 246);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
body[data-color-mode=dark] .letterbox-container .letterbox-tabs__tab:focus-visible {
  border-color: rgb(139, 92, 246);
}

.letterbox-container .letterbox-tabs__tab--active {
  color: rgb(139, 92, 246);
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
  border-bottom-color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .letterbox-container .letterbox-tabs__tab--active {
  color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .letterbox-container .letterbox-tabs__tab--active {
  color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .letterbox-container .letterbox-tabs__tab--active {
  border-bottom-color: rgb(139, 92, 246);
}

.letterbox-container .letterbox-main {
  position: relative;
  z-index: 1;
  min-height: 400px;
}
.letterbox-container .letterbox-panel {
  -webkit-animation: fadeIn 0.2s ease-in-out;
          animation: fadeIn 0.2s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.letterbox-container .letterbox-list {
  margin-bottom: var(--spacing-xl);
}
.letterbox-container .letterbox-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-lg);
}
.letterbox-container .letterbox-list__empty {
  padding: var(--spacing-4xl) var(--spacing-lg);
  text-align: center;
}
.letterbox-container .letterbox-item {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  padding: var(--spacing-xl);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .letterbox-container .letterbox-item {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .letterbox-container .letterbox-item {
  border-color: rgb(148, 163, 184);
}

.letterbox-container .letterbox-item:hover {
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
  border-color: rgb(167, 139, 250);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
body[data-color-mode=dark] .letterbox-container .letterbox-item:hover {
  border-color: rgb(167, 139, 250);
}

.letterbox-container .letterbox-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.letterbox-container .letterbox-item__badge {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(255, 255, 255);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  background-color: rgb(139, 92, 246);
  letter-spacing: 0.2px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-item__badge {
  color: rgb(255, 255, 255);
}

body[data-color-mode=dark] .letterbox-container .letterbox-item__badge {
  background-color: rgb(139, 92, 246);
}

.letterbox-container .letterbox-item__badge--received {
  background-color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .letterbox-container .letterbox-item__badge--received {
  background-color: rgb(139, 92, 246);
}

.letterbox-container .letterbox-item__badge--sent {
  background-color: rgb(167, 139, 250);
}
body[data-color-mode=dark] .letterbox-container .letterbox-item__badge--sent {
  background-color: rgb(167, 139, 250);
}

.letterbox-container .letterbox-item__date {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-left: auto;
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-item__date {
  color: rgb(220, 220, 220);
}

.letterbox-container .letterbox-item__content {
  margin-bottom: var(--spacing-md);
}
.letterbox-container .letterbox-item__text {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.7;
}
body[data-color-mode=dark] .letterbox-container .letterbox-item__text {
  color: rgb(248, 250, 252);
}

.letterbox-container .letterbox-item__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-sm);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: var(--spacing-md);
  border-top: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .letterbox-container .letterbox-item__actions {
  border-color: rgb(148, 163, 184);
}

.letterbox-container .letterbox-item__action-btn {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(139, 92, 246);
  background-color: rgb(248, 250, 252);
  cursor: pointer;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-xs);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-item__action-btn {
  color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .letterbox-container .letterbox-item__action-btn {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .letterbox-container .letterbox-item__action-btn {
  background-color: rgb(15, 23, 42);
}

.letterbox-container .letterbox-item__action-btn:hover:not(:disabled) {
  background-color: rgb(139, 92, 246);
  color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .letterbox-container .letterbox-item__action-btn:hover:not(:disabled) {
  background-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .letterbox-container .letterbox-item__action-btn:hover:not(:disabled) {
  color: rgb(255, 255, 255);
}

.letterbox-container .letterbox-item__action-btn:active:not(:disabled) {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.letterbox-container .letterbox-item__action-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.letterbox-container .letterbox-item__action-btn:focus-visible {
  outline: 2px solid;
  border-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-item__action-btn:focus-visible {
  border-color: rgb(139, 92, 246);
}

.letterbox-container .letterbox-item__action-btn--playing {
  background-color: rgb(139, 92, 246);
  color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .letterbox-container .letterbox-item__action-btn--playing {
  background-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .letterbox-container .letterbox-item__action-btn--playing {
  color: rgb(255, 255, 255);
}

.letterbox-container .letterbox-item__action-icon {
  width: 16px;
  height: 16px;
}
.letterbox-container .letterbox-pagination {
  margin-top: var(--spacing-xl);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.letterbox-container .letterbox-compose {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  padding: var(--spacing-2xl);
  position: relative;
  z-index: 1;
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose {
  border-color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .letterbox-container .letterbox-compose {
    padding: var(--spacing-3xl);
  }
}
.letterbox-container .letterbox-compose__header {
  margin-bottom: var(--spacing-2xl);
}
.letterbox-container .letterbox-compose__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.5px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__title {
  color: rgb(248, 250, 252);
}

.letterbox-container .letterbox-compose__subtitle {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__subtitle {
  color: rgb(220, 220, 220);
}

.letterbox-container .letterbox-compose__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-xl);
}
.letterbox-container .letterbox-compose__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-sm);
}
.letterbox-container .letterbox-compose__label {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__label {
  color: rgb(248, 250, 252);
}

.letterbox-container .letterbox-compose__label-optional {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  font-weight: 400;
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__label-optional {
  color: rgb(220, 220, 220);
}

.letterbox-container .letterbox-compose__textarea {
  width: 100%;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  background-color: rgb(248, 250, 252);
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  resize: vertical;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__textarea {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__textarea {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__textarea {
  color: rgb(248, 250, 252);
}

.letterbox-container .letterbox-compose__textarea:focus {
  outline: none;
  border-color: rgb(139, 92, 246);
  -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
          box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__textarea:focus {
  border-color: rgb(139, 92, 246);
}

.letterbox-container .letterbox-compose__textarea::-webkit-input-placeholder {
  color: rgb(148, 163, 184);
}

.letterbox-container .letterbox-compose__textarea::-moz-placeholder {
  color: rgb(148, 163, 184);
}

.letterbox-container .letterbox-compose__textarea:-ms-input-placeholder {
  color: rgb(148, 163, 184);
}

.letterbox-container .letterbox-compose__textarea::-ms-input-placeholder {
  color: rgb(148, 163, 184);
}

.letterbox-container .letterbox-compose__textarea::placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__textarea::-webkit-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__textarea::-moz-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__textarea:-ms-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__textarea::-ms-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__textarea::placeholder {
  color: rgb(148, 163, 184);
}

.letterbox-container .letterbox-compose__input {
  width: 100%;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  background-color: rgb(248, 250, 252);
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__input {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__input {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__input {
  color: rgb(248, 250, 252);
}

.letterbox-container .letterbox-compose__input:focus {
  outline: none;
  border-color: rgb(139, 92, 246);
  -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
          box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__input:focus {
  border-color: rgb(139, 92, 246);
}

.letterbox-container .letterbox-compose__input::-webkit-input-placeholder {
  color: rgb(148, 163, 184);
}

.letterbox-container .letterbox-compose__input::-moz-placeholder {
  color: rgb(148, 163, 184);
}

.letterbox-container .letterbox-compose__input:-ms-input-placeholder {
  color: rgb(148, 163, 184);
}

.letterbox-container .letterbox-compose__input::-ms-input-placeholder {
  color: rgb(148, 163, 184);
}

.letterbox-container .letterbox-compose__input::placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__input::-webkit-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__input::-moz-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__input:-ms-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__input::-ms-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__input::placeholder {
  color: rgb(148, 163, 184);
}

.letterbox-container .letterbox-compose__hint {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__hint {
  color: rgb(220, 220, 220);
}

.letterbox-container .letterbox-compose__error {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(239, 68, 68);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(252, 165, 165);
  background-color: rgb(254, 242, 242);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__error {
  color: rgb(248, 113, 113);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__error {
  border-color: rgba(185, 28, 28, 0.5);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__error {
  background-color: rgba(127, 29, 29, 0.3);
}

.letterbox-container .letterbox-compose__success {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(16, 185, 129);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(167, 243, 208);
  background-color: rgb(236, 253, 245);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__success {
  color: rgb(74, 222, 128);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__success {
  border-color: rgba(5, 150, 105, 0.5);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__success {
  background-color: rgba(6, 78, 59, 0.3);
}

.letterbox-container .letterbox-compose__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-md);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: var(--spacing-lg);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.letterbox-container .letterbox-compose__btn {
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(255, 255, 255);
  letter-spacing: 0.3px;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  min-width: 120px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn {
  color: rgb(255, 255, 255);
}

.letterbox-container .letterbox-compose__btn:hover:not(:disabled) {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}
.letterbox-container .letterbox-compose__btn:active:not(:disabled) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.letterbox-container .letterbox-compose__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.letterbox-container .letterbox-compose__btn:focus-visible {
  outline: 2px solid;
  border-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn:focus-visible {
  border-color: rgb(139, 92, 246);
}

.letterbox-container .letterbox-compose__btn--cancel {
  background-color: rgb(255, 255, 255);
  border-color: rgb(167, 139, 250);
  color: rgb(167, 139, 250);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--cancel {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--cancel {
  border-color: rgb(124, 114, 183);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--cancel {
  color: rgb(124, 114, 183);
}

.letterbox-container .letterbox-compose__btn--cancel:hover:not(:disabled) {
  background-color: rgb(255, 255, 255);
  border-color: rgb(139, 92, 246);
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--cancel:hover:not(:disabled) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--cancel:hover:not(:disabled) {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--cancel:hover:not(:disabled) {
  color: rgb(139, 92, 246);
}

.letterbox-container .letterbox-compose__btn--cancel:active:not(:disabled) {
  background-color: rgb(255, 255, 255);
  border-color: rgb(124, 58, 237);
  color: rgb(124, 58, 237);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--cancel:active:not(:disabled) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--cancel:active:not(:disabled) {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--cancel:active:not(:disabled) {
  color: rgb(167, 139, 250);
}

.letterbox-container .letterbox-compose__btn--submit {
  background-color: rgb(139, 92, 246);
  border-color: rgb(139, 92, 246);
  color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--submit {
  background-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--submit {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--submit {
  color: rgb(255, 255, 255);
}

.letterbox-container .letterbox-compose__btn--submit:hover:not(:disabled) {
  background-color: rgb(124, 58, 237);
  border-color: rgb(124, 58, 237);
  color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--submit:hover:not(:disabled) {
  background-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--submit:hover:not(:disabled) {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--submit:hover:not(:disabled) {
  color: rgb(255, 255, 255);
}

.letterbox-container .letterbox-compose__btn--submit:active:not(:disabled) {
  background-color: rgb(109, 40, 217);
  border-color: rgb(109, 40, 217);
  color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--submit:active:not(:disabled) {
  background-color: rgb(196, 181, 253);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--submit:active:not(:disabled) {
  border-color: rgb(196, 181, 253);
}

body[data-color-mode=dark] .letterbox-container .letterbox-compose__btn--submit:active:not(:disabled) {
  color: rgb(255, 255, 255);
}

.login-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 70vh;
  padding: var(--spacing-lg);
  background-color: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
}
body[data-color-mode=dark] .login-container {
  background-color: rgb(0, 0, 0);
}

.login-container::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.login-container .login-button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: var(--spacing-sm);
  width: 100%;
}
.login-container .login-button-group > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.login-container .login-button-group .n-button {
  height: 36px;
  width: 100%;
}

.login-card {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-xl);
          box-shadow: var(--shadow-xl);
  background-color: rgb(255, 255, 255);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  overflow: hidden;
}
body[data-color-mode=dark] .login-card {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .login-card {
  background-color: rgb(0, 0, 0);
}

.login-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow-xl);
          box-shadow: var(--shadow-xl);
  border-color: rgb(203, 213, 225);
}
body[data-color-mode=dark] .login-card:hover {
  border-color: rgb(100, 116, 139);
}

.login-card :deep(.n-card-header) {
  padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  border-bottom: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .login-card :deep(.n-card-header) {
  border-color: rgb(148, 163, 184);
}

.login-card :deep(.n-card-header) .n-card-header__main {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, rgb(167, 139, 250) 0%, rgb(139, 92, 246) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body[data-color-mode=dark] .login-card :deep(.n-card-header) .n-card-header__main {
  color: rgb(248, 250, 252);
}

.login-card :deep(.n-card__content) {
  padding: var(--spacing-xl);
}
.login-card :deep(.n-form-item) {
  margin-bottom: var(--spacing-lg);
}
.login-card :deep(.n-form-item) .n-form-item-label {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.2px;
}
body[data-color-mode=dark] .login-card :deep(.n-form-item) .n-form-item-label {
  color: rgb(248, 250, 252);
}

.login-card :deep(.n-input) {
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(203, 213, 225);
  background-color: rgb(226, 232, 240);
  color: rgb(15, 23, 42);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
body[data-color-mode=dark] .login-card :deep(.n-input) {
  border-color: rgb(100, 116, 139);
}

body[data-color-mode=dark] .login-card :deep(.n-input) {
  background-color: rgb(51, 65, 85);
}

body[data-color-mode=dark] .login-card :deep(.n-input) {
  color: rgb(248, 250, 252);
}

.login-card :deep(.n-input):hover {
  border-color: rgb(226, 232, 240);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .login-card :deep(.n-input):hover {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .login-card :deep(.n-input):hover {
  background-color: rgb(30, 41, 59);
}

.login-card :deep(.n-input).n-input--focus {
  border-color: rgb(139, 92, 246) !important;
  background-color: rgb(241, 245, 249);
  -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
          box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
body[data-color-mode=dark] .login-card :deep(.n-input).n-input--focus {
  border-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .login-card :deep(.n-input).n-input--focus {
  background-color: rgb(30, 41, 59);
}

.login-card :deep(.n-input)::-webkit-input-placeholder {
  color: rgb(148, 163, 184);
  opacity: 1;
}

.login-card :deep(.n-input)::-moz-placeholder {
  color: rgb(148, 163, 184);
  opacity: 1;
}

.login-card :deep(.n-input):-ms-input-placeholder {
  color: rgb(148, 163, 184);
  opacity: 1;
}

.login-card :deep(.n-input)::-ms-input-placeholder {
  color: rgb(148, 163, 184);
  opacity: 1;
}

.login-card :deep(.n-input)::placeholder {
  color: rgb(148, 163, 184);
  opacity: 1;
}
body[data-color-mode=dark] .login-card :deep(.n-input)::-webkit-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .login-card :deep(.n-input)::-moz-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .login-card :deep(.n-input):-ms-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .login-card :deep(.n-input)::-ms-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .login-card :deep(.n-input)::placeholder {
  color: rgb(148, 163, 184);
}

.login-card :deep(.n-button) {
  border-radius: var(--radius-md);
  font-weight: 500;
  letter-spacing: 0.3px;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  height: 48px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
.login-card :deep(.n-button).n-button--primary-type {
  background-color: rgb(139, 92, 246);
  border-color: rgb(139, 92, 246);
  color: rgb(255, 255, 255);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .login-card :deep(.n-button).n-button--primary-type {
  background-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--primary-type {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--primary-type {
  color: rgb(255, 255, 255);
}

.login-card :deep(.n-button).n-button--primary-type:hover:not(:disabled) {
  background-color: rgb(124, 58, 237);
  border-color: rgb(124, 58, 237);
  color: rgb(255, 255, 255);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}
body[data-color-mode=dark] .login-card :deep(.n-button).n-button--primary-type:hover:not(:disabled) {
  background-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--primary-type:hover:not(:disabled) {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--primary-type:hover:not(:disabled) {
  color: rgb(255, 255, 255);
}

.login-card :deep(.n-button).n-button--primary-type:active:not(:disabled) {
  background-color: rgb(109, 40, 217);
  border-color: rgb(109, 40, 217);
  color: rgb(255, 255, 255);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
body[data-color-mode=dark] .login-card :deep(.n-button).n-button--primary-type:active:not(:disabled) {
  background-color: rgb(196, 181, 253);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--primary-type:active:not(:disabled) {
  border-color: rgb(196, 181, 253);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--primary-type:active:not(:disabled) {
  color: rgb(255, 255, 255);
}

.login-card :deep(.n-button).n-button--primary-type:disabled {
  background-color: rgb(221, 214, 255);
  border-color: rgb(196, 181, 253);
  color: rgb(124, 58, 237);
}
body[data-color-mode=dark] .login-card :deep(.n-button).n-button--primary-type:disabled {
  background-color: rgb(67, 56, 108);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--primary-type:disabled {
  border-color: rgb(91, 78, 145);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--primary-type:disabled {
  color: rgb(91, 78, 145);
}

.login-card :deep(.n-button).n-button--default-type {
  background-color: rgb(255, 255, 255);
  border-color: rgb(167, 139, 250);
  color: rgb(167, 139, 250);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
}
body[data-color-mode=dark] .login-card :deep(.n-button).n-button--default-type {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--default-type {
  border-color: rgb(124, 114, 183);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--default-type {
  color: rgb(124, 114, 183);
}

.login-card :deep(.n-button).n-button--default-type:hover:not(:disabled) {
  background-color: rgb(255, 255, 255);
  border-color: rgb(139, 92, 246);
  color: rgb(139, 92, 246);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .login-card :deep(.n-button).n-button--default-type:hover:not(:disabled) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--default-type:hover:not(:disabled) {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--default-type:hover:not(:disabled) {
  color: rgb(139, 92, 246);
}

.login-card :deep(.n-button).n-button--default-type:active:not(:disabled) {
  background-color: rgb(255, 255, 255);
  border-color: rgb(124, 58, 237);
  color: rgb(124, 58, 237);
}
body[data-color-mode=dark] .login-card :deep(.n-button).n-button--default-type:active:not(:disabled) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--default-type:active:not(:disabled) {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--default-type:active:not(:disabled) {
  color: rgb(167, 139, 250);
}

.login-card :deep(.n-button).n-button--default-type:disabled {
  background-color: rgb(255, 255, 255);
  border-color: rgb(221, 214, 255);
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .login-card :deep(.n-button).n-button--default-type:disabled {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--default-type:disabled {
  border-color: rgb(67, 56, 108);
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--default-type:disabled {
  color: rgb(148, 163, 184);
}

.login-card :deep(.n-button).n-button--text-type {
  color: rgb(139, 92, 246) !important;
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
body[data-color-mode=dark] .login-card :deep(.n-button).n-button--text-type {
  color: rgb(139, 92, 246) !important;
}

.login-card :deep(.n-button).n-button--text-type:hover:not(:disabled) {
  color: rgb(124, 58, 237) !important;
  background-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .login-card :deep(.n-button).n-button--text-type:hover:not(:disabled) {
  color: rgb(124, 58, 237) !important;
}

body[data-color-mode=dark] .login-card :deep(.n-button).n-button--text-type:hover:not(:disabled) {
  background-color: rgb(51, 65, 85);
}

.login-card :deep(.n-space) {
  gap: var(--spacing-md) !important;
}

.login-options {
  padding: 10px 0;
}

.google-login-button {
  background-color: #ffffff;
  border: 1px solid #dadce0;
  color: #3c4043;
}
.google-login-button:hover {
  background-color: #f8f9fa;
  border-color: #dadce0;
}
.google-login-button:active {
  background-color: #f1f3f4;
}
.google-login-button .n-button__icon {
  margin-right: 8px;
}

.register-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  padding: var(--spacing-lg);
  background-color: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
}
body[data-color-mode=dark] .register-container {
  background-color: rgb(0, 0, 0);
}

.register-container::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.register-card {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-xl);
          box-shadow: var(--shadow-xl);
  background-color: rgb(255, 255, 255);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  overflow: hidden;
}
body[data-color-mode=dark] .register-card {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .register-card {
  background-color: rgb(0, 0, 0);
}

.register-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow-xl);
          box-shadow: var(--shadow-xl);
  border-color: rgb(203, 213, 225);
}
body[data-color-mode=dark] .register-card:hover {
  border-color: rgb(100, 116, 139);
}

.register-card :deep(.n-card-header) {
  padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  border-bottom: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .register-card :deep(.n-card-header) {
  border-color: rgb(148, 163, 184);
}

.register-card :deep(.n-card-header) .n-card-header__main {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, rgb(167, 139, 250) 0%, rgb(139, 92, 246) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body[data-color-mode=dark] .register-card :deep(.n-card-header) .n-card-header__main {
  color: rgb(248, 250, 252);
}

.register-card :deep(.n-card__content) {
  padding: var(--spacing-xl);
}
.register-card :deep(.n-form-item) {
  margin-bottom: var(--spacing-lg);
}
.register-card :deep(.n-form-item) .n-form-item-label {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.2px;
}
body[data-color-mode=dark] .register-card :deep(.n-form-item) .n-form-item-label {
  color: rgb(248, 250, 252);
}

.register-card :deep(.n-input) {
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(203, 213, 225);
  background-color: rgb(226, 232, 240);
  color: rgb(15, 23, 42);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
body[data-color-mode=dark] .register-card :deep(.n-input) {
  border-color: rgb(100, 116, 139);
}

body[data-color-mode=dark] .register-card :deep(.n-input) {
  background-color: rgb(51, 65, 85);
}

body[data-color-mode=dark] .register-card :deep(.n-input) {
  color: rgb(248, 250, 252);
}

.register-card :deep(.n-input):hover {
  border-color: rgb(226, 232, 240);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .register-card :deep(.n-input):hover {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .register-card :deep(.n-input):hover {
  background-color: rgb(30, 41, 59);
}

.register-card :deep(.n-input).n-input--focus {
  border-color: rgb(139, 92, 246) !important;
  background-color: rgb(241, 245, 249);
  -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
          box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
body[data-color-mode=dark] .register-card :deep(.n-input).n-input--focus {
  border-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .register-card :deep(.n-input).n-input--focus {
  background-color: rgb(30, 41, 59);
}

.register-card :deep(.n-input)::-webkit-input-placeholder {
  color: rgb(148, 163, 184);
  opacity: 1;
}

.register-card :deep(.n-input)::-moz-placeholder {
  color: rgb(148, 163, 184);
  opacity: 1;
}

.register-card :deep(.n-input):-ms-input-placeholder {
  color: rgb(148, 163, 184);
  opacity: 1;
}

.register-card :deep(.n-input)::-ms-input-placeholder {
  color: rgb(148, 163, 184);
  opacity: 1;
}

.register-card :deep(.n-input)::placeholder {
  color: rgb(148, 163, 184);
  opacity: 1;
}
body[data-color-mode=dark] .register-card :deep(.n-input)::-webkit-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .register-card :deep(.n-input)::-moz-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .register-card :deep(.n-input):-ms-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .register-card :deep(.n-input)::-ms-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .register-card :deep(.n-input)::placeholder {
  color: rgb(148, 163, 184);
}

.register-card :deep(.n-button) {
  border-radius: var(--radius-md);
  font-weight: 500;
  letter-spacing: 0.3px;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  height: 48px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
.register-card :deep(.n-button).n-button--primary-type {
  background-color: rgb(139, 92, 246);
  border-color: rgb(139, 92, 246);
  color: rgb(255, 255, 255);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .register-card :deep(.n-button).n-button--primary-type {
  background-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--primary-type {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--primary-type {
  color: rgb(255, 255, 255);
}

.register-card :deep(.n-button).n-button--primary-type:hover:not(:disabled) {
  background-color: rgb(124, 58, 237);
  border-color: rgb(124, 58, 237);
  color: rgb(255, 255, 255);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}
body[data-color-mode=dark] .register-card :deep(.n-button).n-button--primary-type:hover:not(:disabled) {
  background-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--primary-type:hover:not(:disabled) {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--primary-type:hover:not(:disabled) {
  color: rgb(255, 255, 255);
}

.register-card :deep(.n-button).n-button--primary-type:active:not(:disabled) {
  background-color: rgb(109, 40, 217);
  border-color: rgb(109, 40, 217);
  color: rgb(255, 255, 255);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
body[data-color-mode=dark] .register-card :deep(.n-button).n-button--primary-type:active:not(:disabled) {
  background-color: rgb(196, 181, 253);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--primary-type:active:not(:disabled) {
  border-color: rgb(196, 181, 253);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--primary-type:active:not(:disabled) {
  color: rgb(255, 255, 255);
}

.register-card :deep(.n-button).n-button--primary-type:disabled {
  background-color: rgb(221, 214, 255);
  border-color: rgb(196, 181, 253);
  color: rgb(124, 58, 237);
}
body[data-color-mode=dark] .register-card :deep(.n-button).n-button--primary-type:disabled {
  background-color: rgb(67, 56, 108);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--primary-type:disabled {
  border-color: rgb(91, 78, 145);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--primary-type:disabled {
  color: rgb(91, 78, 145);
}

.register-card :deep(.n-button).n-button--default-type {
  background-color: rgb(255, 255, 255);
  border-color: rgb(167, 139, 250);
  color: rgb(167, 139, 250);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
}
body[data-color-mode=dark] .register-card :deep(.n-button).n-button--default-type {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--default-type {
  border-color: rgb(124, 114, 183);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--default-type {
  color: rgb(124, 114, 183);
}

.register-card :deep(.n-button).n-button--default-type:hover:not(:disabled) {
  background-color: rgb(255, 255, 255);
  border-color: rgb(139, 92, 246);
  color: rgb(139, 92, 246);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .register-card :deep(.n-button).n-button--default-type:hover:not(:disabled) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--default-type:hover:not(:disabled) {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--default-type:hover:not(:disabled) {
  color: rgb(139, 92, 246);
}

.register-card :deep(.n-button).n-button--default-type:active:not(:disabled) {
  background-color: rgb(255, 255, 255);
  border-color: rgb(124, 58, 237);
  color: rgb(124, 58, 237);
}
body[data-color-mode=dark] .register-card :deep(.n-button).n-button--default-type:active:not(:disabled) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--default-type:active:not(:disabled) {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--default-type:active:not(:disabled) {
  color: rgb(167, 139, 250);
}

.register-card :deep(.n-button).n-button--default-type:disabled {
  background-color: rgb(255, 255, 255);
  border-color: rgb(221, 214, 255);
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .register-card :deep(.n-button).n-button--default-type:disabled {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--default-type:disabled {
  border-color: rgb(67, 56, 108);
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--default-type:disabled {
  color: rgb(148, 163, 184);
}

.register-card :deep(.n-button).n-button--text-type {
  color: rgb(139, 92, 246) !important;
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
body[data-color-mode=dark] .register-card :deep(.n-button).n-button--text-type {
  color: rgb(139, 92, 246) !important;
}

.register-card :deep(.n-button).n-button--text-type:hover:not(:disabled) {
  color: rgb(124, 58, 237) !important;
  background-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .register-card :deep(.n-button).n-button--text-type:hover:not(:disabled) {
  color: rgb(124, 58, 237) !important;
}

body[data-color-mode=dark] .register-card :deep(.n-button).n-button--text-type:hover:not(:disabled) {
  background-color: rgb(51, 65, 85);
}

.register-card :deep(.n-space) {
  gap: var(--spacing-md) !important;
}

.signup-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  padding: 20px;
}

.signup-card {
  width: 100%;
  max-width: 400px;
}

.signup-options {
  padding: 10px 0;
}

.google-signup-button {
  background-color: #ffffff;
  border: 1px solid #dadce0;
  color: #3c4043;
}
.google-signup-button:hover {
  background-color: #f8f9fa;
  border-color: #dadce0;
}
.google-signup-button:active {
  background-color: #f1f3f4;
}
.google-signup-button :deep(.n-button__icon) {
  margin-right: 8px;
}

.chatroom-container {
  position: fixed;
  top: 52px;
  left: 0;
  width: 100%;
  height: calc(100vh - 52px);
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  z-index: 2000;
}
body[data-color-mode=dark] .chatroom-container {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .chatroom-container {
  border-color: rgb(148, 163, 184);
}

.chatroom-container .n-layout-header--bordered {
  height: 52px;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: var(--shadow-xl) !important;
          box-shadow: var(--shadow-xl) !important;
  font-size: 2rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .chatroom-container .n-layout-header--bordered {
  color: rgb(248, 250, 252);
}

.chatroom-container .n-layout-header--bordered .n-button {
  padding: var(--spacing-sm) var(--spacing-md) !important;
}
.chatroom-container .n-layout-content {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 140px);
  overflow: hidden;
}
.chatroom-container .n-input.n-input--textarea {
  height: 34px !important;
}

.messages-container {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  padding: var(--spacing-xl);
  background-color: rgb(255, 255, 255);
  scroll-behavior: smooth;
}
body[data-color-mode=dark] .messages-container {
  background-color: rgb(0, 0, 0);
}

.messages-container::-webkit-scrollbar {
  width: 8px;
}
.messages-container::-webkit-scrollbar-track {
  background: transparent;
}
.messages-container::-webkit-scrollbar-thumb {
  background-color: rgb(226, 232, 240);
  border-radius: var(--radius-full);
}
body[data-color-mode=dark] .messages-container::-webkit-scrollbar-thumb {
  background-color: rgb(148, 163, 184);
}

.messages-container::-webkit-scrollbar-thumb:hover {
  background-color: rgb(203, 213, 225);
}
body[data-color-mode=dark] .messages-container::-webkit-scrollbar-thumb:hover {
  background-color: rgb(100, 116, 139);
}

.input-area {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: rgb(255, 255, 255);
  border-top: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 -2px 2px -1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 -2px 2px -1px rgba(0, 0, 0, 0.3);
  z-index: 100;
  height: 70px;
}
body[data-color-mode=dark] .input-area {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .input-area {
  border-color: rgb(148, 163, 184);
}

.input-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: var(--spacing-md);
  width: 100%;
  margin: 0 auto;
}
.input-row :deep(.n-input) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  background-color: rgb(255, 255, 255);
  color: rgb(15, 23, 42);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .input-row :deep(.n-input) {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .input-row :deep(.n-input) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .input-row :deep(.n-input) {
  color: rgb(248, 250, 252);
}

.input-row :deep(.n-input):hover {
  border-color: rgb(203, 213, 225);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .input-row :deep(.n-input):hover {
  border-color: rgb(100, 116, 139);
}

body[data-color-mode=dark] .input-row :deep(.n-input):hover {
  background-color: rgb(30, 41, 59);
}

.input-row :deep(.n-input).n-input--focus {
  border-color: rgb(167, 139, 250);
  -webkit-box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.2);
          box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.2);
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .input-row :deep(.n-input).n-input--focus {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .input-row :deep(.n-input).n-input--focus {
  background-color: rgb(0, 0, 0);
}

.input-row :deep(.n-input)::-webkit-input-placeholder {
  color: rgb(148, 163, 184);
}

.input-row :deep(.n-input)::-moz-placeholder {
  color: rgb(148, 163, 184);
}

.input-row :deep(.n-input):-ms-input-placeholder {
  color: rgb(148, 163, 184);
}

.input-row :deep(.n-input)::-ms-input-placeholder {
  color: rgb(148, 163, 184);
}

.input-row :deep(.n-input)::placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .input-row :deep(.n-input)::-webkit-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .input-row :deep(.n-input)::-moz-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .input-row :deep(.n-input):-ms-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .input-row :deep(.n-input)::-ms-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .input-row :deep(.n-input)::placeholder {
  color: rgb(148, 163, 184);
}

.input-row :deep(.n-button) {
  border-radius: var(--radius-md);
  font-weight: 500;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  min-width: 100px;
}
.input-row :deep(.n-button).n-button--primary-type {
  background: linear-gradient(135deg, rgb(99, 102, 241) 0%, rgb(139, 92, 246) 100%);
  border: none;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .input-row :deep(.n-button).n-button--primary-type {
  color: rgb(255, 255, 255);
}

.input-row :deep(.n-button).n-button--primary-type:hover:not(:disabled) {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .chatroom-container .n-layout-content {
    padding: 0;
    position: relative;
    height: calc(100vh - 174px);
  }
  .messages-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 174px);
    padding: 20px;
    background: rgba(12, 13, 22, 0.08);
  }
  .input-area {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: rgba(248, 250, 255, 0.85);
    padding: var(--spacing-md) var(--spacing-lg);
    border-top: 1px solid rgba(215, 221, 235, 0.6);
  }
  .input-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--spacing-sm);
  }
  .input-row :deep(.n-button) {
    width: 100%;
    height: 44px;
  }
}
.profile-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-xl);
}

.profile-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}
.profile-header .edit-profile-btn {
  margin-top: var(--spacing-md);
}

.photo-container {
  position: relative;
  display: inline-block;
}

.photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgb(167, 139, 250) 0%, rgb(139, 92, 246) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}

.photo-icon {
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .photo-icon {
  color: rgb(248, 250, 252);
}

.edit-photo-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border: 2px solid;
  border-color: rgb(226, 232, 240);
  border-radius: var(--radius-full);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .edit-photo-btn {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .edit-photo-btn {
  background-color: rgb(0, 0, 0);
}

.edit-photo-btn:hover {
  background-color: rgb(241, 245, 249);
  border-color: rgb(139, 92, 246);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}
body[data-color-mode=dark] .edit-photo-btn:hover {
  background-color: rgb(30, 41, 59);
}

body[data-color-mode=dark] .edit-photo-btn:hover {
  border-color: rgb(139, 92, 246);
}

.edit-photo-btn:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.edit-photo-btn svg {
  width: 18px;
  height: 18px;
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .edit-photo-btn svg {
  color: rgb(248, 250, 252);
}

.username {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: var(--spacing-md) 0 var(--spacing-sm);
}
body[data-color-mode=dark] .username {
  color: rgb(248, 250, 252);
}

.user-email {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .user-email {
  color: rgb(220, 220, 220);
}

.user-country {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-top: var(--spacing-xs);
}
body[data-color-mode=dark] .user-country {
  color: rgb(220, 220, 220);
}

.user-plan {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-top: var(--spacing-xs);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--spacing-xs);
}
body[data-color-mode=dark] .user-plan {
  color: rgb(220, 220, 220);
}

.user-plan .plan-label {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .user-plan .plan-label {
  color: rgb(220, 220, 220);
}

.user-plan .plan-name {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .user-plan .plan-name {
  color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .user-plan .plan-name {
  background-color: rgb(30, 41, 59);
}

.profile-content {
  margin-top: var(--spacing-3xl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.stat-card {
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-md);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .stat-card {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .stat-card {
  background-color: rgb(0, 0, 0);
}

.stat-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
  border-color: rgb(203, 213, 225);
}
body[data-color-mode=dark] .stat-card:hover {
  border-color: rgb(100, 116, 139);
}

.stat-icon {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .stat-icon {
  color: rgb(248, 250, 252);
}

.stat-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.stat-info h3 {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0 0 var(--spacing-xs);
}
body[data-color-mode=dark] .stat-info h3 {
  color: rgb(220, 220, 220);
}

.stat-value {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0;
}
body[data-color-mode=dark] .stat-value {
  color: rgb(248, 250, 252);
}

.stat-card--plan {
  background-color: rgb(241, 245, 249);
  border: 2px solid;
  border-color: rgb(167, 139, 250);
}
body[data-color-mode=dark] .stat-card--plan {
  background-color: rgb(30, 41, 59);
}

body[data-color-mode=dark] .stat-card--plan {
  border-color: rgb(167, 139, 250);
}

.stat-card--plan .plan-value {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .stat-card--plan .plan-value {
  color: rgb(139, 92, 246);
}

.stat-card--plan:hover {
  border-color: rgb(139, 92, 246);
  background-color: rgb(248, 250, 252);
}
body[data-color-mode=dark] .stat-card--plan:hover {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .stat-card--plan:hover {
  background-color: rgb(15, 23, 42);
}

.letter-settings-section {
  margin-bottom: var(--spacing-xl);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .letter-settings-section {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .letter-settings-section {
  background-color: rgb(0, 0, 0);
}

.section-title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0 0 var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .section-title {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] .section-title {
  border-color: rgb(148, 163, 184);
}

.settings-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-md);
}

.setting-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  background-color: rgb(241, 245, 249);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .setting-item {
  background-color: rgb(30, 41, 59);
}

.setting-item:hover {
  background-color: rgb(248, 250, 252);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
}
body[data-color-mode=dark] .setting-item:hover {
  background-color: rgb(15, 23, 42);
}

.setting-item--main {
  border: 2px solid;
  border-color: rgb(167, 139, 250);
  background-color: rgb(248, 250, 252);
  padding: var(--spacing-lg);
}
body[data-color-mode=dark] .setting-item--main {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .setting-item--main {
  background-color: rgb(15, 23, 42);
}

.setting-item--main:hover {
  border-color: rgb(139, 92, 246);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .setting-item--main:hover {
  border-color: rgb(139, 92, 246);
}

.setting-item--time {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--spacing-sm);
}
.setting-item--time .setting-label {
  width: 100%;
  margin-bottom: var(--spacing-xs);
}
.setting-item--checkbox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
}
.setting-item--checkbox .setting-label {
  margin-left: var(--spacing-xs);
}

.setting-label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.setting-label strong {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  display: block;
  margin-bottom: var(--spacing-xs);
}
body[data-color-mode=dark] .setting-label strong {
  color: rgb(248, 250, 252);
}

.setting-description {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0;
  line-height: 1.5;
}
body[data-color-mode=dark] .setting-description {
  color: rgb(220, 220, 220);
}

.anniversary-section {
  margin-bottom: var(--spacing-xl);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .anniversary-section {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .anniversary-section {
  background-color: rgb(0, 0, 0);
}

.anniversary-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-md);
}

.anniversary-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  background-color: rgb(241, 245, 249);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .anniversary-item {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .anniversary-item {
  background-color: rgb(30, 41, 59);
}

.anniversary-item:hover {
  background-color: rgb(248, 250, 252);
  border-color: rgb(203, 213, 225);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
body[data-color-mode=dark] .anniversary-item:hover {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .anniversary-item:hover {
  border-color: rgb(100, 116, 139);
}

.anniversary-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-xs);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.anniversary-info strong {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0;
}
body[data-color-mode=dark] .anniversary-info strong {
  color: rgb(248, 250, 252);
}

.anniversary-info .anniversary-date {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .anniversary-info .anniversary-date {
  color: rgb(220, 220, 220);
}

.anniversary-info .anniversary-cycle {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  background-color: rgb(248, 250, 252);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
body[data-color-mode=dark] .anniversary-info .anniversary-cycle {
  color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .anniversary-info .anniversary-cycle {
  background-color: rgb(15, 23, 42);
}

.anniversary-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-sm);
}

.icon-btn {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  background-color: rgb(255, 255, 255);
  cursor: pointer;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  padding: 0;
}
body[data-color-mode=dark] .icon-btn {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .icon-btn {
  background-color: rgb(0, 0, 0);
}

.icon-btn:hover {
  background-color: rgb(241, 245, 249);
  border-color: rgb(139, 92, 246);
  color: rgb(139, 92, 246);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
body[data-color-mode=dark] .icon-btn:hover {
  background-color: rgb(30, 41, 59);
}

body[data-color-mode=dark] .icon-btn:hover {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .icon-btn:hover {
  color: rgb(139, 92, 246);
}

.icon-btn:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.icon-btn svg {
  color: rgb(15, 23, 42);
  -webkit-transition: color var(--transition-base);
  transition: color var(--transition-base);
}
body[data-color-mode=dark] .icon-btn svg {
  color: rgb(248, 250, 252);
}

.icon-btn:hover svg {
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .icon-btn:hover svg {
  color: rgb(139, 92, 246);
}

.add-btn {
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  border: 2px dashed;
  border-color: rgb(226, 232, 240);
  background-color: rgb(255, 255, 255);
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  cursor: pointer;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  width: 100%;
  text-align: center;
}
body[data-color-mode=dark] .add-btn {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .add-btn {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .add-btn {
  color: rgb(220, 220, 220);
}

.add-btn:hover {
  border-color: rgb(139, 92, 246);
  background-color: rgb(241, 245, 249);
  color: rgb(139, 92, 246);
  border-style: solid;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
}
body[data-color-mode=dark] .add-btn:hover {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .add-btn:hover {
  background-color: rgb(30, 41, 59);
}

body[data-color-mode=dark] .add-btn:hover {
  color: rgb(139, 92, 246);
}

.add-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.profile-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}
@media (max-width: 768px) {
  .profile-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.action-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  cursor: pointer;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(255, 255, 255);
  border: none;
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .action-btn {
  color: rgb(255, 255, 255);
}

.action-btn:not(.secondary) {
  background-color: rgb(139, 92, 246);
  border-color: rgb(139, 92, 246);
  color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .action-btn:not(.secondary) {
  background-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .action-btn:not(.secondary) {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .action-btn:not(.secondary) {
  color: rgb(255, 255, 255);
}

.action-btn:not(.secondary):hover {
  background-color: rgb(124, 58, 237);
  border-color: rgb(124, 58, 237);
  color: rgb(255, 255, 255);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}
body[data-color-mode=dark] .action-btn:not(.secondary):hover {
  background-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .action-btn:not(.secondary):hover {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .action-btn:not(.secondary):hover {
  color: rgb(255, 255, 255);
}

.action-btn:not(.secondary):active {
  background-color: rgb(109, 40, 217);
  border-color: rgb(109, 40, 217);
  color: rgb(255, 255, 255);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
body[data-color-mode=dark] .action-btn:not(.secondary):active {
  background-color: rgb(196, 181, 253);
}

body[data-color-mode=dark] .action-btn:not(.secondary):active {
  border-color: rgb(196, 181, 253);
}

body[data-color-mode=dark] .action-btn:not(.secondary):active {
  color: rgb(255, 255, 255);
}

.action-btn.secondary {
  background-color: rgb(255, 255, 255);
  border-color: rgb(167, 139, 250);
  color: rgb(167, 139, 250);
}
body[data-color-mode=dark] .action-btn.secondary {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .action-btn.secondary {
  border-color: rgb(124, 114, 183);
}

body[data-color-mode=dark] .action-btn.secondary {
  color: rgb(124, 114, 183);
}

.action-btn.secondary:hover {
  background-color: rgb(255, 255, 255);
  border-color: rgb(139, 92, 246);
  color: rgb(139, 92, 246);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .action-btn.secondary:hover {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .action-btn.secondary:hover {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .action-btn.secondary:hover {
  color: rgb(139, 92, 246);
}

.action-btn.secondary:active {
  background-color: rgb(255, 255, 255);
  border-color: rgb(124, 58, 237);
  color: rgb(124, 58, 237);
}
body[data-color-mode=dark] .action-btn.secondary:active {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .action-btn.secondary:active {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .action-btn.secondary:active {
  color: rgb(167, 139, 250);
}

.action-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .profile-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .letter-settings-section {
    padding: var(--spacing-md);
  }
  .setting-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: var(--spacing-sm);
  }
  .setting-item .setting-label {
    width: 100%;
  }
  .setting-item--time .setting-label {
    margin-bottom: var(--spacing-sm);
  }
  .anniversary-section {
    padding: var(--spacing-md);
  }
  .anniversary-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: var(--spacing-sm);
  }
  .anniversary-item .anniversary-actions {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .anniversary-info {
    width: 100%;
  }
}
.forgot-password-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  padding: var(--spacing-lg);
  background-color: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
}
body[data-color-mode=dark] .forgot-password-container {
  background-color: rgb(0, 0, 0);
}

.forgot-password-container::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.forgot-password-card {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-xl);
          box-shadow: var(--shadow-xl);
  background-color: rgb(255, 255, 255);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  overflow: hidden;
}
body[data-color-mode=dark] .forgot-password-card {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .forgot-password-card {
  background-color: rgb(0, 0, 0);
}

.forgot-password-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow-xl);
          box-shadow: var(--shadow-xl);
  border-color: rgb(203, 213, 225);
}
body[data-color-mode=dark] .forgot-password-card:hover {
  border-color: rgb(100, 116, 139);
}

.forgot-password-card :deep(.n-card-header) {
  padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  border-bottom: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-card-header) {
  border-color: rgb(148, 163, 184);
}

.forgot-password-card :deep(.n-card-header) .n-card-header__main {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, rgb(167, 139, 250) 0%, rgb(139, 92, 246) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-card-header) .n-card-header__main {
  color: rgb(248, 250, 252);
}

.forgot-password-card :deep(.n-card__content) {
  padding: var(--spacing-xl);
}
.forgot-password-card :deep(.n-form-item) {
  margin-bottom: var(--spacing-lg);
}
.forgot-password-card :deep(.n-form-item) .n-form-item-label {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 500;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.2px;
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-form-item) .n-form-item-label {
  color: rgb(248, 250, 252);
}

.forgot-password-card :deep(.n-input) {
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(203, 213, 225);
  background-color: rgb(226, 232, 240);
  color: rgb(15, 23, 42);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-input) {
  border-color: rgb(100, 116, 139);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-input) {
  background-color: rgb(51, 65, 85);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-input) {
  color: rgb(248, 250, 252);
}

.forgot-password-card :deep(.n-input):hover {
  border-color: rgb(226, 232, 240);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-input):hover {
  border-color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-input):hover {
  background-color: rgb(30, 41, 59);
}

.forgot-password-card :deep(.n-input).n-input--focus {
  border-color: rgb(139, 92, 246) !important;
  background-color: rgb(241, 245, 249);
  -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
          box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-input).n-input--focus {
  border-color: rgb(139, 92, 246) !important;
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-input).n-input--focus {
  background-color: rgb(30, 41, 59);
}

.forgot-password-card :deep(.n-input)::-webkit-input-placeholder {
  color: rgb(148, 163, 184);
  opacity: 1;
}

.forgot-password-card :deep(.n-input)::-moz-placeholder {
  color: rgb(148, 163, 184);
  opacity: 1;
}

.forgot-password-card :deep(.n-input):-ms-input-placeholder {
  color: rgb(148, 163, 184);
  opacity: 1;
}

.forgot-password-card :deep(.n-input)::-ms-input-placeholder {
  color: rgb(148, 163, 184);
  opacity: 1;
}

.forgot-password-card :deep(.n-input)::placeholder {
  color: rgb(148, 163, 184);
  opacity: 1;
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-input)::-webkit-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-input)::-moz-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-input):-ms-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-input)::-ms-input-placeholder {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-input)::placeholder {
  color: rgb(148, 163, 184);
}

.forgot-password-card :deep(.n-button) {
  border-radius: var(--radius-md);
  font-weight: 500;
  letter-spacing: 0.3px;
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  height: 48px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
.forgot-password-card :deep(.n-button).n-button--primary-type {
  background-color: rgb(139, 92, 246);
  border-color: rgb(139, 92, 246);
  color: rgb(255, 255, 255);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--primary-type {
  background-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--primary-type {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--primary-type {
  color: rgb(255, 255, 255);
}

.forgot-password-card :deep(.n-button).n-button--primary-type:hover:not(:disabled) {
  background-color: rgb(124, 58, 237);
  border-color: rgb(124, 58, 237);
  color: rgb(255, 255, 255);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--primary-type:hover:not(:disabled) {
  background-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--primary-type:hover:not(:disabled) {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--primary-type:hover:not(:disabled) {
  color: rgb(255, 255, 255);
}

.forgot-password-card :deep(.n-button).n-button--primary-type:active:not(:disabled) {
  background-color: rgb(109, 40, 217);
  border-color: rgb(109, 40, 217);
  color: rgb(255, 255, 255);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--primary-type:active:not(:disabled) {
  background-color: rgb(196, 181, 253);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--primary-type:active:not(:disabled) {
  border-color: rgb(196, 181, 253);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--primary-type:active:not(:disabled) {
  color: rgb(255, 255, 255);
}

.forgot-password-card :deep(.n-button).n-button--primary-type:disabled {
  background-color: rgb(221, 214, 255);
  border-color: rgb(196, 181, 253);
  color: rgb(124, 58, 237);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--primary-type:disabled {
  background-color: rgb(67, 56, 108);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--primary-type:disabled {
  border-color: rgb(91, 78, 145);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--primary-type:disabled {
  color: rgb(91, 78, 145);
}

.forgot-password-card :deep(.n-button).n-button--default-type {
  background-color: rgb(255, 255, 255);
  border-color: rgb(167, 139, 250);
  color: rgb(167, 139, 250);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--default-type {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--default-type {
  border-color: rgb(124, 114, 183);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--default-type {
  color: rgb(124, 114, 183);
}

.forgot-password-card :deep(.n-button).n-button--default-type:hover:not(:disabled) {
  background-color: rgb(255, 255, 255);
  border-color: rgb(139, 92, 246);
  color: rgb(139, 92, 246);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--default-type:hover:not(:disabled) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--default-type:hover:not(:disabled) {
  border-color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--default-type:hover:not(:disabled) {
  color: rgb(139, 92, 246);
}

.forgot-password-card :deep(.n-button).n-button--default-type:active:not(:disabled) {
  background-color: rgb(255, 255, 255);
  border-color: rgb(124, 58, 237);
  color: rgb(124, 58, 237);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--default-type:active:not(:disabled) {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--default-type:active:not(:disabled) {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--default-type:active:not(:disabled) {
  color: rgb(167, 139, 250);
}

.forgot-password-card :deep(.n-button).n-button--default-type:disabled {
  background-color: rgb(255, 255, 255);
  border-color: rgb(221, 214, 255);
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--default-type:disabled {
  background-color: rgb(0, 0, 0);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--default-type:disabled {
  border-color: rgb(67, 56, 108);
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--default-type:disabled {
  color: rgb(148, 163, 184);
}

.forgot-password-card :deep(.n-button).n-button--text-type {
  color: rgb(139, 92, 246) !important;
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--text-type {
  color: rgb(139, 92, 246) !important;
}

.forgot-password-card :deep(.n-button).n-button--text-type:hover:not(:disabled) {
  color: rgb(124, 58, 237) !important;
  background-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--text-type:hover:not(:disabled) {
  color: rgb(124, 58, 237) !important;
}

body[data-color-mode=dark] .forgot-password-card :deep(.n-button).n-button--text-type:hover:not(:disabled) {
  background-color: rgb(51, 65, 85);
}

.forgot-password-card :deep(.n-space) {
  gap: var(--spacing-md) !important;
}

.billing {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-3xl);
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .billing {
  background-color: rgb(0, 0, 0);
}

@media (min-width: 768px) {
  .billing {
    padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-4xl);
  }
}

.billing__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .billing__title {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .billing__title {
    font-size: 2.5rem;
    line-height: 140%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .billing__title {
    color: rgb(248, 250, 252);
  }
}

.billing__subtitle {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-bottom: var(--spacing-xl);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .billing__subtitle {
  color: rgb(220, 220, 220);
}

@media (min-width: 768px) {
  .billing__subtitle {
    margin-bottom: var(--spacing-2xl);
  }
}

.billing__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 768px) {
  .billing__controls {
    margin-bottom: var(--spacing-2xl);
  }
}

.billing__cycle-label {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  white-space: nowrap;
}
body[data-color-mode=dark] .billing__cycle-label {
  color: rgb(220, 220, 220);
}

.billing__cycle-hint {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  white-space: nowrap;
}
body[data-color-mode=dark] .billing__cycle-hint {
  color: rgb(148, 163, 184);
}

.billing__plans {
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .billing__plans {
    margin-bottom: var(--spacing-2xl);
  }
}

.billing__plans-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-lg);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 768px) {
  .billing__plans-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--spacing-md);
  }
}
@media (min-width: 1024px) {
  .billing__plans-row {
    gap: var(--spacing-xl);
  }
}

.billing__plan-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 768px) {
  .billing__plan-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

.billing__card {
  height: 100%;
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  overflow: hidden;
}
body[data-color-mode=dark] .billing__card {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .billing__card {
  border-color: rgb(148, 163, 184);
}

.billing__card:hover {
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-color: rgb(167, 139, 250);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
body[data-color-mode=dark] .billing__card:hover {
  border-color: rgb(167, 139, 250);
}

.billing__card:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .billing__card:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.billing__card--free {
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .billing__card--free {
  border-color: rgb(148, 163, 184);
}

.billing__card--pro {
  border-color: rgb(167, 139, 250);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .billing__card--pro {
  border-color: rgb(167, 139, 250);
}

.billing__card--pro:hover {
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
  border-color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .billing__card--pro:hover {
  border-color: rgb(139, 92, 246);
}

.billing__card--max {
  border-color: rgb(167, 243, 208);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
body[data-color-mode=dark] .billing__card--max {
  border-color: rgba(5, 150, 105, 0.5);
}

.billing__card--max:hover {
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
  border-color: rgb(16, 185, 129);
}
body[data-color-mode=dark] .billing__card--max:hover {
  border-color: rgb(74, 222, 128);
}

.billing__card-header {
  margin-bottom: var(--spacing-md);
}

.billing__plan-name {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0;
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .billing__plan-name {
  color: rgb(248, 250, 252);
}

.billing__plan-tag {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: var(--spacing-xs) 0 0 0;
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .billing__plan-tag {
  color: rgb(220, 220, 220);
}

.billing__price {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: var(--spacing-md) 0;
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .billing__price {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .billing__price {
    font-size: 1.8rem;
    line-height: 136.364%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .billing__price {
    color: rgb(248, 250, 252);
  }
}

.billing__price-cycle {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-left: var(--spacing-xs);
  font-weight: 400;
}
body[data-color-mode=dark] .billing__price-cycle {
  color: rgb(220, 220, 220);
}

.billing__features {
  margin: 0 0 var(--spacing-lg);
  padding-left: var(--spacing-lg);
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  line-height: 1.6;
  list-style: none;
}
body[data-color-mode=dark] .billing__features {
  color: rgb(248, 250, 252);
}

.billing__features li {
  position: relative;
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}
.billing__features li:last-child {
  margin-bottom: 0;
}
.billing__features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgb(139, 92, 246);
  font-weight: 700;
}
body[data-color-mode=dark] .billing__features li::before {
  color: rgb(139, 92, 246);
}

.billing__credits {
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .billing__credits {
    margin-top: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
  }
}

.billing__credits-title {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-xl);
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .billing__credits-title {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .billing__credits-title {
    font-size: 1.8rem;
    line-height: 136.364%;
    font-weight: 600;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
    margin-bottom: var(--spacing-2xl);
  }
  body[data-color-mode=dark] .billing__credits-title {
    color: rgb(248, 250, 252);
  }
}

.billing__credits-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--spacing-xs);
  margin: var(--spacing-md) 0 var(--spacing-lg);
}
@media (min-width: 768px) {
  .billing__credits-amount {
    margin: var(--spacing-lg) 0 var(--spacing-xl);
  }
}

.billing__credits-value {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .billing__credits-value {
  color: rgb(139, 92, 246);
}

@media (min-width: 768px) {
  .billing__credits-value {
    font-size: 2.5rem;
    line-height: 140%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(139, 92, 246);
  }
  body[data-color-mode=dark] .billing__credits-value {
    color: rgb(139, 92, 246);
  }
}

.billing__credits-label {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .billing__credits-label {
  color: rgb(220, 220, 220);
}

.billing__credits-pay {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-left: auto;
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .billing__credits-pay {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .billing__credits-pay {
    font-size: 2rem;
    line-height: 140%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .billing__credits-pay {
    color: rgb(248, 250, 252);
  }
}

@media (min-width: 769px) {
  .billing__credits:has(.billing__credits-title) .billing__plans-row {
    max-width: 800px;
    margin: 0 auto;
  }
}
.billing__credits:has(.billing__credits-title) .billing__card {
  padding: var(--spacing-xl);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .billing__credits:has(.billing__credits-title) .billing__card {
    padding: var(--spacing-2xl);
  }
}
.billing__credits:has(.billing__credits-title) .billing__credits-amount {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-sm);
  margin: 0 0 var(--spacing-xl) 0;
  width: 100%;
}
@media (min-width: 768px) {
  .billing__credits:has(.billing__credits-title) .billing__credits-amount {
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
  }
}
.billing__credits:has(.billing__credits-title) .billing__credits-value {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .billing__credits:has(.billing__credits-title) .billing__credits-value {
  color: rgb(139, 92, 246);
}

@media (min-width: 768px) {
  .billing__credits:has(.billing__credits-title) .billing__credits-value {
    font-size: 2.9rem;
    line-height: 137.931%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(139, 92, 246);
  }
  body[data-color-mode=dark] .billing__credits:has(.billing__credits-title) .billing__credits-value {
    color: rgb(139, 92, 246);
  }
}
.billing__credits:has(.billing__credits-title) .billing__credits-label {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-bottom: var(--spacing-xs);
}
body[data-color-mode=dark] .billing__credits:has(.billing__credits-title) .billing__credits-label {
  color: rgb(220, 220, 220);
}

.billing__credits:has(.billing__credits-title) .billing__credits-pay {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-left: 0;
  margin-top: var(--spacing-xs);
  padding-top: var(--spacing-md);
  border-top: 1px solid;
  border-color: rgb(226, 232, 240);
  width: 100%;
}
body[data-color-mode=dark] .billing__credits:has(.billing__credits-title) .billing__credits-pay {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] .billing__credits:has(.billing__credits-title) .billing__credits-pay {
  border-color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .billing__credits:has(.billing__credits-title) .billing__credits-pay {
    font-size: 1.8rem;
    line-height: 136.364%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
    padding-top: var(--spacing-lg);
  }
  body[data-color-mode=dark] .billing__credits:has(.billing__credits-title) .billing__credits-pay {
    color: rgb(248, 250, 252);
  }
}
.billing__credits:has(.billing__credits-title) .n-button {
  width: 100%;
  margin-top: auto;
}

.billing__note {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  background-color: rgb(241, 245, 249);
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  letter-spacing: 0.1px;
  line-height: 1.6;
}
body[data-color-mode=dark] .billing__note {
  color: rgb(148, 163, 184);
}

body[data-color-mode=dark] .billing__note {
  background-color: rgb(30, 41, 59);
}

body[data-color-mode=dark] .billing__note {
  border-color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .billing__note {
    padding: var(--spacing-xl);
  }
}
.billing__note p {
  margin: 0;
}

.billing__credits-restricted {
  padding: var(--spacing-xl);
  text-align: center;
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .billing__credits-restricted {
  color: rgb(220, 220, 220);
}

@media (min-width: 768px) {
  .billing__credits-restricted {
    padding: var(--spacing-2xl);
  }
}
.billing__credits-restricted p {
  margin: 0;
  line-height: 1.6;
}

.n-button-group .n-button {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.n-button-group .n-button:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-button-group .n-button:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.n-card {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  overflow: hidden;
}
body[data-color-mode=dark] .n-card {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .n-card {
  border-color: rgb(148, 163, 184);
}

.n-card:hover {
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
.n-card:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-card:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.n-card.n-card--bordered {
  border: 2px solid;
  border-color: rgb(167, 139, 250);
}
body[data-color-mode=dark] .n-card.n-card--bordered {
  border-color: rgb(167, 139, 250);
}

.n-button {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.n-button:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-button:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.n-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .billing {
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-2xl);
  }
  .billing__title {
    font-size: 2rem;
    line-height: 140%;
    font-weight: 600;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .billing__title {
    color: rgb(248, 250, 252);
  }
  .billing__subtitle {
    margin-bottom: var(--spacing-lg);
  }
  .billing__controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
  }
  .billing__plans {
    margin-bottom: var(--spacing-lg);
  }
  .billing__plans-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .billing__plan-item {
    width: 100%;
  }
  .billing__price {
    font-size: 1.7rem;
    line-height: 1.412;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .billing__price {
    color: rgb(248, 250, 252);
  }
  .billing__note {
    padding: var(--spacing-md);
  }
}
.subscription-credits {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-3xl);
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .subscription-credits {
  background-color: rgb(0, 0, 0);
}

@media (min-width: 768px) {
  .subscription-credits {
    padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-4xl);
  }
}

.subscription-credits__layout {
  background: transparent;
}

.subscription-credits__header {
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .subscription-credits__header {
    margin-bottom: var(--spacing-2xl);
  }
}

.subscription-credits__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .subscription-credits__title {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .subscription-credits__title {
    font-size: 2.5rem;
    line-height: 140%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .subscription-credits__title {
    color: rgb(248, 250, 252);
  }
}

.subscription-credits__subtitle {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0;
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .subscription-credits__subtitle {
  color: rgb(220, 220, 220);
}

.subscription-credits__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-lg);
  min-height: 400px;
  position: relative;
}
@media (min-width: 768px) {
  .subscription-credits__content {
    gap: var(--spacing-xl);
  }
}

.subscription-credits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-lg);
}
@media (max-width: 768px) {
  .subscription-credits__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}
@media (min-width: 1024px) {
  .subscription-credits__grid {
    gap: var(--spacing-xl);
  }
}

.subscription-credits__card {
  height: 100%;
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  overflow: hidden;
}
body[data-color-mode=dark] .subscription-credits__card {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .subscription-credits__card {
  border-color: rgb(148, 163, 184);
}

.subscription-credits__card:hover {
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-color: rgb(167, 139, 250);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
body[data-color-mode=dark] .subscription-credits__card:hover {
  border-color: rgb(167, 139, 250);
}

.subscription-credits__card:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .subscription-credits__card:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.subscription-credits__plan-name {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0 0 var(--spacing-sm) 0;
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .subscription-credits__plan-name {
  color: rgb(248, 250, 252);
}

.subscription-credits__period {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0;
  letter-spacing: 0.1px;
  line-height: 1.6;
}
body[data-color-mode=dark] .subscription-credits__period {
  color: rgb(220, 220, 220);
}

.subscription-credits__period strong {
  color: rgb(15, 23, 42);
  font-weight: 600;
}
body[data-color-mode=dark] .subscription-credits__period strong {
  color: rgb(248, 250, 252);
}

.subscription-credits__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-md);
}

.subscription-credits__stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .subscription-credits__stat {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] .subscription-credits__stat {
  border-color: rgb(148, 163, 184);
}

.subscription-credits__stat--highlight {
  padding: var(--spacing-md);
  margin: var(--spacing-sm) calc(-1 * var(--spacing-md));
  border-radius: var(--radius-md);
  background-color: rgb(241, 245, 249);
  border: 1px solid;
  border-color: rgb(167, 139, 250);
}
body[data-color-mode=dark] .subscription-credits__stat--highlight {
  background-color: rgb(30, 41, 59);
}

body[data-color-mode=dark] .subscription-credits__stat--highlight {
  border-color: rgb(167, 139, 250);
}

.subscription-credits__stat--highlight .subscription-credits__stat-label {
  color: rgb(139, 92, 246);
  font-weight: 600;
}
body[data-color-mode=dark] .subscription-credits__stat--highlight .subscription-credits__stat-label {
  color: rgb(139, 92, 246);
}

.subscription-credits__stat--highlight .subscription-credits__stat-value {
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .subscription-credits__stat--highlight .subscription-credits__stat-value {
  color: rgb(139, 92, 246);
}

.subscription-credits__stat-label {
  color: rgb(71, 85, 105);
  font-weight: 400;
}
body[data-color-mode=dark] .subscription-credits__stat-label {
  color: rgb(220, 220, 220);
}

.subscription-credits__stat-value {
  color: rgb(15, 23, 42);
  font-weight: 600;
  letter-spacing: -0.2px;
}
body[data-color-mode=dark] .subscription-credits__stat-value {
  color: rgb(248, 250, 252);
}

.subscription-credits__empty {
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  background-color: rgb(241, 245, 249);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  text-align: center;
}
body[data-color-mode=dark] .subscription-credits__empty {
  background-color: rgb(30, 41, 59);
}

body[data-color-mode=dark] .subscription-credits__empty {
  border-color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .subscription-credits__empty {
    padding: var(--spacing-2xl);
  }
}

.subscription-credits__empty-text {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0;
  letter-spacing: 0.1px;
  line-height: 1.6;
}
body[data-color-mode=dark] .subscription-credits__empty-text {
  color: rgb(220, 220, 220);
}

.subscription-credits__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}
@media (min-width: 768px) {
  .subscription-credits__actions {
    margin-top: var(--spacing-xl);
  }
}
.subscription-credits__actions .n-space {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.subscription-credits__actions .n-space .n-button {
  height: 34px;
  min-height: 34px;
}
.subscription-credits__actions .n-space .n-input-number {
  height: 34px;
}
.subscription-credits__actions .n-space .n-input-number .n-input {
  height: 34px;
}
.subscription-credits__actions .n-space .n-input-number .n-input .n-input__input-el {
  height: 34px;
  line-height: 34px;
}

.subscription-credits__amount-input {
  width: 200px;
}
@media (max-width: 768px) {
  .subscription-credits__amount-input {
    width: 100%;
  }
}

.subscription-credits__hint {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  margin: 0;
  letter-spacing: 0.1px;
  line-height: 1.6;
}
body[data-color-mode=dark] .subscription-credits__hint {
  color: rgb(148, 163, 184);
}

.n-layout-content {
  padding: 0 !important;
}

.n-spin {
  width: 100%;
}

.n-card {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  overflow: hidden;
}
body[data-color-mode=dark] .n-card {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .n-card {
  border-color: rgb(148, 163, 184);
}

.n-card:hover {
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-color: rgb(167, 139, 250);
}
body[data-color-mode=dark] .n-card:hover {
  border-color: rgb(167, 139, 250);
}

.n-card:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-card:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.n-card .n-card-header {
  border-color: rgb(226, 232, 240);
  padding-bottom: var(--spacing-md);
}
body[data-color-mode=dark] .n-card .n-card-header {
  border-color: rgb(148, 163, 184);
}

.n-card .n-card-header .n-card-header__main {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-card .n-card-header .n-card-header__main {
  color: rgb(248, 250, 252);
}

.n-button {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.n-button:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-button:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.n-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.n-space {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .n-space {
    width: 100%;
  }
  .n-space .n-button,
  .n-space .n-input-number {
    width: 100%;
  }
}

.n-input-number {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.n-input-number:focus-within .n-input__input-el {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-input-number:focus-within .n-input__input-el {
  outline-color: rgb(139, 92, 246);
}

@media (max-width: 768px) {
  .subscription-credits {
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-2xl);
  }
  .subscription-credits__header {
    margin-bottom: var(--spacing-lg);
  }
  .subscription-credits__title {
    font-size: 2rem;
    line-height: 140%;
    font-weight: 600;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .subscription-credits__title {
    color: rgb(248, 250, 252);
  }
  .subscription-credits__content {
    gap: var(--spacing-md);
  }
  .subscription-credits__grid {
    grid-template-columns: 1fr;
  }
  .subscription-credits__actions {
    margin-top: var(--spacing-md);
  }
  .subscription-credits__amount-input {
    width: 100%;
  }
}
.credit-history-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-3xl);
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .credit-history-container {
  background-color: rgb(0, 0, 0);
}

@media (min-width: 768px) {
  .credit-history-container {
    padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-4xl);
  }
}

.credit-history-layout {
  background: transparent;
}

.credit-history__header {
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .credit-history__header {
    margin-bottom: var(--spacing-2xl);
  }
}

.credit-history__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .credit-history__title {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .credit-history__title {
    font-size: 2.5rem;
    line-height: 140%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .credit-history__title {
    color: rgb(248, 250, 252);
  }
}

.credit-history__plan {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-top: var(--spacing-xs);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-xs);
}
body[data-color-mode=dark] .credit-history__plan {
  color: rgb(220, 220, 220);
}

.credit-history__plan .credit-history__plan-label {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .credit-history__plan .credit-history__plan-label {
  color: rgb(220, 220, 220);
}

.credit-history__plan .credit-history__plan-name {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .credit-history__plan .credit-history__plan-name {
  color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .credit-history__plan .credit-history__plan-name {
  background-color: rgb(30, 41, 59);
}

.credit-history__tabs {
  margin-bottom: var(--spacing-lg);
}
@media (min-width: 768px) {
  .credit-history__tabs {
    margin-bottom: var(--spacing-xl);
  }
}

.credit-history__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-lg);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
}
@media (min-width: 768px) {
  .credit-history__stats {
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
  }
}

.credit-history__suffix {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-left: var(--spacing-xs);
  font-weight: 400;
}
body[data-color-mode=dark] .credit-history__suffix {
  color: rgb(220, 220, 220);
}

.credit-history__filters {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-lg);
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .credit-history__filters {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .credit-history__filters {
  border-color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .credit-history__filters {
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
  }
}

.credit-history__content {
  min-height: 400px;
  position: relative;
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  padding: var(--spacing-lg);
}
body[data-color-mode=dark] .credit-history__content {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .credit-history__content {
  border-color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .credit-history__content {
    padding: var(--spacing-xl);
  }
}

.credit-history__empty {
  padding: var(--spacing-3xl) 0;
  text-align: center;
}
@media (min-width: 768px) {
  .credit-history__empty {
    padding: var(--spacing-4xl) 0;
  }
}

.n-layout-content {
  padding: 0 !important;
}

.n-spin {
  width: 100%;
}

.n-tabs {
  background-color: rgba(255, 255, 255, 0);
}
body[data-color-mode=dark] .n-tabs {
  background-color: rgba(0, 0, 0, 0);
}

.n-tabs .n-tabs-tab {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.n-tabs .n-tabs-tab:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-tabs .n-tabs-tab:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.n-tabs .n-tabs-tab--active {
  color: rgb(139, 92, 246);
}
body[data-color-mode=dark] .n-tabs .n-tabs-tab--active {
  color: rgb(139, 92, 246);
}

.n-statistic {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  padding: var(--spacing-lg);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
}
body[data-color-mode=dark] .n-statistic {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .n-statistic {
  border-color: rgb(148, 163, 184);
}

.n-statistic:hover {
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-color: rgb(167, 139, 250);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
body[data-color-mode=dark] .n-statistic:hover {
  border-color: rgb(167, 139, 250);
}

.n-statistic .n-statistic__label {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-bottom: var(--spacing-xs);
}
body[data-color-mode=dark] .n-statistic .n-statistic__label {
  color: rgb(220, 220, 220);
}

.n-statistic .n-statistic__value {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-statistic .n-statistic__value {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .n-statistic .n-statistic__value {
    font-size: 1.8rem;
    line-height: 136.364%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .n-statistic .n-statistic__value {
    color: rgb(248, 250, 252);
  }
}

.n-data-table {
  background-color: rgba(255, 255, 255, 0);
}
body[data-color-mode=dark] .n-data-table {
  background-color: rgba(0, 0, 0, 0);
}

.n-data-table .n-data-table-wrapper {
  background-color: rgba(255, 255, 255, 0);
}
body[data-color-mode=dark] .n-data-table .n-data-table-wrapper {
  background-color: rgba(0, 0, 0, 0);
}

.n-data-table .n-data-table-thead {
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .n-data-table .n-data-table-thead {
  background-color: rgb(30, 41, 59);
}

.n-data-table .n-data-table-thead th {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .n-data-table .n-data-table-thead th {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] .n-data-table .n-data-table-thead th {
  border-color: rgb(148, 163, 184);
}

.n-data-table .n-data-table-tbody tr {
  border-color: rgb(226, 232, 240);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .n-data-table .n-data-table-tbody tr {
  border-color: rgb(148, 163, 184);
}

.n-data-table .n-data-table-tbody tr:hover {
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .n-data-table .n-data-table-tbody tr:hover {
  background-color: rgb(30, 41, 59);
}

.n-data-table .n-data-table-tbody td {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .n-data-table .n-data-table-tbody td {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] .n-data-table .n-data-table-tbody td {
  border-color: rgb(148, 163, 184);
}

.n-empty {
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .n-empty {
  color: rgb(220, 220, 220);
}

.n-empty .n-empty__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  margin-top: var(--spacing-md);
}
body[data-color-mode=dark] .n-empty .n-empty__description {
  color: rgb(148, 163, 184);
}

.n-space {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--spacing-md);
}
@media (max-width: 768px) {
  .n-space {
    width: 100%;
  }
  .n-space .n-select,
  .n-space .n-date-picker {
    width: 100%;
  }
}

.n-select {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.n-select:focus-within .n-base-selection {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-select:focus-within .n-base-selection {
  outline-color: rgb(139, 92, 246);
}

.n-date-picker {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.n-date-picker:focus-within .n-input {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-date-picker:focus-within .n-input {
  outline-color: rgb(139, 92, 246);
}

@media (max-width: 768px) {
  .credit-history-container {
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-2xl);
  }
  .credit-history__header {
    margin-bottom: var(--spacing-lg);
  }
  .credit-history__title {
    font-size: 2rem;
    line-height: 140%;
    font-weight: 600;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .credit-history__title {
    color: rgb(248, 250, 252);
  }
  .credit-history__stats {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--spacing-md);
  }
  .credit-history__filters {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }
  .credit-history__content {
    padding: var(--spacing-md);
  }
  .n-statistic {
    min-width: 100%;
  }
}
.payment-history-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-3xl);
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .payment-history-container {
  background-color: rgb(0, 0, 0);
}

@media (min-width: 768px) {
  .payment-history-container {
    padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-4xl);
  }
}

.payment-history-layout {
  background: transparent;
}

.payment-history__header {
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .payment-history__header {
    margin-bottom: var(--spacing-2xl);
  }
}

.payment-history__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .payment-history__title {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .payment-history__title {
    font-size: 2.5rem;
    line-height: 140%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .payment-history__title {
    color: rgb(248, 250, 252);
  }
}

.payment-history__plan {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-top: var(--spacing-xs);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-xs);
}
body[data-color-mode=dark] .payment-history__plan {
  color: rgb(220, 220, 220);
}

.payment-history__plan .payment-history__plan-label {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .payment-history__plan .payment-history__plan-label {
  color: rgb(220, 220, 220);
}

.payment-history__plan .payment-history__plan-name {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(139, 92, 246);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .payment-history__plan .payment-history__plan-name {
  color: rgb(139, 92, 246);
}

body[data-color-mode=dark] .payment-history__plan .payment-history__plan-name {
  background-color: rgb(30, 41, 59);
}

.payment-history__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-lg);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
}
@media (min-width: 768px) {
  .payment-history__stats {
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
  }
}

.payment-history__suffix {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-left: var(--spacing-xs);
  font-weight: 400;
}
body[data-color-mode=dark] .payment-history__suffix {
  color: rgb(220, 220, 220);
}

.payment-history__filters {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-lg);
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .payment-history__filters {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .payment-history__filters {
  border-color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .payment-history__filters {
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
  }
}

.payment-history__content {
  min-height: 400px;
  position: relative;
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  padding: var(--spacing-lg);
}
body[data-color-mode=dark] .payment-history__content {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .payment-history__content {
  border-color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .payment-history__content {
    padding: var(--spacing-xl);
  }
}

.payment-history__empty {
  padding: var(--spacing-3xl) 0;
  text-align: center;
}
@media (min-width: 768px) {
  .payment-history__empty {
    padding: var(--spacing-4xl) 0;
  }
}

.n-layout-content {
  padding: 0 !important;
}

.n-spin {
  width: 100%;
}

.n-statistic {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  padding: var(--spacing-lg);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
}
body[data-color-mode=dark] .n-statistic {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .n-statistic {
  border-color: rgb(148, 163, 184);
}

.n-statistic:hover {
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-color: rgb(167, 139, 250);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
body[data-color-mode=dark] .n-statistic:hover {
  border-color: rgb(167, 139, 250);
}

.n-statistic .n-statistic__label {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin-bottom: var(--spacing-xs);
}
body[data-color-mode=dark] .n-statistic .n-statistic__label {
  color: rgb(220, 220, 220);
}

.n-statistic .n-statistic__value {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-statistic .n-statistic__value {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .n-statistic .n-statistic__value {
    font-size: 1.8rem;
    line-height: 136.364%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .n-statistic .n-statistic__value {
    color: rgb(248, 250, 252);
  }
}

.n-data-table {
  background-color: rgba(255, 255, 255, 0);
}
body[data-color-mode=dark] .n-data-table {
  background-color: rgba(0, 0, 0, 0);
}

.n-data-table .n-data-table-wrapper {
  background-color: rgba(255, 255, 255, 0);
}
body[data-color-mode=dark] .n-data-table .n-data-table-wrapper {
  background-color: rgba(0, 0, 0, 0);
}

.n-data-table .n-data-table-thead {
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .n-data-table .n-data-table-thead {
  background-color: rgb(30, 41, 59);
}

.n-data-table .n-data-table-thead th {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .n-data-table .n-data-table-thead th {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] .n-data-table .n-data-table-thead th {
  border-color: rgb(148, 163, 184);
}

.n-data-table .n-data-table-tbody tr {
  border-color: rgb(226, 232, 240);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .n-data-table .n-data-table-tbody tr {
  border-color: rgb(148, 163, 184);
}

.n-data-table .n-data-table-tbody tr:hover {
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .n-data-table .n-data-table-tbody tr:hover {
  background-color: rgb(30, 41, 59);
}

.n-data-table .n-data-table-tbody td {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .n-data-table .n-data-table-tbody td {
  color: rgb(248, 250, 252);
}

body[data-color-mode=dark] .n-data-table .n-data-table-tbody td {
  border-color: rgb(148, 163, 184);
}

.n-empty {
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .n-empty {
  color: rgb(220, 220, 220);
}

.n-empty .n-empty__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  margin-top: var(--spacing-md);
}
body[data-color-mode=dark] .n-empty .n-empty__description {
  color: rgb(148, 163, 184);
}

.n-space {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--spacing-md);
}
@media (max-width: 768px) {
  .n-space {
    width: 100%;
  }
  .n-space .n-select,
  .n-space .n-date-picker {
    width: 100%;
  }
}

.n-select {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.n-select:focus-within .n-base-selection {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-select:focus-within .n-base-selection {
  outline-color: rgb(139, 92, 246);
}

.n-date-picker {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.n-date-picker:focus-within .n-input {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-date-picker:focus-within .n-input {
  outline-color: rgb(139, 92, 246);
}

@media (max-width: 768px) {
  .payment-history-container {
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-2xl);
  }
  .payment-history__header {
    margin-bottom: var(--spacing-lg);
  }
  .payment-history__title {
    font-size: 2rem;
    line-height: 140%;
    font-weight: 600;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .payment-history__title {
    color: rgb(248, 250, 252);
  }
  .payment-history__stats {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--spacing-md);
  }
  .payment-history__filters {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }
  .payment-history__content {
    padding: var(--spacing-md);
  }
  .n-statistic {
    min-width: 100%;
  }
}
.message-list-container {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .message-list-container {
  background-color: rgb(0, 0, 0);
}

.message-list-layout {
  background: transparent;
}

.message-list__header {
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .message-list__header {
    margin-bottom: var(--spacing-2xl);
  }
}

.message-list__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .message-list__title {
  color: rgb(248, 250, 252);
}

.message-list__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0;
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .message-list__description {
  color: rgb(220, 220, 220);
}

.message-list__filters {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-lg);
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .message-list__filters {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .message-list__filters {
  border-color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .message-list__filters {
    padding: var(--spacing-xl);
  }
}
@media (max-width: 767px) {
  .message-list__filters .n-form {
    display: block !important;
  }
  .message-list__filters .n-form-item {
    display: block !important;
    margin-bottom: var(--spacing-md);
    margin-right: 0 !important;
  }
  .message-list__filters .n-form-item:last-child {
    margin-bottom: 0;
  }
  .message-list__filters .n-form-item .n-form-item-label {
    display: block;
    margin-bottom: var(--spacing-xs);
  }
  .message-list__filters .n-form-item .n-form-item-blank {
    width: 100% !important;
  }
  .message-list__filters .n-form-item .n-select,
  .message-list__filters .n-form-item .n-button {
    width: 100% !important;
  }
  .message-list__filters .n-form-item .n-form-item-feedback-wrapper {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

.message-list__content {
  min-height: 400px;
  position: relative;
}

.message-list__item {
  margin-bottom: var(--spacing-md);
}
.message-list__item:last-child {
  margin-bottom: 0;
}

.message-list__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--spacing-lg);
}
@media (max-width: 768px) {
  .message-list__item-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--spacing-md);
  }
}

.message-list__item-avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: var(--spacing-sm);
}
@media (max-width: 768px) {
  .message-list__item-avatar {
    margin-right: 0;
    margin-bottom: var(--spacing-sm);
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.message-list__item-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.message-list__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.message-list__item-title {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0;
  letter-spacing: -0.3px;
  word-break: break-word;
}
body[data-color-mode=dark] .message-list__item-title {
  color: rgb(248, 250, 252);
}

.message-list__item-text {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: var(--spacing-sm) 0;
  word-break: break-word;
  line-height: 1.6;
}
body[data-color-mode=dark] .message-list__item-text {
  color: rgb(220, 220, 220);
}

.message-list__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-sm);
}
@media (max-width: 768px) {
  .message-list__item-meta {
    gap: var(--spacing-sm);
  }
}

.message-list__meta-item {
  white-space: nowrap;
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .message-list__meta-item {
  color: rgb(148, 163, 184);
}

.message-list__item-actions {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .message-list__item-actions {
    width: 100%;
  }
  .message-list__item-actions .n-space {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.message-list__pagination {
  margin-top: var(--spacing-xl);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: var(--spacing-lg) 0;
}
@media (min-width: 768px) {
  .message-list__pagination {
    margin-top: var(--spacing-2xl);
  }
}

.n-layout-content {
  padding: 0 !important;
}

.n-spin {
  width: 100%;
}

.n-list {
  background-color: rgba(255, 255, 255, 0);
}
body[data-color-mode=dark] .n-list {
  background-color: rgba(0, 0, 0, 0);
}

.n-list-item {
  background-color: rgba(255, 255, 255, 0);
  padding: 0;
}
body[data-color-mode=dark] .n-list-item {
  background-color: rgba(0, 0, 0, 0);
}

.n-card {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  overflow: hidden;
}
body[data-color-mode=dark] .n-card {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .n-card {
  border-color: rgb(148, 163, 184);
}

.n-card:hover {
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-color: rgb(167, 139, 250);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .n-card:hover {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .n-card:hover {
  background-color: rgb(30, 41, 59);
}

.n-card:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-card:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.n-empty {
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .n-empty {
  color: rgb(220, 220, 220);
}

.n-empty .n-empty__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  margin-top: var(--spacing-md);
}
body[data-color-mode=dark] .n-empty .n-empty__description {
  color: rgb(148, 163, 184);
}

.n-tag {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.n-text {
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-text {
  color: rgb(248, 250, 252);
}

.n-text[depth="3"] {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .n-text[depth="3"] {
  color: rgb(148, 163, 184);
}

.n-button {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.n-button:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-button:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.n-pagination {
  background-color: rgba(255, 255, 255, 0);
}
body[data-color-mode=dark] .n-pagination {
  background-color: rgba(0, 0, 0, 0);
}

@media (max-width: 768px) {
  .message-list__header {
    margin-bottom: var(--spacing-lg);
  }
  .message-list__title {
    font-size: 2rem;
    line-height: 140%;
    font-weight: 600;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .message-list__title {
    color: rgb(248, 250, 252);
  }
  .message-list__filters {
    padding: var(--spacing-md);
  }
  .message-list__item-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .message-list__item-actions {
    width: 100%;
  }
  .message-list__item-actions .n-space {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.message-list-container {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .message-list-container {
  background-color: rgb(0, 0, 0);
}

.message-list-layout {
  background: transparent;
}

.message-list__header {
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .message-list__header {
    margin-bottom: var(--spacing-2xl);
  }
}

.message-list__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .message-list__title {
  color: rgb(248, 250, 252);
}

.message-list__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0;
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .message-list__description {
  color: rgb(220, 220, 220);
}

.message-list__filters {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-lg);
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .message-list__filters {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .message-list__filters {
  border-color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .message-list__filters {
    padding: var(--spacing-xl);
  }
}
@media (max-width: 767px) {
  .message-list__filters .n-form {
    display: block !important;
  }
  .message-list__filters .n-form-item {
    display: block !important;
    margin-bottom: var(--spacing-md);
    margin-right: 0 !important;
  }
  .message-list__filters .n-form-item:last-child {
    margin-bottom: 0;
  }
  .message-list__filters .n-form-item .n-form-item-label {
    display: block;
    margin-bottom: var(--spacing-xs);
  }
  .message-list__filters .n-form-item .n-form-item-blank {
    width: 100% !important;
  }
  .message-list__filters .n-form-item .n-select,
  .message-list__filters .n-form-item .n-button {
    width: 100% !important;
  }
  .message-list__filters .n-form-item .n-form-item-feedback-wrapper {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

.message-list__content {
  min-height: 400px;
  position: relative;
}

.message-list__item {
  margin-bottom: var(--spacing-md);
}
.message-list__item:last-child {
  margin-bottom: 0;
}

.message-list__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--spacing-lg);
}
@media (max-width: 768px) {
  .message-list__item-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--spacing-md);
  }
}

.message-list__item-avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: var(--spacing-sm);
}
@media (max-width: 768px) {
  .message-list__item-avatar {
    margin-right: 0;
    margin-bottom: var(--spacing-sm);
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.message-list__item-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.message-list__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.message-list__item-title {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0;
  letter-spacing: -0.3px;
  word-break: break-word;
}
body[data-color-mode=dark] .message-list__item-title {
  color: rgb(248, 250, 252);
}

.message-list__item-preview {
  margin: var(--spacing-sm) 0 var(--spacing-md) 0;
}

.message-list__preview-image {
  max-width: 200px;
  max-height: 150px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .message-list__preview-image {
  border-color: rgb(148, 163, 184);
}

.message-list__preview-image:hover {
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-color: rgb(167, 139, 250);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
body[data-color-mode=dark] .message-list__preview-image:hover {
  border-color: rgb(167, 139, 250);
}

@media (max-width: 768px) {
  .message-list__preview-image {
    max-width: 100%;
    max-height: 200px;
  }
}

.message-list__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-sm);
}
@media (max-width: 768px) {
  .message-list__item-meta {
    gap: var(--spacing-sm);
  }
}

.message-list__meta-item {
  white-space: nowrap;
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .message-list__meta-item {
  color: rgb(148, 163, 184);
}

.message-list__item-actions {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .message-list__item-actions {
    width: 100%;
  }
  .message-list__item-actions .n-space {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.message-list__pagination {
  margin-top: var(--spacing-xl);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: var(--spacing-lg) 0;
}
@media (min-width: 768px) {
  .message-list__pagination {
    margin-top: var(--spacing-2xl);
  }
}

.message-list__video-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgb(241, 245, 249);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  min-height: 300px;
}
body[data-color-mode=dark] .message-list__video-container {
  background-color: rgb(30, 41, 59);
}

@media (min-width: 768px) {
  .message-list__video-container {
    min-height: 400px;
    padding: var(--spacing-lg);
  }
}

.message-list__video {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  background-color: rgb(248, 250, 252);
}
body[data-color-mode=dark] .message-list__video {
  background-color: rgb(15, 23, 42);
}

.n-layout-content {
  padding: 0 !important;
}

.n-spin {
  width: 100%;
}

.n-list {
  background-color: rgba(255, 255, 255, 0);
}
body[data-color-mode=dark] .n-list {
  background-color: rgba(0, 0, 0, 0);
}

.n-list-item {
  background-color: rgba(255, 255, 255, 0);
  padding: 0;
}
body[data-color-mode=dark] .n-list-item {
  background-color: rgba(0, 0, 0, 0);
}

.n-card {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  overflow: hidden;
}
body[data-color-mode=dark] .n-card {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .n-card {
  border-color: rgb(148, 163, 184);
}

.n-card:hover {
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-color: rgb(167, 139, 250);
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .n-card:hover {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .n-card:hover {
  background-color: rgb(30, 41, 59);
}

.n-card:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-card:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.n-empty {
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .n-empty {
  color: rgb(220, 220, 220);
}

.n-empty .n-empty__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  margin-top: var(--spacing-md);
}
body[data-color-mode=dark] .n-empty .n-empty__description {
  color: rgb(148, 163, 184);
}

.n-tag {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.n-text {
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-text {
  color: rgb(248, 250, 252);
}

.n-text[depth="3"] {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .n-text[depth="3"] {
  color: rgb(148, 163, 184);
}

.n-button {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.n-button:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-button:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.n-pagination {
  background-color: rgba(255, 255, 255, 0);
}
body[data-color-mode=dark] .n-pagination {
  background-color: rgba(0, 0, 0, 0);
}

.n-modal {
  z-index: 4000 !important;
}
.n-modal .n-card {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-xl);
          box-shadow: var(--shadow-xl);
}
body[data-color-mode=dark] .n-modal .n-card {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .n-modal .n-card {
  border-color: rgb(148, 163, 184);
}

.n-modal .n-card .n-card-header {
  border-color: rgb(226, 232, 240);
  padding: var(--spacing-lg) var(--spacing-xl);
}
body[data-color-mode=dark] .n-modal .n-card .n-card-header {
  border-color: rgb(148, 163, 184);
}

@media (max-width: 767px) {
  .n-modal .n-card .n-card-header {
    padding: var(--spacing-md) var(--spacing-lg);
  }
}
.n-modal .n-card .n-card-header .n-card-header__main {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-modal .n-card .n-card-header .n-card-header__main {
  color: rgb(248, 250, 252);
}

@media (max-width: 767px) {
  .n-modal .n-card .n-card-header .n-card-header__main {
    font-size: 1.7rem;
    line-height: 1.412;
    font-weight: 600;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .n-modal .n-card .n-card-header .n-card-header__main {
    color: rgb(248, 250, 252);
  }
}
.n-modal .n-card .n-card__content {
  padding: var(--spacing-xl);
}
@media (max-width: 767px) {
  .n-modal .n-card .n-card__content {
    padding: var(--spacing-md);
  }
}

.message-list__video-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 300px;
  background-color: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.message-list__video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .message-list__header {
    margin-bottom: var(--spacing-lg);
  }
  .message-list__title {
    font-size: 2rem;
    line-height: 140%;
    font-weight: 600;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .message-list__title {
    color: rgb(248, 250, 252);
  }
  .message-list__filters {
    padding: var(--spacing-md);
  }
  .message-list__item-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .message-list__item-actions {
    width: 100%;
  }
  .message-list__item-actions .n-space {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .message-list__preview-image {
    max-width: 100%;
    max-height: 200px;
  }
  .message-list__video-container {
    min-height: 250px;
    padding: var(--spacing-sm);
  }
}
.video-playback-modal {
  position: fixed !important;
  z-index: 4000 !important;
}
.video-playback-modal .n-modal__content-wrapper {
  position: fixed !important;
  z-index: 4000 !important;
}
.video-playback-modal .n-card {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
  width: 50% !important;
  height: 50% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  z-index: 4001 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}
@media (max-width: 768px) {
  .video-playback-modal .n-card {
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    -webkit-transform: none !important;
            transform: none !important;
    border-radius: 0 !important;
  }
}

body .video-playback-modal {
  position: fixed !important;
  z-index: 4000 !important;
}
body .video-playback-modal .n-modal__content-wrapper {
  position: fixed !important;
  z-index: 4000 !important;
}
body .video-playback-modal .n-card {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
  width: 50% !important;
  height: 50% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  z-index: 4001 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}
@media (max-width: 768px) {
  body .video-playback-modal .n-card {
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    -webkit-transform: none !important;
            transform: none !important;
    border-radius: 0 !important;
  }
}

.letter-list-container {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .letter-list-container {
  background-color: rgb(0, 0, 0);
}

.letter-list-layout {
  background: transparent;
}

.letter-list__header {
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .letter-list__header {
    margin-bottom: var(--spacing-2xl);
  }
}

.letter-list__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .letter-list__title {
  color: rgb(248, 250, 252);
}

.letter-list__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0;
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .letter-list__description {
  color: rgb(220, 220, 220);
}

.letter-list__filters {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-lg);
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .letter-list__filters {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .letter-list__filters {
  border-color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .letter-list__filters {
    padding: var(--spacing-xl);
  }
}
@media (max-width: 767px) {
  .letter-list__filters .n-form {
    display: block !important;
  }
  .letter-list__filters .n-form-item {
    display: block !important;
    margin-bottom: var(--spacing-md);
    margin-right: 0 !important;
  }
  .letter-list__filters .n-form-item:last-child {
    margin-bottom: 0;
  }
  .letter-list__filters .n-form-item .n-form-item-label {
    display: block;
    margin-bottom: var(--spacing-xs);
  }
  .letter-list__filters .n-form-item .n-form-item-blank {
    width: 100% !important;
  }
  .letter-list__filters .n-form-item .n-select,
  .letter-list__filters .n-form-item .n-button {
    width: 100% !important;
  }
  .letter-list__filters .n-form-item .n-form-item-feedback-wrapper {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

.letter-list__content {
  min-height: 400px;
  position: relative;
}

.letter-list__item {
  margin-bottom: var(--spacing-md);
}
.letter-list__item:last-child {
  margin-bottom: 0;
}

.letter-list__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--spacing-lg);
  cursor: pointer;
}
@media (max-width: 768px) {
  .letter-list__item-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--spacing-md);
  }
}

.letter-list__item-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.letter-list__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.letter-list__item-title {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0;
  letter-spacing: -0.3px;
  word-break: break-word;
}
body[data-color-mode=dark] .letter-list__item-title {
  color: rgb(248, 250, 252);
}

.letter-list__item-text {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: var(--spacing-sm) 0;
  word-break: break-word;
  line-height: 1.6;
}
body[data-color-mode=dark] .letter-list__item-text {
  color: rgb(220, 220, 220);
}

.letter-list__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-sm);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .letter-list__item-meta {
    gap: var(--spacing-sm);
  }
}

.letter-list__meta-item {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-xs);
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .letter-list__meta-item {
  color: rgb(148, 163, 184);
}

.letter-list__meta-item .n-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .letter-list__meta-item .n-icon {
  color: rgb(148, 163, 184);
}

.letter-list__item-actions {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .letter-list__item-actions {
    width: 100%;
  }
  .letter-list__item-actions .n-button {
    width: 100%;
  }
}

.letter-list__pagination {
  margin-top: var(--spacing-xl);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: var(--spacing-lg) 0;
}
@media (min-width: 768px) {
  .letter-list__pagination {
    margin-top: var(--spacing-2xl);
  }
}

.n-layout-content {
  padding: 0 !important;
}

.n-spin {
  width: 100%;
}

.n-list {
  background-color: rgba(255, 255, 255, 0);
}
body[data-color-mode=dark] .n-list {
  background-color: rgba(0, 0, 0, 0);
}

.n-list-item {
  background-color: rgba(255, 255, 255, 0);
  padding: 0;
}
body[data-color-mode=dark] .n-list-item {
  background-color: rgba(0, 0, 0, 0);
}

.n-card {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  overflow: hidden;
  cursor: pointer;
}
body[data-color-mode=dark] .n-card {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .n-card {
  border-color: rgb(148, 163, 184);
}

.n-card:hover {
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  border-color: rgb(167, 139, 250);
  background-color: rgb(241, 245, 249);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
body[data-color-mode=dark] .n-card:hover {
  border-color: rgb(167, 139, 250);
}

body[data-color-mode=dark] .n-card:hover {
  background-color: rgb(30, 41, 59);
}

.n-card:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.n-card:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-card:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.n-empty {
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .n-empty {
  color: rgb(220, 220, 220);
}

.n-empty .n-empty__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  margin-top: var(--spacing-md);
}
body[data-color-mode=dark] .n-empty .n-empty__description {
  color: rgb(148, 163, 184);
}

.n-tag {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.n-text {
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-text {
  color: rgb(248, 250, 252);
}

.n-text[depth="3"] {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .n-text[depth="3"] {
  color: rgb(148, 163, 184);
}

.n-button {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.n-button:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-button:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.n-pagination {
  background-color: rgba(255, 255, 255, 0);
}
body[data-color-mode=dark] .n-pagination {
  background-color: rgba(0, 0, 0, 0);
}

@media (max-width: 768px) {
  .letter-list__header {
    margin-bottom: var(--spacing-lg);
  }
  .letter-list__title {
    font-size: 2rem;
    line-height: 140%;
    font-weight: 600;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .letter-list__title {
    color: rgb(248, 250, 252);
  }
  .letter-list__filters {
    padding: var(--spacing-md);
  }
  .letter-list__item-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .letter-list__item-actions {
    width: 100%;
  }
  .letter-list__item-actions .n-button {
    width: 100%;
  }
}
.letter-detail-container {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .letter-detail-container {
  background-color: rgb(0, 0, 0);
}

.letter-detail-layout {
  background: transparent;
}

.letter-detail__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .letter-detail__header {
    margin-bottom: var(--spacing-2xl);
  }
}

.letter-detail__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0;
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .letter-detail__title {
  color: rgb(248, 250, 252);
}

.letter-detail__card {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .letter-detail__card {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .letter-detail__card {
  border-color: rgb(148, 163, 184);
}

.letter-detail__card:hover {
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}

.letter-detail__content {
  padding: var(--spacing-lg);
}
@media (min-width: 768px) {
  .letter-detail__content {
    padding: var(--spacing-xl);
  }
}

.letter-detail__header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .letter-detail__header-info {
  border-color: rgb(148, 163, 184);
}

@media (max-width: 768px) {
  .letter-detail__header-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--spacing-md);
    padding-bottom: var(--spacing-md);
  }
}

.letter-detail__header-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.letter-detail__character-name {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0 0 var(--spacing-sm) 0;
  letter-spacing: -0.3px;
  word-break: break-word;
}
body[data-color-mode=dark] .letter-detail__character-name {
  color: rgb(248, 250, 252);
}

.letter-detail__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spacing-xs);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.letter-detail__header-right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .letter-detail__header-right {
    width: 100%;
  }
}

.letter-detail__body {
  margin-bottom: var(--spacing-lg);
}

.letter-detail__text {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .letter-detail__text {
  color: rgb(248, 250, 252);
}

.letter-detail__media {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .letter-detail__media {
  border-color: rgb(148, 163, 184);
}

.letter-detail__audio {
  margin-bottom: var(--spacing-lg);
}
.letter-detail__audio:last-child {
  margin-bottom: 0;
}

.letter-detail__video {
  margin-bottom: var(--spacing-lg);
}
.letter-detail__video:last-child {
  margin-bottom: 0;
}

.letter-detail__media-title {
  font-size: 1.7rem;
  line-height: 1.412;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0 0 var(--spacing-md) 0;
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .letter-detail__media-title {
  color: rgb(248, 250, 252);
}

.letter-detail__video-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgb(241, 245, 249);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  min-height: 300px;
}
body[data-color-mode=dark] .letter-detail__video-container {
  background-color: rgb(30, 41, 59);
}

@media (min-width: 768px) {
  .letter-detail__video-container {
    min-height: 400px;
    padding: var(--spacing-lg);
  }
}

.letter-detail__video-player {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  background-color: rgb(248, 250, 252);
}
body[data-color-mode=dark] .letter-detail__video-player {
  background-color: rgb(15, 23, 42);
}

.n-layout-content {
  padding: 0 !important;
}

.n-spin {
  width: 100%;
}

.n-card {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  overflow: hidden;
}
body[data-color-mode=dark] .n-card {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .n-card {
  border-color: rgb(148, 163, 184);
}

.n-card:hover {
  -webkit-box-shadow: var(--shadow-lg);
          box-shadow: var(--shadow-lg);
}
.n-card:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-card:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.n-empty {
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .n-empty {
  color: rgb(220, 220, 220);
}

.n-empty .n-empty__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  margin-top: var(--spacing-md);
}
body[data-color-mode=dark] .n-empty .n-empty__description {
  color: rgb(148, 163, 184);
}

.n-tag {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.n-text {
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-text {
  color: rgb(248, 250, 252);
}

.n-text[depth="3"] {
  color: rgb(148, 163, 184);
}
body[data-color-mode=dark] .n-text[depth="3"] {
  color: rgb(148, 163, 184);
}

.n-button {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
.n-button:focus-visible {
  outline: 2px solid;
  outline-color: rgb(139, 92, 246);
  outline-offset: 2px;
}
body[data-color-mode=dark] .n-button:focus-visible {
  outline-color: rgb(139, 92, 246);
}

.n-modal .n-card {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-xl);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-xl);
          box-shadow: var(--shadow-xl);
}
body[data-color-mode=dark] .n-modal .n-card {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .n-modal .n-card {
  border-color: rgb(148, 163, 184);
}

.n-modal .n-card .n-card-header {
  border-color: rgb(226, 232, 240);
  padding: var(--spacing-lg) var(--spacing-xl);
}
body[data-color-mode=dark] .n-modal .n-card .n-card-header {
  border-color: rgb(148, 163, 184);
}

@media (max-width: 767px) {
  .n-modal .n-card .n-card-header {
    padding: var(--spacing-md) var(--spacing-lg);
  }
}
.n-modal .n-card .n-card-header .n-card-header__main {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .n-modal .n-card .n-card-header .n-card-header__main {
  color: rgb(248, 250, 252);
}

@media (max-width: 767px) {
  .n-modal .n-card .n-card-header .n-card-header__main {
    font-size: 1.7rem;
    line-height: 1.412;
    font-weight: 600;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .n-modal .n-card .n-card-header .n-card-header__main {
    color: rgb(248, 250, 252);
  }
}
.n-modal .n-card .n-card__content {
  padding: var(--spacing-xl);
}
@media (max-width: 767px) {
  .n-modal .n-card .n-card__content {
    padding: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .letter-detail__header {
    margin-bottom: var(--spacing-lg);
  }
  .letter-detail__title {
    font-size: 2rem;
    line-height: 140%;
    font-weight: 600;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .letter-detail__title {
    color: rgb(248, 250, 252);
  }
  .letter-detail__content {
    padding: var(--spacing-md);
  }
  .letter-detail__header-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--spacing-md);
  }
  .letter-detail__header-right {
    width: 100%;
  }
  .letter-detail__character-name {
    font-size: 1.7rem;
    line-height: 1.412;
    font-weight: 600;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .letter-detail__character-name {
    color: rgb(248, 250, 252);
  }
  .letter-detail__video-container {
    min-height: 250px;
    padding: var(--spacing-sm);
  }
}
.notice-list-container {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .notice-list-container {
  background-color: rgb(0, 0, 0);
}

.notice-list-layout {
  background: transparent;
}

.notice-list__header {
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .notice-list__header {
    margin-bottom: var(--spacing-2xl);
  }
}

.notice-list__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .notice-list__title {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .notice-list__title {
    font-size: 2.5rem;
    line-height: 140%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .notice-list__title {
    color: rgb(248, 250, 252);
  }
}

.notice-list__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0;
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .notice-list__description {
  color: rgb(220, 220, 220);
}

.notice-list__filters {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-lg);
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .notice-list__filters {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .notice-list__filters {
  border-color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .notice-list__filters {
    padding: var(--spacing-xl);
  }
}

.notice-list__content {
  min-height: 400px;
  margin-bottom: var(--spacing-xl);
}

.notice-list__item {
  margin-bottom: var(--spacing-md);
}
.notice-list__item:last-child {
  margin-bottom: 0;
}

.notice-list__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--spacing-md);
  width: 100%;
}

.notice-list__item-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.notice-list__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.notice-list__item-title {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  word-break: break-word;
  line-height: 1.5;
}
body[data-color-mode=dark] .notice-list__item-title {
  color: rgb(248, 250, 252);
}

.notice-list__item-text {
  font-size: 1.2rem;
  line-height: 1.429;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0 0 var(--spacing-sm) 0;
  line-height: 1.6;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body[data-color-mode=dark] .notice-list__item-text {
  color: rgb(220, 220, 220);
}

.notice-list__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-md);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.notice-list__meta-item {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  font-size: 0.875rem;
  white-space: nowrap;
}
body[data-color-mode=dark] .notice-list__meta-item {
  color: rgb(148, 163, 184);
}

.notice-list__item-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--color-text-tertiary);
  -webkit-transition: color var(--transition-base), -webkit-transform var(--transition-base);
  transition: color var(--transition-base), -webkit-transform var(--transition-base);
  transition: transform var(--transition-base), color var(--transition-base);
  transition: transform var(--transition-base), color var(--transition-base), -webkit-transform var(--transition-base);
}
.notice-list__item:hover .notice-list__item-arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  color: rgb(71, 85, 105);
}
body[data-color-mode=dark] .notice-list__item:hover .notice-list__item-arrow {
  color: rgb(220, 220, 220);
}

.notice-list__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg) 0;
}
@media (min-width: 768px) {
  .notice-list__pagination {
    margin-top: var(--spacing-2xl);
  }
}

.notice-list__item .n-card {
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
  cursor: pointer;
}
.notice-list__item .n-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}

.notice-detail-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-3xl);
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .notice-detail-container {
  background-color: rgb(0, 0, 0);
}

@media (min-width: 768px) {
  .notice-detail-container {
    padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-4xl);
  }
}

.notice-detail-layout {
  background: transparent;
}

.notice-detail__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .notice-detail__header {
    margin-bottom: var(--spacing-2xl);
  }
}

.notice-detail__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0;
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .notice-detail__title {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .notice-detail__title {
    font-size: 2.5rem;
    line-height: 140%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .notice-detail__title {
    color: rgb(248, 250, 252);
  }
}

.notice-detail__card {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  border: 1px solid;
  border-color: rgb(226, 232, 240);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .notice-detail__card {
  background-color: rgb(15, 23, 42);
}

body[data-color-mode=dark] .notice-detail__card {
  border-color: rgb(148, 163, 184);
}

.notice-detail__content {
  padding: var(--spacing-lg);
}
@media (min-width: 768px) {
  .notice-detail__content {
    padding: var(--spacing-xl);
  }
}

.notice-detail__header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .notice-detail__header-info {
  border-color: rgb(148, 163, 184);
}

@media (min-width: 768px) {
  .notice-detail__header-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.notice-detail__header-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.notice-detail__header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-xs);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .notice-detail__header-right {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.notice-detail__title-text {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin: 0 0 var(--spacing-sm) 0;
  letter-spacing: -0.2px;
  line-height: 1.4;
  word-break: break-word;
}
body[data-color-mode=dark] .notice-detail__title-text {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .notice-detail__title-text {
    font-size: 1.8rem;
    line-height: 136.364%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .notice-detail__title-text {
    color: rgb(248, 250, 252);
  }
}

.notice-detail__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--spacing-xs);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.notice-detail__meta {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(148, 163, 184);
  font-size: 0.875rem;
  white-space: nowrap;
}
body[data-color-mode=dark] .notice-detail__meta {
  color: rgb(148, 163, 184);
}

.notice-detail__body {
  margin-top: var(--spacing-lg);
}

.notice-detail__text {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  line-height: 1.8;
  word-break: break-word;
  white-space: pre-wrap;
}
body[data-color-mode=dark] .notice-detail__text {
  color: rgb(248, 250, 252);
}

.notice-detail__text br {
  display: block;
  content: "";
  margin-bottom: var(--spacing-sm);
}
.notice-detail__text p {
  margin: 0 0 var(--spacing-md) 0;
}
.notice-detail__text p:last-child {
  margin-bottom: 0;
}

.faq-page {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 200px);
  padding: var(--spacing-lg);
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .faq-page {
  background-color: rgb(0, 0, 0);
}

@media (min-width: 768px) {
  .faq-page {
    padding: var(--spacing-xl);
  }
}

.faq-page__content {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-page__title {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .faq-page__title {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .faq-page__title {
    font-size: 2.9rem;
    line-height: 137.931%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .faq-page__title {
    color: rgb(248, 250, 252);
  }
}

.faq-page__description {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(71, 85, 105);
  margin: 0 0 var(--spacing-xl) 0;
  letter-spacing: 0.1px;
}
body[data-color-mode=dark] .faq-page__description {
  color: rgb(220, 220, 220);
}

.faq-page__filters {
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid;
  border-color: rgb(226, 232, 240);
}
body[data-color-mode=dark] .faq-page__filters {
  border-color: rgb(148, 163, 184);
}

.faq-page__list {
  min-height: 400px;
}
.faq-page__list .n-collapse .n-collapse-item {
  margin-bottom: var(--spacing-sm);
}
.faq-page__list .n-collapse .n-collapse-item:last-child {
  margin-bottom: 0;
}
.faq-page__list .n-collapse .n-collapse-item .n-collapse-item__header {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  padding: var(--spacing-md);
  -webkit-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
body[data-color-mode=dark] .faq-page__list .n-collapse .n-collapse-item .n-collapse-item__header {
  color: rgb(248, 250, 252);
}

.faq-page__list .n-collapse .n-collapse-item .n-collapse-item__header:hover {
  background-color: rgb(241, 245, 249);
}
body[data-color-mode=dark] .faq-page__list .n-collapse .n-collapse-item .n-collapse-item__header:hover {
  background-color: rgb(30, 41, 59);
}

.faq-page__list .n-collapse .n-collapse-item .n-collapse-item__content-wrapper .n-collapse-item__content-inner {
  padding: var(--spacing-lg);
}

.faq-answer {
  line-height: 1.8;
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .faq-answer {
  color: rgb(248, 250, 252);
}

.faq-answer p {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-md);
}
body[data-color-mode=dark] .faq-answer p {
  color: rgb(248, 250, 252);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer ul,
.faq-answer ol {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}
body[data-color-mode=dark] .faq-answer ul,
body[data-color-mode=dark] .faq-answer ol {
  color: rgb(248, 250, 252);
}

.faq-answer ul li,
.faq-answer ol li {
  margin-bottom: var(--spacing-xs);
  line-height: 1.8;
}
.faq-answer ul li:last-child,
.faq-answer ol li:last-child {
  margin-bottom: 0;
}
.faq-answer strong {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 600;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  font-weight: 600;
}
body[data-color-mode=dark] .faq-answer strong {
  color: rgb(248, 250, 252);
}

.terms-view-container {
  position: relative;
  width: 100%;
  min-height: 50vh;
  background-color: rgb(255, 255, 255);
}
body[data-color-mode=dark] .terms-view-container {
  background-color: rgb(0, 0, 0);
}

.terms-view-layout {
  background: transparent;
}

.terms-view__header {
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .terms-view__header {
    margin-bottom: var(--spacing-2xl);
  }
}

.terms-view__title {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.3px;
}
body[data-color-mode=dark] .terms-view__title {
  color: rgb(248, 250, 252);
}

@media (min-width: 768px) {
  .terms-view__title {
    font-size: 2.5rem;
    line-height: 140%;
    font-weight: 700;
    font-family: "Pretendard";
    color: rgb(15, 23, 42);
  }
  body[data-color-mode=dark] .terms-view__title {
    color: rgb(248, 250, 252);
  }
}

.terms-view__card {
  background-color: rgb(248, 250, 252);
  border-radius: var(--radius-lg);
  -webkit-box-shadow: var(--shadow-sm);
          box-shadow: var(--shadow-sm);
}
body[data-color-mode=dark] .terms-view__card {
  background-color: rgb(15, 23, 42);
}

.terms-view__content {
  padding: var(--spacing-md);
}

.terms-view__header-info {
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
}

.terms-view__title-text {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.2px;
}
body[data-color-mode=dark] .terms-view__title-text {
  color: rgb(248, 250, 252);
}

.terms-view__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--spacing-xs);
}
@media (min-width: 768px) {
  .terms-view__meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: var(--spacing-md);
  }
}

.terms-view__body {
  margin-top: var(--spacing-lg);
}

.terms-view__html-content {
  font-size: 1.4rem;
  line-height: 140%;
  font-weight: 400;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  line-height: 1.8;
  word-break: break-word;
}
body[data-color-mode=dark] .terms-view__html-content {
  color: rgb(248, 250, 252);
}

.terms-view__html-content :deep(h1),
.terms-view__html-content :deep(h2),
.terms-view__html-content :deep(h3),
.terms-view__html-content :deep(h4),
.terms-view__html-content :deep(h5),
.terms-view__html-content :deep(h6) {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
}
body[data-color-mode=dark] .terms-view__html-content :deep(h1),
body[data-color-mode=dark] .terms-view__html-content :deep(h2),
body[data-color-mode=dark] .terms-view__html-content :deep(h3),
body[data-color-mode=dark] .terms-view__html-content :deep(h4),
body[data-color-mode=dark] .terms-view__html-content :deep(h5),
body[data-color-mode=dark] .terms-view__html-content :deep(h6) {
  color: rgb(248, 250, 252);
}

.terms-view__html-content :deep(h1):first-child,
.terms-view__html-content :deep(h2):first-child,
.terms-view__html-content :deep(h3):first-child,
.terms-view__html-content :deep(h4):first-child,
.terms-view__html-content :deep(h5):first-child,
.terms-view__html-content :deep(h6):first-child {
  margin-top: 0;
}
.terms-view__html-content :deep(h1) {
  font-size: 2.5rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .terms-view__html-content :deep(h1) {
  color: rgb(248, 250, 252);
}

.terms-view__html-content :deep(h2) {
  font-size: 1.8rem;
  line-height: 136.364%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .terms-view__html-content :deep(h2) {
  color: rgb(248, 250, 252);
}

.terms-view__html-content :deep(h3) {
  font-size: 2rem;
  line-height: 140%;
  font-weight: 700;
  font-family: "Pretendard";
  color: rgb(15, 23, 42);
}
body[data-color-mode=dark] .terms-view__html-content :deep(h3) {
  color: rgb(248, 250, 252);
}

.terms-view__html-content :deep(p) {
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}
.terms-view__html-content :deep(p):last-child {
  margin-bottom: 0;
}
.terms-view__html-content :deep(ul),
.terms-view__html-content :deep(ol) {
  margin: var(--spacing-md) 0;
  padding-left: var(--spacing-xl);
}
.terms-view__html-content :deep(li) {
  margin-bottom: var(--spacing-xs);
  line-height: 1.8;
}
.terms-view__html-content :deep(strong),
.terms-view__html-content :deep(b) {
  font-weight: 600;
  color: var(--color-text-primary);
}
.terms-view__html-content :deep(em),
.terms-view__html-content :deep(i) {
  font-style: italic;
}
.terms-view__html-content :deep(a) {
  color: var(--color-primary);
  text-decoration: underline;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.terms-view__html-content :deep(a):hover {
  color: var(--color-primary-hover);
}
.terms-view__html-content :deep(blockquote) {
  margin: var(--spacing-md) 0;
  padding: var(--spacing-md);
  border-left: 4px solid var(--color-border);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-sm);
}
.terms-view__html-content :deep(code) {
  padding: 2px 6px;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-sm);
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}
.terms-view__html-content :deep(pre) {
  margin: var(--spacing-md) 0;
  padding: var(--spacing-md);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-sm);
  overflow-x: auto;
}
.terms-view__html-content :deep(pre) code {
  padding: 0;
  background-color: transparent;
}
.terms-view__html-content :deep(table) {
  width: 100%;
  border-collapse: collapse;
  margin: var(--spacing-md) 0;
}
.terms-view__html-content :deep(th),
.terms-view__html-content :deep(td) {
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid var(--color-border);
  text-align: left;
}
.terms-view__html-content :deep(th) {
  background-color: var(--color-bg-secondary);
  font-weight: 600;
}
.terms-view__html-content :deep(hr) {
  margin: var(--spacing-xl) 0;
  border: none;
  border-top: 1px solid var(--color-border);
}

.example-area {
  position: absolute;
  top: -100000px;
  left: 0;
}