/* [1. 공통 설정: 로고 및 프사 보호] */
.column-link--logo, .drawer__header a:first-child, div[class*="drawer"] a:first-child[class*="logo"] {
  display: block !important;
  width: 250px !important;
  height: 100px !important;
  background-image: url('https://i.imgur.com/kkzECKP.png?v=2200') !important;
  background-size: 230px auto !important;
  background-repeat: no-repeat !important;
  background-position: 10px center !important;
  text-indent: -9999px !important;
}
.column-link--logo svg, .column-link--logo img { display: none !important; }
.account__avatar, .status__avatar img, .avatar img { filter: none !important; }

/* [2. 휘핑 에디션(theme-default) 전용 배경 설정] */
/* 다크모드가 아닌 '기본(휘핑)' 상태일 때만 아이보리 적용 */
body.theme-default {
  background-color: #f9f5ed !important;
  background-image: linear-gradient(to bottom, #f9f5ed 0%, #f9f5ed 65%, #eee9de 100%) !important;
  background-attachment: fixed !important;
}

/* 휘핑 테마일 때 판 투명화 및 글씨색 조정 */
.theme-default #mastodon, .theme-default .app-holder, .theme-default .ui, 
.theme-default .columns-area, .theme-default .scrollable {
  background: transparent !important;
}

.theme-default .status__content, .theme-default .display-name__html, 
.theme-default .status__display-name strong, .theme-default .column-link, 
.theme-default .column-header__title {
  color: #4a3232 !important;
}

.theme-default .column-link i, .theme-default .column-link__icon {
  filter: sepia(1) saturate(5) hue-rotate(340deg) brightness(0.4) contrast(0.9) !important;
}

/* [3. 다크 모드(theme-dark) 전용 설정] */
/* 다크모드 클래스가 붙으면 아이보리 배경을 완전히 제거 */
body.theme-dark {
  background-image: none !important;
  background-color: #282c37 !important; /* 마스토돈 기본 다크색 */
}

/* 다크모드 가독성을 위한 밝은 로즈브라운 글씨 */
.theme-dark .display-name__html, .theme-dark .status__display-name strong {
  color: #d9c5c5 !important;
}

