      :root {
        --font-display: "EB Garamond", serif;
        --font-body: "Helvetica Neue", Arial, sans-serif;
        --color-primary: #FA502E;
        --color-text: #333333;
        --color-bg: #F6F5E8;
        --color-link: #C53F29;
        --color-button-bg: #008080;
        --color-button-hover-bg: #025757;
        --color-button-text: #fff;
        --color-button-hover-text: #fff;
        --max-width: 1050px;
      }

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

      body {
        font-family: var(--font-body);
        font-size: 1rem;
        line-height: 1.6;
        background-color: var(--color-bg);
        font-optical-sizing: auto;
        color: var(--color-text);
        padding: 2.5rem 0 8rem 0;
        cursor: url("classic-pointer.cur"), auto !important;
      }

      #container {
        max-width: var(--max-width);
        margin: 0 auto;
      }

      header {
        padding: 0.5rem 0 3rem;
      }

      .marquee {
        width: 20%;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        margin-left: 0;
      }

      .marquee h1 {
        font-family: "Epilogue", sans-serif;
        font-weight: 480;
        font-size: 1.2rem;
        color: var(--color-primary);
        line-height: 1.4;
        display: inline-block;
        padding-left: 100%;
        animation: scroll-left 22s linear infinite;
        margin: 2rem 0 0 0;
        white-space: nowrap;
      }

      .marquee h1 span {
        display: inline-block;
        margin-right: 1rem;
      }

      @keyframes scroll-left {
        0% {
          transform: translateX(0%);
        }
        100% {
          transform: translateX(-100%);
        }
      }

      h2 {
        font-size: 1.2rem;
        max-width: 550px;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        font-family: "Epilogue", sans-serif;
        font-weight: 460;
        letter-spacing: -0.01rem;
      }

      h3 {
        font-size: 1rem;
        font-weight: 380;
        max-width: 480px;
        font-family: "Epilogue", sans-serif;
      }

      p {
        font-size: 0.9rem;
        margin: 0.75rem 0;
      }

      ul {
        font-size: 0.9rem;
        padding-left: 1.2rem;
        margin: 0.75rem 0;
      }

      ul li {
        margin-bottom: 0.5rem;
      }

      img {
        display: block;
        width: 70%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        margin: 2rem 0;
      }

      a {
        color: var(--color-link);
        text-decoration: underline;
        word-break: break-word;
      }
      
      .sidebar-faves a{
        color: #008080;
      }
      
      .sidebar-faves h3{
        font-family: "Epilogue", sans-serif;
        font-weight: 400;
      }

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem; /* space between icon and text */
  margin-top: 1rem;
  padding: 0 20px;
  height: 40px;
  border-radius: 0.2rem;
  background-color: var(--color-button-bg);
  color: var(--color-button-text);
  text-decoration: none;
  font-size: 0.8rem;
  outline: 1px solid #000000;
  box-shadow:
    inset 1px 1px #fff,           /* top-left white highlight */
    inset -1px -1px #404040,      /* bottom-right shadow */
    2px 2px #1E4844;              /* external drop shadow for lift */
  transition: background 0.3s, color 0.3s;
}

.button:hover {
  background-color: var(--color-button-hover-bg);
  color: var(--color-button-hover-text);
  box-shadow:
    inset 1px 1px #fff,
    inset -1px -1px #404040,
    2px 2px var(--color-button-bg);
}

.button-icon {
  display: inline-block;
  line-height: 1;
}

.button-icon img {
  display: block;
  color: #fff;
  width: 14px;
  height: 14px;
  filter: invert(100%);
}

      footer {
        padding: 4rem  0 4rem 0;
      }

      footer p {
        font-size: 0.8rem;
        margin-top: 0.5rem;
      }

      .content-wrapper {
        display: flex;
        gap: 5rem;
      }

      .main-content {
        flex: 1;
      }

      .sidebar {
        width: 260px;
        flex-shrink: 0;
        font-size: 0.8rem;
      }

      .sidebar p {
        font-size: 0.8rem;
      }
      
      .sidebar-faves {
        width: 100%;
        background: #FFFEF2;
        padding: 1rem;
        border-radius: 0.3rem;
        border: 1px solid #D7D7CC;
        margin-bottom: 1.5rem;
      }

      @media (max-width: 800px) {
        .content-wrapper {
          flex-direction: column;
        }

        .sidebar {
          width: 100%;
          margin-top: 2rem;
        }
      }

      @media (max-width: 600px) {
        body {
          padding: 1rem;
        }

        .marquee {
          width: 80%;
        }

        .marquee h1 {
          font-size: 1.15rem;
        }

        h2 {
          font-size: 1.2rem;
        }

        p,
        ul {
          font-size: 0.9rem;
        }

        h3 {
          font-size: 1rem;
        }

        .button {
          font-size: 0.9rem;
        }
      }

      @media (max-width: 300px) {
        img {
          width: 100%;
          max-width: 300px;
        }
      }

      .sidebar-image {
        width: 100%;
        max-width: 100%;
        padding: 0.5rem;
        border-radius: 0.3rem;
        border: solid 1px #D7D7CC;
        height: auto;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
        overflow: hidden;
      }

      .sidebar-image img {
        width: 100%;
        max-width: 100%;
        border-radius: 0.3rem;
        height: auto;
        margin: 0;
        display: block;
      }

.sidebar-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 2px 2px;
  opacity: 0.16;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.sidebar-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  mix-blend-mode: screen;
  filter: url(#rgb-shift);
  pointer-events: none;
  opacity: 0.4;
}



.dock {
  position: fixed;
  display: flex;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  z-index: 9999;
  height: 4.5rem;
  background: #fde1cd;
    background-image: repeating-linear-gradient(
    to bottom,
    #777 0,
    #ccc 1px,
    #fde1cd 1px,
    #fde1cd 3px
  );
  border: 1px solid #c0c0c0;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0 0 0.5rem 0;
}

.dock-icon {
  border: none;
  width: 100%;
  padding: 0 2rem;
  cursor: pointer;
  height: 4.0rem;
  font-size: 0.8rem;
  transition: transform 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 
    inset -1px -1px 0 #fff,   /* bottom + right highlight */
    inset 1px 1px 0 #bababa;  /* top + left shadow */
}

.dock-icon:first-child {
  border-left: none;
}

.dock-icon:hover {
  background: #fafafa;
}

.dock-item {
    background: #e8f0e2;
}

.dock-info {
  background: #f4f3ea;
}

.dock-icon img {
  width: 60px;
  height: 20px;
  margin: 0 auto 0.3rem auto;
  border: 0;
}

@media (max-width: 600px) {
  .dock {
    left: 0;
    transform: none;
    width: 100%;
    justify-content: space-around;
  }

  .dock-icon {
    flex: 1;
    width: 100%;
    padding: 0;
  }
}

      .colon {
        animation: blink 1s steps(1, start) infinite;
      }

      @keyframes blink {
        50% {
          opacity: 0;
        }
      }

.clock {
  width: 70px;
  font-weight: bold;
  text-align: right;
  font-size: 0.8rem;
  border-bottom: 1px solid #D7D7CC;
}

  #dateDisplay {
    text-align: right;
    margin: 0;
    width: 70px;
    font-size: 0.8rem;
    padding-top:0.3rem;
  }

.burst {
  color: var(--color-primary);
  padding-right: 5px;
}

.project-list {
  padding: 0.5rem 0;
  list-style: none;
}

.project-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0;
}

.project-list li::before {
  content: '░';
  color: #008080;
  position: absolute;
  left: 0;
  top: 0;
}

.music-player {
  width: 100%;
  background: #0dafaf;
  color: #fff;
  padding: 1rem;
  border-radius: 0.3rem;
  border: 1px solid #D7D7CC;
  font-size: 0.8rem;
}

.music-player h3 {
  margin-bottom: 1rem;
}

.music-player p {
  margin:0;
}

.player-controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #008080;
  border: 1px solid #000000;
  position: relative;
  cursor: pointer;
  border-radius: 0.2rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background-color: var(--color-primary);
  transition: width 0.1s linear;
  pointer-events: none;
}

iframe {
  display: none;
}

.player-controls button {
  background: #F6F5E8;
  color: #222;
  font-size: 1em;
  padding:0 1em;
  height: 2.7em;
}

.player-controls button:hover {
  background: #025757;
}