:root {
  --bg1:          #edf6ff;
  --bg2:          #d4e5ff;
  --bglight:      #f7fbff;
  --bgdark:       #c8d8ef;
  --checker-size: 60px;

  --text:         #243044;
  --border:       #7ba2f0;

  --accent:       #376bff;
  --accent-dark:  #214fd4;
  --accent-light: #8fb5ff;
  --support1:     #49c5d6;
  --support2:     #7f6fff;

  --font-body:    'Trebuchet MS', sans-serif;
  --font-header:  'Verdana', sans-serif;

  --size-small:   13px;
  --size-body:    16px;
  --size-sub:     24px;
  --size-h1:      44px;

  --glass-blur:   blur(14px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap');

@font-face {
  font-family: 'Binchotan';
  src: url('https://file.garden/ag9AeC78DlV5aC2f/font/BinchotanSharp.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

* { cursor: url('https://file.garden/ag9AeC78DlV5aC2f/cusor/Normal%20Select.cur'), auto; }
a, button, select, [onclick] { cursor: url('https://file.garden/ag9AeC78DlV5aC2f/cusor/Link%20Select.cur'), pointer; }
input[type="text"], input[type="search"], textarea { cursor: url('https://file.garden/ag9AeC78DlV5aC2f/cusor/Text%20Select.cur'), text; }
input[type="range"] { cursor: url('https://file.garden/ag9AeC78DlV5aC2f/cusor/Horizontal%20Resize.cur'), ew-resize; }
*:disabled, [disabled] { cursor: url('https://file.garden/ag9AeC78DlV5aC2f/cusor/Unavailable.cur'), not-allowed; }
.grabbable        { cursor: url('https://file.garden/ag9AeC78DlV5aC2f/cusor/Move.cur'), grab; }
.grabbable:active { cursor: url('https://file.garden/ag9AeC78DlV5aC2f/cusor/Move.cur'), grabbing; }
body.busy *       { cursor: url('https://file.garden/ag9AeC78DlV5aC2f/cusor/Busy.ani'), wait; }

@keyframes checker-scroll {
  from { background-position: 0 0, 0 var(--checker-size), var(--checker-size) calc(var(--checker-size)*-1), calc(var(--checker-size)*-1) 0; }
  to   { background-position:
    calc(var(--checker-size)*2) calc(var(--checker-size)*2),
    calc(var(--checker-size)*2) calc(var(--checker-size)*3),
    calc(var(--checker-size)*3) var(--checker-size),
    var(--checker-size) calc(var(--checker-size)*2); }
}

html { position: relative; height: 100%; }

html::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(45deg,  var(--bg2) 25%, transparent 25%),
    linear-gradient(-45deg, var(--bg2) 25%, transparent 25%),
    linear-gradient(45deg,  transparent 75%, var(--bg2) 75%),
    linear-gradient(-45deg, transparent 75%, var(--bg2) 75%);
  background-color: var(--bg1);
  background-size: calc(var(--checker-size)*2) calc(var(--checker-size)*2);
  background-position: 0 0, 0 var(--checker-size), var(--checker-size) calc(var(--checker-size)*-1), calc(var(--checker-size)*-1) 0;
  animation: checker-scroll 4s linear infinite;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-body);
  color: var(--text);
  line-height: 1.75;
  background: transparent;
  height: 100%;
  transition: color 0.3s;
}

a { color: var(--accent); }

h1 { font-family: var(--font-header); font-size: var(--size-h1);  color: var(--accent); margin-bottom: 16px; line-height: 1.1; }
h2 { font-family: var(--font-header); font-size: var(--size-sub);  color: var(--accent); margin-bottom: 12px; }
hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

.chrome-panel {
  border-radius: 14px;
  overflow: hidden;
  
  border: 1.5px solid var(--border);
  box-shadow:
    0 0   0 1px var(--glass-border-t) inset,  
    0 12px 40px rgba(0,0,0,0.22),              
    0 2px  8px  rgba(0,0,0,0.12);
  margin-bottom: 10px;
}

.chrome-panel-title {
  
  background: linear-gradient(180deg,
    var(--accent-light) 0%,
    var(--accent) 40%,
    var(--accent-dark) 100%
  );
  color: white;
  font-family: var(--font-header);
  font-size: var(--size-small);
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chrome-panel-title::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(255,255,255,0.9),
    rgba(255,255,255,0.2) 60%,
    rgba(0,0,0,0.1)
  );
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.chrome-panel-body {
  
  background: linear-gradient(180deg, var(--bglight) 0%, var(--bgdark) 100%);
  padding: 10px;
}

.page { display: flex; height: 100vh; }

.left-nav {
  width: 200px;
  overflow-y: scroll;
  padding: 10px;
  flex-shrink: 0;
  text-transform: uppercase;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  background: none;
  border: none;
  width: 100%;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--size-sub);
}

.nav-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
  transition: filter 0.2s;
}

.nav-item span { margin-top: 5px; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.nav-item:hover img {
  animation: spin 1.2s linear infinite;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.4));
}
.main-content {
  flex: 1;
  height: 95%;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;

  border-radius: 20px;
  border: 2px solid var(--border);
  outline: 1px solid rgba(0,0,0,0.08);

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 0 0 4px rgba(0,0,0,0.05),
    0 24px 60px rgba(0,0,0,0.14),
    0 4px 16px rgba(0,0,0,0.08);

  background: linear-gradient(
    180deg,
    var(--bglight) 0%,
    var(--bg1) 18%,
    var(--bg1) 72%,
    var(--bgdark) 100%
  );

  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.main-titlebar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  height: 32px;

  
  background: linear-gradient(180deg,
    var(--accent-light) 0%,
    var(--accent) 45%,
    var(--accent-dark) 100%
  );
  border-radius: 18px 18px 0 0;

  
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 2px 8px rgba(0,0,0,0.2);
}

.main-titlebar-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}

.main-titlebar-dots i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%,
    rgba(255,255,255,0.90),
    rgba(255,255,255,0.30) 55%,
    rgba(0,0,0,0.15)
  );
  box-shadow: 0 1px 3px rgba(0,0,0,0.35);
}

.main-titlebar-dots i:nth-child(1) { background-color: rgba(255,180,180,0.5); }
.main-titlebar-dots i:nth-child(2) { background-color: rgba(255,230,130,0.5); }
.main-titlebar-dots i:nth-child(3) { background-color: rgba(160,230,160,0.5); }

.main-titlebar-text {
  color: white;
  font-family: var(--font-header);
  font-size: var(--size-small);
  font-weight: bold;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  flex: 1;
  text-align: center;
}

.main-titlebar::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 32px;
  height: 3px;
  background: linear-gradient(90deg,
    transparent,
    var(--support1),
    var(--accent-light),
    var(--support1),
    transparent
  );
  opacity: 0.7;
}

.main-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  position: relative;
}

.main-body:not(.is-iframe) {
  padding: 32px 40px;
}

.main-content.is-iframe .main-body {
  padding: 0;
}

.main-content.is-iframe .main-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.page-inner { padding: 32px 40px; }

.right-sidebar {
  width: 210px;
  padding: 8px 8px 8px 6px;
  overflow-y: scroll;
  flex-shrink: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.right-sidebar > * { flex-shrink: 0; }

.pill-select-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 6px;
}




.pill-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 11px;
  pointer-events: none;
  z-index: 2;
}

#themechanger select,
#fontchanger select {
  width: 100%;
  padding: 6px 28px 6px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--accent-dark);
  font-family: var(--font-body);
  font-size: var(--size-small);
  font-weight: bold;
  letter-spacing: 0.08em;
  color: white;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent-light) 45%, var(--accent-dark) 100%);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 0;
}

#themechanger select:focus,
#fontchanger select:focus {
  outline: 2px solid var(--support1);
  outline-offset: 1px;
}

#musicplayer {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.18);
}

#musicplayer .player-titlebar {
  background: linear-gradient(180deg,
    var(--accent-light) 0%,
    var(--accent-light) 45%,
    var(--accent-dark) 100%
  );
  padding: 4px 10px;
  font-family: var(--font-header);
  font-size: var(--size-small);
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset;
  display: flex;
  align-items: center;
  gap: 6px;
}

#musicplayer .player-titlebar::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.9), rgba(0,0,0,0.1));
  flex-shrink: 0;
}

#musicplayer .player-body {
  background: linear-gradient(180deg, var(--bglight) 0%, var(--bgdark) 100%);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  color: var(--text);
  font-size: var(--size-small);
}

#track-select {
  width: 100%;
  padding: 4px 8px;
  border-radius: 20px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: var(--size-small);
  color: var(--text);
  background: linear-gradient(180deg, var(--bglight) 0%, var(--bgdark) 100%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  -webkit-appearance: none;
  appearance: none;
}

.track-name   { font-weight: bold; font-size: var(--size-body); }
.track-artist { color: var(--accent-light); font-size: var(--size-small); }

.now-playing {
  font-size: var(--size-small);
  color: var(--accent-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.buttons { display: flex; justify-content: center; gap: 8px; }

.playpause-track, .prev-track, .next-track {
  color: white;
  font-size: 14px;
  user-select: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg,
    var(--accent-light) 0%,
    var(--accent) 50%,
    var(--accent-dark) 100%
  );
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 3px 8px rgba(0,0,0,0.25);
  transition: box-shadow 0.1s, transform 0.1s;
}

.playpause-track:active, .prev-track:active, .next-track:active {
  transform: scale(0.93);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.seeking {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--size-small);
  color: var(--accent-light);
}

.volume-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--size-small);
  color: var(--accent-light);
}

.vol-label { flex-shrink: 0; text-transform: uppercase; }

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background:
    linear-gradient(90deg,
      var(--accent),
      var(--support1)
    );
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 12px; width: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%,
    rgba(255,255,255,0.9),
    var(--accent-light) 60%,
    var(--accent) 100%
  );
  margin-top: -4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

input[type=range]::-moz-range-track {
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--support1));
  border-radius: 2px;
}

input[type=range]::-moz-range-thumb {
  height: 12px; width: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%,
    rgba(255,255,255,0.9),
    var(--accent-light) 60%,
    var(--accent) 100%
  );
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.microblog-box {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.18);
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.microblog-label {
  
  background: linear-gradient(180deg,
    var(--accent-light) 0%,
    var(--accent) 45%,
    var(--accent-dark) 100%
  );
  padding: 4px 10px;
  font-family: var(--font-header);
  font-size: var(--size-small);
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.microblog-label::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.9), rgba(0,0,0,0.1));
  flex-shrink: 0;
}

.microblog-label a { color: white; font-size: var(--size-small); text-decoration: none; opacity: 0.85; }

#rss-feed {
  background: linear-gradient(180deg, var(--bglight) 0%, var(--bgdark) 100%);
  padding: 8px;
  overflow-y: scroll;
  flex: 1;
  font-size: var(--size-small);
}

.rss-date {
  font-size: var(--size-small);
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  margin-bottom: 3px;
}

.rss-desc {
  font-size: var(--size-small);
  color: var(--text);
  line-height: 1.5;
}

.sidebar-imgs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.sidebar-img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  display: block;
}

.home-wrap { max-width: 80%; margin: auto; }
.home-logo-wrap { margin-bottom: 28px; }
.home-logo { max-width: 280px; height: auto; display: block; }

.home-bio { line-height: 1.85; margin-bottom: 48px; }
.home-bio p { margin-bottom: 1.2em; }
.home-bio p:last-child { margin-bottom: 0; }

.currently-label, .interests-label, .finds-label, .buttons-label {
  font-family: var(--font-header);
  font-size: var(--size-small);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 18px;
}

.currently-grid {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 12px;
  margin-bottom: 48px;
  align-items: baseline;
}

.currently-grid .key { text-transform: uppercase; color: var(--accent); letter-spacing: 0.04em; }
.currently-grid .val { color: var(--text); line-height: 1.5; }

.finds-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.finds-grid img { height: auto; max-width: 45%; }

.buttons-wall { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 40px; }
.buttons-wall img { width: 88px; height: 31px; image-rendering: pixelated; display: block; }
.buttons-wall a { display: block; line-height: 0; }
.buttons-wall a:hover img { opacity: 0.85; outline: 1px solid var(--accent); }

#home-scene, #world { width: 100%; height: 100%; display: block; }

.blog-label {
  font-family: var(--font-header);
  font-size: var(--size-small);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 48px;
}

.post-date {
  font-family: var(--font-header);
  font-size: var(--size-small);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.post-title {
  font-family: var(--font-header);
  font-size: var(--size-h1);
  line-height: 1.25;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 36px;
  word-break: break-word;
}

.post-body { line-height: 1.8; }
.post-body p { margin-bottom: 1.4em; }
.post-body p:last-child { margin-bottom: 0; }

.post-img { margin: 36px 0; }
.post-img img { width: 15%; display: block; }
.post-img figcaption { font-size: var(--size-small); letter-spacing: 0.1em; color: var(--accent); margin-top: 8px; }

hr.section-break { border: none; border-top: 1px solid var(--accent); margin: 48px 0; }

.meta { color: var(--accent); font-size: var(--size-small); margin-bottom: 20px; }

.display-images { display: flex; gap: 16px; margin-bottom: 24px; }
.display-images img { width: 50%; }

.demo-audio { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.demo-audio span { font-family: var(--font-header); font-size: var(--size-small); color: var(--accent-light); text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.demo-audio audio { width: 100%; accent-color: var(--accent); }

.category-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }

.stars { color: var(--support1); font-size: var(--size-h1); letter-spacing: 1px; margin-top: -11px; }
.stars .on { color: var(--accent); }

.score-summary {
  background: linear-gradient(180deg, var(--bglight) 0%, var(--bgdark) 100%);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 32px;
  font-family: var(--font-header);
  font-size: var(--size-normal);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.5) inset, 0 4px 12px rgba(0,0,0,0.1);
}

.score-summary p { margin: 3px 0; }
.score-summary span { color: var(--accent-dark); display: inline-block; width: 160px; }

.yt-grid { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.yt-grid iframe { width: 100%; height: 315px; border: 2px solid var(--border); border-radius: 8px; }

.intro { line-height: 1.8; margin-bottom: 48px; }
.link { display: flex; gap: 12px; padding: 8px 0; line-height: 1.6; align-items: baseline; }
.link a { color: var(--accent); white-space: nowrap; }
.description { color: var(--text); }

.music-title { font-family: var(--font-header); font-size: var(--size-h1); color: var(--accent); margin-bottom: 16px; line-height: 1.1; }
.lore { line-height: 1.8; color: var(--text); max-width: 600px; opacity: 0.85; margin-bottom: 40px; }

.tracks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: linear-gradient(180deg, var(--bglight) 0%, var(--bgdark) 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.5) inset, 0 4px 16px rgba(0,0,0,0.12);
}

.track-music-title { font-size: var(--size-sub); color: var(--accent); }
.track-date { font-size: var(--size-small); color: var(--accent-light); margin-bottom: 4px; }
.track iframe { display: block; width: 100%; height: 60px; border: none; border-radius: 6px; }

.page-inner { padding: 32px 36px; }