@charset "UTF-8";
/*skin start*/
/* font */ 
@import url('https://cdn.jsdelivr.net/npm/pretendard@1.3.9/dist/web/static/pretendard.css');

@font-face {
  font-family: 'NeoDunggeunmoPro-Regular';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/NeoDunggeunmoPro-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  word-break: break-all;
}

body {
  color: var(--point1-color);
  overflow-x: hidden;
}

a { 
  text-decoration: none;
  background: transparent;
  color: var(--point1-color);
}

a:hover {
  color: var(--window1-);
  transition: var(--transition-);
}

ul, li, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

input, textarea, button {
  font-family: inherit;
}

::placeholder {
  font-family: inherit;
}

input, textarea {
  outline: none;
  border: none;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
}

img {
  vertical-align: bottom;
}

textarea {
  resize: none;
}


/* loading */
 #loading { 
 width: 100%; 
 height: 100%; 
 top: 0; 
 left: 0; 
 background: #ffffff;
 position: fixed; 
 display: none; 
 z-index: 999; 
 opacity: 0.9;
}

#loading > img { 
  display: none; 
  width: 70px; 
  height: 70px; 
  margin: auto;
}


/* html */
html {
  background: var(--body-color);
  --border-radius-: var(--border-radius-);
  --font1-size: var(--font1-size);
  --font2-size: var(--font2-size);
  --line-height: var(--line-height);
  --padding-: .3rem;
  --padding1-: .5rem;
  --padding2-: 1rem;
  --padding3-: 3px;
  --padding4-: 5px;
  --width-: var(--width-);
  --height-: var(--height-);
  --transition-: all 0.3s ease;
  --grid-: var(--grid-);
  --shadow1-: 
  inset -1px -1px var(--window5-), 
  inset 1px 1px var(--window8-), 
  inset -2px -2px var(--window6-), 
  inset 2px 2px var(--window7-);
  --shadow2-: 
  inset -1px -1px var(--window5-), 
  inset 1px 1px var(--window7-), 
  inset -2px -2px var(--window6-), 
  inset 2px 2px var(--window8-);
  --shadow3-: 
  inset -1px -1px var(--window5-), 
  inset 1px 1px var(--window4-), 
  inset -2px -2px var(--window6-), 
  inset 2px 2px var(--window7-);
  --shadow4-: 
  inset -1px -1px var(--window7-), 
  inset 1px 1px var(--window6-), 
  inset -2px -2px var(--window4-), 
  inset 2px 2px var(--window5-);
  --shadow5-: 
  -1px -1px 0 var(--window5-), 
  -1px 0 0 var(--window5-), 
  0 -1px 0 0 var(--window5-), 
  1px 0 0 var(--window7-), 
  1px 1px 0 var(--window7-), 
  0 1px 0 var(--window7-);
  --shadow6-: 
  inset -1px -1px var(--window7-), 
  inset 1px 1px var(--window6-), 
  inset -2px -2px var(--window8-), 
  inset 2px 2px var(--window5-);
}  



/* dark-mode */
#darkmode {
  position: relative;
  z-index: 99;
}

.theme-toggle {
  display: flex;
  cursor: pointer;
  width: 18px;
  height: 18px;
  position: relative;
}

.theme-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none; 
}

html[data-theme='light'] .light-icon {
  opacity: 1;
}

html[data-theme='light'] .dark-icon {
  opacity: 0;
}

html[data-theme='dark'] .light-icon {
  opacity: 0;
}

html[data-theme='dark'] .dark-icon {
  opacity: 1;
}

/* layout */
#main-wrap {
  position: relative;
  font-size: var(--font1-size);
  line-height: var(--line-height);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: var(--padding1-);
  overflow: hidden;
}

#whole {
  position: relative;
  display: flex;
  font-family: 'Pretendard', sans-serif;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  gap: var(--padding2-);
}


#sidebar {
  position: absolute;
  top: 0;
  left: 0;
}
 
#container {
  position: relative;
  width: var(--width-);
  height: var(--height-);
  background: var(--window3-);
  box-shadow: var(--shadow1-);
  display: flex;
  flex-direction: column;
}

#insta-sec1 {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  color: var(--text-color);
  padding: 2px;
}

#insta-sec2, 
#insta-sec3 {
  height: 100%;
  overflow-y: auto;
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
}

.wrap {
  width: 100%;
}

#taskbar {
  position: fixed;
  display: flex;
  justify-content: space-between;
  bottom: 0;
  height: 30px;
  width: 100%;
  z-index: 99;
  background: var(--window3-);
  border-top: solid 1px var(--window2-);
  outline: solid 1px var(--window8-);
  padding: 0 var(--padding-);
  align-items: center;
}


/* insta-wrap */
.insta-wrap {
  flex: 1;
  margin: 0 var(--padding-);
  margin-bottom: var(--padding-);
  box-shadow: 
  inset -1px -1px var(--window7-), 
  inset 1px 1px var(--window6-), 
  inset -2px -2px var(--window8-), 
  inset 2px 2px var(--window5-);
  width: calc(100% - (var(--padding-) * 2));
  overflow: hidden;
  padding: var(--padding-);
}


/* sidebar */
.sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: var(--padding2-);
}

.side-computer,
.side-music,
.side-internet,
.side-insta,
.side-bgm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--padding1-);
  color: var(--window10-);
  cursor: pointer;
  padding: var(--padding3-); 
}

.computer-icon,
.music-icon,
.internet-icon,
.instagram-icon,
.bgm-icon {
  position: relative;
  width: 32px;
  height: 32px;
}

.computer-icon img,
.music-icon img,
.internet-icon img,
.instagram-icon img,
.bgm-icon img {
  width: 100%;
  height: 100%;
}

.computer-text,
.music-text,
.internet-text,
.insta-text,
.bgm-text {
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
}

.side-computer:hover,
.side-music:hover,
.side-internet:hover,
.side-insta:hover,
.side-bgm:hover {
  background: var(--window1-);
  color: var(--window2-); 
  outline: 1px dotted var(--window2-);
}


/* container insta toolbar */
.insta-bar {
  display: flex;
  justify-content: space-between;
  background: var(--window1-);
  box-shadow: var(--shadow1-);
  color: var(--window2-);
  height: 25px;
}

.bar-info {
  display: flex;
  align-items: center;
  padding: 0 var(--padding-);
  gap: var(--padding-);
  height: 100%;
}

.bar-iconimg {
  position: relative;
  width: 15px;
  height: 15px;
  overflow: hidden;
}

.bar-iconimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bar-title {
  letter-spacing: 1px;
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
}

/* bar-btn */
.bar-btn {
  display: flex;
  padding: 0 var(--padding-);
  align-items: center;
}

.bar-btn button {
  background: var(--window4-);
  display: block;
  width: 15px;
  height: 15px;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: var(--shadow2-);
}

.bar-btn button[aria-label=bar-mini] {
  background-image: url(./images/svg1.svg);
  background-position: bottom 3px left 4px;
  background-repeat: no-repeat;
}

.bar-btn button[aria-label=bar-max] {
  background-image: url(./images/svg2.svg);
  background-position: bottom 3px left 3px;
  background-repeat: no-repeat;
}

.bar-btn button[aria-label=bar-close] {
  background-image: url(./images/svg3.svg);
  background-position: bottom 5px left 3px;
  background-repeat: no-repeat;
}

.minimize {
  transform-origin: bottom center;
   transform: scale(0.1) translateX(-200px) translateY(500px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.restore {
  transform: scale(1) translateY(0);
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
} 

.search-wrap .submit:active,
.bar-btn button:active {
  box-shadow: 
  inset -1px -1px var(--window7-), 
  inset 1px 1px var(--window5-), 
  inset -2px -2px var(--window8-), 
  inset 2px 2px var(--window6-);
  cursor: pointer;
  outline: 1px dotted #000; 
  outline-offset: -3px; 
}



/* insta menu */
.insta-menu {
  position: relative;
  display: flex;
  margin: 1px 2px;
  color: var(--window9-);
}

.instahr1 {
  height: 1px;
  width: calc(100% - 4px);
  margin: 0 auto;
}

.instahr2 {
  width: 1px;
  margin: 2px;
  border: solid 1px;
  border-right-color: #aeaeae;
  border-bottom-color: #aeaeae;
  border-top-color: #fff;
  border-left-color: #fff;
}

.menu-file,
.menu-edit,
.menu-view,
.menu-options,
.menu-help {
  position: relative;
}

.menu-title span {
  border-bottom: solid 1px var(--window9-);
}

.menu-title {
  padding: var(--padding3-) var(--padding4-);
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
}

.menu-title:hover,
.menu-title.active  {
  box-shadow: 
  inset -1px -1px var(--window7-), 
  inset 1px 1px var(--window5-), 
  inset -2px -2px var(--window8-), 
  inset 2px 2px var(--window6-);
  cursor: pointer;
}


/* menu list */
.file-list,
.cate-list,
.view-list,
.options-list,
.help-list  {
  display: none;
}

.file-list,
.view-list,
.options-list,
.help-list {
  position: absolute;
  width: 100px;
  padding: 2px;
  margin-top: var(--padding3-);
  z-index: 99;
  background: var(--window3-);
  box-shadow: var(--shadow2-)
}

.cate-list{
  position: absolute;
  min-width: 120px;
  padding: 2px;
  margin-top: var(--padding3-);
  z-index: 99;
  background: var(--window3-);
  box-shadow: var(--shadow2-)
}


.search-btn,
.file-link a,
.options-pop1,
.options-pop2 {
  display: block;
  padding: 2px;
  margin: 2px;
  color: var(--window9-);
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
}

.search-btn:hover,
.file-link a:hover,
.options-pop1:hover,
.options-pop2:hover {
  background: var(--window1-);
  transition: var(--transition-);
  color: var(--article-color);
  cursor: pointer;
}

/* category */
.link_tit {
  position: relative;
  display: block;
  width: 100%;
  padding: 2px;
  margin: 2px;
}

.category_list li {
  position: relative;
}

.cat-link-wrap {
  padding: 2px;
  margin: 2px;
}

.c_cnt {
  display: none;
  color: var(--point2-color);
  font-size: 80%;
}

.tt_category a {
  color: var(--window9-);
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
}

.cat-linktit-wrap,
.cat-link-wrap {
  display: flex;
  align-items: center;
  gap: var(--padding-);
}

.link_sub_item {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 2px;
}

.sub_category_wrap {
  position: absolute;
  transform: translate(100%, 0%);
  top: -3px;

  width: 100%;
  margin-left: 2px;
  background: var(--window3-);
  box-shadow: var(--shadow2-);
  overflow: visible;
}

.sub_category_list {
  display: none;
  position: relative;
}

.sub_category_list li {
  position: relative;
  margin: var(--padding3-);
  padding: var(--padding3-);
}

.link_item {
  flex: 1;
}

.link_tit:hover,
.cate-list .cat-link-wrap:hover {
  background: var(--window1-);
  color: var(--article-color);
  transition: var(--transition-);
  cursor: pointer;
}

.cate-list .sub_category_list li:hover {
  background: var(--window1-);
  color: var(--article-color);
  transition: var(--transition-);
  cursor: pointer;
}

.cate-list .cat-link-wrap:hover a {
  color: var(--article-color) !important;
}

.cate-list .sub_category_list li:hover a {
  color: var(--article-color) !important;
}

.cate-list .cat-link-wrap:hover svg {
  fill: var(--article-color);
}


/* taskbar */
.taskbar-item1 {
  display: flex;
  align-items: center;
  gap: var(--padding3-);
  height: calc(100% - var(--padding3-) * 2);
}

.startmenu {
  display: flex;
  align-items: center;
  gap: var(--padding3-);
  box-shadow: var(--shadow2-);
  padding: 0 var(--padding1-);
  height: 100%;
  cursor: pointer;
  z-index: 999;
}

.startmenu.active {
  background: var(--window8-);
  box-shadow: inset -1px -1px var(--window7-), inset 1px 1px var(--window5-), inset -2px -2px var(--window8-), inset 2px 2px var(--window6-);
}

.start-icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.start-icon img {
  width: 100%;
  height: 100%;
}

.start-text {
  color: var(--text-color);
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
}

.start-line1 {
  border-left: solid 1px var(--window6-);
  border-right: solid 1px var(--window7-);
  margin: var(--padding3-) 0;
  height: calc(100% - var(--padding3-) * 2);
}

.start-line2 {
  border-left: 1px solid var(--window7-);
  border-top: 1px solid var(--window7-);
  border-right: 1px solid var(--window8-);
  border-bottom: 1px solid var(--window8-);
  background: var(--window3-);
  margin: var(--padding3-) 0;
  height: calc(100% - var(--padding3-) * 2);
}


/* preview */
.start-preview {
  display: flex;
  gap: var(--padding3-);
}

.start-preview > div.is-minimized .preview-inner {
  background: var(--window8-);
  box-shadow: inset -1px -1px var(--window7-), inset 1px 1px var(--window5-), inset -2px -2px var(--window8-), inset 2px 2px var(--window6-);
}

.start-preview:hover {
  cursor: pointer;
}

.preview-computer,
.preview-music,
.preview-internet,
.preview-bgm,
.preview-help {
  display: none;
  height: 100%;
}

.preview-inner {
  box-shadow: var(--shadow2-);
  background: var(--window3-);
  display: flex;
  gap: var(--padding-);
  height: calc(100% - var(--padding3-) * 2);
  padding: var(--padding-) var(--padding2-) var(--padding-) var(--padding-);
  align-items: center;
}

.preview-insta {
 height: 100%;
}

.preview-icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.preview-icon img {
  width: 100%;
}

.preview-text {
  color: var(--window9-);
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
  font-size: 11.5px;
}


/* time */
.taskbar-item2 {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--window6-);
  border-left: 1px solid var(--window6-);
  border-bottom: 1px solid var(--window7-);
  border-right: 1px solid var(--window7-); 
  height: calc(100% - var(--padding3-) * 1);
  padding: 0 var(--padding-);
  gap: var(--padding3-);
}

.taskbar-time {
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-size: 12px;
}


/* insta blogger & info */
.insta-blogger {
  color: var(--window9-);
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
  padding: var(--padding1-);
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-info {
  display: flex;
  color: var(--window9-);
  flex-direction: column;
  gap: var(--padding3-);
  padding: var(--padding1-);
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
}

.insta-item1 {
  display: flex;
  align-items: center;
  padding-left: var(--padding1-);
}

.insta-img {
  position: relative;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.insta-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s, opacity 1s;
}

.insta-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

.insta-img:hover::after {
  background-image: 
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0px,
      rgba(0, 0, 0, 0.55) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.25) 0px,
      rgba(255, 255, 255, 0.25) 1px,
      transparent 1px,
      transparent 3px
    );
  background-size: auto, auto;
  background-repeat: repeat, repeat;
  background-position: 0 0, 0 1px;
  mix-blend-mode: overlay;
  image-rendering: pixelated;
  filter: contrast(1.2) saturate(1.1);
  animation: scan-move .6s linear infinite,
             scan-flicker 1.8s steps(10) infinite,
             shake-screen 0.15s infinite;
  opacity: .35;
}

@keyframes shake-screen {
  0%   { transform: translate(0, 0) skew(0deg, 0deg); }
  25%  { transform: translate(-1px, 0) skew(0.2deg, 0deg); }
  50%  { transform: translate(1px, 0) skew(-0.2deg, 0deg); }
  75%  { transform: translate(0, -1px) skew(0deg, 0.2deg); }
  100% { transform: translate(0, 0) skew(0deg, 0deg); }
}

.insta-img:hover img {
  animation: shake-img 0.2s ease-in-out 3;
}

@keyframes shake-img {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-2px); }
  50%  { transform: translateX(2px); }
  75%  { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}

.img-light { opacity: 1; z-index: 1; }
.img-dark  { opacity: 0; z-index: 2; }

html[data-theme='dark'] .img-light { opacity: 0; }
html[data-theme='dark'] .img-dark  { opacity: 1; }



.insta-num{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: var(--padding1-);
}

.insta-count{
  display: flex;
  gap: var(--padding2-);
  align-items: center;
}

.count-posts {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--window9-);
}

.count-title {
  font-family: inherit;
}


/* progress */
.insta-progress {
  width: 80%;
  height: 20px;
  background: silver;
  padding: var(--padding3-);
  overflow: hidden;
  box-shadow: 
    inset -1px -1px var(--window7-), 
    inset  1px  1px var(--window6-), 
    inset -2px -2px var(--window8-), 
    inset  2px  2px var(--window5-); 
}
 
.insta-progress .progress-inner {
  height: 100%;
  background: repeating-linear-gradient(
      90deg,
      var(--point1-color) 0px,
      var(--point1-color) 14px,
      var(--window8-) 14px,
      var(--window8-) 18px
  );
  animation: grow steps(10) forwards;
}

@keyframes grow {
  from { width: 0; }
  to   { width: var(--target); }
}

.progress-0   { --target: 0%; }
.progress-10  { --target: 10%; }
.progress-20  { --target: 20%; }
.progress-30  { --target: 30%; }
.progress-40  { --target: 40%; }
.progress-50  { --target: 50%; }
.progress-60  { --target: 60%; }
.progress-70  { --target: 70%; }
.progress-80  { --target: 80%; }
.progress-90  { --target: 90%; }
.progress-100 { --target: 100%; }

.insta-progress .progress-inner {
  height: 100%;
  background: repeating-linear-gradient(
      90deg,
      var(--point1-color) 0px,
      var(--point1-color) 14px,
      var(--window8-) 14px,
      var(--window8-) 18px
  );
  animation: grow steps(10) 2s forwards;
}

@keyframes grow {
  from { width: 0; }
  to   { width: var(--target); }
}


/* paging */
.insta-paging {
  display: flex;
  justify-content: space-between;
  padding: var(--padding1-);
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
}

.paging-img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow-x: hidden;
}

.paging-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-prev a,
.p-next a {
  display: block;
  padding: var(--padding3-) var(--padding2-);
  background: var(--window4-);
  box-shadow: var(--shadow1-);
  color: var(--window9-);
}

.p-prev a:hover,
.p-next a:hover {
  box-shadow: 
  inset -1px -1px var(--window7-), 
  inset 1px 1px var(--window5-), 
  inset -2px -2px var(--window8-), 
  inset 2px 2px var(--window6-);
  cursor: pointer;
  color: var(--window9-);
}

.no-more-prev,
.no-more-next {
  pointer-events: none;
  color: var(--window6-) !important;
}


/* insta-footer */
.insta-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  padding: var(--padding-);
}

.footer-menu {
  width: 100%;
}

.footer-menu a {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: var(--padding-);
  background: var(--window4-);
  box-shadow: var(--shadow2-);
}

.footer-menu a:hover {
  box-shadow: 
  inset -1px -1px var(--window7-), 
  inset 1px 1px var(--window5-), 
  inset -2px -2px var(--window8-), 
  inset 2px 2px var(--window6-);
  cursor: pointer;
  color: var(--window9-);
}

.footer-img {
  position: relative;
  width: 15px;
  height: 15px;
  overflow: hidden;
}

.footer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* 내 컴퓨터 (my computer) */
#mycomputer,
#mymusic,
#myinternet,
#bgm, 
#help {
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
}

#mycomputer {
  display: none;
  position: fixed;
  top: 7%;
  left: 10%;
  z-index: 999;
}

.mycomputer-inner {
  padding: var(--padding3-);
  background: var(--window3-);
  box-shadow: var(--shadow3-);
  max-width: 300px;
}

.pop-info {
  display: flex;
  background: var(--window1-);
  align-items: center;
  justify-content: space-between;
  padding: var(--padding3-);
  cursor: default;
}

.pop-tab {
  display: flex;
  gap: var(--padding3-);
  align-items: center;
}

.pop-icon {
  position: relative;
  width: 20px;
  height: 20px;
  overflow: hidden;
}

.pop-icon img {
  width: 100%;
  height: 100%;
}

.pop-text {
  color: var(--window7-);
}

.pop-btn button {
  display: block;
  width: 15px;
  height: 15px;
  padding: 0;
  border: none;
  box-shadow: var(--shadow2-);
  background: var(--window4-);
}

.pop-btn button[aria-label=close] {
  background-image: url(./images/svg3.svg);
  background-position: top 3px left 3px;
  background-repeat: no-repeat;
}

.pop-wrap {
  display: grid;
  background: var(--article-color);
  border: 2px inset var(--window8-);
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: flex-start;
  padding: var(--padding1-);
  gap: var(--padding2-);
}

.pop-item {
  width: 100%;
}

.pop-item a {
  display: flex;
  gap: var(--padding-);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--window9-);
  padding: var(--padding3-);
}

.pop-wrap-icon {
  position: relative;
  width: 32px;
  height: 32px;
  overflow: hidden;
}

.pop-wrap-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pop-wrap-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pop-item a:hover {
  background: var(--window1-);
  color: var(--window2-); 
  outline: 1px dotted var(--window2-);
  outline-offset: -2px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.pop-btn button:active {
  box-shadow: 
  inset -1px -1px var(--window7-), 
  inset 1px 1px var(--window5-), 
  inset -2px -2px var(--window8-), 
  inset 2px 2px var(--window6-);
  cursor: pointer;
  outline: 1px dotted #000; 
  outline-offset: -3px;
}


/* 내동영상 (myvideo) */
#mymusic {
  display: none;
  position: fixed;
  top: 12%;
  left: 15%;
  width: 500px;
  padding: var(--padding-);
  z-index: 999;
}

.mymusic-inner {
  padding: var(--padding3-);
  background: var(--window3-);
  box-shadow: var(--shadow3-);
  width: 100%;
}

#mymusic .pop-wrap {
  padding: 0;
  display: block;
  position: relative; 
  width: 100%; 
  aspect-ratio: 16 / 9; 
  overflow:hidden;
  margin: 0;
}

#container .sec-youtube iframe,
#mymusic .pop-wrap iframe {
  width: 100%;
  height: 100%;
}



/* 인터넷 (internet) */
#myinternet {
  display: none;
  position: fixed;
  top: 12%;
  left: 35%;
  padding: var(--padding-);
  z-index: 999;
}

.myinternet-inner {
  padding: var(--padding3-);
  background: var(--window3-);
  box-shadow: var(--shadow3-);
  max-width: 300px;
}


/* bgm */
#bgm {
  display: none;
  position: fixed;
  top: 40%;
  left: 57%;
  padding: var(--padding-);
  z-index: 999;
}

.bgm-inner {
  padding: var(--padding3-);
  background: var(--window3-);
  box-shadow: var(--shadow3-);
  width: 400px;
  overflow: hidden;
}

#bgm .pop-wrap {
  display: block;
  width: 100%;
  justify-items: unset;
  align-items: unset;
  padding: 0;
}

:root{
  --black:#000; --dark:#707070; --grey:#b5b5b5; --light:#d9d9d9; --white:#fff;
}

#bgm .player{
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--window3-);
  border: 2px inset var(--window8-);
  gap: var(--padding-);
}

/* 화면 */
#bgm .player .bgm-img{
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  padding: 2px;
  overflow: hidden;
}

#bgm .player .bgm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bgm-img.paused img {
  opacity: 0.7;
  image-rendering: pixelated; 
  filter: contrast(1.2) saturate(1.1);
}

.bgm-img.paused::before {
  content: "\f04c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 48px;
  color: var(--window7-);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

@keyframes noiseMove {
  0%   { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

.bgm-img.paused::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
  repeating-linear-gradient(
      to bottom,
      rgba(0,0,0,0.38) 0px,
      rgba(0,0,0,0.38) 1px,
      transparent 1px,
      transparent 3px),
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.14) 0px,
      rgba(255,255,255,0.14) 1px,
      transparent 1px,
      transparent 3px);
  background-position: 0 0, 0 1px;
  mix-blend-mode: overlay;
  pointer-events: none;
  will-change: background-position, opacity;
  animation: 
  scan-move .6s linear infinite,
  scan-flicker 1.8s steps(10) infinite;
}

.bgm-img.stopped::before {
  content: "\f04d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 48px;
  color: var(--window7-);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.bgm-img.stopped::after {
  content: "";
  background: var(--window5-);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}

#bgm .progress-bar input[type=range] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background-color: transparent;
}

#bgm input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
}

#bgm input[type=range]::-moz-range-thumb {
  appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
}

#bgm input[type=range]:focus {
  outline: none;
}

#bgm input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent; 
  border-color: transparent;
  color: transparent;
}

.bar-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.player .progress-bar {
  position: relative;
  width: 100%;
  height: 20px;
  translate: 2px 0;
}

.player .progress-bar .progress-fill {
  position: absolute;
  left: 12px;
  top: 8px;
  height: 10px;
  background: var(--white);
  width: 0;
  z-index: 1;
}

.player .progress-bar input[type=range] {
  position: relative;
  z-index: 2;
  background: transparent;
}

.player .progress-bar input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 20px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-image: 
    linear-gradient(0deg, var(--window8-), var(--window8-)), 
    linear-gradient(0deg, var(--window8-), var(--window8-)), 
    linear-gradient(0deg, var(--window7-), var(--window7-)), 
    linear-gradient(0deg, var(--window7-), var(--window7-));
    background-position: 10px 6px, 10px 6px, calc(100% - 14px) 6px, 10px 18px;
    background-size:  2px 14px, calc(100% - 24px) 2px, 2px 14px, calc(100% - 24px) 2px;
}

.player .progress-bar input[type=range]::-moz-range-track {
  width: 100%;
  height: 20px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-image: 
    linear-gradient(0deg, var(--window8-), var(--window8-)), 
    linear-gradient(0deg, var(--window8-), var(--window8-)), 
    linear-gradient(0deg, var(--window7-), var(--window7-)), 
    linear-gradient(0deg, var(--window7-), var(--window7-));
    background-position: 10px 6px, 10px 6px, calc(100% - 14px) 6px, 10px 18px;
    background-size:  2px 14px, calc(100% - 24px) 2px, 2px 14px, calc(100% - 24px) 2px;
}

.player[data-status='paused'] .progress-bar input[type=range]::-webkit-slider-runnable-track,
.player[data-status='buffering'] .progress-bar input[type=range]::-webkit-slider-runnable-track,
.player[data-status='playing'] .progress-bar input[type=range]::-webkit-slider-runnable-track {
  background-repeat: no-repeat;
  background-image: 
  linear-gradient(0deg, var(--window8-), var(--window8-)),
  linear-gradient(0deg, var(--window8-), var(--window8-)),
  linear-gradient(0deg, var(--window7-), var(--window7-)),
  linear-gradient(0deg, var(--window7-), var(--window7-));
  background-position: 10px 6px, 10px 6px,calc(100% - 14px) 6px, 10px 18px;
  background-size: 2px 14px, calc(100% - 24px) 2px, 2px 14px, calc(100% - 24px) 2px;
}

.player[data-status='paused'] .progress-bar input[type=range]::-moz-range-track,
.player[data-status='buffering'] .progress-bar input[type=range]::-moz-range-track,
.player[data-status='playing'] .progress-bar input[type=range]::-moz-range-track {
  background-repeat: no-repeat;
  background-image: 
  linear-gradient(0deg, var(--window8-), var(--window8-)),
  linear-gradient(0deg, var(--window8-), var(--window8-)),
  linear-gradient(0deg, var(--window7-), var(--window7-)),
  linear-gradient(0deg, var(--window7-), var(--window7-));
  background-position: 10px 6px, 10px 6px,calc(100% - 14px) 6px, 10px 18px;
  background-size: 2px 14px, calc(100% - 24px) 2px, 2px 14px, calc(100% - 24px) 2px;
}

.player .progress-bar input[type=range]::-webkit-slider-thumb {
  width: 20px;
  height: 30px;
  translate: 0 -2px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='30' viewBox='0 0 26 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8H20V10H6V8Z' fill='white'/%3E%3Cpath d='M6 20H20V22H6V20Z' fill='white'/%3E%3Cpath d='M26 0H24V28H0V30H26V0Z' fill='black'/%3E%3Cpath d='M24 0H22V26H0V28H24V0Z' fill='%23707270'/%3E%3Cpath d='M0 0H22V2H2V26H0V0Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 2V26H22V2H2ZM4 6H20V22H4V6Z' fill='%23B5B6B5'/%3E%3Cpath d='M4 6H20V8H6V22H4V6Z' fill='%23707270'/%3E%3Cpath d='M12 10V8H14V10H12Z' fill='black'/%3E%3Cpath d='M12 22V20H14V22H12Z' fill='black'/%3E%3C/svg%3E");
}

.player .progress-bar input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 30px;
  translate: 0 -2px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='30' viewBox='0 0 26 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8H20V10H6V8Z' fill='white'/%3E%3Cpath d='M6 20H20V22H6V20Z' fill='white'/%3E%3Cpath d='M26 0H24V28H0V30H26V0Z' fill='black'/%3E%3Cpath d='M24 0H22V26H0V28H24V0Z' fill='%23707270'/%3E%3Cpath d='M0 0H22V2H2V26H0V0Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2 2V26H22V2H2ZM4 6H20V22H4V6Z' fill='%23B5B6B5'/%3E%3Cpath d='M4 6H20V8H6V22H4V6Z' fill='%23707270'/%3E%3Cpath d='M12 10V8H14V10H12Z' fill='black'/%3E%3Cpath d='M12 22V20H14V22H12Z' fill='black'/%3E%3C/svg%3E");
}

.controls{ 
  display:flex; 
  align-items:center;  
  justify-content: space-between;
  padding: 0 var(--padding-);
  padding-bottom: var(--padding-);
}

.controls .buttons{
  display:flex; 
  align-items:center; 
  gap:6px; 
}

.controls .left{ 
  justify-content:flex-start; 
}

.controls .center{ 
  flex:1; 
  justify-content:center; 
}

.sound-bar,
.controls .right{ 
  display: flex;
  justify-content:flex-end;  
  align-items: center;
}

.vol-img {
  position: relative;
  width: 16px;
  height: 16px;
}

.vol-img img {
  width: 100%;
  height: 100%;
}

.controls button{
  padding: var(--padding-);
  color: var(--window9-);
  border:none; 
  cursor:default; 
  font-weight:bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.controls button:hover {
  box-shadow: 
  inset -1px -1px var(--window7-), 
  inset 1px 1px var(--window5-), 
  inset -2px -2px var(--window8-), 
  inset 2px 2px var(--window6-);
  cursor: pointer;
}

.controls button:active {
  box-shadow: 
  inset -1px -1px var(--window7-), 
  inset 1px 1px var(--window5-), 
  inset -2px -2px var(--window8-), 
  inset 2px 2px var(--window6-);
  cursor: pointer;
  outline: 1px dotted #000; 
  outline-offset: -3px;
}


.sound {
  display:flex; 
  align-items:center; 
}

.sound-bar input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  background: transparent;
}

.sound-bar input[type="range"]::-webkit-slider-runnable-track {
  height: 12px;
  background: linear-gradient(
    to right,
    var(--window7-) 0%,
    var(--window7-) var(--val, 100%),
    #bbb var(--val, 100%),
    #bbb 100%);
  border: solid 1px var(--window2-);
}

/* Firefox */
.sound-bar input[type="range"]::-moz-range-track {
  height: 12px;
  background: #bbb;
}

.sound-bar input[type="range"]::-moz-range-progress {
  height: 12px;
  background: var(--window7-);
}

.sound-bar input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 16px;
  margin-top: -3px;
  background: var(--window8-);
  border: 1px solid var(--window3-);
  box-shadow: 
  inset 0 0 0 1000px var(--window6-),
  inset 1px 1px 0 var(--window6-),
  inset -1px -1px 0 var(--window6-);
}

.sound-bar input[type="range"]::-moz-range-thumb {
  width: 10px;
  height: 16px;
  margin-top: -3px;
  background: var(--window8-);
  border: 1px solid var(--window3-);
  box-shadow: 
  inset 0 0 0 1000px var(--window6-),
  inset 1px 1px 0 var(--window6-),
  inset -1px -1px 0 var(--window6-);
}


/* startmenu */
.start-line {
  width: 100%;
  height: 1px;
  background: var(--window6-);
  border-bottom: solid 1px var(--window7-);
}

#startmenu {
  display: none;
  min-width: 170px;
  position: fixed;
  z-index: 9999 !important;
  bottom: 31px;  
  left: 0;
  background: var(--window3-);
  box-shadow: var(--shadow2-);
  height: auto;
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
}

.startmenu-inner {
  display: flex;
  padding: var(--padding3-);
  height: 100%;
}

.startmenu-bg {
  background: var(--point1-color);
  width: 25px;
  height: auto;
  display: flex;
  align-items: center;
  font-size: 16px;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  letter-spacing: 2px;
  transform: translate(0) rotate(180deg);
  padding: var(--padding1-);
  color: var(--window7-);
}

.startmenu-wrap {
  width: calc(100% - 25px);
  display: flex;
  flex-direction: column-reverse;
}

.startmenu-item1,
.startmenu-item2,
.startmenu-pop1,
.startmenu-pop2 {
  display: flex;
  align-items: center;
  padding: var(--padding3-) var(--padding2-) var(--padding3-) var(--padding3-);
  gap: var(--padding3-);
  color: var(--window9-);
}

.startmenu-icon {
  position: relative;
  width: 28px;
  height: 28px;
}

.startmenu-icon img {
  width: 100%;
  height: 100%;
}

.startmenu-item1:hover,
.startmenu-item2:hover,
.startmenu-pop1:hover,
.startmenu-pop2:hover {
  background: var(--window1-);
  transition: var(--transition-);
  color: var(--article-color);
  cursor: pointer;
}


/* 팝업 */
/* 시스템 종료 */
#shutdown {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: var(--window1-);
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
}

.shutdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--window7-);
  width: 100%;
  height: 100%;
}

.shutdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--padding1-);
  height: 100%;
  overflow: hidden;
  justify-content: center;
}

.shutdown-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--padding1-);
  max-height: 100%;
  overflow-y: auto;
}

.shutdown-title {
  background: var(--window7-);
  color: var(--window1-);
  padding: var(--padding-);
  font-size: 15px;
}

.shutdown-img {
  position: relative;
  max-width: 300px;
  display: inline-block;
  filter: drop-shadow(0 0 1px var(--window1-)) drop-shadow(0 0 2px var(--window7-));
}

.shutdown-img img {
  width: 100%;
  object-fit: cover;
}

.shutdown-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
  repeating-linear-gradient(
      to bottom,
      rgba(0,0,0,0.38) 0px,
      rgba(0,0,0,0.38) 1px,
      transparent 1px,
      transparent 3px),
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.14) 0px,
      rgba(255,255,255,0.14) 1px,
      transparent 1px,
      transparent 3px
    );
  background-position: 0 0, 0 1px;
  mix-blend-mode: overlay;
  pointer-events: none;
  will-change: background-position, opacity;
  animation: 
  scan-move .6s linear infinite,
  scan-flicker 1.8s steps(10) infinite;
}

@keyframes scan-move {
  0%   { background-position: 0 0, 0 1px; }
  100% { background-position: 0 8px, 0 9px; }
}

@keyframes scan-flicker {
  0%,100% { opacity: .78; }
  50%     { opacity: .92; }
}

.shutdown-text{
  line-height: 20px;
}


/* 도움말 */
#help {
  display: none;
  position: fixed;
  top: 10%;
  left: 10%;
  color: var(--window9-);
}

.help-inner {
  padding: var(--padding3-);
  background: var(--window3-);
  box-shadow: var(--shadow3-);
  width: 400px;
  overflow: hidden;
}

.help-item {
  display: flex;
  gap: var(--padding-);
  flex-direction: column;
  border: 2px inset var(--window8-);
}

.help-img {
  max-width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow6-);
  padding: var(--padding3-);
}

.help-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help-text{
  display: flex;
  align-items: flex-start;
  gap: var(--padding2-);
  padding: var(--padding1-);
}

.help-title {
  padding: var(--padding3-);
}

.help-desc {
  box-shadow: var(--shadow6-);
  padding: var(--padding3-);
  background: var(--article-color);
  border: 2px inset var(--window8-);
  height: 3em;
  flex: 1;
}

.help-wrap {
  max-height: 170px;
  overflow-y: auto;
}


/* popup 1 (옵션 팝업1) */
#optionspop1 {
  display: none;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 230px;
  padding: var(--padding-);
  z-index: 9999; 
  color: var(--window9-);
}

.optionspop1-inner {
  padding: var(--padding3-);
  background: var(--window3-);
  box-shadow: var(--shadow3-);
  width: 100%;
}

.optionspop1-wrap {
  max-height: 150px;
  overflow-y: auto;
  padding: var(--padding1-);
}

.optionspop1-title {
  text-align: center;
  margin-bottom: var(--padding1-);
}

#optionspop1 .pop-icon {
  width: 16px;
  height: 16px;
}


/* popup 2 (옵션 팝업2) */
#optionspop2 {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  padding: var(--padding-);
  z-index: 9999; 
  color: var(--window9-);
}

#optionspop2 .optionspop1-wrap {
  max-height: unset;
  display: flex;
  flex-direction: column;
  gap: var(--padding1-);
}

.optionspop2-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.optionspop2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* insta-tabs */
.insta-tabs {
  display: flex;
  justify-content: space-between;
  padding: var(--padding3-) var(--padding-);
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--padding-) var(--padding3-);
  background: var(--window4-);
  box-shadow: var(--shadow1-);
  color: var(--window9-);
  cursor: pointer;
}

.tab-btn.is-active {
  background: var(--window8-);
  box-shadow: inset -1px -1px var(--window7-), inset 1px 1px var(--window5-), inset -2px -2px var(--window8-), inset 2px 2px var(--window6-);
}

.tab-btnimg{
  position: relative;
  width: 15px;
  height: 15px;
  overflow: hidden;
}

.tab-btnimg img {
  width: 100%;
}


/*  sec-inner */
.sec-inner {
  width: 100%;
  height: 100%;  
  padding: var(--padding3-);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  gap: var(--padding-);
}

.sec-item {
  display: flex;
  flex-direction: column;
}

.sec-desc {
  display: flex;
  gap: var(--padding-);
  max-height: 150px;
  padding: 1px;
}

.sec-imgwrap {
  display: flex;
  flex-direction: column;
  width: 40%;
  gap: var(--padding-);
}

.sec-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow5-);
  aspect-ratio: 1 / 1;
}

.sec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-imgtitle {
  padding: var(--padding-);
  color: var(--window9-);
  box-shadow: var(--shadow4-);
  text-align: center;
}

.sec-text {
  flex: 1;
  box-shadow: var(--shadow5-);
  padding: 1px;
  overflow-y: auto;
}

/* sec2 */
.sec-title {
  padding: var(--padding1-);
  color: var(--window9-);
  box-shadow: var(--shadow4-);
  background: var(--article-color);
  text-align: center;
}

.sec-youtube-inner {
  width: 100%;
  padding: 1px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow5-);
}

.sec-youtube {
  width: 100%;
}

.sec-youtube-text {
  text-align: left;
}

/* sec3 */
.banner-item {
  display: flex;
  flex-direction: column;
  gap: var(--padding1-);
}

.banner-title {
  padding: var(--padding1-);
  color: var(--window9-);
  box-shadow: var(--shadow4-);
  background: var(--article-color);
  text-align: center;
}

.banner-img a:last-of-type  {
  margin-bottom: 0;
}

.banner-img {
  position: relative;
  width: 100%;
  text-align: center;
  flex: 1;
  overflow-y: auto;
  padding: var(--padding1-);
  padding-top: 0;
}

.banner-img img {
  max-width: 100%;
  margin: 0 auto;
}

.banner-img a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--padding1-);
  gap: var(--padding-);
  color: var(--window9-);
}

.banner-img a:last-of-type  {
  margin-bottom: 0;
}


#search {
  display: none;
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  padding: var(--padding-);
  z-index: 9999;
  color: var(--window9-);
}

.search-inner {
  padding: var(--padding3-);
  background: var(--window3-);
  box-shadow: var(--shadow3-);
  width: 100%;
}

.search-wrap {
  display: flex;
  padding: var(--padding-);
  gap: var(--padding-)
}

.search-wrap input[type="text"] {
  font-family: 'NeoDunggeunmoPro-Regular', monospace;;
  border: none;
  background-color: var(--window7-);
  box-sizing: border-box;
  padding: var(--padding3-);
  color: var(--text-color);
  box-shadow: var(--shadow5-);
}

.search-wrap input[type="button"] {
  margin-left: 5px;
  border: none;
  background: none;
  box-sizing: border-box;
  padding: 0 10px;
  height: 22px;
  font-family: 'NeoDunggeunmoPro-Regular', monospace;
  box-shadow: var(--shadow1-);
}


/* list */
.list-style {
  position: relative;
  overflow: hidden;
}

.catetitle-info {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: var(--padding-);
}

.catetitle-info select {
  font-weight: bold;
  font-family: 'Pretendard-Regular';
  padding: 3px;
  border: none;
  width: 100%;
  background-image: url(./images/icon4.svg);
  background-position: top 2px right 2px;
  background-repeat: no-repeat;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: inset -1px -1px var(--window7-), inset 1px 1px var(--window6-), inset -2px -2px var(--window8-), inset 2px 2px var(--window5-);
}

.catetitle-info select option {
  font-size: 11px;
}

.catetitle-info select:focus {border: none; outline: none;}

.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--padding2-);
  gap: var(--padding1-);
}

/* list-gallery */
#list-gallery1 .timeline-line,
#list-gallery1 .todo-progress-wrap,
#list-gallery1 .thumbnail-td,
#list-gallery1 .playlist2-inner,
#list-gallery1 .summary,
#list-gallery1 .timeline-inner,
#list-gallery1 .progress-bar,
#list-gallery2 .timeline-line,
#list-gallery2 .todo-progress-wrap,
#list-gallery2 .thumbnail-td,
#list-gallery2 .playlist2-inner,
#list-gallery2 .summary,
#list-gallery2 .timeline-inner,
#list-gallery2 .progress-bar {
  display: none;
}

#list-gallery1 .list-inner,
#cover-gallery1 .list-inner,
#list-gallery2 .list-inner,
#cover-gallery2 .list-inner {
  display: grid;
  grid-template-columns: repeat(var(--grid-), 1fr);
}

#list-gallery1 .list-item,
#cover-gallery1 .list-item,
#list-gallery2 .list-item,
#cover-gallery2 .list-item {
  overflow: hidden;
  position: relative;
}

#list-gallery1 .thumbnail,
#cover-gallery1 .thumbnail {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow6-);
  padding: var(--padding3-);
}

#list-gallery2 .thumbnail,
#cover-gallery2 .thumbnail {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow6-);
  padding: var(--padding3-);
}

#list-gallery1 .thumbnail img,
#cover-gallery1 .thumbnail img,
#list-gallery2 .thumbnail img,
#cover-gallery2 .thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  opacity: 1;
}

#list-gallery1 .list-td,
#cover-gallery1 .list-td,
#list-gallery2 .list-td,
#cover-gallery2 .list-td {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: var(--padding1-);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  flex-direction: column;
  background: var(--article3-color);
}

#list-gallery1 .list-title,
#cover-gallery1 .list-title,
#list-gallery2 .list-title,
#cover-gallery2 .list-title {
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;  
  color: var(--article-color);
}

#list-gallery1 .list-date,
#cover-gallery1 .list-date,
#list-gallery2 .list-date,
#cover-gallery2 .list-date {
  font-size: 80%;
  color: var(--point2-color);
}


#list-gallery1 .thumbnail::after,
#cover-gallery1 .thumbnail::after,
#list-gallery2 .thumbnail::after,
#cover-gallery2 .thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

#list-gallery1 .list-item:hover .thumbnail::after,
#cover-gallery1 .list-item:hover .thumbnail::after,
#list-gallery2 .list-item:hover .thumbnail::after,
#cover-gallery2 .list-item:hover .thumbnail::after {
  background-image: 
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0px,
      rgba(0, 0, 0, 0.55) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.25) 0px,
      rgba(255, 255, 255, 0.25) 1px,
      transparent 1px,
      transparent 3px
    );
  background-size: auto, auto;
  background-repeat: repeat, repeat;
  background-position: 0 0, 0 1px;
  mix-blend-mode: overlay;
  image-rendering: pixelated;


  filter: contrast(1.2) saturate(1.1);
  animation: scan-move .6s linear infinite,
             scan-flicker 1.8s steps(10) infinite,
             shake-screen 0.15s infinite;
  opacity: .35;
}

#list-gallery1 .list-item:hover .list-td,
#cover-gallery1 .list-item:hover .list-td,
#list-gallery2 .list-item:hover .list-td,
#cover-gallery2 .list-item:hover .list-td {
  transition: var(--transition-);
  opacity: 1;
}

.summary-dday {
  display: none;
}

/* list-basic */
#list-basic .timeline-line,
#list-basic .thumbnail,
#list-basic .playlist2-inner,
#list-basic .summary,
#list-basic .progress-bar,
#list-basic .timeline-inner,
#list-basic .todo-progress-wrap
 {
  display: none;
}


#list-basic .list-inner,
#cover-basic .list-inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: var(--padding3-);
}

#list-basic .list-item,
#cover-basic .list-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  box-shadow: var(--shadow1-);
}

#list-basic .list-td,
#cover-basic .list-td {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: var(--padding-);
  width: 100%;
  padding: var(--padding1-);
}

#list-basic .list-td::after,
#cover-basic .list-td::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

#list-basic .list-item:hover .list-td::after,
#cover-basic .list-item:hover .list-td::after {
  background-image: 
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0px,
      rgba(0, 0, 0, 0.55) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.25) 0px,
      rgba(255, 255, 255, 0.25) 1px,
      transparent 1px,
      transparent 3px
    );
  background-size: auto, auto;
  background-repeat: repeat, repeat;
  background-position: 0 0, 0 1px;
  mix-blend-mode: overlay;
  image-rendering: pixelated;
  filter: contrast(1.2) saturate(1.1);
  animation: scan-move .6s linear infinite,
             scan-flicker 1.8s steps(10) infinite,
             shake-screen 0.15s infinite;
  opacity: .35;
}

#list-basic .list-title,
#cover-basic .list-title {
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;  
  line-height: 1.3;
}

#list-basic .list-date,
#cover-basic .list-date {
  font-size: 90%;
  flex-shrink: 0;
}

#list-basic .list-item:hover,
#cover-basic .list-item:hover {
  background: var(--window1-);
  box-shadow: inset -1px -1px var(--window7-), inset 1px 1px var(--window5-), inset -2px -2px var(--window8-), inset 2px 2px var(--window6-);
  color: var(--window10-);
  transition: var(--transition-);
}

#list-basic .list-item:hover .list-td,
#cover-basic .list-item:hover .list-td{
  background: var(--window1-);
  transition: var(--transition-);
}


/* list memo */
#list-memo .timeline-line,
#list-memo .todo-progress-wrap,
#list-memo .playlist2-inner,
#list-memo .thumbnail-td,
#list-memo .list-td,
#list-memo .timeline-inner,
#list-memo .progress-bar {
  display: none;
} 

#list-memo .list-inner,
#cover-memo .list-inner {
  display: grid;
  grid-template-columns: repeat(var(--grid-), 1fr);
  gap: var(--padding3-);
  overflow: hidden;
  background: none;
}

#list-memo .list-item,
#cover-memo .list-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow6-);
  background: var(--article-color);
}

#list-memo .thumbnail,
#cover-memo .thumbnail {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding: var(--padding3-);
}

#list-memo .thumbnail img,
#cover-memo .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: scale(1.01);
  opacity: 1;
  transition: transform 1s, opacity 1s;
}

#list-memo .thumbnail::after,
#cover-memo .thumbnail::after,
#list-memo .summary::after,
#cover-memo .summary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}


#list-memo .list-item:hover .thumbnail::after,
#cover-memo .list-item:hover .thumbnail::after,
#list-memo .list-item:hover .summary::after,
#cover-memo .list-item:hover .summary::after {
  background-image: 
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0px,
      rgba(0, 0, 0, 0.55) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.25) 0px,
      rgba(255, 255, 255, 0.25) 1px,
      transparent 1px,
      transparent 3px
    );
  background-size: auto, auto;
  background-repeat: repeat, repeat;
  background-position: 0 0, 0 1px;
  mix-blend-mode: overlay;
  image-rendering: pixelated;
  filter: contrast(1.2) saturate(1.1);
  animation: scan-move .6s linear infinite,
             scan-flicker 1.8s steps(10) infinite,
             shake-screen 0.15s infinite;
  opacity: .35;
}


#list-memo .summary,
#cover-memo .summary {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--padding-);
  padding: var(--padding3-);
}

#list-memo .summary-title,
#cover-memo .summary-title {
  font-size: var(--font1-size);
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  color: var(--point1-color);
}

#list-memo .summary-date,
#cover-memo .summary-date {
  color: var(--point2-color);
  font-size: 90%;
}

#list-memo .summary-desc,
#cover-memo .summary-desc {
  font-size: 92%;
  color: var(--text-color);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-height: 1.3;
}

#list-memo .list-item:hover,
#cover-memo .list-item:hover {
  background: var(--window1-);
  transition: var(--transition-);
}

#list-memo .list-item:hover .summary-title,
#cover-memo .list-item:hover .summary-title,
#list-memo .list-item:hover .summary-date,
#cover-memo .list-item:hover .summary-date,
#list-memo .list-item:hover .summary-desc,
#cover-memo .list-item:hover .summary-desc {
  color: var(--window10-);
  transition: var(--transition-);
}




/* list-summary */
#list-summary .timeline-line,
#list-summary .todo-progress-wrap,
#list-summary .thumbnail-td,
#list-summary .playlist2-inner,
#list-summary .list-td,
#list-summary .timeline-inner,
#list-summary .progress-bar {
  display: none;
}

#list-summary .list-inner,
#cover-summary .list-inner {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: none;
  gap: var(--padding3-);
}

#list-summary .list-item,
#cover-summary .list-item {
  display: flex;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow6-);
}

#list-summary .thumbnail,
#cover-summary .thumbnail {
  position: relative;
  order: 1;
  flex: 0 0 35%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow6-);
  padding: var(--padding3-);
} 


#list-summary .thumbnail img,
#cover-summary .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  opacity: 1;
  transition: transform 1s, opacity 1s;
}

#list-summary .summary,
#cover-summary .summary {
  position: relative;
  order: 2;
  flex: 1 1 0; 
  gap: var(--padding3-);
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: var(--padding3-);
  justify-content: flex-start;
  color: var(--text-color);
}

#list-summary .summary-title,
#cover-summary .summary-title {
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  order: 1;
}

#list-summary .summary-date,
#cover-summary .summary-date {
  font-size: 90%;
  order: 2;
  color: var(--window1-);
}

#list-summary .summary-desc,
#cover-summary .summary-desc {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  order: 3;
}

#list-summary .thumbnail::after,
#cover-summary .thumbnail::after,
#list-summary .summary::after,
#cover-summary .summary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

#list-summary .list-item:hover .thumbnail::after,
#cover-summary .list-item:hover .thumbnail::after,
#list-summary .list-item:hover .summary::after,
#cover-summary .list-item:hover .summary::after {
  background-image: 
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0px,
      rgba(0, 0, 0, 0.55) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.25) 0px,
      rgba(255, 255, 255, 0.25) 1px,
      transparent 1px,
      transparent 3px
    );
  background-size: auto, auto;
  background-repeat: repeat, repeat;
  background-position: 0 0, 0 1px;
  mix-blend-mode: overlay;
  image-rendering: pixelated;
  filter: contrast(1.2) saturate(1.1);
  animation: scan-move .6s linear infinite,
             scan-flicker 1.8s steps(10) infinite,
             shake-screen 0.15s infinite;
  opacity: .35;
}

#list-summary .list-item:hover,
#cover-summary .list-item:hover{
  background: var(--window1-);
}

#list-summary .list-item:hover .summary-title,
#cover-summary .list-item:hover .summary-title,
#list-summary .list-item:hover .summary-desc,
#cover-summary .list-item:hover .summary-desc,
#list-summary .list-item:hover .summary-date,
#cover-summary .list-item:hover .summary-date {
  color: var(--window10-);
  transition: var(--transition-);
}


/* list-dday */
#list-dday .timeline-line,
#list-dday .thumbnail-td,
#list-dday .list-td,
#list-dday .playlist2-inner,
#list-dday .summary-date,
#list-dday .todo-progress-wrap,
#list-dday .timeline-inner,
#list-dday .progress-bar {
  display: none;
}

#list-dday .list-inner,
#cover-dday .list-inner {
  display: grid;
  grid-template-columns: repeat( 1, 1fr );
  gap: var(--padding3-);
  background: none;
}

#list-dday .list-item,
#cover-dday .list-item {
  position: relative;
  display: flex;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow6-);
}

#list-dday .thumbnail,
#cover-dday .thumbnail {
  position: relative;
  order: 1;
  flex: 0 0 40%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow6-);
  padding: var(--padding3-);
}

#list-dday .thumbnail img,
#cover-dday .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  opacity: 1;
  transition: transform 1s, opacity 1s;
}

#list-dday .summary,
#cover-dday .summary {
  position: relative;
  padding: var(--padding3-);
  padding-left: 0;
  gap: var(--padding-);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--text-color);
  order: 2;
  flex: 1;
  overflow: hidden;
}

#list-dday .summary-title, 
#cover-dday .summary-title {
  position: relative;
  font-weight: bold;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  order: 3;
  box-shadow: var(--shadow6-);
  padding: var(--padding3-);
  text-align: center;
}

#list-dday .summary-dday,
#cover-dday .summary-dday {
  display: block;
  position: relative;
  order: 1;
  font-weight: bold;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow4-);
  background: var(--article-color);
  padding: var(--padding-);
  color: var(--text-color);
}

#list-dday .summary-desc,
#cover-dday .summary-desc {
  position: relative;
  order: 2;
  flex: 1;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: var(--shadow6-);
  padding: var(--padding3-);
}

#list-dday .thumbnail::after,
#cover-dday .thumbnail::after,
#list-dday .summary-title::after,
#cover-dday .summary-title::after,
#list-dday .summary-desc::after,
#cover-dday .summary-desc::after,
#list-dday .summary-dday::after,
#cover-dday .summary-dday::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

#list-dday .list-item:hover .thumbnail::after,
#cover-dday .list-item:hover .thumbnail::after,
#list-dday .list-item:hover .summary-title::after,
#cover-dday .list-item:hover .summary-title::after,
#list-dday .list-item:hover .summary-desc::after,
#cover-dday .list-item:hover .summary-desc::after,
#list-dday .list-item:hover .summary-dday::after,
#cover-dday .list-item:hover .summary-dday::after {
  background-image: 
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0px,
      rgba(0, 0, 0, 0.55) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.25) 0px,
      rgba(255, 255, 255, 0.25) 1px,
      transparent 1px,
      transparent 3px
    );
  background-size: auto, auto;
  background-repeat: repeat, repeat;
  background-position: 0 0, 0 1px;
  mix-blend-mode: overlay;
  image-rendering: pixelated;
  filter: contrast(1.2) saturate(1.1);
  animation: scan-move .6s linear infinite,
             scan-flicker 1.8s steps(10) infinite,
             shake-screen 0.15s infinite;
  opacity: .35;
}

#list-dday .list-item:hover .summary-title,
#cover-dday .list-item:hover .summary-title,
#list-dday .list-item:hover .summary-desc,
#cover-dday .list-item:hover .summary-desc,
#list-dday .list-item:hover .summary-dday,
#cover-dday .list-item:hover .summary-dday {
  background: var(--window1-);
  color: var(--window10-);
  transition: var(--transition-);
}

/* list-review */
#list-review .timeline-line,
#list-review .todo-progress-wrap,
#list-review .thumbnail-td,
#list-review .list-td,
#list-review .playlist2-inner,
#list-review .timeline-inner,
#list-review .progress-bar {
  display: none;
}

#list-review .list-inner,
#cover-review .list-inner {
  display: grid;
  grid-template-columns: repeat(var(--grid-), 1fr);
  gap: var(--padding3-);
  padding: 0;
  background: none;
}

#list-review .list-item,
#cover-review .list-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow: var(--shadow6-);
}

#list-review .thumbnail,
#cover-review .thumbnail {
  position: relative;
  padding: var(--padding3-);
  aspect-ratio: 3/4;
  width: 100%;
  overflow: hidden;
}

#list-review .thumbnail img,
#cover-review .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
  opacity: 1;
  transition: transform 1s, opacity 1s;
}

#list-review .summary,
#cover-review .summary {
  flex: 1;
  position: relative;
  padding: var(--padding3-);
  font-size: var(--font1-size);
  color: var(--text-color);
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--padding3-);
  align-items: center;
  justify-content: flex-end;
  padding-top: 0;
}

#list-review .summary-title,
#cover-review .summary-title {
  flex: 1;
  font-weight: bold;
  align-items: center;
  color: var(--point1-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#list-review .summary-date,
#cover-review .summary-date {
  display: none;
  font-size: 90%;
  color: var(--point2-color);
}

#list-review .summary-desc,
#cover-review .summary-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
  color: var(--text-color);
}

#list-review .review-icon,
#cover-review .review-icon {
  color: #ffe066;
  text-align: center;
}

#list-review .review-text,
#cover-review .review-text {
  display: none;
  margin-top: var(--padding1-);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

#list-review .summary-desc .fa-star-gray,
#cover-review .summary-desc .fa-star-gray {
  color: #eee;
}

#article .review-stars {
  width: 100%;
  text-align: center;
}

#article .article-desc .fa-star-colored {
  color: #ffe066;
}
#article .article-desc .fa-star-gray {
  color: #eee;
}

#list-review .summary-desc i,
#cover-review .summary-desc i {
  margin-right: 2px;
}

#list-review .list-item:hover .summary-title,
#cover-review .list-item:hover .summary-title {
  color: var(--window1-);
  transition: var(--transition-);
}

#list-review .list-item:hover .summary-title,
#cover-review .list-item:hover .summary-title,
#list-review .list-item:hover .review-icon .fa-star-colored,
#cover-review .list-item:hover .review-icon .fa-star-colored,
#list-review .list-item:hover .summary-desc,
#cover-review .list-item:hover .summary-desc {
  color: var(--window10-);
  transition: var(--transition-);
}

#list-review .list-item:hover .review-icon .fa-star-gray,
#cover-review .list-item:hover .review-icon .fa-star-gray {
  color: var(--window4-);
}

#list-review .list-item:hover,
#cover-review .list-item:hover {
  background: var(--window1-);
  transition: var(--transition-);
}

#list-review .thumbnail::after,
#cover-review .thumbnail::after,
#list-review .summary::after,
#cover-review .summary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

#list-review .list-item:hover .thumbnail::after,
#cover-review .list-item:hover .thumbnail::after,
#list-review .list-item:hover .summary::after,
#cover-review .list-item:hover .summary::after {
  background-image: 
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0px,
      rgba(0, 0, 0, 0.55) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.25) 0px,
      rgba(255, 255, 255, 0.25) 1px,
      transparent 1px,
      transparent 3px
    );
  background-size: auto, auto;
  background-repeat: repeat, repeat;
  background-position: 0 0, 0 1px;
  mix-blend-mode: overlay;
  image-rendering: pixelated;
  filter: contrast(1.2) saturate(1.1);
  animation: scan-move .6s linear infinite,
             scan-flicker 1.8s steps(10) infinite,
             shake-screen 0.15s infinite;
  opacity: .35;
}


/* list-timeline */
#list-timeline .thumbnail,
#list-timeline .thumbnail-td,
#list-timeline .list-td,
#list-timeline .playlist2-inner,
#list-timeline .todo-progress-wrap,
#list-timeline .progress-bar,
#list-timeline .summary {
  display: none;
}

#list-timeline .timeline-line,
#cover-timeline .timeline-line {
  position: absolute;
  left: var(--padding-);
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--window1-);
  z-index: 1;
}

#list-timeline .list-inner,
#cover-timeline .list-inner {
  display: flex;
  flex-direction: column;
  gap: var(--padding3-);
  position: relative;
  padding: var(--padding3-);
  background: none;
  padding-right: 0;
}

#list-timeline .list-item,
#cover-timeline .list-item {
  position: relative;
  left: calc(var(--padding-) * 3);
  margin-left: 0;
  width: calc(100% - (var(--padding-) * 3));
  z-index: 2;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow6-);
}

#list-timeline .list-item::before,
#cover-timeline .list-item::before {
  content: "";

  display: block;
  position: absolute;
  left: -17px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--point1-color);
  border: solid 1px var(--window1-);
  border-radius: 50%;
  z-index: 4;
  transition: background 0.2s;
}

#list-timeline .timeline-inner,
#cover-timeline .timeline-inner {
  width: 100%;
  order: 1;
  min-width: 0;
  display: flex;
  gap: var(--padding3-);
  overflow: hidden;
  padding: var(--padding3-);
}

#list-timeline .timeline-item,
#cover-timeline .timeline-item {
  position: relative;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--padding3-);
}

#list-timeline .timeline-thumbnail,
#cover-timeline .timeline-thumbnail {
  box-shadow: var(--shadow5-);
  position: relative;
  width: 40%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

#list-timeline .timeline-thumbnail img,
#cover-timeline .timeline-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  opacity: 1;
  transition: transform 1s, opacity 1s;
}

#list-timeline .summary-title,
#cover-timeline .summary-title {
  position: relative;
  width: 100%;
  font-weight: bold;
  color: var(--point1-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: var(--shadow4-);
  background: var(--article-color);
  padding: var(--padding-);
}

#list-timeline .summary-date,
#cover-timeline .summary-date {
  position: relative;
  font-size: 80%;
  color: var(--window2-);
  text-align: right;
}

#list-timeline .summary-desc,
#cover-timeline .summary-desc {
  position: relative;
  display: -webkit-box;
  color: var(--text-color);
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-all;
}

#list-timeline .list-item:nth-child(odd)::before,
#cover-timeline .list-item:nth-child(odd)::before {
  background: var(--point1-color);
}

#list-timeline .list-item:nth-child(even)::before,
#cover-timeline .list-item:nth-child(even)::before {
  background: var(--point2-color);
}

#list-timeline .list-item:hover .summary,
#cover-timeline .list-item:hover .summary,
#list-timeline .list-item:hover .summary-date,
#cover-timeline .list-item:hover .summary-date,
#list-timeline .list-item:hover .summary-desc,
#cover-timeline .list-item:hover .summary-desc  {
  color: var(--window1-);
  transition: var(--transition-);
}


#list-timeline .list-item:hover .summary-title,
#cover-timeline .list-item:hover .summary-title{
  color: var(--window1-);
  transition: var(--transition-);
}

#list-timeline .list-item:hover::before,
#cover-timeline .list-item:hover::before {
  border: solid 1px var(--window7-);
  background: var(--window1-);
  transition: var(--transition-);
}

#list-timeline .timeline-thumbnail::after,
#cover-timeline .timeline-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

#list-timeline .list-item:hover .timeline-thumbnail::after,
#cover-timeline .list-item:hover .timeline-thumbnail::after {
  background-image: 
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0px,
      rgba(0, 0, 0, 0.55) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.25) 0px,
      rgba(255, 255, 255, 0.25) 1px,
      transparent 1px,
      transparent 3px
    );
  background-size: auto, auto;
  background-repeat: repeat, repeat;
  background-position: 0 0, 0 1px;
  mix-blend-mode: overlay;
  image-rendering: pixelated;
  filter: contrast(1.2) saturate(1.1);
  animation: scan-move .6s linear infinite,
             scan-flicker 1.8s steps(10) infinite,
             shake-screen 0.15s infinite;
  opacity: .35;
}


/* list-todo */
#list-todo .playlist2-inner,
#list-todo .thumbnail-td,
#list-todo .list-td,
#list-todo .timeline-line,
#list-todo .list-cate,
#list-todo .timeline-inner,
#list-todo .thumbnail-cate,
#list-todo .summary {
  display: none;
}

#list-todo .list-inner,
#cover-todo .list-inner {
  display: grid;
  grid-template-columns: repeat(var(--grid-), 1fr);
  gap: var(--padding3-);
}

#list-todo .list-item,
#cover-todo .list-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: var(--padding3-);
  box-shadow: var(--shadow6-);
  padding: var(--padding3-);
} 

#cover-todo .list-item {
  border: solid 1px var(--border-color);
}

#list-todo .thumbnail,
#cover-todo .thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  padding: var(--padding3-);
  box-shadow: var(--shadow6-);
}

#list-todo .thumbnail img,
#cover-todo .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  opacity: 1;
  transition: transform 1s, opacity 1s;
  overflow: hidden;
}

#list-todo .summary,
#cover-todo .summary {
  display: flex;
  flex-direction: column;
  gap: var(--padding3-);
  padding: var(--padding3-);
  flex: 1;
  position: relative;
}


#list-todo .summary-title,
#cover-todo .summary-title {
  width: 100%;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block; 
  min-width: 0;
  max-width: 100%;  
}

#list-todo .summary-date,
#cover-todo .summary-date {
  font-size: 90%;
  color: var(--point2-color); 
}

#list-todo .summary-desc,
#cover-todo .summary-desc {
  color: var(--text-color);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

#list-todo .todo-progress-wrap,
#cover-todo .todo-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--padding3-);
  box-shadow: var(--shadow4-);
  background: var(--article-color);
  padding: var(--padding-);
  height: 40px;
}

#list-todo .progress-item,
#cover-todo .progress-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#list-todo .todo-percent,
#cover-todo .todo-percent {
  color: var(--point2-color);
  font-weight: bold;
}

#list-todo .todo-checkbox,
#cover-todo .todo-checkbox {
  display: inline-flex;
  width: 20px; 
  height: 20px;
  border: solid 1px var(--border-color);
  border-radius: 5px;
  background: #eee;
  align-items: center;
  justify-content: center;
  font-size: 1.12em;
  transition: border-color .15s, background .15s;
}

#list-todo .todo-checkbox.checked,
#cover-todo .todo-checkbox.checked {
  border-color: var(--border-color);
  background: var(--point1-color);
  color: var(--article-color);
}

#list-todo .progress-inner,
#cover-todo .progress-inner {
  width: 100%;
  height: 3px;
  background: #eee;
  border-radius: 5px;
  transition: width .2s;
}

#list-todo .progress-inner .progress-value,
#cover-todo .progress-inner .progress-value {
  height: 100%;
  background: var(--point1-color);
  border-radius: 5px;
}

#list-todo .thumbnail::after,
#cover-todo .thumbnail::after,
#list-todo .summary::after,
#cover-todo .summary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

#list-todo .list-item:hover .thumbnail::after,
#cover-todo .list-item:hover .thumbnail::after,
#list-todo .list-item:hover .summary::after,
#cover-todo .list-item:hover .summary::after {
  background-image: 
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0px,
      rgba(0, 0, 0, 0.55) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.25) 0px,
      rgba(255, 255, 255, 0.25) 1px,
      transparent 1px,
      transparent 3px
    );
  background-size: auto, auto;
  background-repeat: repeat, repeat;
  background-position: 0 0, 0 1px;
  mix-blend-mode: overlay;
  image-rendering: pixelated;
  filter: contrast(1.2) saturate(1.1);
  animation: scan-move .6s linear infinite,
             scan-flicker 1.8s steps(10) infinite,
             shake-screen 0.15s infinite;
  opacity: .35;
}

#list-todo .list-item:hover .summary,
#cover-todo .list-item:hover .summary {
  background: var(--window1-);
}

#list-todo .list-item:hover .thumbnail img,
#cover-todo .list-item:hover .thumbnail img {
  opacity: .5;
  transition: transform 1s, opacity 1s;
}

#list-todo .list-item:hover .summary-title,
#cover-todo .list-item:hover .summary-title,
#list-todo .list-item:hover .summary-desc,
#cover-todo .list-item:hover .summary-desc {
  color: var(--window10-);
  transition: var(--transition-);
}

#list-todo .list-item:hover .todo-percent,
#cover-todo .list-item:hover .todo-percent {
  color: var(--window1-);
  transition: var(--transition-);
}

#list-todo .list-item:hover .progress-inner .progress-value,
#cover-todo .list-item:hover .progress-inner .progress-value {
  background: var(--window1-);
  transition: var(--transition-);
}

#list-todo .list-item:hover .todo-checkbox,
#cover-todo .list-item:hover .todo-checkbox {
  border: 1px solid var(--point2-color) !important;
  background: var(--window1-) !important;
  transition: var(--transition-);
}


/* list - playlist1 */
#list-playlist1 .timeline-line,
#list-playlist1 .thumbnail,
#list-playlist1 .list-td,
#list-playlist1 .summary-title,
#list-playlist1 .summary-date,
#list-playlist1 .progress-bar,
#list-playlist1 .timeline-inner,
#list-playlist1 .todo-progress-wrap {
  display: none;
}

#list-playlist1 .list-inner,
#cover-playlist1 .list-inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: none;
  padding: 0;
  gap: var(--padding3-);
}

#list-playlist1 .list-item,
#cover-playlist1 .list-item {
  display: flex;
  flex-direction: column;  
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  overflow: hidden;
  box-shadow: var(--shadow6-);
}

#list-playlist1 .playlist2-inner,
#cover-playlist1 .playlist2-inner {
  padding: var(--padding3-);
  display: flex;
  flex-direction: column;
  gap: var(--padding1-);
  box-shadow: var(--shadow4-);
}

#list-playlist1 .list-playlist-td,
#cover-playlist1 .list-playlist-td {
  display: flex;
  align-items: center;
  gap: var(--padding3-);
  width: 100%;
  overflow: hidden;
}

#list-playlist1 .playlist2-icon,
#cover-playlist1 .playlist2-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--padding3-);
  box-shadow: var(--shadow4-);
  background: var(--article-color);
}

#list-playlist1 .playlist2-td,
#cover-playlist1 .playlist2-td {
  color: var(--text-color);
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--padding3-);
  height: 36px;
  box-shadow: var(--shadow4-);
}

#list-playlist1 .playlist2-title,
#cover-playlist1 .playlist2-title {
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: block;
}

#list-playlist1 .playlist2-date,
#cover-playlist1 .playlist2-date {
  text-align: left;
  font-size: 90%;
  color: var(--window10-);
}

#cover-playlist1 .playlist2-date {
  height: 15px;
}

#list-playlist1 .summary,
#cover-playlist1 .summary {
  padding: var(--padding3-);
  box-shadow: var(--shadow4-);
}

#list-playlist1 .desc-text,
#cover-playlist1 .desc-text {
  padding: var(--padding3-);
  color: var(--text-color);
}

#list-playlist1 .desc-text-plain,
#cover-playlist1 .desc-text-plain {
  padding-top: 0;
  color: var(--text-color);
}

#list-playlist1 .list-item:hover .playlist2-icon,
#cover-playlist1 .list-item:hover .playlist2-icon {
  background: var(--window1-);
  color: var(--point2-color);
  transition: var(--transition-);
}

#list-playlist1 .list-item:hover .playlist2-date,
#cover-playlist1 .list-item:hover .playlist2-date,
#list-playlist1 .list-item:hover .playlist2-title,
#cover-playlist1 .list-item:hover .playlist2-title,
#list-playlist1 .list-item:hover .desc-text,
#cover-playlist1 .list-item:hover .desc-text,
#list-playlist1 .list-item:hover .desc-text-plain,
#cover-playlist1 .list-item:hover .desc-text-plain {
  background: var(--window1-);
  color: var(--point2-color);
  transition: var(--transition-);
}


/* list - playlist2 */
#list-playlist2 .timeline-line,
#list-playlist2 .list-td,
#list-playlist2 .thumbnail,
#list-playlist2 .summary-title,
#list-playlist2 .summary-date,
#list-playlist2 .timeline-inner,
#list-playlist2 .todo-progress-wrap {
  display: none;
}

#list-playlist2 .list-inner,
#cover-playlist2 .list-inner {
  display: flex;
  flex-direction: column;
  gap: var(--padding3-);
  background: none;
  padding: 0;
}

#list-playlist2 .list-item,
#cover-playlist2 .list-item {
  position: relative;
  width: 100%;
  padding: var(--padding3-);
  box-shadow: var(--shadow2-);
}

#list-playlist2 .list-item.open, 
#cover-playlist2 .list-item.open {
  padding: var(--padding3-);
  box-shadow: var(--shadow6-);
}

#list-playlist2 .playlist2-inner,
#cover-playlist2 .playlist2-inner {
  display: flex;
  gap: var(--padding3-);
  cursor: pointer;
}

#list-playlist2 .list-item.open .playlist2-inner,
#cover-playlist2 .list-item.open .playlist2-inner {
  box-shadow: var(--shadow6-);
  background: var(--window8-);
  padding: var(--padding3-);
}


#list-playlist2 .list-playlist-td,
#cover-playlist2 .list-playlist-td {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  gap: var(--padding1-);
  align-items: center;
}

#list-playlist2 .playlist2-title,
#cover-playlist2 .playlist2-title {
  font-size: var(--font1-size);
  font-weight: bold;
  color: var(--text-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .18s;
}

#list-playlist2 .list-item:hover .playlist2-title,
#cover-playlist2 .list-item:hover .playlist2-title,
#list-playlist2 .list-item:hover .desc-text,
#cover-playlist2 .list-item:hover .desc-text,
#list-playlist2 .list-item:hover .desc-text-plain,
#cover-playlist2 .list-item:hover .desc-text-plain {
  color: var(--window10-);
  transition: var(--transition-);
}

#cover-playlist2 .list-item:hover .playlist2-icon,
#list-playlist2 .list-item:hover .playlist2-icon {
  color: var(--point2-color);
  transition: var(--transition-);
}

#list-playlist2 .list-item:hover .playlist2-icon,
#cover-playlist2 .list-item:hover .playlist2-icon {
  border: solid 1px var(--point2-color);
  transition: var(--transition-);
}

#list-playlist2 .list-item.open .playlist2-title,
#cover-playlist2 .list-item.open .playlist2-title,
#list-playlist2 .list-item.open .playlist2-date,
#cover-playlist2 .list-item.open .playlist2-date {
  color: var(--point1-color);
}

#list-playlist2 .playlist2-date,
#cover-playlist2 .playlist2-date {
  font-size: 80%;
  color: var(--window10-);
}

#list-playlist2 .playlist2-td,
#cover-playlist2 .playlist2-td {
  width: calc(100% - 30px);
  overflow: hidden;
}

#list-playlist2 .playlist2-icon,
#cover-playlist2 .playlist2-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--point1-color);
  box-shadow: var(--shadow4-);
  background: var(--article-color);
}

#list-playlist2 .playlist2-icon:has(.playlist2-thumb),
#cover-playlist2 .playlist2-icon:has(.playlist2-thumb) {
  width: 30px;
  height: 30px;
}

#list-playlist2 .playlist2-icon:not(:has(.playlist2-thumb)),
#cover-playlist2 .playlist2-icon:not(:has(.playlist2-thumb)) {
  width: 30px;
  height: 30px;
}

#list-playlist2 .playlist2-thumb,
#cover-playlist2 .playlist2-thumb,
#list-playlist2 .playlist2-thumbnail,
#cover-playlist2 .playlist2-thumbnail {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--border-radius-);
}

#list-playlist2 .summary, 
#cover-playlist2 .summary {
  width: 100%;
}

#list-playlist2 .desc-text,
#cover-playlist2 .desc-text {
  color: var(--text-color);
  padding: var(--padding3-);
  padding-bottom: 0;
}

#list-playlist2 .desc-text-plain,
#cover-playlist2 .desc-text-plain {
  padding: var(--padding3-);
  color: var(--text-color);
}

#list-playlist2 .playlist2-link,
#cover-playlist2 .playlist2-link {
  display: flex;
  justify-content: end;
  padding: var(--padding3-);
  color: var(--point1-color);
}

#list-playlist2 .playlist2-movebtn,
#cover-playlist2 .playlist2-movebtn {
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  padding: var(--padding3-);
  color: var(--point1-color);
  border: solid 1px var(--border-color);
}

#list-playlist2 .list-item.open:hover,
#cover-playlist2 .list-item.open:hover {
  background: var(--window1-);
  transition: var(--transition-);
}

#list-playlist2 .list-item:hover .playlist2-movebtn,
#cover-playlist2 .list-item:hover .playlist2-movebtn {
  color: var(--window10-);
  cursor: pointer;
  transition: var(--transition-);
  border: solid 1px var(--window10-);
  background: var(--window1-);
}

#list-playlist2 .list-item.open .playlist2-icon,
#cover-playlist2 .list-item.open .playlist2-icon {
  animation: blink-point-color 1s infinite;
  border: 1px solid var(--point1-color);
}


@keyframes blink-point-color {
  0%   { color: var(--point1-color); border-color: var(--point1-color); }
  50%  { color: var(--point2-color); border-color: var(--point2-color); }
  100% { color: var(--point1-color); border-color: var(--point1-color); }
}


/* list fadein */
#list-gallery1 .list-item,
#cover-gallery1 .list-item,
#list-gallery2 .list-item,
#cover-gallery2 .list-item,
#list-basic .list-item,
#cover-basic .list-item,
#list-memo .list-item,
#cover-memo .list-item,
#list-summary .list-item,
#cover-summary .list-item,
#list-dday .list-item,
#cover-dday .list-item,
#list-review .list-item,
#cover-review .list-item,
#list-timeline .list-item,
#cover-timeline .list-item,
#list-todo .list-item,
#cover-todo .list-item,
#list-playlist1 .list-item,
#cover-playlist1 .list-item,
#list-playlist2 .list-item,
#cover-playlist2 .list-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s cubic-bezier(.18,.68,.58,1), transform 0.44s cubic-bezier(.18,.68,.58,1);
}

#list-gallery1 .list-item.on,
#cover-gallery1 .list-item.on,
#list-gallery2 .list-item.on,
#cover-gallery2 .list-item.on,
#list-basic .list-item.on,
#cover-basic .list-item.on,
#list-memo .list-item.on,
#cover-memo .list-item.on,
#list-summary .list-item.on,
#cover-summary .list-item.on,
#list-dday .list-item.on,
#cover-dday .list-item.on,
#list-review .list-item.on,
#cover-review .list-item.on,
#list-timeline .list-item.on,
#cover-timeline .list-item.on,
#list-todo .list-item.on,
#cover-todo .list-item.on,
#list-playlist1 .list-item.on,
#cover-playlist1 .list-item.on,
#list-playlist2 .list-item.on,
#cover-playlist2 .list-item.on {
  opacity: 1;
  transform: none;
}


/* list-lock (보호글) */
#list-gallery1 .list-lock .list-title::before,
#list-gallery2 .list-lock .list-title::before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight: 700;
  transition: all 0.3s ease;
  margin-right: var(--padding-);
  color: var(--window1-);
}

#list-basic .list-lock .list-title::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  color: var(--window1-);
  margin-right: var(--padding-);
}

#list-memo .list-lock .summary-desc::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: var(--padding-);
  color: var(--window1-);
}

#list-memo .list-lock .summary-title::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: var(--padding-);
  color: var(--window1-);
}

#list-summary .list-lock .summary-title::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: var(--padding-);
  color: var(--window1-);
}

#list-summary .list-lock .summary-desc::before{
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: var(--padding-);
  color: var(--window1-);
}

#list-dday .list-lock .summary-title::before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: var(--padding-);
  color: var(--window1-);
}

#list-dday .list-lock .summary-desc::before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: var(--padding-);
  color: var(--window1-);
}

#list-review .list-lock .summary-title::before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  color: var(--window1-);
  margin-right: var(--padding-);
}

#list-review .list-lock .summary-desc::before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  color: var(--window1-);
  margin-right: var(--padding-);
}

#list-timeline .list-lock .summary-title::before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: var(--padding-);
  color: var(--window1-);
}

#list-timeline .list-lock .summary-desc::before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: var(--padding-);
  color: var(--window1-);
}

#list-todo .list-lock .summary-title::before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: var(--padding-);
  color: var(--window1-);
}

#list-todo .list-lock .summary-desc::before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: var(--padding-);
  color: var(--window1-);
}

#list-playlist1 .list-lock .desc-text:before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 5px;
  color: var(--window1-);
}

#list-playlist2 .list-lock .desc-text-plain::before {
  content:"\f023"; 
  font-family:"Font Awesome 5 Free"; 
  font-weight:700;
  margin-right: 5px;
  color: var(--window1-);
}

#list-gallery1 .list-item.list-lock:hover .list-title::before,
#list-gallery2 .list-item.list-lock:hover .list-title::before,
#list-basic .list-item.list-lock:hover .list-title::before,
#list-memo .list-item.list-lock:hover .summary-title::before,
#list-memo .list-item.list-lock:hover .summary-desc::before,
#list-summary .list-item.list-lock:hover .summary-title::before,
#list-summary .list-item.list-lock:hover .summary-desc::before,
#list-dday .list-item.list-lock:hover .summary-title::before,
#list-dday .list-item.list-lock:hover .summary-desc::before,
#list-review .list-item.list-lock:hover .summary-title::before,
#list-review .list-item.list-lock:hover .summary-desc::before,
#list-timeline .list-item.list-lock:hover .summary-title::before,
#list-timeline .list-item.list-lock:hover .summary-desc::before,
#list-todo .list-item.list-lock:hover .summary-title::before,
#list-todo .list-item.list-lock:hover .summary-desc::before,
#list-playlist1 .list-item.list-lock:hover .desc-text::before,
#list-playlist1 .list-item.list-lock:hover .playlist2-title::before {
  color: var(--point1-color);
  transition: var(--transition-);
}

#list-playlist2 .list-item.list-lock:hover .desc-text-plain::before {
  color: var(--point2-color);
  transition: var(--transition-);
}


/* protected */
#protected {
  font-size: var(--font2-size);  
  height: 100%;
}

#protected .article-inner {
  padding: calc(var(--padding2-) * 2); 
  height: 100%;
  background-color: var(--article-color);
  box-shadow: var(--shadow4-);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--padding3-);
}

#protected .article-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

#protected .article-date {
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  flex-direction: row-reverse;
  display: none;
}

#protected .article-title {
  font-weight: 700;
  display: flex;
  flex-direction: column;  
  align-items: center;
  gap: var(--padding1-);
}

#protected .article-cate a{
  display: flex;
  align-items: center;
}

#protected .article-desc {
  text-align: center;
}

.lock-text {
  color: var(--point2-color);
}

.lock-desc input[type="password"] {
  font-family: 'Pretendard-Regular'; 
  background: none; 
  padding: var(--padding1-);
  color: var(--text-color);
  box-shadow: var(--shadow4-);
  border: none;
  background-color: var(--window4-);
}

.lock-desc {
  display: flex;
  align-items: center;
  padding: var(--padding1-);
  gap: var(--padding1-);
}

.lock-desc input[type="password"]::placeholder{
  color: var(--text-color);
}

.lock-desc input[type="button"] {
  width: auto;
  font-family: 'Pretendard-Regular';
  padding: var(--padding1-); 
  font-weight: bold;
  color: var(--point1-color);
  box-shadow: var(--shadow3-);
  border: none;
  background-color: var(--window4-);
}
 
.lock-desc input[type="button"]:hover {
  color: var(--article-color);
  transition: all 0.3s ease;
  box-shadow: var(--shadow6-);
  background: var(--window1-);
  cursor: pointer;

}


/* cover */
.cover-inner {
  display: flex;
  flex-direction: column;
}

.cover-inner > .inner {  
  overflow: hidden;
  box-shadow: var(--shadow6-);
  padding: var(--padding-);
}

.cover-inner > .inner:not(:last-of-type) {
  margin-bottom: var(--padding-);
}

.cover-inner .c-title {
  font-weight: bold; 
  background: var(--article-color);
  color: var(--text-color);
  text-align: center;
  padding: var(--padding-);
  margin-bottom: var(--padding-);
  box-shadow: inset -1px -1px var(--window7-), inset 1px 1px var(--window6-), inset -2px -2px var(--window8-), inset 2px 2px var(--window5-);
}
 
.cover-inner .c-title i {
  color: var(--point1-color);
}

/* cover notice */
#cover-notice .notice-thumbnail {
  position: relative;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow6-);
  padding: var(--padding3-);
} 

#cover-notice .notice-thumbnail img {
  max-width: 100%;
  transform: scale(1);
  opacity: 1;
  transition: transform 1s, opacity 1s;
}

#cover-notice .notice-link:hover .notice-thumbnail img {
  transform: scale(1.2);
  opacity: .5;
  transition: transform 1s, opacity 1s;
}

#cover-notice .notice-main {
  display: flex;
  flex-direction: column;
  gap: var(--padding-);
  padding: var(--padding-);
}

#cover-notice .notice-title {
  font-weight: bold;
}

#cover-notice .notice-desc {
  color: var(--text-color);
}

#cover-notice .c-title {
  cursor: pointer;
  user-select: none;
  position: relative;
}

#cover-notice .c-title i {
  transition: transform 0.3s cubic-bezier(.7,0,.3,1);
  display: inline-block;
}

#cover-notice.open .c-title i {
  transform: rotate(180deg);
}
 

/* cover swiper */
.cover-swiper.inner .c-title {
  padding-bottom: var(--padding1-);
}

.swiper {
  width:100% !important; 
  margin: 0 !important; 
}
 
.swiper.mySwiper  {
  width: 100%;
  overflow: hidden;
  padding: var(--padding3-);
  box-shadow: var(--shadow6-);
}

.swiper-slide {
  width: 100%;
  background: var(--article-color);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  aspect-ratio: 16/9;
  min-height: 0;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  overflow: hidden;
}

.swiper-pagination-bullet {
  background: var(--point1-color) !important; 
  opacity: 100 !important;
}

.swiper-pagination-bullet-active {
   background: var(--point2-color) !important; 
  opacity: 100 !important;
}




/* article */
#article {
  font-size: var(--font2-size);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  gap: var(--padding3-);
}

#article .layer_post{
  border: solid 1px var(--border-color);
  left: -23px !important;
}

#article .article-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--padding3-);
}

#article .article-cd {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  color: var(--text-color);
  box-shadow: var(--shadow6-);
  padding: var(--padding3-);
  background: var(--article-color);
}

#article .article-title {
  width: 100%;
  font-weight: bold;
}

#article .article-title select {
  font-weight: bold;
  font-family: 'Pretendard-Regular';
  padding: 3px;
  border: none;
  width: 100%;
  background-image: url(./images/icon4.svg);
  background-position: top 2px right 2px;
  background-repeat: no-repeat;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: inset -1px -1px var(--window7-), inset 1px 1px var(--window6-), inset -2px -2px var(--window8-), inset 2px 2px var(--window5-);
}

#article .article-title select option {
  font-size: 11px;
}

#article .article-title select:focus {border: none; 
outline: none;
}

#article .article-cate a {
  display: flex;
  align-items: center;
  font-size: var(--font2-size);
  font-weight: bold;
}

#article .article-inner{
  display: flex;
  flex-direction: column;
  gap: var(--padding3-);
}

#article .article-desc {
  box-shadow: var(--shadow6-);
  background: var(--article-color);
  padding: var(--padding1-);
}

button.btn_post.btn_etc2,
button.btn_post.sns_btn.btn_share {
  display: none !important;
}

blockquote[data-ke-style="style1"] {
  text-align: center;
  position: relative;
  padding: 20px;
  margin: var(--padding1-) 0;
}

blockquote[data-ke-style='style1'] {
  position: relative;
  background: #eee;
  border-radius: 3px;
  text-align: center;
  margin: 1.5rem auto 2rem;
  width: 80%;
  padding: var(--padding1-);
  color: #4a4a4a;
  font-style: italic;
  overflow: visible;
}

blockquote[data-ke-style='style1']:before,
blockquote[data-ke-style='style1']:after {
  font-family: FontAwesome;
  position: absolute;
  color: var(--point2-color);
  font-size: 1em;
  z-index: 1;
}

blockquote[data-ke-style='style1']:before {
  content: "\f10d";
  left: -2rem;
  top: 0;
}

blockquote[data-ke-style='style1']:after {
  content: "\f10e";
  right: -2rem;
  bottom: 0;
}

blockquote[data-ke-style='style1'] span {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 100%;
  font-size: var(--font2-size);
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

blockquote[data-ke-style='style2'] {
  padding:5px; 
  margin:10px 0;  
  font-size: var(--font2-size); 
  line-height:20px; 
  font-weight: bold;
  text-align: left;
  background: var(--article-color);
  border-left: solid 7px var(--border-color); 
}

blockquote[data-ke-style='style3'] { 
  padding: 5px; 
  margin:10px 0; 
  font-size: var(--font2-size); 
  line-height: 20px; 
  overflow-y: auto;
}

.contents_style table td {
  padding: var(--padding1-);
  border: solid 1px var(--border-color);
}


ul[data-ke-list-type='disc'] > li {
  list-style: none !important;
}

#article .article-desc ul[data-ke-list-type='disc'] > li {
  position: relative;

  padding-left: 1.2em;
  margin: 0.4em 0;
  font-size: var(--font2-size);
  color: var(--text-color);
  line-height: 1.7;
  transition: color 0.18s;
}

#article .article-desc .sub-bullet {
  display: inline-block;
  color: var(--text-color);
  font-size: var(--font2-size);
  font-family: inherit;
}

#article .article-desc .sub-dot,
#article .article-desc .sub-dash {
  font-size: 15px;
  color: var(--point2-color);
  font-weight: bold;
  margin-right: var(--padding-);
  vertical-align: middle;
}

#article .article-desc ul[data-ke-list-type='disc'] > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background: var(--point1-color);
  border-radius: 50%;
}

#article .article-desc ul[data-ke-list-type='disc'] > li:hover::before {
  background: var(--point2-color);

  transition: var(--transition-);
}


ul[data-ke-list-type='circle'] > li {
  list-style: none !important;
}

#article .article-desc ul[data-ke-list-type='circle'] > li {
  position: relative;
  padding-left: 1.05em;
  margin: 0.4em 0;
  font-size: var(--font2-size);
  color: var(--text-color);
  line-height: 1.7;
  transition: color 0.18s;
}

#article .article-desc ul[data-ke-list-type='circle'] > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5.5px; 
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--point1-color);
  background: transparent;
  box-sizing: border-box;
  transition: border-color 0.18s;
}

#article .article-desc ul[data-ke-list-type='circle'] > li:hover::before {
  border-color: var(--point2-color);
}

ol[data-ke-list-type='decimal'] > li {
  list-style: none !important;
}

#article .article-desc ol[data-ke-list-type='decimal'] > li {
  position: relative;
  padding-left: 1.2em;
  margin: 0.4em 0;
  font-size: var(--font2-size);
  color: var(--text-color);
  line-height: 1.7;
  transition: color 0.18s;
  counter-increment: custom-ol;
}

#article .article-desc ol[data-ke-list-type='decimal'] {
  counter-reset: custom-ol;
}

#article .article-desc ol[data-ke-list-type='decimal'] > li::before {
  content: counter(custom-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--point1-color);
  font-weight: 700;
  font-size: 1em;
  transition: color 0.18s;
}

#article .article-desc ol[data-ke-list-type='decimal'] > li:hover::before {
  color: var(--point2-color);
}

figure[data-ke-type='opengraph'] div.og-text {
  font-size: var(--font1-size) !important;
  padding: var(--padding2-) !important;
}

figure.imageslideblock div.image-container {
  min-width: unset !important;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless {
  font-size: var(--font2-size) !important;
  border: none;
  color: var(--window1-);
}

[data-ke-type="moreLess"] {
  margin: var(--padding1-) 0;
}

[data-ke-type="moreLess"] .btn-toggle-moreless {
  padding: var(--padding1-);
  border: none;
  background: var(--window4-);
  box-shadow: var(--shadow1-);
  color: var(--text-color);
}

[data-ke-type="moreLess"].open .btn-toggle-moreless {
  border-radius: 0 !important;
  box-shadow: var(--shadow6-);
  border-bottom: none;
}

[data-ke-type="moreLess"] .btn-toggle-moreless::before {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  color: var(--point1-color);
  font-weight: 900;
  content: "\f0d7"; /* ▼ */
  margin-right: 6px;
  font-size: 1em;
  transition: transform 0.32s cubic-bezier(.4,0,.2,1), color 0.18s;
  vertical-align: middle;
  transform: rotate(0deg);
}

[data-ke-type="moreLess"].open .btn-toggle-moreless::before {
  transform: rotate(180deg);
  color: var(--point1-color) !important;
}

div[data-ke-type='moreLess'].open .moreless-content {
  border: none;
  box-shadow: var(--shadow6-);
  background: #f2f2f2;
  padding: var(--padding1-);
  border-radius: 0;
  position: relative;
  z-index: 99;
}

[data-ke-type="moreLess"] .btn-toggle-moreless:hover::before{
  transform: rotate(180deg);
  color: var(--point2-color);
  transition: var(--transition-);
}

[data-ke-type="moreLess"].open .btn-toggle-moreless::before {
  transform: rotate(180deg);
  color: var(--point2-color);
  transition: var(--transition-);
}

[data-ke-type="moreLess"].open .btn-toggle-moreless:hover::before{
  color: var(--point2-color);
  transition: var(--transition-);
}

[data-ke-type="moreLess"] .btn-toggle-moreless:hover {
  color: var(--article-color);
  background: var(--window1-);
  box-shadow: var(--shadow6-);
  transition: var(--transition-);
}

figure[data-ke-align=alignCenter].fileblock {
  background: #f2f2f2;
  overflow: hidden;
}

figure.fileblock a, #tt-body-page figure.fileblock a {
  display: flex;
  align-items: center;
  gap: var(--padding1-);
  padding: var(--padding1-);
}

figure.fileblock .image, #tt-body-page figure.fileblock .image {
  background-image: none !important;
  position: relative;
  left: unset;
  top: unset;
  margin: unset !important;
  width: unset;
  height: unset;
}

figure.fileblock .filename, #tt-body-page figure.fileblock .filename {
  margin: 0;
  max-height: 30px;
  overflow: hidden;
}

figure.fileblock .desc, #tt-body-page figure.fileblock .desc {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  border: unset;
}

figure.fileblock, #tt-body-page figure.fileblock {
  position: relative;
  border: solid 1px var(--border-color) !important;
  border-radius: var(--border-radius-);
  width: 300px !important;
  height: 70px  !important;
  margin: var(--padding2-) auto !important;
}

figure.fileblock .name, #tt-body-page figure.fileblock .name {
  color: var(--text-color) !important;
  font-weight: bold;
  width: 200px;
  font-size: 12px !important;
}

figure.fileblock .size, #tt-body-page figure.fileblock .size {
  color: var(--point2-color) !important;
}

.fileblock .image::before {
  content: '\f0c7';
  width: 30px !important;
  height: 30px !important;
  padding: var(--padding-);
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--point1-color);
  font-size: 25px;
  font-family: FontAwesome;
  line-height: 1;
  border-radius: 50%;
  background: var(--article-color);
}

figure.fileblock a::after {
  content: "\f358" !important;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 700 !important;
  background-image: none !important;
  width: 30px !important;
  height: 30px !important;
  right: 10px !important;
  top: calc(50% + 10px);
  transform: translateY(-50%);
  color: var(--point1-color);
  font-size: 25px;
}

figure.fileblock a:hover::after {
  color: var(--point2-color) !important;
  transition: var(--transition-);
}

figure.fileblock:hover,
figure.fileblock:has(a:hover) {
  border-color: var(--point2-color) !important;
  transition: var(--transition-);
}

figure.fileblock a:hover .name,
#tt-body-page figure.fileblock a:hover .name {
  color: var(--point2-color) !important;
  transition: var(--transition-);
}

figure.fileblock a:hover .size,
#tt-body-page figure.fileblock a:hover .size {
  color: var(--point2-color) !important;
  transition: var(--transition-);
}

#article .container_postbtn .btn_menu_toolbar {
  display: none;
  border: none !important;
  line-height: inherit !important;
  height: 37px !important;
  margin-left: 0 !important;
  border-left: solid 1px var(--border-color) !important;
  border-radius: 0 !important;
}

#article .container_postbtn {
  padding: 0 !important;
}

#article .container_postbtn .postbtn_like {
  float: unset;
  display: flex;
  flex-direction: row-reverse;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
}

#article .btn_post.uoc-icon{
  box-shadow: var(--shadow2-);
}

.wrap_btn_etc .btn_post.btn_etc1 {
  box-shadow: var(--shadow2-);
  width: 37px;
}

#article .container_postbtn .btn_post{
  height: 37px;
  padding: var(--padding1-);
  display: flex;
}

#article .container_postbtn .btn_post .ico_postbtn {
  margin: 0 !important;
  max-width: unset !important;
}

#article .uoc-icon {
  display: flex;
  align-items: center;
}

#article .txt_like.uoc-count {
  display: inline-block;

  min-width: 1.2em;
  text-align: center;
  color: var(--point1-color);
  font-weight: 700;
  transition: color 0.18s;
}

#article .uoc-count {
  color: var(--point1-color) !important;
  font-weight: 700;
}

#article .uoc-icon.like_on .txt_like.uoc-count {
  color: var(--point2-color) !important;
  font-weight: 700;
}

#article .btn_post.uoc-icon {
  overflow: visible;
}

#article .btn_post .ico_like {
  width: 18px;
  height: 18px;
  margin: 3px 4px 0 0;
  background: none !important;
  position: relative;
  display: inline-block;
  text-indent: 0 !important;
  overflow: visible !important;
  color: var(--point2-color);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0;
  line-height: 18px;
  vertical-align: middle;
}

#article .btn_post .ico_like::before {
  content: "\f08a";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 16px;
  color: var(--point1-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.3s ease;
}

#article .btn_post .ico_like::after {
  content: "\f004";
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--point2-color);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

#article .btn_post .uoc-icon.like_on .ico_like::before {
  opacity: 0;
}

#article .btn_post .uoc-icon.like_on .ico_like::after {
  opacity: 1;
}

#article .btn_post.sns_btn.btn_share:focus,
#article .btn_post.sns_btn.btn_share:active,
#article .container_postbtn .btn_post:active {
  outline: none !important;
  box-shadow: none !important;
}

#article .container_postbtn .btn_post .ico_share {
  width: 18px !important; 
  height: 18px !important;
  margin: 0;
  background: none !important;
  position: relative;
  filter: none;
  color: var(--text-color);
  text-indent: 0 !important; 
  overflow: visible !important;
}

#article .container_postbtn .btn_post .ico_share::before {
  content: "\f1e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-size: 16px;
  color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  background: none !important;
  text-indent: 0;
  user-select: none;
  pointer-events: none;
}

#article .container_postbtn .btn_post .ico_etc {
  background: none !important;
  text-indent: 0 !important;
  overflow: visible !important;  
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0;
  color: var(--text-color);
  display: inline-block;
  line-height: 1;
}

#article .container_postbtn .btn_post .ico_etc::before {
  content: "\f044";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 15px;
  height: 37px;
  display: inline-flex;
  top: -1px;
  position: absolute;
  align-items: center;
  margin-left: -3px;
  color: var(--point1-color);
}

#article .footnotes {
  margin: var(--padding2-) 0;
}


/* container_postbtn */
.wrap_btn > button[data-tiara-action-name="글통계_클릭"] {
  display: none !important;
}


/* article btn */
#article .article-paging {
  display: none;
  justify-content: space-between;
  align-items: center;
}

#article .article-prev a,
#article .article-next a {
  display: flex;
  align-items: center;
}

#article .article-btn {
  display: flex;
  justify-content: space-between; 
}

#article .article-btn1 {
  display: flex;
  justify-content: flex-start;
  color: var(--point1-color);
}

#article .comment-btn,
#article .tag-btn,
#article .related-btn {
  padding: var(--padding1-);
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow2-);
}

#article .comment-btn:hover,
#article .tag-btn:hover,
#article .related-btn:hover,
.wrap_btn_etc .btn_post.btn_etc1:hover,
.wrap_btn_etc .btn_post.btn_etc1:active,
.wrap_btn_etc .btn_post.btn_etc1:focus,
#article .btn_post.uoc-icon:active,
#article .btn_post.uoc-icon:focus,
#article .btn_post.uoc-icon:hover {
  box-shadow: var(--shadow6-);
  transition: var(--transition-);
  color: var(--window1-);
  cursor: pointer;
  outline: none;
}

#article .container_postbtn .btn_post:hover .ico_etc::before,
#article .btn_post:hover .ico_like::before,
#article .btn_post:hover .ico_like::after {
  color: var(--window1-);
}

/* article btn inner */
.article-btn-inner {
  display: flex;
  flex-direction: column;
}

.article-tag {
  box-shadow: var(--shadow6-);
  padding: var(--padding3-);
  background: var(--article-color);
  margin-bottom: var(--padding3-);
}

.article-tag a {
  color: var(--text-color);
}

.article-tag a:hover {
  color: var(--point2-color);
  transition: var(--transition-);
}

.article-tag a::before {
  content: '#';
  display: inline-block;
  color: var(--point2-color);
}

/* article related */
#article-related {
  display: none;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  margin-bottom: var(--padding3-);
  box-shadow: var(--shadow6-);
  padding: var(--padding3-);
} 

#article-related .rd-text a {
  display: flex;
  align-items: center;
  box-shadow: var(--shadow4-);
  background: var(--article-color);
  font-size: var(--font2-size);
  font-weight: 700;
  padding: var(--padding3-);
}

#article-related .rd-text a svg {
  margin-right: 5px;
}

#article-related .rd-text a:hover,
#article-related a:hover .summary-title {
  color: var(--point2-color);
  transition: var(--transition-);
}

#article-related .rd-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
  gap: var(--padding3-);
}

#article-related .rd-inner .c-gwrap {
  box-sizing: border-box;
}

#article-related .c-gwrap {
  position: relative;
}

#article-related .rd-inner .thumbnail{
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  box-shadow: var(--shadow6-);
  padding: var(--padding3-);
}

#article-related .rd-inner .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  opacity: 1;
  display: block;  
}

#article-related .rd-inner .thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

#article-related .c-gwrap a:hover .thumbnail::after {
  background-image: 
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0px,
      rgba(0, 0, 0, 0.55) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.25) 0px,
      rgba(255, 255, 255, 0.25) 1px,
      transparent 1px,
      transparent 3px
    );
  background-size: auto, auto;
  background-repeat: repeat, repeat;
  background-position: 0 0, 0 1px;
  mix-blend-mode: overlay;
  image-rendering: pixelated;
  filter: contrast(1.2) saturate(1.1);
  animation: scan-move .6s linear infinite,
             scan-flicker 1.8s steps(10) infinite,
             shake-screen 0.15s infinite;
  opacity: .35;
}

#article-related .thumbnail-info {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88%;
  font-size: 80%;
  padding: 5px 6px;
  transform: translate(-50%, -50%);
  color: var(--text-color);
  font-weight: 700;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
}

#article-related .rd-inner .list-item:hover .thumbnail img {
  transform: scale(1.2);
  opacity: .5;
  transition: transform 1s, opacity 1s;
}

#article-related .rd-inner .list-item:hover .thumbnail-info {
  opacity: 1;
}

/* namecard */
[data-tistory-react-app='Namecard'] {
  order: 4;
}

#article .tt_box_namecard {
  background: var(--article-color) !important;
  color: var(--text-color) !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: var(--padding3-) !important;
  min-height: 150px !important;
  align-items: center;
  flex-direction: column-reverse !important;
  justify-content: center !important; 
  gap: 5px;
  border: none !important;
  box-shadow: var(--shadow6-);
}

.tt_box_namecard .tt_btn_subscribe .tt_txt_g, .tt_txt_g {
  font-size: var(--font2-size) !important;
}

#article .tt_box_namecard .tt_wrap_thumb {
  margin:  0 !important;
}

#article .tt_box_namecard .tt_cont {
  padding: 0 !important;
}

#article .tt_box_namecard .tt_cont a {
  font-size: var(--font2-size);
  font-weight: 700;
}

#article .tt_box_namecard .tt_desc {
  text-align: center;
  padding-top: 0 !Important;
  font-size: var(--font2-size);
}

.tt_box_namecard .tt_btn_subscribe {
  margin-bottom: 0 !important;
}

.tt_box_namecard .tt_btn_subscribe .tt_txt_g {
  font-size: var(--font1-size) !important;
}

/* comment */
#guestbook {
  font-family: 'Pretendard', sans-serif !important;
  font-size: var(--font1-size) !important;
}

#comment {
  font-family: 'Pretendard', sans-serif !important;
  font-size: var(--font1-size) !important;
  display: none;
  border: none;
  background: none;
  margin-bottom: var(--padding3-);
  box-shadow: var(--shadow6-);
  padding: var(--padding1-);
}

.tt-txt-mention {
  background: none;
  color: var(--point1-color);
}

.tt-wrap-cmt .tt-list-modify {
  box-shadow: none !important;
  border: solid 1px var(--border-color);
}

.tt-box-modify-open .tt-list-modify > li:first-child {
  border-top: none !important;
}

#guestbook .tt-list-reply {
  border-bottom: none !important;
}

.tt-list-reply {
  margin-top: var(--padding1-) !important;
  border-bottom: none !important;
}

.tt-list-reply:last-of-type {
  border-top: none !important;
  border-bottom: none !important;
}

.tt-comment-cont > .tt-area-reply > .tt-list-reply > li.tt-item-reply:has(p.tt_cmt_info){
  background: var(--article-color);
  border: none !important;
  border-radius: 0 !important;
  box-shadow: var(--shadow6-);
}

#guestbook .tt-comment-cont > .tt-area-reply > .tt-list-reply > li.tt-item-reply:has(p.tt_cmt_info){
  margin-top: var(--padding1-) !important;
}

.tt-item-reply .tt_cmt_info .tt_ico_fixed{
  margin-right: 0;
  margin-bottom: 0;
}

.tt-item-reply .tt_cmt_info .tt_txt_g {
  font-size: var(--font1-size) !important;
  font-weight: bold;
}

.tt-item-reply .tt_cmt_info {
  margin: 0;
  padding: var(--padding3-) var(--padding3-) 0 var(--padding3-);
  font-family: inherit !important;
}

.tt-comment-cont {
  display: flex;
  flex-direction: column;
}

.tt-box-total {
  order: 1;
  padding: var(--padding3-);
  background: var(--article-color);
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--padding1-);
  align-items: center;
  border: none;
  border-radius: 0;
  box-shadow: var(--shadow6-);
}

.tt-area-reply {
  order: 3;
  margin-bottom: 0 !important;
  padding: 0;
}

.tt-comment-cont > form {
  order: 2;
  padding: var(--padding1-);
  margin-bottom: 0 !important;
  background: none;
  box-shadow: var(--shadow4-);
}


ul.tt-list-reply-comment > li.tt-item-reply > form {
  padding: var(--padding1-);
}

.tt-box-total .tt_txt_g::after {
  content:"\f0e0";

  font-family:"Font Awesome 5 Free";
  font-weight: 400;
  color: var(--point1-color);
  font-size: 18px;
}


.tt_txt_g,
.tt_txt_g {
  font-size: 0 !important;
}

.tt-box-total .tt_num_g{
  color: var(--point1-color);
}

.tt-box-textarea .tt-inner-g {
  border-radius: 0 !important;
  border: none !important;
  box-shadow: var(--shadow4-);
  padding: var(--padding3-) !important;
}

.tt-box-textarea {
  margin-bottom: var(--padding3-) !important;
}

.tt-box-textarea .tt_txt_user {
  display: none;
}

.tt-cmt[data-placeholder]:empty:before {
  content: 'leave a comment..' !important;
  color: var(--point1-color) !important;
}

.tt-box-textarea textarea, .tt-box-textarea div {
  color: var(--text-color) !important;
}

.tt-box-textarea.tt-input-textarea .tt-inner-g {
  color: var(--point1-color) !important;
  font-size: var(--font2-size) !important;
  border-color: var(--border-color) !important;
}

.tt-thumbnail {
  border-radius: 0 !important;
  box-shadow: var(--shadow6-);
  padding: var(--padding3-);
}

.tt-btn_register:disabled {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: var(--shadow1-);
  border: none !important;
  color: var(--text-color);
}

.tt-btn_register {
  padding: var(--padding1-) !important;
  width: unset !important;
  height:  unset !important;
  border-radius: 0 !important;
  background: var(--point1-color) !important;
  border: none !important;
  box-shadow: var(--shadow1-);
}

.tt-btn_register:hover,
.tt-btn_register:focus {
  background: var(--window1-) !important;
  border: none !important;
  box-shadow: var(--shadow6-);
  transition: var(--transition-);
  color: var(--window10-);
}

.tt-wrap-cmt {
  padding: var(--padding1-);
}

.tt-list-reply-comment > li > .tt-wrap-cmt {
  padding-left: var(--padding2-);
}

.rp_general .tt-list-reply-comment > li:first-child > .tt-wrap-cmt {
  border-top: none !important;
}

ul.tt-list-reply > li.tt-item-reply.rp_general:last-of-type {
  margin-bottom: 0 !important;
  border-bottom: none;
}

.tt-wrap-cmt .tt-link-user,
.tt-wrap-cmt .tt_desc {
  font-size: var(--font1-size) !important;
}

.rp_general {
  background: none;
  margin: var(--padding3-) 0 !important;
  padding: 0 !important;
  border: none;
  border-radius: 0;
}

.tt-item-reply {
  padding: 0 0 var(--padding3-) 0 !important;
}

.tt-list-reply li:first-child {
  border-top: none !important;
  margin-top: 0 !important;
}

ul.tt-list-reply > li.tt-item-reply {
  border: none !important;
  box-shadow: var(--shadow6-);
  background: var(--article-color);
  border-radius: 0 !important;
}

.tt-item-reply .tt-list-reply-comment {
  border-top: none;
  margin: var(--padding-);
  margin-bottom: 0;
  width: calc(100% - var(--padding-) * 2);
}

.tt-list-reply-comment > .tt-item-reply {
  border-top: none !important;
}

ul.tt-list-reply-comment > li.tt-item-reply {
  border-top: 1px solid var(--container-color) !important;
  background: var(--window4-);
  box-shadow: var(--shadow4-);
  margin-top: 0;
}

.tt-box-thumb {
  margin-right: var(--padding3-);
}

.tt-wrap-info .tt_date+.tt-wrap-link-comment:before {
  display: none !important;
}

.tt-link-comment .tt_num_g, .tt-link-comment .tt_txt_g{
  color: var(--point1-color) !important;
  font-weight: bold;
}

.tt-wrap-cmt .tt-wrap-link-comment {
  padding-left: 5px;
}


.tt-link-comment .tt_txt_g {
  font-size: var(--font1-size) !important;
  padding-top: var(--padding1-);
}

.tt-wrap-cmt .tt-link-comment:hover .tt_txt_g,
.tt-link-user:hover {
  transition: var(--transition-);
  color: var(--point2-color) !important;
}

.tt-wrap-cmt .tt_date {
  font-size: var(--font1-size);
  padding-top: var(--padding1-) !important;
  color: var(--point2-color);
}

.tt-area-write .tt-box-account input {
  border-radius: var(--border-radius-) !important;
}


/* tag */
#tag {
  font-size: var(--font2-size);
}

#tag .article-inner {
  display: flex;
  flex-direction: column;
  gap: var(--padding1-);
}

#tag .article-title {
  display: none;
  font-weight: 700;
  padding: var(--padding1-);
  background: var(--article-color);
  border-bottom: solid 1px var(--border-color);
}

#tag .article-desc {
  display: flex;
  flex-wrap: wrap;
  gap: var(--padding1-);
}

#tag .article-desc a {
  padding: var(--padding1-);
  color: var(--text-color);
}

#tag .article-desc a:hover {
  box-shadow: var(--shadow4-);
  background: var(--window1-);
  color: var(--window10-);
}

#tag .article-desc a:before {
  content: "#";
  font-weight: 700;
  margin-right: 1px;
}

/* notice */
#notice .container_postbtn {
  display: none;
}

#notice {
  font-size: var(--font2-size);
  color: var(--text-color);
  background: var(--window4-);
  box-shadow: var(--shadow4-);  
}

#notice {
  margin-bottom: var(--padding3-);
}

#notice:last-of-type {
  margin-bottom: 0;
}

#notice .article-inner {
  padding: 0;
}

#notice .article-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: var(--padding3-);
  gap: var(--padding1-);
  color: var(--point1-color);
}

#notice .article-title {
  font-weight: 700;
  background: var(--article-color);
  box-shadow: var(--shadow4-);



  padding: var(--padding-);
  text-align: center;
  width: 100%;
}

#notice .article-date {
  color: var(--text-color);
  width: 100%;
  text-align: right;
}

#notice .article-desc { 
  padding: var(--padding1-);
}


/* 반응형 */ 
@media (max-width:800px){
 #main-wrap {
   display: flex;
   flex-direction: column;
   padding: 0;
   height: auto !important;
   overflow: auto;
   justify-content: flex-start;
 }
 #whole {
   display: flex;
   flex-direction: column;
   width: 98%;
   height: auto !important;
   gap: var(--padding1-);
   min-height: calc(100vh - 30px);
   justify-content: unset;
 }
 #whole.whole-left,
 #sidebar,
 #sidebar.whole-left {
   width: 98%;
   position: relative;
   justify-content: unset !important;
 }
 .sidebar-inner {
    display: grid;
    gap: var(--padding1-);
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
 }
 #container {
   position: relative;
   width: 100%;
   height: auto;
   margin-bottom: 50px;
 }
 .insta-wrap {
   flex: unset;
   overflow-y: unset;
 }
 .preview-inner {
   padding: var(--padding-);
 }
 .preview-text {
   display: none;
 }
 #taskbar {
   position: absolute;
 }
  #mycomputer,
  #mymusic,
  #myinternet,
  #bgm,
  #help {
    position: fixed;
    top: 50%;
    max-width: 100%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    padding: var(--padding1-);
    will-change: transform;
    backface-visibility: hidden;
  }
  #optionspop1,
  #optionspop2 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #list-gallery1 .list-inner,
  #cover-gallery1 .list-inner,
  #list-gallery2 .list-inner,
  #cover-gallery2 .list-inner,
  #list-memo .list-inner,
  #cover-memo .list-inner,
  #list-review .list-inner,
  #cover-review .list-inner,
  #list-todo .list-inner,
  #cover-todo .list-inner {
    display: grid;
    gap: var(--padding3-);
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    padding: var(--padding3-);
  }
  .cover-inner .c-title {
    margin-bottom: var(--padding3-);
  }
} 



/* windows 95 scrollbar */
::-webkit-scrollbar {
  width: 16px; 
  height: 16px; 
  background: none;
}

::-webkit-scrollbar-thumb, 
::-webkit-scrollbar-button {
  width: 16px; 
  height: 16px;  
  border: 1px solid;
  border-color: #ddd #000 #000 #ddd;
}

::-webkit-scrollbar-track {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgLTAuNSAyIDIiIHNoYXBlLXJlbmRlcmluZz0iY3Jpc3BFZGdlcyI+CjxtZXRhZGF0YT5NYWRlIHdpdGggUGl4ZWxzIHRvIFN2ZyBodHRwczovL2NvZGVwZW4uaW8vc2hzaGF3L3Blbi9YYnh2Tmo8L21ldGFkYXRhPgo8cGF0aCBzdHJva2U9IiNjMGMwYzAiIGQ9Ik0wIDBoMU0xIDFoMSIgLz4KPC9zdmc+");
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 2px;
}

::-webkit-scrollbar-button { 
  background-repeat: no-repeat; 
  background-size: 16px;
}

::-webkit-scrollbar-button:single-button:vertical:decrement {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgLTAuNSAxNiAxNiIgc2hhcGUtcmVuZGVyaW5nPSJjcmlzcEVkZ2VzIj4KPG1ldGFkYXRhPk1hZGUgd2l0aCBQaXhlbHMgdG8gU3ZnIGh0dHBzOi8vY29kZXBlbi5pby9zaHNoYXcvcGVuL1hieHZOajwvbWV0YWRhdGE+CjxwYXRoIHN0cm9rZT0iIzAwMDAwMCIgZD0iTTcgNWgxTTYgNmgzTTUgN2g1TTQgOGg3IiAvPgo8L3N2Zz4=");
}

::-webkit-scrollbar-button:single-button:vertical:increment {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgLTAuNSAxNiAxNiIgc2hhcGUtcmVuZGVyaW5nPSJjcmlzcEVkZ2VzIj4KPG1ldGFkYXRhPk1hZGUgd2l0aCBQaXhlbHMgdG8gU3ZnIGh0dHBzOi8vY29kZXBlbi5pby9zaHNoYXcvcGVuL1hieHZOajwvbWV0YWRhdGE+CjxwYXRoIHN0cm9rZT0iIzAwMDAwMCIgZD0iTTQgNWg3TTUgNmg1TTYgN2gzTTcgOGgxIiAvPgo8L3N2Zz4=");
}

::-webkit-scrollbar-button:single-button:horizontal:decrement {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgLTAuNSAxNiAxNiIgc2hhcGUtcmVuZGVyaW5nPSJjcmlzcEVkZ2VzIj4KPG1ldGFkYXRhPk1hZGUgd2l0aCBQaXhlbHMgdG8gU3ZnIGh0dHBzOi8vY29kZXBlbi5pby9zaHNoYXcvcGVuL1hieHZOajwvbWV0YWRhdGE+CjxwYXRoIHN0cm9rZT0iIzAwMDAwMCIgZD0iTTggM2gxTTcgNGgyTTYgNWgzTTUgNmg0TTYgN2gzTTcgOGgyTTggOWgxIiAvPgo8L3N2Zz4=");
}

::-webkit-scrollbar-button:single-button:horizontal:increment {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgLTAuNSAxNiAxNiIgc2hhcGUtcmVuZGVyaW5nPSJjcmlzcEVkZ2VzIj4KPG1ldGFkYXRhPk1hZGUgd2l0aCBQaXhlbHMgdG8gU3ZnIGh0dHBzOi8vY29kZXBlbi5pby9zaHNoYXcvcGVuL1hieHZOajwvbWV0YWRhdGE+CjxwYXRoIHN0cm9rZT0iIzAwMDAwMCIgZD0iTTYgM2gxTTYgNGgyTTYgNWgzTTYgNmg0TTYgN2gzTTYgOGgyTTYgOWgxIiAvPgo8L3N2Zz4=");
}

::-webkit-scrollbar-thumb, ::-webkit-scrollbar-button {
  box-shadow: inset 1px 1px var(--window8-), 
  inset -1px -1px var(--window6-);
}
 
::-webkit-scrollbar-corner {
   background:#c0c0c0;
}	

::-webkit-selection{
  color: var(--dragtext-color); 
  background:var(--drag-color);
}


/* copyright 삭제는 옵션 구매 후 해주세요!
링크 삭제 금지 */
#copyright a{ 
  position: fixed;
  right: 10px; 
  bottom: 10px; 
  display: flex;
  flex-direction: row-reverse; 
  align-items: center;
  color: var(--point1-color);
  line-height: 1;
}

#copyright .planet-icon-wrap {
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  perspective: 800px;
}

#copyright .planet-icon {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url('https://blog.kakaocdn.net/dn/Fhfej/btsOdIpDkjd/5fCNO20nJxRvnfEQv2yvVK/img.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  image-rendering: auto;
  background-position: center;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}

#copyright .planet-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;

  height: 10px;
  background: radial-gradient(ellipse at center, var(--point1-color) 0%, transparent 100%);
  border-radius: 50%;
  z-index: 1;
  animation: ringSpin 8s linear infinite;
  transform-origin: center;
  transform: translate(-50%, -50%) rotateX(75deg);
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}

@keyframes ringSpin {
  0% {
    transform: translate(-50%, -50%) rotateX(75deg) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(75deg) rotateZ(360deg);
  }
}

#copyright .copyright-1{ 
  display: flex;
  align-items: center;
  position: relative; 
  font-size: 11.5px; 
  font-weight: bold; 
  width: auto; 
  z-index: 999;
}

#copyright .copyright-2 {
  opacity: 0;
  transition: all 1s;
  font-size: 11.5px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

#copyright a:hover .copyright-2 {
  opacity: 1;
  color: var(--point1-color);
  transition: all 1s;
}
/* copyright 삭제는 옵션 구매 후 해주세요!
링크 삭제 금지 */


/*youtube*/
.video-container { 
  position: relative; 
  width:100%; 
  aspect-ratio: 16 / 9; 
  overflow:hidden;
  margin: 0;
}

.video-container:last-child {
  margin-bottom: 0;
}

.video-container iframe {
  width:100%; 
  height:100%; 
  border:0; 
  display:block; 
}

.article-video {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--padding1-);
}

.article-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/*skin*/