 /* a quick way to edit layout */
    
:root{
  
  /* base font */
  --base-font: Georgia, "Times New Roman", serif;
  --base-font-size: 11px;
  --base-line-height: 1.4;
  --base-letter-spacing: 1px;

  /* text colors */
  --text: #4f5f48;
  --muted: #7f9077;
  --link: #6f9468;
  --link-hover: #48653f;
  --accent-strong: #48653f;
  --button-bg: #eef7ea;
  --button-border: #c0d5b8;

  /* backgrounds */
  
  --body-bg: #f6fbf4 url(https://itinerae.neocities.org/bgs/lightgrid.gif) fixed;
  --paper: #fbfdf8;
  --panel: #fefff9;
  --panel-soft: #eef7ea;
  --panel-tint: #f4faf0;
  --panel-white: #fefff9;
  --panel-header: #eaf3e5;
  --label-bg: #dfeeda;

  /* borders */
  --border: #cbdcc4;
  --border-soft: #dbe9d5;

  /* layout sizes */
  --page-max-width: 1000px;
  --sidebar-width: 200px;
  --hero-min-height: 200px;
  --gap: 8px;
  --radius: 6px;
  --page-radius: 10px;
  --box-radius: 5px;

  /* effects */
  --shadow: 0 3px 10px rgba(78,104,70,.045);
  --pixel-screen:
    linear-gradient(45deg, rgba(255,255,255,.14) 25%, transparent 25% 75%, rgba(255,255,255,.14) 75%),
    linear-gradient(45deg, rgba(72,101,63,.08) 25%, transparent 25% 75%, rgba(72,101,63,.08) 75%),
    repeating-linear-gradient(to bottom, rgba(0,0,0,.025), rgba(0,0,0,.04) 1px, transparent 1px, transparent 2px);
  --pixel-screen-size: 2px 2px, 2px 2px, 100% 2px;
  --image-filter: saturate(.86) contrast(1.16) brightness(.98);
  --image-filter-hover: saturate(1.05) contrast(1.18) brightness(1.02);

  /* cursors */
  --cursor-normal: url("Images/Bulbasaur Cursor by JDZombi [v1.2]/[1] - Normal Select - Bulbasaur - by jdzombi.ani"), auto;
  --cursor-link: url("Images/Bulbasaur Cursor by JDZombi [v1.2]/[15] - Link Select - Bulbasaur - by jdzombi.ani"), pointer;
  --cursor-text: url("Images/Bulbasaur Cursor by JDZombi [v1.2]/[6] - Text Select - Shiny Bulbasaur - by jdzombi.ani"), text;
  --cursor-unavailable: url("Images/Bulbasaur Cursor by JDZombi [v1.2]/[8] - Unavailable - Bulbasaur - by jdzombi.ani"), not-allowed;
}

:root[data-theme="dark"]{
  --text: #6e8f68;
  --muted: #686868;
  --link: #b8b8b8;
  --link-hover: #dddddd;
  --accent-strong: #8aa383;

  --body-bg: #111111;
  --paper: #111111;
  --panel: #171717;
  --panel-soft: #151515;
  --panel-tint: #111111;
  --panel-white: #181818;
  --panel-header: #171717;
  --label-bg: #202020;
  --button-bg: #111111;
  --button-border: #333333;

  --border: #252525;
  --border-soft: #222222;
  --shadow: none;
  --pixel-screen:
    linear-gradient(45deg, rgba(255,255,255,.055) 25%, transparent 25% 75%, rgba(255,255,255,.055) 75%),
    linear-gradient(45deg, rgba(0,0,0,.28) 25%, transparent 25% 75%, rgba(0,0,0,.28) 75%),
    repeating-linear-gradient(to bottom, rgba(255,255,255,.025), rgba(255,255,255,.04) 1px, transparent 1px, transparent 2px);
  --image-filter: grayscale(1) contrast(1.08) brightness(.78);
  --image-filter-hover: saturate(.62) contrast(1.12) brightness(.86);
}


/* basics */
    
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;}

html,
body{
  height: 100%;}

body{
  font-family: var(--base-font);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  letter-spacing: var(--base-letter-spacing);
  color: var(--text);
  background: var(--body-bg);
  cursor: var(--cursor-normal);
  padding: 10px;
  overflow-x: hidden;}

body.home-page{
  background: #9ad993 url("https://64.media.tumblr.com/17af097f6691e4fbdad8c8f92ce2d648/acc447ad6305daf4-b3/s75x75_c1/3eb22f8ac13606127d5af9ed2ec552f8d1a475aa.webp") repeat fixed;
}

body.about-page{
  background: #fff url("https://64.media.tumblr.com/dd4fa62e5388ab96567993b890a0714c/0aa40e3a5b732ede-fa/s250x400/4f7f9a994a23ece9a1cf2b7a1cbebe945f705a40.gifv") repeat fixed;
}

body.thoughts-page{
  background: #fff url("https://64.media.tumblr.com/7b1e55a3a127bb8499926c0c91838602/addc04f6bc692b0b-d3/s1280x1920/62bc364146d09116282f01197fc1a1f961b74ff8.gifv") repeat fixed;
}

body.art-page{
  background: #fff url("https://itinerae.neocities.org/bgs/orangeflow.webp") repeat fixed;
}

body.library-page{
  background: #fff url("https://64.media.tumblr.com/bfa77670dac2ab204d254e7310b55cd4/cb1d13aa222d3437-06/s250x400/a7bdff1f710a8dc1d289cda18ddce5489bf74b64.pnj") repeat fixed;
}

body.photo-page{
  background: var(--body-bg);
}

:root[data-theme="dark"] body,
:root[data-theme="dark"] body.home-page,
:root[data-theme="dark"] body.about-page,
:root[data-theme="dark"] body.thoughts-page,
:root[data-theme="dark"] body.art-page,
:root[data-theme="dark"] body.library-page,
:root[data-theme="dark"] body.photo-page{
  background: #060706;
}

body::before{
  content: "";
  position: fixed;
  inset: 0;
  background: var(--pixel-screen);
  background-position: 0 0, 1px 1px, 0 0;
  background-size: var(--pixel-screen-size);
  mix-blend-mode: multiply;
  opacity: .62;
  pointer-events: none;
  z-index: 1000;}
    
    
/* links */
a{
  color: var(--link);
  cursor: var(--cursor-link);
  text-decoration: none;
  transition: .15s ease;}

a:hover{
  color: var(--link-hover);}

button,
input,
textarea{
  font: inherit;
  letter-spacing: inherit;
  color: inherit;}

button,
summary,
label,
select,
[role="button"],
[tabindex]:not([tabindex="-1"]){
  cursor: var(--cursor-link);
}

input,
textarea,
[contenteditable="true"]{
  cursor: var(--cursor-text);
}

button:disabled,
input:disabled,
textarea:disabled,
select:disabled,
[aria-disabled="true"]{
  cursor: var(--cursor-unavailable);
}

.button-like,
button:not(.nav-dropdown-toggle):not(.mobile-menu-toggle),
.calendarTop button,
.graph-controls button,
.art-filter,
.library-nav a,
.library-filter,
.garden-nav a,
.social-button,
.feature-link,
.post-nav a,
.post-nav button,
.source-link-button{
  position: relative;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(254,255,249,.98), rgba(239,247,235,.94));
  box-shadow:
    0 1px 0 rgba(255,255,255,.75) inset,
    0 0 0 1px rgba(225,238,219,.65),
    0 2px 5px rgba(78,104,70,.07);
  color: #526a4a;
  cursor: var(--cursor-link);
  font-style: italic;
  line-height: 1.25;
  min-height: 28px;
  padding: 7px 12px 5px;
}

.button-like:hover,
button:not(.nav-dropdown-toggle):not(.mobile-menu-toggle):hover,
.calendarTop button:hover,
.graph-controls button:hover,
.art-filter:hover,
.library-nav a:hover,
.library-filter:hover,
.garden-nav a:hover,
.social-button:hover,
.feature-link:hover,
.post-nav a:hover,
.post-nav button:hover,
.source-link-button:hover{
  transform: translateY(-1px);
  border-color: rgba(184,207,176,.98);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(242,249,238,.96));
  box-shadow:
    0 1px 0 rgba(255,255,255,.85) inset,
    0 0 0 1px rgba(225,238,219,.72),
    0 3px 8px rgba(88,125,78,.12);
  color: #48653f;
}

.button-like:active,
button:not(.nav-dropdown-toggle):not(.mobile-menu-toggle):active,
.calendarTop button:active,
.graph-controls button:active,
.art-filter:active,
.library-nav a:active,
.library-filter:active,
.social-button:active,
.feature-link:active,
.post-nav a:active,
.post-nav button:active,
.source-link-button:active{
  transform: translateY(0);
  box-shadow:
    0 1px 2px rgba(78,104,70,.10) inset,
    0 0 0 1px rgba(225,238,219,.55);
}

img{
  max-width: 100%;
  filter: var(--image-filter);
  image-rendering: pixelated;
  transition: filter .18s ease, opacity .18s ease, transform .18s ease;
}

a:hover img,
button:hover img,
img:hover,
.art-card:hover img,
.library-card:hover img,
.entry-card:hover img,
.button-wall:hover img,
.blinkies-grid img:hover,
.stamps-grid img:hover{
  filter: var(--image-filter-hover);
}

.retro-screen{
  overflow: hidden;
  border-radius: 0;
  background: var(--panel-white);
  box-shadow:
    0 0 0 1px #ffffff inset,
    0 1px 0 rgba(255,255,255,.8);
}

.retro-screen img{
  filter: var(--image-filter);
  opacity: 1;
}

.page,
.layout,
.column,
.box,
.box-body,
.box-head{
  min-width: 0;}
  
  
    
/* scrollbar */
::-webkit-scrollbar{
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track{
  background: #eaf3e5;
  border-left: 1px solid #d8e8d0;
}

::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, #cfe1c8, #acc8a4);
  border: 1px solid #9ab591;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, #c0d7b8, #9fbd96);
}

::-webkit-scrollbar-corner{
  background: #eaf3e5;
}


/* layout */
.page{
  position: relative;
  max-width: var(--page-max-width);
  margin: 0 auto;
  overflow: visible;
  border: 1px solid var(--border);
  border-radius: var(--page-radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(rgba(255,255,255,.34), rgba(255,255,255,.34)),
    var(--paper);
}

.page::after{
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(92,124,82,.08);
  border-radius: 5px;
  pointer-events: none;
}

.layout{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr) var(--sidebar-width);
  gap: var(--gap);
  padding: var(--gap);
}

.under-construction-layout{
  grid-template-columns: minmax(0, 1fr);
}

.garden-hub-layout{
  grid-template-columns: 220px minmax(0, 1fr) var(--sidebar-width);
}

.column{
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
    
    
    

/* banner + site name + subtitle + navi + rightside icons */
.banner{
  position: relative;
  z-index: 30;
  overflow: visible;
  min-height: var(--hero-min-height);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #cbdcc4 0%, #e2efdc 30%, #f2f8ee 64%, #fbfdf8 100%);
}

.banner::before{
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(251,253,248,.36);
  border-radius: 7px;
  pointer-events: none;
}

.banner::after{
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background: url("Images/Site Graphics/ghibli_lake.jpg") center no-repeat;
  background-size: cover;
}

.banner-inner{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--hero-min-height);
  padding: 18px 14px 14px;
  text-align: center;
}

.site-title{
  position: relative;
  width: fit-content;
  border-radius: 999px;
  font-family: 'Beth Ellen', georgia, cursive, times;
  font-size: 32px;
  font-style: italic;
  letter-spacing: 1px;
  color: #fefff9;
  text-shadow:
    0 1px 0 rgba(72,101,63,.22),
    0 2px 5px rgba(66,89,59,.30);
}

.site-title-image{
  display: none;
  width: min(170px, 70vw);
  height: auto;
  margin: -2px auto 0;
}

:root[data-theme="dark"] .site-title-image{
  display: block;
}

.site-subtitle{
  display: inline-block;
  width: fit-content;
  padding: 5px 12px 4px;
  border: 1px dashed rgba(251,253,248,.95);
  border-radius: 999px;
  background: rgba(232,243,225,.76);
  box-shadow: 0 0 0 1px rgba(203,220,196,.45) inset;
  color: #526a4a;
  font-size: 10px;
  font-style: italic;
  letter-spacing: 1.4px;
  text-transform: lowercase;
}

.banner-navi{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
  padding: 6px 8px;
  border: 1px solid rgba(251,253,248,.42);
  border-radius: 999px;
  background: rgba(245,251,241,.30);
  box-shadow: 0 0 0 1px rgba(211,229,205,.24) inset;
}

.mobile-menu-toggle{
  display: none;
}

.banner-navi a,
.nav-dropdown-toggle,
.mobile-menu-toggle{
  position: relative;
  padding: 7px 14px 5px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(254,255,249,.98), rgba(239,247,235,.94));
  box-shadow:
    0 1px 0 rgba(255,255,255,.75) inset,
    0 0 0 1px rgba(225,238,219,.65);
  font-style: italic;
  color: #526a4a;
  letter-spacing: 1.2px;
}

.nav-dropdown-toggle,
.mobile-menu-toggle{
  font-family: inherit;
  font-size: inherit;
  cursor: var(--cursor-link);
}

.banner-navi a:hover,
.nav-dropdown-toggle:hover,
.mobile-menu-toggle:hover,
.nav-dropdown:focus-within .nav-dropdown-toggle{
  transform: translateY(-1px);
  color: #48653f;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(242,249,238,.96));
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 2px 8px rgba(88,125,78,.10);
}

.nav-dropdown{
  position: relative;
  z-index: 40;
}

.nav-dropdown-menu{
  position: absolute;
  z-index: 50;
  top: 100%;
  left: 50%;
  display: none;
  min-width: 150px;
  padding: 8px 6px 6px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 8px;
  background: rgba(254,255,249,.98);
  box-shadow: 0 6px 14px rgba(72,101,63,.16);
  max-height: min(70vh, 470px);
  overflow-y: auto;
  transform: translateX(-50%);
}

.nav-dropdown-wide .nav-dropdown-menu{
  min-width: 190px;
}

.nav-dropdown:last-child .nav-dropdown-menu{
  right: 0;
  left: auto;
  transform: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-dropdown-menu a,
.nav-dropdown-label{
  display: block;
  text-align: center;
}

.nav-dropdown-label{
  margin: 3px 4px 0;
  padding-top: 6px;
  border-top: 1px dashed rgba(192,213,184,.95);
  color: var(--muted);
  font-size: 9px;
  font-style: italic;
  letter-spacing: 1.4px;
  text-transform: lowercase;
}

.nav-dropdown-label:first-child{
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.site-search{
  position: relative;
  width: min(320px, 100%);
}

.site-search-panel{
  width: 100%;
}

.site-search input{
  width: 100%;
  padding: 5px 9px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 999px;
  background: rgba(254,255,249,.96);
  color: var(--text);
  font-size: 10px;
  font-style: italic;
}

.site-search-results{
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-search-panel .site-search-results{
  position: static;
  margin-top: 6px;
}

.site-search-result,
.site-search-empty{
  padding: 7px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
  box-shadow: 0 2px 8px rgba(78,104,70,.10);
  text-align: left;
}

.site-search-result{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-search-result span,
.site-search-result small,
.site-search-empty{
  color: var(--muted);
  font-size: 10px;
  font-style: italic;
  line-height: 1.3;
}

.banner-rightside{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  gap: 11px;
  padding: 3px 7px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 999px;
  background: rgba(245,251,241,.82);
  box-shadow: 0 0 0 1px rgba(211,229,205,.24) inset;
}

.banner-rightside a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .7;
}

.banner-rightside a:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.banner-rightside img{
  display: block;
}

.theme-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  min-width: 72px;
  height: 24px;
  padding: 2px 4px 2px 8px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 999px;
  background: rgba(254,255,249,.96);
  color: #526a4a;
  cursor: var(--cursor-link);
  font-size: 8px;
  font-style: italic;
  line-height: 1;
}

.theme-toggle:hover{
  transform: translateY(-1px);
  background: rgba(239,247,235,.96);
  color: #48653f;
}

.theme-toggle-icon{
  min-width: 22px;
  text-align: center;
}

.theme-toggle-track{
  position: relative;
  width: 28px;
  height: 14px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 999px;
  background: #eef7ea;
}

.theme-toggle-thumb{
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6f9468;
  transition: transform .18s ease;
}

:root[data-theme="dark"] .theme-toggle-thumb{
  transform: translateX(14px);
}
    
    
    

/* re-usable boxes and titles */
.box{
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--box-radius);
  background: var(--panel);
}

.box::after{
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dotted rgba(92,124,82,.08);
  border-radius: 2px;
  pointer-events: none;
}

.box-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 9px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--panel-header);
}

.box-body{
  padding: 9px;
}

.box-title{
  margin: 0;
  font-size: 12px;
  font-style: italic;
  font-weight: normal;
  color: #526a4a;
  text-transform: lowercase;
}

.head-dots{
  display: flex;
  align-items: center;
  gap: 4px;
}

.head-dots span{
  width: 8px;
  height: 8px;
  border: 1px solid rgba(92,124,82,.12);
  border-radius: 999px;
  background: #fefff9;
}

.box-soft .box-body{
  background: var(--panel-soft);
  color: #72846a;
  font-style: italic;
}

.soft{
  color: var(--muted);
}

.quote{
  padding: 9px;
  border: 1px dashed #cbdcc4;
  border-radius: 4px;
  background: var(--panel-tint);
  color: #62775a;
  font-style: italic;
}

.update-log{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.note{
  padding: 7px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  color: var(--muted);
  font-style: italic;
}

.mini-box{
  padding: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.mini-title{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
  padding: 4px 10px 1px;
  border-radius: 999px;
  background: var(--label-bg);
  color: #62775a;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mini-title img{
  width: 12px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}
    
    
/* site info */

.site-info{
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: rgba(245,251,241,.55);
}

.site-info-row{
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 7px 8px;
  border-bottom: 1px dashed #cbdcc4;
}

.site-info-row:last-child{
  border-bottom: none;
}

.site-info-label{
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  color: #5e7356;
  font-style: italic;
}

.site-info-label img{
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  object-fit: contain;
  opacity: .75;
}

.site-info-label b{
  font-size: 10px;
  letter-spacing: 1px;
  color: #526a4a;
}

.site-info-value{
  padding-left: 16px;
  line-height: 1.3;
  color: var(--muted);
  font-style: italic;
}

.site-info-value a{
  color: inherit;
  border-bottom: 1px dotted #b8cdae;
}

.site-info-value a:hover{
  color: #48653f;
}

    
    
    
/* LEFT SIDEBAR things */
    
.profile-photo{
  width: 100%;
  margin-bottom: 8px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
}

.profile-photo img{
  display: block;
  width: 100%;
  height: auto;
}
    
/* social media links */

.socials{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.socials a{
  display: flex;
  justify-content: space-between;
  gap: 6px;
  padding: 7px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  font-style: italic;
}

.social-name{
  color: var(--text);
}

.social-user{
  color: var(--link);
}
    
/* calendar, the script is bottom of the html page */    

.calendar{
  padding: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.calendarTop{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
}

.calendarTop button{
  min-width: 28px;
  min-height: 26px;
  color: var(--muted);
  line-height: 1;
}

#calMonth{
  font-style: italic;
  color: #526a4a;
}

.calendarWeekdays,
.calendarDays{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendarWeekdays{
  margin-bottom: 4px;
}

.calendarWeekdays span{
  text-align: center;
  font-size: 9px;
  color: var(--muted);
  text-transform: lowercase;
}

.calendarDays span{
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
  font-size: 10px;
  color: var(--text);
}

.calendarDays .empty{
  border: none;
  background: transparent;
}

.calendarDays .today{
  border: 1px solid #d8aeb8;
  background: #f3dce2;
  color: #7a4f5a;
  font-weight: 700;
}
    
    
/* now playing */    

.music-widget{
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: linear-gradient(180deg, #eef7ea, #f7fbf4);
}

.music-cd{
  display: block;
  width: 32px;
  height: 32px;
  padding: 3px;
  border: 1px solid var(--border-soft);
  background: var(--panel-white);
  border-radius:999px;
}

.music-cd img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.music-info{
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.music-song{
  line-height: 1;
  color: #4f5f48;
}


.music-link{
  display: block;
  margin-top: 0;
  padding-top: 4px;
  border-top: 1px dashed #cbdcc4;
  font-size: 10px;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: lowercase;
  color: #72846a;
}

.music-link:hover{
  padding-left: 3px;
  color: #48653f;
}

    
    
    
/* Main section (center) stylings */
    
    
.icon-float-left{
  float: left;
  margin-right: 5px;
  opacity: .6;
}    
    
    
.feature{
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 8px;
  align-items: stretch;
}

.feature-image{
  min-height: 110px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
}

.feature-image img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.feature-text{
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 110px;
  padding: 9px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: #fbfdf8;
}

.feature-text b{
  font-style: italic;
}

.feature-link{
  align-self: flex-start;
  padding: 5px 10px 4px;
  font-size: 10px;
  line-height: 1;
  text-transform: lowercase;
}

.feature-link:hover{
  border-color: #e5c4d4;
  color: #7a4f5a;
}
    
/* lists */

.three-lists{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px;
}

.mini-box ul{
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.mini-box li{
  padding: 7px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
  color: var(--muted);
  font-style: italic;
  line-height: 1.35;
}


/* note graph */

.graph-controls{
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}

.graph-controls button{
  min-width: 28px;
  min-height: 26px;
  padding: 5px 10px;
  color: #48653f;
  font-size: 10px;
  line-height: 1.2;
}

.note-graph{
  display: block;
  width: 100%;
  min-height: 180px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background:
    radial-gradient(circle at 25% 30%, rgba(223,238,218,.85), transparent 23%),
    radial-gradient(circle at 70% 60%, rgba(243,220,226,.55), transparent 24%),
    var(--panel-tint);
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.note-graph.is-panning{
  cursor: grabbing;
}

.note-graph.is-dragging-node{
  cursor: grabbing;
}

.note-graph-small{
  min-height: 170px;
}

.note-graph line{
  stroke: #b8cdae;
  stroke-width: 1;
  opacity: .68;
  transition: opacity .16s ease, stroke .16s ease, stroke-width .16s ease;
}

.note-graph circle{
  fill: var(--label-bg);
  stroke: #8fae82;
  stroke-width: 1;
  transition: opacity .16s ease, fill .16s ease, stroke .16s ease, transform .16s ease;
}

.note-graph .graph-node-site circle{
  fill: #dfeeda;
  stroke: #7d9f72;
}

.note-graph .graph-node-book circle{
  fill: #fff4f8;
  stroke: #d8aeb8;
}

.note-graph .graph-node-thought circle{
  fill: #e6f4f8;
  stroke: #8fb9c6;
}

.note-graph .graph-node-art circle{
  fill: #f5eed7;
  stroke: #c7aa66;
}

.note-graph .graph-node{
  cursor: grab;
  opacity: 1;
  transition: opacity .16s ease;
}

.note-graph.is-dragging-node .graph-node{
  cursor: grabbing;
}

.note-graph text{
  fill: var(--text);
  font-size: 12px;
  font-style: italic;
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease, fill .16s ease;
}

.note-graph .graph-node:hover circle,
.note-graph .graph-node:focus circle,
.note-graph .graph-node.is-active circle{
  fill: #f3dce2;
  stroke: #d8aeb8;
}

.note-graph .graph-node:hover text,
.note-graph .graph-node:focus text,
.note-graph .graph-node.is-active text{
  fill: #7a4f5a;
  opacity: 1;
}

.note-graph .graph-node.is-dimmed{
  opacity: .24;
}

.note-graph .graph-node.is-highlighted circle{
  stroke-width: 1.35;
}

.note-graph .graph-link.is-dimmed{
  opacity: .12;
}

.note-graph .graph-link.is-highlighted{
  stroke: #d8aeb8;
  stroke-width: 1.4;
  opacity: .95;
}

    
    
    
/* thoughts entries */
   
.entries{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.latest-posts{
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.entry{
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
  align-items: start;
  padding: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.entry-pen{
  opacity: .7;
}   
    
.entry-date{
  padding: 8px 6px;
  border: 1px dashed #cbdcc4;
  border-radius: 4px;
  background: var(--panel-white);
  text-align: center;
  font-style: italic;
  line-height: 1.35;
}

.entry-date b{
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
}

.entry-text{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.entry-text b{
  font-style: italic;
  font-weight: 700;
}

.entry-subtitle{
  color: var(--muted);
  font-style: italic;
}

.thoughts-layout{
  grid-template-columns: 220px minmax(0, 1fr) var(--sidebar-width);
}

.thoughts-list .entry{
  grid-template-columns: 96px 1fr;
}

.topics-list{
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 760px;
  overflow-y: auto;
  padding-right: 4px;
}

.topic-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.journal-tools{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.rss-feed-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topic-button{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px 4px;
}

.topic-button span{
  color: #7a4f5a;
  font-size: 10px;
}

.topic-button.active{
  border-color: #e5c4d4;
  background: linear-gradient(180deg, #fff9fb, #fff0f6);
  color: #7a4f5a;
}

.topic-results{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}

.topic-results-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 8px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  color: #7a4f5a;
  font-style: italic;
}

.topic-results-head span{
  color: var(--muted);
  font-size: 10px;
}

.topic-result{
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px 8px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(254,255,249,.98), rgba(239,247,235,.94));
  box-shadow:
    0 1px 0 rgba(255,255,255,.75) inset,
    0 0 0 1px rgba(225,238,219,.65);
  font-style: italic;
}

.topic-result small{
  color: var(--muted);
  font-size: 10px;
}

.quote-list{
  max-height: 540px;
  overflow-y: auto;
  padding-right: 4px;
}

.quote-entry .entry-text > b{
  font-size: 14px;
  line-height: 1.45;
}

.source-image{
  display: block;
  padding: 6px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.source-image img{
  display: block;
  width: 100%;
  border-radius: 3px;
}

.source-link-row{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.source-link-button{
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 7px 12px 5px;
  overflow-wrap: anywhere;
}

.post{
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #405239;
  line-height: 1.55;
}

.post h3,
.post h4,
.post h5,
.post h6{
  align-self: flex-start;
  margin: 10px 0 0;
  padding: 3px 0 3px 10px;
  border: 0;
  border-left: 4px solid #c46f8b;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #7a4f5a;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.post h4{
  margin-left: 10px;
  border-left-color: #8fae82;
  color: #526a4a;
  font-size: 14px;
}

.post h5{
  margin-left: 20px;
  border-left-color: #8fb9c6;
  color: #476a73;
  font-size: 12px;
}

.post h6{
  margin-left: 30px;
  border-left-color: #c7aa66;
  color: #735f2e;
  font-size: 11px;
}

.post p{
  position: relative;
  max-width: 92%;
  padding: 9px 11px;
  border: 1px solid var(--border-soft);
  border-radius: 14px 14px 14px 5px;
  background: var(--panel-tint);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset;
  color: #405239;
  font-size: 11.5px;
}

.post p::after{
  content: "";
  position: absolute;
  bottom: 5px;
  left: -5px;
  width: 8px;
  height: 8px;
  border-left: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--panel-tint);
  transform: rotate(45deg);
}

.post p:nth-of-type(even){
  align-self: flex-end;
  border-color: #e5c4d4;
  border-radius: 14px 14px 5px 14px;
  background: #fff4f8;
}

.post p:nth-of-type(even)::after{
  right: -5px;
  left: auto;
  border-color: #e5c4d4;
  background: #fff4f8;
}

.post ul,
.post ol{
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding: 8px 10px 8px 24px;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  background: rgba(254,255,249,.74);
  color: #405239;
  font-size: 11.5px;
}

.post li::marker{
  color: #7a4f5a;
}

.post strong{
  color: #7a4f5a;
}

.post em{
  color: #526a4a;
}

.post a.wikilink{
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 2px 7px 1px;
  border: 1px solid #e5c4d4;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff9fb, #fff0f6);
  color: #7a4f5a;
  font-style: italic;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.post a.wikilink:hover{
  border-color: #d8aeb8;
  background: #fff;
  color: #6d4653;
  transform: translateY(-1px);
}

.post > img{
  align-self: flex-start;
  max-height: 360px;
  padding: 6px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.post-meta{
  padding-bottom: 6px;
  border-bottom: 1px dashed #cbdcc4;
  color: var(--muted);
  font-style: italic;
}

.post-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.post-nav a,
.post-nav button{
  padding: 7px 12px 5px;
}

.single-page{
  max-width: 640px;
  margin: var(--gap) auto 0;
}

/* about page */

.about-layout{
  grid-template-columns: 220px minmax(0, 1fr) var(--sidebar-width);
}

.about-facts{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-fact{
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 6px;
  padding: 7px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.about-fact span{
  color: var(--muted);
  font-style: italic;
  text-transform: lowercase;
}

.about-fact b{
  min-width: 0;
  overflow-wrap: anywhere;
  color: #526a4a;
  font-style: italic;
  font-weight: 700;
}

.about-intro{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-intro p{
  position: relative;
  max-width: 92%;
  padding: 10px;
  border: 1px solid var(--border-soft);
  border-radius: 14px 14px 14px 5px;
  background: var(--panel-tint);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset;
  color: #62775a;
  font-style: italic;
}

.about-intro p::after{
  content: "";
  position: absolute;
  bottom: 5px;
  left: -5px;
  width: 8px;
  height: 8px;
  border-left: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--panel-tint);
  transform: rotate(45deg);
}

.about-intro p:nth-of-type(even){
  align-self: flex-end;
  border-color: #e5c4d4;
  border-radius: 14px 14px 5px 14px;
  background: #fff4f8;
}

.about-intro p:nth-of-type(even)::after{
  right: -5px;
  left: auto;
  border-color: #e5c4d4;
  background: #fff4f8;
}

.about-list-grid,
.favorites-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.about-scroll-panel,
.favorites-scroll{
  max-height: 170px;
  overflow-y: auto;
  padding-right: 4px;
}

.about-scroll-panel{
  padding: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.about-scroll-panel .mini-title{
  margin-bottom: 7px;
}

.about-scroll-panel .sparkle-list li::before{
  content: "\2022 ";
  color: #7a4f5a;
}

.favorites-scroll{
  max-height: 240px;
}

.favorites-grid .mini-box{
  color: var(--muted);
  font-style: italic;
}

.favorites-grid .mini-title{
  border: 1px solid #e5c4d4;
  background: #fff4f8;
  color: #7a4f5a;
  box-shadow: 0 0 0 1px rgba(255,255,255,.65) inset;
}

.blinkies-grid,
.stamps-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 5px 6px;
  max-height: 96px;
  overflow-y: auto;
  padding-right: 4px;
}

.blinkies-grid img,
.stamps-grid img{
  display: block;
  justify-self: center;
  width: 88px;
  max-width: 88px;
  height: auto;
  image-rendering: auto;
  opacity: 0.75;
}

.about-page .stamps-grid{
  max-height: 220px;
}

/* art page */

.art-layout{
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr) var(--sidebar-width);
}

.art-filter-bar{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.art-filter-sidebar{
  flex-direction: column;
  margin-bottom: 0;
}

.art-filter{
  padding: 7px 12px 5px;
}

.art-filter-sidebar .art-filter{
  width: 100%;
  text-align: left;
}

.art-filter.active{
  border-color: #e5c4d4;
  background: linear-gradient(180deg, #fff9fb, #fff0f6);
  color: #7a4f5a;
}

.art-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-height: 680px;
  overflow-y: auto;
  padding-right: 4px;
}

.art-card{
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 7px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
}

.art-card[hidden]{
  display: none;
}

.art-thumb,
.featured-artwork{
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.art-thumb{
  aspect-ratio: 1 / 1;
}

.featured-artwork{
  min-height: 190px;
  margin-bottom: 8px;
}

.art-thumb img,
.featured-artwork img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-thumb a,
.featured-artwork a{
  display: block;
  width: 100%;
  height: 100%;
}

.art-placeholder{
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
    var(--panel-tint);
  background-size: 12px 12px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

.art-info{
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--muted);
  font-size: 10px;
  font-style: italic;
  line-height: 1.3;
}

.art-info b{
  color: var(--text);
  font-size: 11px;
}

.art-empty{
  margin-top: 8px;
  padding: 8px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  color: var(--muted);
  font-style: italic;
}

/* photo gallery */

.photo-layout{
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr) var(--sidebar-width);
}

.photo-polaroid-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 18px 14px;
  align-items: start;
  padding: 8px 4px 4px;
}

.polaroid-card{
  display: grid;
  gap: 8px;
  padding: 9px 9px 12px;
  border: 1px solid rgba(203,220,196,.9);
  border-radius: 3px;
  background: #fffdf8;
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 4px 8px rgba(78,104,70,.12);
  transform: rotate(var(--tilt, -1.4deg));
  transition: transform .18s ease, box-shadow .18s ease;
}

.polaroid-card:nth-child(even){
  --tilt: 1.2deg;
}

.polaroid-card:nth-child(3n){
  --tilt: -.6deg;
}

.polaroid-card:hover{
  transform: rotate(0deg) translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 6px 12px rgba(78,104,70,.16);
}

.polaroid-card a{
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--panel-tint);
}

body.article-page .post p,
body.sprout-page .post p,
body.project-page .post p,
body.lecture-page .post p,
body.video-page .post p{
  align-self: stretch;
  max-width: none;
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #405239;
  font-size: 11.5px;
}

body.article-page .post p::after,
body.sprout-page .post p::after,
body.project-page .post p::after,
body.lecture-page .post p::after,
body.video-page .post p::after,
body.article-page .post p:nth-of-type(even)::after,
body.sprout-page .post p:nth-of-type(even)::after,
body.project-page .post p:nth-of-type(even)::after,
body.lecture-page .post p:nth-of-type(even)::after,
body.video-page .post p:nth-of-type(even)::after{
  content: none;
}

body.article-page .post p:nth-of-type(even),
body.sprout-page .post p:nth-of-type(even),
body.project-page .post p:nth-of-type(even),
body.lecture-page .post p:nth-of-type(even),
body.video-page .post p:nth-of-type(even){
  align-self: stretch;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.article-page .post ul,
body.article-page .post ol,
body.sprout-page .post ul,
body.sprout-page .post ol,
body.project-page .post ul,
body.project-page .post ol,
body.lecture-page .post ul,
body.lecture-page .post ol,
body.video-page .post ul,
body.video-page .post ol{
  padding: 0 0 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.polaroid-card img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaroid-caption{
  display: grid;
  gap: 4px;
  min-height: 58px;
  color: #526a4a;
  font-size: 10px;
  font-style: italic;
  line-height: 1.25;
}

.polaroid-caption time{
  color: #7a4f5a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.polaroid-caption p{
  margin: 0;
}

.sparkle-list{
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.sparkle-list li{
  padding: 6px 8px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  font-style: italic;
}

.sparkle-list li::before{
  content: "✧ ";
  color: #7a4f5a;
}

.social-button-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.social-button{
  display: block;
  padding: 7px 12px 5px;
  text-align: center;
}

.social-button:hover{
  border-color: #e5c4d4;
  color: #7a4f5a;
}


/* garden hub and navigation */

.garden-intro{
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.garden-key{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.garden-key-item,
.garden-key-action{
  min-height: 100%;
  padding: 9px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.garden-key-item b,
.garden-key-action b{
  display: block;
  margin-bottom: 4px;
  color: #526a4a;
  font-style: italic;
  text-transform: lowercase;
}

.garden-key-item p{
  color: var(--muted);
}

.garden-key-action{
  display: grid;
  grid-column: 1 / -1;
  gap: 7px;
}

.garden-random-link{
  display: block;
  padding: 8px;
  text-align: center;
}

.garden-nav-list,
.garden-nav-list ul{
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.garden-nav-list{
  gap: 8px;
}

.garden-nav a{
  display: block;
  width: 100%;
  padding: 7px 12px 5px;
}

.garden-nav-group{
  display: grid;
  gap: 6px;
}

.garden-nav-group summary,
.side-dropdown summary{
  margin-bottom: 6px;
  padding: 7px 12px 5px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(254,255,249,.98), rgba(239,247,235,.94));
  color: #526a4a;
  cursor: var(--cursor-link);
  font-style: italic;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.garden-nav-group summary:hover,
.side-dropdown summary:hover{
  transform: translateY(-1px);
  border-color: rgba(184,207,176,.98);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(242,249,238,.96));
  color: #48653f;
}

.garden-nav-group ul,
.side-dropdown ul,
.side-dropdown-menu{
  padding-left: 8px;
}

.side-dropdown{
  display: grid;
  gap: 6px;
}

.side-dropdown ul,
.side-dropdown-menu{
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.garden-nav-active{
  border-color: #e5c4d4 !important;
  background: linear-gradient(180deg, #fff9fb, #fff0f6) !important;
  color: #7a4f5a;
}


/* library page */

.library-layout{
  grid-template-columns: 220px minmax(0, 1fr) var(--sidebar-width);
}

.library-nav{
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.library-nav a,
.library-filter{
  display: block;
  width: 100%;
  padding: 7px 12px 5px;
  text-align: left;
}

.library-filter.active{
  border-color: #e5c4d4;
  background: linear-gradient(180deg, #fff9fb, #fff0f6);
  color: #7a4f5a;
}

.library-nav-active{
  border-color: #e5c4d4 !important;
  background: linear-gradient(180deg, #fff9fb, #fff0f6) !important;
  color: #7a4f5a;
}

.library-intro{
  margin-bottom: 8px;
  padding: 8px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  color: var(--muted);
  font-style: italic;
}

.book-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-height: 920px;
  overflow-y: auto;
  padding-right: 4px;
}

.book-card{
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding: 7px 7px 9px;
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  background: var(--panel-white);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 2px 5px rgba(78,104,70,.055);
}

.book-card:hover{
  border-color: #e5c4d4;
  background: #fff4f8;
}

.book-card[hidden]{
  display: none;
}

.book-cover{
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  border: 1px dashed var(--border-soft);
  border-radius: 2px;
  background: var(--panel-tint);
  color: var(--muted);
  font-style: italic;
}

.book-cover img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.book-cover-full{
  aspect-ratio: auto;
  min-height: 0;
}

.book-cover-full img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
}

.bookbug-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bookbug-site-button{
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.bookbug-site-button img{
  display: block;
  width: 88px;
  max-width: 88px;
  height: auto;
  image-rendering: auto;
  opacity: 0.75;
}

.bookbug-entry{
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.bookbug-cover{
  min-height: 150px;
}

.bookbug-cover span{
  color: var(--muted);
  font-style: italic;
}

.bookbug-info{
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.bookbug-month{
  width: fit-content;
  padding: 3px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: var(--panel-white);
  color: #7a4f5a;
  font-size: 10px;
  font-style: italic;
  text-transform: lowercase;
}

.bookbug-title{
  margin: 0;
  color: #526a4a;
  font-size: 16px;
  line-height: 1.25;
}

.bookbug-rating{
  color: #7a4f5a;
  font-style: italic;
}

.bookbug-info p{
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.book-info{
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: var(--muted);
  font-size: 9px;
  font-style: italic;
  line-height: 1.25;
  text-align: center;
}

.book-info b{
  color: var(--text);
  font-size: 10px;
  line-height: 1.2;
}

.book-stars{
  display: block;
  min-height: 13px;
  color: #7a4f5a;
  font-size: 11px;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: 0;
}

.book-stars:empty{
  display: none;
  min-height: 0;
}

.book-status[aria-label$="out of 5"]{
  color: #7a4f5a;
  font-size: 11px;
  font-style: normal;
  line-height: 1.1;
}

.book-details{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.book-details .row{
  grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
  padding: 6px 7px;
}

.library-empty{
  margin-top: 8px;
  padding: 8px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 760px){
  .book-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: 780px;
  }
}

@media (max-width: 520px){
  .book-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 680px;
  }
}

.cbox-wrap{
  min-height: 160px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.cbox-wrap iframe{
  display: block;
  width: 100%;
  min-height: 260px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
}
    
    
/* photo gallery */

.full-gallery{
  margin: 0 var(--gap) var(--gap);
}

.gallery{
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  max-height: 190px;
  overflow-y: auto;
  padding-right: 3px;
  scroll-behavior: smooth;
}

.gallery a{
  display: block;
  padding: 3px;
  border: 1px dotted var(--border-soft);
  border-radius: 5px;
  background: var(--panel-white);
  box-shadow: 0 1px 2px rgba(78,104,70,.06);
}

.gallery img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  opacity: .72;
  transition: opacity .2s ease, transform .1s ease;
}

.gallery a:hover img{
  opacity: 1;
  transform: scale(1.02);
}
    
    
    
    

/* RIGHT SIDEBAR things */

.palette{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.colour{
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(92,124,82,.12);
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.55) inset,
    0 1px 2px rgba(78,104,70,.06);
}
    
    
/* currently */

.current{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.row{
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.row-left{
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  font-style: italic;
}

.row-left img{
  display: block;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  object-fit: cover;
  border-radius: 3px;
}

.row-value{
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.2;
  font-style: italic;
  color: var(--muted);
  text-align: right;
}

#statuscafe{
  display: grid;
  gap: 5px;
}

#statuscafe-username{
  color: var(--muted);
  font-size: .68rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

#statuscafe-username a{
  color: inherit;
  text-decoration: none;
}

#statuscafe-content{
  padding: 8px 9px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  color: var(--text);
  font-size: .82rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

#statuscafe-content p{
  margin: 0;
}

#statuscafe-content p + p,
#statuscafe-content small,
#statuscafe-content time{
  margin-top: 4px;
  color: var(--muted);
  font-size: .68rem;
  font-style: italic;
  line-height: 1.2;
}

#statuscafe-content a{
  color: var(--accent-strong);
}

.tamanotchi-widget{
  display: flex;
  justify-content: center;
}

.tamanotchi-widget a,
.tamanotchi-widget img{
  display: block;
}
    
    
    
/* button wall */

.button-wall-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 5px 6px;
  max-height: 96px;
  overflow-y: auto;
  padding-right: 4px;
}

.button-wall{
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.button-wall img{
  display: block;
  width: 88px;
  max-width: 88px;
  height: auto;
  image-rendering: auto;
  opacity: 0.75;
}


/* webrings */

.webrings{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.webring{
  padding: 7px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.webring-title{
  margin-bottom: 5px;
  color: #4f5f48;
  font-style: italic;
  line-height: 1.2;
  text-transform: lowercase;
}

.webring-links{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.webring-links a{
  display: block;
  padding: 3px 4px;
  border: 1px dashed var(--border-soft);
  border-radius: 999px;
  background: var(--panel-white);
  color: var(--muted);
  font-size: 10px;
  font-style: italic;
  text-align: center;
}

.webring-links a:hover{
  background: var(--label-bg);
  color: var(--link-hover);
}
    
    
/* update log */

.updatez{
  display: block;
  margin-top: 4px;
  padding-top: 4px;
  border-bottom: 1px dashed #cbdcc4;
  color: #72846a;
  font-size: 10px;
  letter-spacing: 1px;
}

.note .updatez:last-child{
  border-bottom: none;
}
    
    
/* link me */

.link-me{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.link-button img{
  display: block;
  width: 88px;
  max-width: 88px;
  height: 31px;
  image-rendering: auto;
  opacity: 0.75;
}


.link-me textarea{
  width: 100%;
  height: 70px;
  resize: none;
  padding: 7px;
  border: 1px dashed #cbdcc4;
  border-radius: 4px;
  background: var(--panel-white);
  font-family: monospace;
  font-size: 10px;
  line-height: 1.5;
  color: #526a4a;
}
    
    
    

/* Footer + Credits */
.footer{
  position: relative;
  z-index: 1;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--border);
  background: rgba(234,243,229,.75);
  text-align: center;
}

.footer-inner{
  padding: 8px 10px;
  border: 1px dashed #cbdcc4;
  border-radius: 4px;
  background: rgba(251,253,248,.80);
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}
    
    
    

/* RESPONSIVENESS */
    
    
@media (max-width:980px){
  body.home-page,
  body.about-page,
  body.thoughts-page,
  body.art-page,
  body.library-page,
  body.photo-page{
    background-attachment: scroll;
  }

  body::before{
    opacity: .42;
  }

  .layout{
    grid-template-columns: 1fr;
  }
  
  
  
  
  /* 
   Change order numbers to rearrange layout on mobile.
   Smaller number = appears higher on the page.
   
   To hide a section on mobile, use:
   
   display:none;

   example:
   .sidebar-right{ display:none; }
*/




  .main-content{
    order: 1;
  }

  .sidebar-left{
    order: 2;
  }

  .sidebar-right{
    order: 3;
  }

  .gallery{
    grid-template-columns: repeat(3, 1fr);
  }

  .bookbug-entry{
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .bookbug-cover{
    min-height: 118px;
  }

  .site-title{
    padding: 8px 16px 10px;
    font-size: 30px;
  }

  .banner,
  .banner-inner{
    min-height: 260px;
  }

  .banner-rightside{
    display: none;
  }

  .theme-toggle{
    top: 10px;
    left: 10px;
  }

  .feature,
  .garden-key,
  .photo-layout,
  .three-lists,
  .about-list-grid,
  .favorites-grid,
  .entry{
    grid-template-columns: 1fr;
  }

  .banner-navi{
    display: none;
    width: min(320px, 100%);
    padding: 7px;
    border-radius: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .banner-navi.is-open{
    display: flex;
  }

  .mobile-menu-toggle{
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(220px, 100%);
    margin-top: 2px;
  }

  .nav-dropdown{
    width: 100%;
    text-align: center;
  }

  .nav-dropdown-toggle{
    width: 100%;
  }

  .nav-dropdown-menu{
    position: static;
    display: none;
    width: 100%;
    margin-top: 6px;
    left: 0;
    right: 0;
    min-width: 0;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu{
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu{
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .banner-navi > a{
    width: 100%;
    text-align: center;
  }

  .nav-dropdown-menu a{
    width: 100%;
  }
}

/* dark mode final overrides */

:root[data-theme="dark"] body::before{
  mix-blend-mode: screen;
  opacity: .42;
}

:root[data-theme="dark"] .page,
:root[data-theme="dark"] .box,
:root[data-theme="dark"] .post,
:root[data-theme="dark"] .entry-card,
:root[data-theme="dark"] .library-card,
:root[data-theme="dark"] .art-card,
:root[data-theme="dark"] .site-search-result,
:root[data-theme="dark"] .site-search-empty{
  background: var(--panel);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

:root[data-theme="dark"] .box-soft,
:root[data-theme="dark"] .box-soft .box-body{
  background: var(--panel-soft);
}

:root[data-theme="dark"] .box-head,
:root[data-theme="dark"] .mini-title,
:root[data-theme="dark"] .post h3,
:root[data-theme="dark"] .post h4,
:root[data-theme="dark"] .post h5,
:root[data-theme="dark"] .post h6{
  background: var(--panel-header);
  border-color: var(--border-soft);
  color: var(--text);
}

:root[data-theme="dark"] .banner{
  background:
    linear-gradient(rgba(0,0,0,.24), rgba(0,0,0,.36)),
    var(--panel);
  border-color: var(--border);
}

:root[data-theme="dark"] .site-title{
  color: #f4f4ef;
  text-shadow:
    0 1px 0 rgba(0,0,0,.45),
    0 2px 8px rgba(0,0,0,.6);
}

:root[data-theme="dark"] .site-subtitle,
:root[data-theme="dark"] .banner-navi,
:root[data-theme="dark"] .banner-rightside{
  background: rgba(15,18,15,.86);
  border-color: var(--border);
  color: var(--text);
}

:root[data-theme="dark"] .banner-navi a,
:root[data-theme="dark"] .nav-dropdown-toggle,
:root[data-theme="dark"] .mobile-menu-toggle,
:root[data-theme="dark"] .theme-toggle,
:root[data-theme="dark"] .button-like,
:root[data-theme="dark"] button:not(.nav-dropdown-toggle):not(.mobile-menu-toggle):not(.theme-toggle),
:root[data-theme="dark"] .calendarTop button,
:root[data-theme="dark"] .graph-controls button,
:root[data-theme="dark"] .art-filter,
:root[data-theme="dark"] .library-nav a,
:root[data-theme="dark"] .library-filter,
:root[data-theme="dark"] .garden-nav a,
:root[data-theme="dark"] .social-button,
:root[data-theme="dark"] .feature-link,
:root[data-theme="dark"] .post-nav a,
:root[data-theme="dark"] .post-nav button,
:root[data-theme="dark"] .source-link-button{
  border-color: var(--button-border);
  background: linear-gradient(180deg, #20251f, #111611);
  box-shadow:
    0 1px 0 rgba(255,255,255,.08) inset,
    0 0 0 1px rgba(255,255,255,.03);
  color: var(--text);
}

:root[data-theme="dark"] .banner-navi a:hover,
:root[data-theme="dark"] .nav-dropdown-toggle:hover,
:root[data-theme="dark"] .mobile-menu-toggle:hover,
:root[data-theme="dark"] .theme-toggle:hover,
:root[data-theme="dark"] .button-like:hover,
:root[data-theme="dark"] button:not(.nav-dropdown-toggle):not(.mobile-menu-toggle):not(.theme-toggle):hover,
:root[data-theme="dark"] .calendarTop button:hover,
:root[data-theme="dark"] .graph-controls button:hover,
:root[data-theme="dark"] .art-filter:hover,
:root[data-theme="dark"] .library-nav a:hover,
:root[data-theme="dark"] .library-filter:hover,
:root[data-theme="dark"] .garden-nav a:hover,
:root[data-theme="dark"] .social-button:hover,
:root[data-theme="dark"] .feature-link:hover,
:root[data-theme="dark"] .post-nav a:hover,
:root[data-theme="dark"] .post-nav button:hover,
:root[data-theme="dark"] .source-link-button:hover{
  border-color: #768c70;
  background: linear-gradient(180deg, #283227, #182018);
  color: #d8ead0;
}

:root[data-theme="dark"] .nav-dropdown-menu{
  background: #111511;
  border-color: var(--border);
}

:root[data-theme="dark"] input,
:root[data-theme="dark"] textarea,
:root[data-theme="dark"] select,
:root[data-theme="dark"] .site-search-input{
  background: #0e110e;
  border-color: var(--border);
  color: var(--text);
}

:root[data-theme="dark"] .row,
:root[data-theme="dark"] #statuscafe-content,
:root[data-theme="dark"] .about-fact,
:root[data-theme="dark"] .site-info-row{
  background: var(--panel-tint);
  border-color: var(--border-soft);
}

:root[data-theme="dark"] img{
  filter: var(--image-filter);
}

:root[data-theme="dark"] img.is-dither-ready{
  filter: none;
}

:root[data-theme="dark"] a:hover img,
:root[data-theme="dark"] button:hover img,
:root[data-theme="dark"] img:hover,
:root[data-theme="dark"] .art-card:hover img,
:root[data-theme="dark"] .library-card:hover img,
:root[data-theme="dark"] .entry-card:hover img,
:root[data-theme="dark"] .button-wall:hover img,
:root[data-theme="dark"] .blinkies-grid img:hover,
:root[data-theme="dark"] .stamps-grid img:hover{
  filter: var(--image-filter-hover);
}

:root[data-theme="dark"] a:hover img.is-dither-ready,
:root[data-theme="dark"] button:hover img.is-dither-ready,
:root[data-theme="dark"] img.is-dither-ready:hover,
:root[data-theme="dark"] .art-card:hover img.is-dither-ready,
:root[data-theme="dark"] .library-card:hover img.is-dither-ready,
:root[data-theme="dark"] .entry-card:hover img.is-dither-ready,
:root[data-theme="dark"] .button-wall:hover img.is-dither-ready,
:root[data-theme="dark"] .blinkies-grid img.is-dither-ready:hover,
:root[data-theme="dark"] .stamps-grid img.is-dither-ready:hover{
  filter: none;
}

:root[data-theme="dark"] .note-graph{
  border-color: var(--border);
  background:
    radial-gradient(circle at 25% 30%, rgba(70,82,67,.55), transparent 23%),
    radial-gradient(circle at 70% 60%, rgba(120,120,120,.18), transparent 24%),
    #0f120f;
}

:root[data-theme="dark"] .note-graph line{
  stroke: #606660;
  opacity: .58;
}

:root[data-theme="dark"] .note-graph circle,
:root[data-theme="dark"] .note-graph .graph-node-site circle,
:root[data-theme="dark"] .note-graph .graph-node-book circle,
:root[data-theme="dark"] .note-graph .graph-node-thought circle,
:root[data-theme="dark"] .note-graph .graph-node-art circle{
  fill: #242824;
  stroke: #8a9087;
}

:root[data-theme="dark"] .note-graph .graph-node:hover circle,
:root[data-theme="dark"] .note-graph .graph-node:focus circle,
:root[data-theme="dark"] .note-graph .graph-node.is-active circle,
:root[data-theme="dark"] .note-graph .graph-node.is-highlighted circle{
  fill: #263822;
  stroke: #a8c99a;
}

:root[data-theme="dark"] .note-graph .graph-node:hover text,
:root[data-theme="dark"] .note-graph .graph-node:focus text,
:root[data-theme="dark"] .note-graph .graph-node.is-active text{
  fill: #d8ead0;
}

:root[data-theme="dark"] .note-graph .graph-link.is-highlighted{
  stroke: #a8c99a;
}

/* darkmatter-inspired simplification */

:root[data-theme="dark"] body,
:root[data-theme="dark"] body.home-page,
:root[data-theme="dark"] body.about-page,
:root[data-theme="dark"] body.thoughts-page,
:root[data-theme="dark"] body.art-page,
:root[data-theme="dark"] body.library-page,
:root[data-theme="dark"] body.photo-page{
  background: #111111 url("https://shye.nekoweb.org/graphics_bg/star3.gif") repeat fixed;
}

:root[data-theme="dark"] body::before{
  mix-blend-mode: screen;
  opacity: .24;
}

:root[data-theme="dark"] .page{
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

:root[data-theme="dark"] .banner{
  background: #111111;
  border-color: #222222;
  box-shadow: none;
}

:root[data-theme="dark"] .site-title{
  padding: 4px 18px;
  border-radius: 999px;
  background: #101010;
  color: #aaaaaa;
  font-family: "Courier New", monospace;
  font-size: 20px;
  font-style: normal;
  letter-spacing: 5px;
  text-shadow: none;
  text-transform: uppercase;
}

:root[data-theme="dark"] .site-subtitle{
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: #666666;
}

:root[data-theme="dark"] .banner-navi{
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

:root[data-theme="dark"] .banner-navi a,
:root[data-theme="dark"] .nav-dropdown-toggle,
:root[data-theme="dark"] .mobile-menu-toggle,
:root[data-theme="dark"] .theme-toggle{
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: #666666;
  font-family: "Courier New", monospace;
  font-style: normal;
  font-weight: 700;
  text-transform: lowercase;
}

:root[data-theme="dark"] .banner-navi a:hover,
:root[data-theme="dark"] .nav-dropdown-toggle:hover,
:root[data-theme="dark"] .mobile-menu-toggle:hover,
:root[data-theme="dark"] .theme-toggle:hover,
:root[data-theme="dark"] .nav-dropdown:focus-within .nav-dropdown-toggle{
  background: transparent;
  box-shadow: none;
  color: #cccccc;
  transform: none;
}

:root[data-theme="dark"] .nav-dropdown-menu{
  border: 1px solid #252525;
  border-radius: 0;
  background: #111111;
  box-shadow: none;
}

:root[data-theme="dark"] .banner-rightside{
  border-color: #252525;
  border-radius: 999px;
  background: #101010;
  box-shadow: none;
}

:root[data-theme="dark"] .box,
:root[data-theme="dark"] .box-soft,
:root[data-theme="dark"] .post,
:root[data-theme="dark"] .entry-card,
:root[data-theme="dark"] .library-card,
:root[data-theme="dark"] .art-card,
:root[data-theme="dark"] .polaroid-card{
  background: #171717;
  border-color: #252525;
  border-radius: 0;
  box-shadow: none;
}

:root[data-theme="dark"] .main-content .box,
:root[data-theme="dark"] .main-content .post{
  background: #202020;
}

:root[data-theme="dark"] .box::after{
  opacity: 0;
}

:root[data-theme="dark"] .box-head{
  background: transparent;
  border-bottom: 1px dashed #252525;
}

:root[data-theme="dark"] .box-title,
:root[data-theme="dark"] .mini-title,
:root[data-theme="dark"] .post h3,
:root[data-theme="dark"] .post h4,
:root[data-theme="dark"] .post h5,
:root[data-theme="dark"] .post h6{
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #999999;
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: none;
}

:root[data-theme="dark"] .head-dots{
  opacity: .22;
}

:root[data-theme="dark"] .box-body,
:root[data-theme="dark"] .box-soft .box-body{
  background: transparent;
  color: #6e8f68;
}

:root[data-theme="dark"] .row,
:root[data-theme="dark"] .site-info-row,
:root[data-theme="dark"] .about-fact,
:root[data-theme="dark"] #statuscafe-content,
:root[data-theme="dark"] .site-search-result,
:root[data-theme="dark"] .site-search-empty{
  background: #111111;
  border-color: #252525;
  border-radius: 0;
  box-shadow: none;
}

:root[data-theme="dark"] .button-like,
:root[data-theme="dark"] button:not(.nav-dropdown-toggle):not(.mobile-menu-toggle):not(.theme-toggle),
:root[data-theme="dark"] .calendarTop button,
:root[data-theme="dark"] .graph-controls button,
:root[data-theme="dark"] .art-filter,
:root[data-theme="dark"] .library-nav a,
:root[data-theme="dark"] .library-filter,
:root[data-theme="dark"] .garden-nav a,
:root[data-theme="dark"] .social-button,
:root[data-theme="dark"] .feature-link,
:root[data-theme="dark"] .post-nav a,
:root[data-theme="dark"] .post-nav button,
:root[data-theme="dark"] .source-link-button{
  border-color: #333333;
  border-radius: 0;
  background: #111111;
  box-shadow: none;
  color: #bbbbbb;
  font-style: normal;
}

:root[data-theme="dark"] .button-like:hover,
:root[data-theme="dark"] button:not(.nav-dropdown-toggle):not(.mobile-menu-toggle):not(.theme-toggle):hover,
:root[data-theme="dark"] .calendarTop button:hover,
:root[data-theme="dark"] .graph-controls button:hover,
:root[data-theme="dark"] .art-filter:hover,
:root[data-theme="dark"] .library-nav a:hover,
:root[data-theme="dark"] .library-filter:hover,
:root[data-theme="dark"] .garden-nav a:hover,
:root[data-theme="dark"] .social-button:hover,
:root[data-theme="dark"] .feature-link:hover,
:root[data-theme="dark"] .post-nav a:hover,
:root[data-theme="dark"] .post-nav button:hover,
:root[data-theme="dark"] .source-link-button:hover{
  border-color: #555555;
  background: #171717;
  color: #dddddd;
  transform: none;
}

:root[data-theme="dark"] input,
:root[data-theme="dark"] textarea,
:root[data-theme="dark"] select,
:root[data-theme="dark"] .site-search-input{
  border-color: #333333;
  border-radius: 0;
  background: #111111;
  color: #888888;
}

:root[data-theme="dark"] b,
:root[data-theme="dark"] strong{
  color: #888888;
}

:root[data-theme="dark"] em,
:root[data-theme="dark"] i{
  color: #aaaaaa;
}

:root[data-theme="dark"] .note-graph{
  border-color: #252525;
  border-radius: 0;
  background: #111111;
}

:root[data-theme="dark"] .note-graph line{
  stroke: #555555;
}

:root[data-theme="dark"] .note-graph circle,
:root[data-theme="dark"] .note-graph .graph-node-site circle,
:root[data-theme="dark"] .note-graph .graph-node-book circle,
:root[data-theme="dark"] .note-graph .graph-node-thought circle,
:root[data-theme="dark"] .note-graph .graph-node-art circle{
  fill: #202020;
  stroke: #777777;
}

:root[data-theme="dark"] .note-graph .graph-node:hover circle,
:root[data-theme="dark"] .note-graph .graph-node:focus circle,
:root[data-theme="dark"] .note-graph .graph-node.is-active circle,
:root[data-theme="dark"] .note-graph .graph-node.is-highlighted circle{
  fill: #273824;
  stroke: #8aa383;
}

:root[data-theme="dark"] .note-graph .graph-link.is-highlighted{
  stroke: #8aa383;
}

/* plain monochrome pass */

:root[data-theme="dark"]{
  --base-font: "Courier New", Consolas, "Lucida Console", monospace;
  --text: #d1d1d1;
  --muted: #a6a6a6;
  --link: #dddddd;
  --link-hover: #ffffff;
  --accent-strong: #9fbe96;
  --border: #242424;
  --border-soft: #202020;
  --panel: #171717;
  --panel-soft: #151515;
  --panel-tint: #111111;
  --panel-white: #171717;
  --panel-header: #171717;
}

:root[data-theme="dark"] .banner{
  min-height: 0;
  border: 0;
  background: transparent;
}

:root[data-theme="dark"] .banner::before,
:root[data-theme="dark"] .banner::after{
  display: none;
}

:root[data-theme="dark"] .banner-inner{
  min-height: 0;
  padding: 12px 14px 10px;
  gap: 7px;
}

:root[data-theme="dark"] .site-title{
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: #dddddd;
  font-size: 18px;
  letter-spacing: 4px;
}

:root[data-theme="dark"] .site-subtitle{
  display: none;
}

:root[data-theme="dark"] .theme-toggle{
  top: 11px;
  left: 14px;
  min-width: 84px;
  width: auto;
  height: 20px;
  padding: 2px 4px 2px 8px;
  border: 1px solid #333333;
  border-radius: 999px;
  background: #111111;
  color: #bbbbbb;
  font-family: "Courier New", Consolas, "Lucida Console", monospace;
  font-size: 8px;
  letter-spacing: 1px;
  line-height: 1;
}

:root[data-theme="dark"] .theme-toggle:hover{
  border-color: #4d6548;
  color: #8aa383;
}

:root[data-theme="dark"] .theme-toggle-track{
  border-color: #333333;
  background: #050505;
}

:root[data-theme="dark"] .theme-toggle-thumb{
  background: #6e8f68;
}

:root[data-theme="dark"] .banner-navi a,
:root[data-theme="dark"] .nav-dropdown-toggle,
:root[data-theme="dark"] .mobile-menu-toggle{
  padding: 7px 14px 5px;
  color: #b8b8b8;
  letter-spacing: 1px;
}

:root[data-theme="dark"] .banner-navi a:hover,
:root[data-theme="dark"] .nav-dropdown-toggle:hover,
:root[data-theme="dark"] .mobile-menu-toggle:hover,
:root[data-theme="dark"] .nav-dropdown:focus-within .nav-dropdown-toggle{
  color: #8aa383;
}

:root[data-theme="dark"] .feature-text,
:root[data-theme="dark"] .feature-image,
:root[data-theme="dark"] .music-widget,
:root[data-theme="dark"] .music-cd,
:root[data-theme="dark"] .polaroid-card a,
:root[data-theme="dark"] .quote,
:root[data-theme="dark"] .soft,
:root[data-theme="dark"] .note,
:root[data-theme="dark"] .updatez,
:root[data-theme="dark"] .calendarDays div,
:root[data-theme="dark"] .book-card,
:root[data-theme="dark"] .mini-box{
  background: #111111;
  border-color: #242424;
  border-radius: 0;
  box-shadow: none;
  color: #d1d1d1;
}

:root[data-theme="dark"] .polaroid-caption,
:root[data-theme="dark"] .polaroid-caption time{
  color: #d1d1d1;
}

:root[data-theme="dark"] .music-song,
:root[data-theme="dark"] .music-link,
:root[data-theme="dark"] .feature-text b,
:root[data-theme="dark"] .row-value,
:root[data-theme="dark"] .site-info-value,
:root[data-theme="dark"] .social-user{
  color: #d1d1d1;
}

:root[data-theme="dark"] .social-name,
:root[data-theme="dark"] #statuscafe-username,
:root[data-theme="dark"] #statuscafe-username a{
  color: #9fbe96;
}

:root[data-theme="dark"] .music-link{
  border-top-color: #242424;
}

:root[data-theme="dark"] .feature-link:hover,
:root[data-theme="dark"] .music-link:hover{
  border-color: #4d6548;
  color: #8aa383;
}

:root[data-theme="dark"] .calendarDays .today,
:root[data-theme="dark"] .note-graph .graph-node:hover circle,
:root[data-theme="dark"] .note-graph .graph-node:focus circle,
:root[data-theme="dark"] .note-graph .graph-node.is-active circle,
:root[data-theme="dark"] .note-graph .graph-node.is-highlighted circle{
  background: #162014;
  border-color: #4d6548;
  color: #8aa383;
  fill: #162014;
  stroke: #6e8f68;
}

:root[data-theme="dark"] .note-graph circle{
  fill: #496f3c;
  stroke: #9fca8f;
}

:root[data-theme="dark"] .note-graph .graph-node-site circle,
:root[data-theme="dark"] .note-graph .graph-node-site.is-highlighted circle{
  fill: #4f7b3f;
  stroke: #add69c;
}

:root[data-theme="dark"] .note-graph .graph-node-book circle,
:root[data-theme="dark"] .note-graph .graph-node-book.is-highlighted circle{
  fill: #8b3f63;
  stroke: #d98cab;
}

:root[data-theme="dark"] .note-graph .graph-node-thought circle,
:root[data-theme="dark"] .note-graph .graph-node-thought.is-highlighted circle{
  fill: #3d7484;
  stroke: #91c7d6;
}

:root[data-theme="dark"] .note-graph .graph-node-art circle,
:root[data-theme="dark"] .note-graph .graph-node-art.is-highlighted circle{
  fill: #8a6b25;
  stroke: #d9b957;
}

:root[data-theme="dark"] .note-graph .graph-node.is-highlighted circle{
  stroke-width: 1.35;
}

:root[data-theme="dark"] .note-graph .graph-node:hover circle,
:root[data-theme="dark"] .note-graph .graph-node:focus circle,
:root[data-theme="dark"] .note-graph .graph-node.is-active circle{
  fill: #9a4a6d;
  stroke: #f0a7bf;
}

:root[data-theme="dark"] .post a.wikilink,
:root[data-theme="dark"] .tag,
:root[data-theme="dark"] .topic-button,
:root[data-theme="dark"] .favorite-topic,
:root[data-theme="dark"] .source-link-button{
  background: #111111;
  border-color: #333333;
  color: #bbbbbb;
}

:root[data-theme="dark"] .post a.wikilink:hover,
:root[data-theme="dark"] .tag:hover,
:root[data-theme="dark"] .topic-button:hover,
:root[data-theme="dark"] .favorite-topic:hover,
:root[data-theme="dark"] .source-link-button:hover{
  border-color: #4d6548;
  color: #8aa383;
}

:root[data-theme="dark"] .cbox-wrap{
  border-color: #242424;
  border-radius: 0;
  background: #111111;
}

:root[data-theme="dark"] .cbox-wrap iframe{
  border-color: #242424;
  border-radius: 0;
  background: #111111;
  filter: grayscale(1) invert(1) brightness(.72) contrast(1.2);
}

:root[data-theme="dark"] .colour[title*="pink"]{
  background: #2f2f2f !important;
}

:root[data-theme="dark"] .colour[title="soft green"]{
  background: #050505 !important;
}

:root[data-theme="dark"] .colour[title="leaf green"]{
  background: #1a1a1a !important;
}

:root[data-theme="dark"] .colour[title="moss green"]{
  background: #3f5b38 !important;
}

:root[data-theme="dark"] .colour[title="lake blue"]{
  background: #777777 !important;
}

:root[data-theme="dark"] .footer{
  border-top-color: #242424;
  background: #111111;
}

:root[data-theme="dark"] .footer-inner{
  border-color: #242424;
  border-radius: 0;
  background: #171717;
  color: #a6a6a6;
}

/* dark mode contrast cleanup */

:root[data-theme="dark"] .cbox-wrap iframe{
  filter: grayscale(1) invert(1) brightness(1.15) contrast(1.3);
}

:root[data-theme="dark"] .sparkle-list li::before,
:root[data-theme="dark"] .about-scroll-panel .sparkle-list li::before,
:root[data-theme="dark"] .post li::marker{
  color: #6e8f68;
}

:root[data-theme="dark"] .post strong,
:root[data-theme="dark"] .post a.wikilink,
:root[data-theme="dark"] .social-button:hover,
:root[data-theme="dark"] .library-filter.active,
:root[data-theme="dark"] .library-nav-active,
:root[data-theme="dark"] .garden-nav-active{
  color: #6e8f68;
}

:root[data-theme="dark"] .post p:nth-of-type(even),
:root[data-theme="dark"] .post p:nth-of-type(even)::after{
  border-color: #242424;
  background: #111111;
}

:root[data-theme="dark"] .post a.wikilink,
:root[data-theme="dark"] .post a.wikilink:hover{
  border-color: #333333;
  background: #111111;
}

:root[data-theme="dark"] .library-nav a,
:root[data-theme="dark"] .library-filter,
:root[data-theme="dark"] .garden-nav a{
  background: #151515;
  border-color: #2a2a2a;
  color: #a8a8a8;
}

:root[data-theme="dark"] .garden-nav-group summary,
:root[data-theme="dark"] .side-dropdown summary{
  background: #151515;
  border-color: #2a2a2a;
  color: #a8a8a8;
}

:root[data-theme="dark"] .library-filter.active,
:root[data-theme="dark"] .library-nav-active,
:root[data-theme="dark"] .garden-nav-active{
  background: #8a8a8a !important;
  border-color: #6a6a6a !important;
  color: #050505 !important;
}

:root[data-theme="dark"] .library-nav a:hover,
:root[data-theme="dark"] .library-filter:hover,
:root[data-theme="dark"] .garden-nav a:hover{
  background: #202020;
  border-color: #4d6548;
  color: #8aa383;
}

:root[data-theme="dark"] .garden-nav-group summary:hover,
:root[data-theme="dark"] .side-dropdown summary:hover{
  background: #202020;
  border-color: #4d6548;
  color: #8aa383;
}

/* dark mode readability boost */

:root[data-theme="dark"] body,
:root[data-theme="dark"] .box-body,
:root[data-theme="dark"] .post,
:root[data-theme="dark"] .about-intro p,
:root[data-theme="dark"] .quote,
:root[data-theme="dark"] .soft,
:root[data-theme="dark"] .art-info,
:root[data-theme="dark"] .library-intro,
:root[data-theme="dark"] .entry-card,
:root[data-theme="dark"] .book-card,
:root[data-theme="dark"] .site-info-row,
:root[data-theme="dark"] .about-fact,
:root[data-theme="dark"] .row,
:root[data-theme="dark"] .updatez,
:root[data-theme="dark"] #statuscafe-content{
  color: #d1d1d1;
}

:root[data-theme="dark"] .row-left,
:root[data-theme="dark"] .row-value,
:root[data-theme="dark"] .post-meta,
:root[data-theme="dark"] .site-search-result span,
:root[data-theme="dark"] .site-search-result small,
:root[data-theme="dark"] .site-search-empty,
:root[data-theme="dark"] #statuscafe-content small,
:root[data-theme="dark"] #statuscafe-content time,
:root[data-theme="dark"] #statuscafe-content p + p{
  color: #a6a6a6;
}

:root[data-theme="dark"] a,
:root[data-theme="dark"] .post a,
:root[data-theme="dark"] .music-link{
  color: #dddddd;
}

:root[data-theme="dark"] a:hover,
:root[data-theme="dark"] .post a:hover,
:root[data-theme="dark"] .music-link:hover{
  color: #9fbe96;
}

:root[data-theme="dark"] .about-page .about-intro p,
:root[data-theme="dark"] .about-page .about-intro p:nth-of-type(even){
  border-color: #303030;
  background: #171717;
  color: #d1d1d1;
}

:root[data-theme="dark"] .about-page .about-intro p::after,
:root[data-theme="dark"] .about-page .about-intro p:nth-of-type(even)::after{
  border-color: #303030;
  background: #171717;
}

:root[data-theme="dark"] .post h3,
:root[data-theme="dark"] .post h4,
:root[data-theme="dark"] .post h5,
:root[data-theme="dark"] .post h6{
  padding: 3px 0 3px 10px;
  border-left: 4px solid #d98cab;
  background: transparent;
  color: #e0a0b8;
  font-size: 16px;
  letter-spacing: 0;
}

:root[data-theme="dark"] .post h4{
  margin-left: 10px;
  border-left-color: #9fca8f;
  color: #b7d7ab;
  font-size: 14px;
}

:root[data-theme="dark"] .post h5{
  margin-left: 20px;
  border-left-color: #91c7d6;
  color: #a9d2dc;
  font-size: 12px;
}

:root[data-theme="dark"] .post h6{
  margin-left: 30px;
  border-left-color: #d9b957;
  color: #dac371;
  font-size: 11px;
}

:root[data-theme="dark"] body.article-page .post p,
:root[data-theme="dark"] body.sprout-page .post p,
:root[data-theme="dark"] body.project-page .post p,
:root[data-theme="dark"] body.lecture-page .post p,
:root[data-theme="dark"] body.video-page .post p,
:root[data-theme="dark"] body.article-page .post p:nth-of-type(even),
:root[data-theme="dark"] body.sprout-page .post p:nth-of-type(even),
:root[data-theme="dark"] body.project-page .post p:nth-of-type(even),
:root[data-theme="dark"] body.lecture-page .post p:nth-of-type(even),
:root[data-theme="dark"] body.video-page .post p:nth-of-type(even){
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #d1d1d1;
}

:root[data-theme="dark"] body.article-page .post p::after,
:root[data-theme="dark"] body.sprout-page .post p::after,
:root[data-theme="dark"] body.project-page .post p::after,
:root[data-theme="dark"] body.lecture-page .post p::after,
:root[data-theme="dark"] body.video-page .post p::after,
:root[data-theme="dark"] body.article-page .post p:nth-of-type(even)::after,
:root[data-theme="dark"] body.sprout-page .post p:nth-of-type(even)::after,
:root[data-theme="dark"] body.project-page .post p:nth-of-type(even)::after,
:root[data-theme="dark"] body.lecture-page .post p:nth-of-type(even)::after,
:root[data-theme="dark"] body.video-page .post p:nth-of-type(even)::after{
  content: none;
}

:root[data-theme="dark"] body.article-page .post ul,
:root[data-theme="dark"] body.article-page .post ol,
:root[data-theme="dark"] body.sprout-page .post ul,
:root[data-theme="dark"] body.sprout-page .post ol,
:root[data-theme="dark"] body.project-page .post ul,
:root[data-theme="dark"] body.project-page .post ol,
:root[data-theme="dark"] body.lecture-page .post ul,
:root[data-theme="dark"] body.lecture-page .post ol,
:root[data-theme="dark"] body.video-page .post ul,
:root[data-theme="dark"] body.video-page .post ol{
  border: 0;
  background: transparent;
}

/* Body buttons should sit on the page without an extra boxed outline. */
.main-content .button-like,
.main-content .feature-link,
.main-content .post-nav a,
.main-content .post-nav button,
.main-content .source-link-button,
.post a.wikilink{
  border-color: transparent;
  box-shadow: none;
}

.main-content .button-like:hover,
.main-content .feature-link:hover,
.main-content .post-nav a:hover,
.main-content .post-nav button:hover,
.main-content .source-link-button:hover,
.post a.wikilink:hover{
  border-color: transparent;
  box-shadow: none;
}

:root[data-theme="dark"] .main-content .button-like,
:root[data-theme="dark"] .main-content .feature-link,
:root[data-theme="dark"] .main-content .post-nav a,
:root[data-theme="dark"] .main-content .post-nav button,
:root[data-theme="dark"] .main-content .source-link-button,
:root[data-theme="dark"] .post a.wikilink,
:root[data-theme="dark"] .post a.wikilink:hover{
  border-color: transparent;
  box-shadow: none;
}
              
