@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap");

:root{
  --bg: #b8c1ec;
  --paper: #fef6e4;
  --paper-alt: #eebbc3;
  --text: #232946;
  --muted: #5f6c7b;
  --accent: #DE7C8B;
  --accent-strong: #8b96d7;
  --link-visited: #a29bfe;
  --line: #232946;
  --shadow: 0 18px 28px rgba(0,0,0,.4);
  --shadow: 5px 5px 0px #232946;
  --spectral-1: #eebbc3;
  --spectral-2: #b8c1ec;
  --spectral-3: #81deea;
  --spectral-4: #f7d794;
  --radius: 18px;
  --mono: "IBM Plex Mono", Menlo, Consolas, monospace;
  --sans: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --max: 1040px;
}





html.theme-pastel-flat{
  --bg: #1a1b26;
  --paper: #24263a;
  --paper-alt: #2d3046;
  --text: #f7f6ff;
  --muted: #cfc7e6;
  --accent: #9fe6ff;
  --accent-strong: #f6b7df;
  --link-visited: #c7b8ff;
  --line: rgba(211,199,255,.28);
  --shadow: 0 18px 28px rgba(0,0,0,.4);
  --spectral-1: #f6b7df;
  --spectral-2: #9fe6ff;
  --spectral-3: #c7b8ff;
  --spectral-4: #ffe0b8;
}

html.theme-digital-sunset{
  --bg: #b8c1ec;
  --paper: #fef6e4;
  --paper-alt: #eebbc3;
  --text: #232946;
  --muted: #5f6c7b;
  --accent: #DE7C8B;
  --accent-strong: #8b96d7;
  --link-visited: #a29bfe;
  --line: #232946;
  --shadow: 5px 5px 0px #232946;
  --spectral-1: #eebbc3;
  --spectral-2: #b8c1ec;
  --spectral-3: #81deea;
  --spectral-4: #f7d794;
}

*{ box-sizing: border-box; }
html,body{ min-height:100%; }
html{ -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  letter-spacing: .15px;
  overflow-x:hidden;
  position: relative;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity:.65;
  pointer-events:none;
}

body::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='180' viewBox='0 0 420 180'%3E%3Crect width='420' height='180' fill='none'/%3E%3Cg fill='%23ffffff' fill-opacity='0.6'%3E%3Crect x='18' y='96' width='28' height='10'/%3E%3Crect x='42' y='86' width='36' height='20'/%3E%3Crect x='78' y='90' width='40' height='18'/%3E%3Crect x='118' y='96' width='30' height='10'/%3E%3Crect x='168' y='76' width='26' height='10'/%3E%3Crect x='192' y='66' width='40' height='22'/%3E%3Crect x='232' y='70' width='46' height='20'/%3E%3Crect x='278' y='76' width='32' height='10'/%3E%3Crect x='320' y='104' width='22' height='8'/%3E%3Crect x='338' y='94' width='30' height='16'/%3E%3Crect x='368' y='98' width='28' height='12'/%3E%3C/g%3E%3Cg fill='%23e6f0ff' fill-opacity='0.75'%3E%3Crect x='22' y='100' width='24' height='6'/%3E%3Crect x='48' y='90' width='28' height='14'/%3E%3Crect x='84' y='92' width='32' height='14'/%3E%3Crect x='122' y='100' width='26' height='6'/%3E%3Crect x='172' y='80' width='20' height='6'/%3E%3Crect x='198' y='70' width='30' height='14'/%3E%3Crect x='236' y='74' width='34' height='14'/%3E%3Crect x='282' y='80' width='24' height='6'/%3E%3Crect x='324' y='108' width='18' height='4'/%3E%3Crect x='342' y='98' width='22' height='10'/%3E%3Crect x='370' y='102' width='22' height='8'/%3E%3C/g%3E%3Cg fill='%23f7fbff' fill-opacity='0.7'%3E%3Crect x='46' y='118' width='20' height='6'/%3E%3Crect x='64' y='110' width='28' height='12'/%3E%3Crect x='92' y='112' width='32' height='10'/%3E%3Crect x='124' y='118' width='22' height='6'/%3E%3Crect x='210' y='120' width='18' height='6'/%3E%3Crect x='226' y='112' width='26' height='12'/%3E%3Crect x='252' y='114' width='28' height='10'/%3E%3Crect x='280' y='120' width='20' height='6'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 420px 180px;
  background-position: 0 10%;
  opacity: .55;
  pointer-events:none;
  animation: clouds-float 9s ease-in-out infinite;
}

html.theme-pastel-flat body::before{
  background-image: none;
  opacity: 0;
}
img{ max-width:100%; height:auto; display:block; }
pre{ background: var(--paper-alt); border: 1px solid var(--line); padding: 14px; border-radius: 12px; overflow:auto; }
code{ font-family: var(--mono); font-size: .9em; background: var(--paper-alt); border: 1px solid rgba(255,255,255,.14); border-radius: 6px; padding: 2px 6px; }
a{ color: var(--accent); text-decoration:none; }
a:hover{ text-decoration:underline; }
a:visited{ color: var(--link-visited); }
a:focus-visible{ outline: 2px dashed var(--accent); outline-offset:4px; }

.container{
  width: 100%;
  max-width: min(100vw, var(--max));
  margin: 0 auto;
  padding: 28px 24px 60px;
  position:relative;
  z-index:1;
}

main,
section,
.panel,
.home-grid,
.home-hero,
.project-grid,
.hero-card,
.card{
  max-width: 100%;
}

.home-grid > *,
.home-hero > *,
.project-grid > *,
.blog-layout > *{
  min-width: 0;
}

.skip{
  position:absolute;
  left:-9999px;
  top:0;
}
.skip:focus{
  left: 12px;
  top: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 8px;
  z-index: 999;
}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand-mark{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--paper-alt) url("/assets/img/furrygem.jpg") center / cover no-repeat;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  transition: background-image .2s ease-in-out;
}
.brand-mark:hover{
  background-image: url("/assets/img/fang.jpg");
}
.brand h1{
  margin:0;
  font-size: 18px;
  letter-spacing: .8px;
  text-transform: lowercase;
}
.brand .tag{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

.nav{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text);
  cursor:pointer;
  appearance: none;
}
.pill:visited{ color: var(--text); }
.pill .dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

html.theme-pastel-flat .pill .dot{
  background: var(--accent);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
  background: var(--paper);
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  cursor:pointer;
}
.btn:visited{ color: var(--text); }
.btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,.25);
  color: var(--accent);
}

html.theme-pastel-flat .btn{
  background: #2f3248;
  border-color: rgba(211,199,255,.45);
  color: #fff6ff;
}
html.theme-pastel-flat .btn--ghost{
  border-color: rgba(159,230,255,.6);
  color: var(--accent);
}
.text-link{
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.eyebrow{
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--muted);
  margin:0 0 6px;
}
.micro{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}
.badge{
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.panel{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

html.theme-pastel-flat .panel{
  background: var(--paper);
  border-color: rgba(211,199,255,.32);
  box-shadow: 0 18px 30px rgba(0,0,0,.4);
}

.home-grid{
  display:grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.home-grid__full{ grid-column: 1 / -1; }
@media (max-width: 860px){
  .home-grid{ grid-template-columns: 1fr; }
  .panel{ padding: 22px; }
}

@media (max-width: 780px){
  .header{ flex-direction:column; align-items:flex-start; gap: 10px; }
  .nav{ gap: 6px; }
  .pill{ padding: 6px 10px; font-size: 11px; }
  .home-hero{ gap: 20px; }
  .hero-actions{ align-items:stretch; }
  .hero-actions .btn{ min-width: 0; }
}

@media (max-width: 640px){
  .home-hero{ grid-template-columns: 1fr; }
  .hero-tags{ gap: 6px; }
  .hero-actions{ flex-direction:column; }
  .hero-actions .btn,
  .hero-actions .btn--ghost,
  .hero-actions .text-link{
    width:100%;
    text-align:center;
    display:block;
  }
  .marquee-track{ padding: 10px 14px; }
}

@media (max-width: 720px){
  .container{ padding: 24px 18px 50px; }
  .home-grid{ gap: 16px; }
  .panel{ border-radius: 16px; }
}

@media (max-width: 520px){
  .container{ padding: 18px 14px 40px; }
  .nav{ flex-direction:column; align-items:stretch; width:100%; gap:6px; }
  .nav .pill{ width:100%; justify-content:center; }
  .section-head{ flex-direction:column; align-items:flex-start; }
  .project-grid{ grid-template-columns: 1fr; }
  .site-button{ flex-direction:column; align-items:flex-start; }
  .site-button code{ width:100%; }
  .home-hero__intro h2{ font-size: clamp(24px, 9vw, 34px); }
  .hero-card,
  .panel{ padding: 20px; }
}

.home-hero{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 32px;
  background: var(--paper-alt);
}

html.theme-pastel-flat .home-hero{
  background: var(--paper-alt);
}
.home-hero__intro h2{
  margin: 0 0 14px;
  font-size: clamp(26px, 5vw, 44px);
  line-height: 1.2;
}
.home-hero__intro h2 span{ color: var(--accent); }
.home-hero__intro p span{ color: var(--accent); }
.pronouns{
  display:inline-flex;
  align-items:center;
  padding: 2px 10px;
  margin-left: 6px;
  
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: var(--paper);
}
.pronouns__text{
  background-image: linear-gradient(90deg,#55cdfc,#f7a8b8,#f0f0f0,#f7a8b8,#55cdfc);
  background-size: 200% 100%;
  animation: pronoun-text 2.5s steps(8) infinite alternate;
  color: transparent;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color: transparent;
  image-rendering: pixelated;
  font-family: var(--mono);
  font-size: .9em;
}
.hero-tags{
  list-style:none;
  padding:0;
  margin: 12px 0;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

html.theme-pastel-flat .hero-tags li{
  color: var(--spectral-1);
}
html.theme-pastel-flat .hero-tags li:nth-child(2n){ color: var(--spectral-2); }
html.theme-pastel-flat .hero-tags li:nth-child(3n){ color: var(--spectral-3); }
html.theme-pastel-flat .hero-tags li:nth-child(4n){ color: var(--spectral-4); }
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
}
.hero-actions .btn{ flex: 1 1 auto; min-width: 150px; text-align:center; }
.hero-actions .btn.btn--ghost{ border-style:dashed; }
.home-hero__board{
  display:grid;
  gap: 16px;
}
.hero-card{
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 18px;
  background: var(--paper);
  display:flex;
  flex-direction:column;
  gap: 10px;
}

html.theme-pastel-flat .hero-card{
  border-color: rgba(211,199,255,.32);
  background: #232539;
}
.hero-card__title{
  font-size: 18px;
  font-weight:600;
  margin:0;
  color: var(--text);
}
.hero-card__title a{
  color: inherit;
  text-decoration:none;
}
.hero-card__title a:hover{ text-decoration: underline; }
.hero-meta{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.hero-meta li{
  display:flex;
  justify-content:space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 12px;
  flex-wrap: wrap;
}
.hero-meta span{ color: var(--muted); }
.hero-meta strong{ font-weight:500; color: var(--text); min-width:0; }

.section-head{
  display:flex;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}
.section-head h3{
  margin:0;
  font-size: 24px;
}

.filter-row{
  display:flex;
  flex-wrap:wrap;
  gap: 6px;
}
.filter-chip{
  font-family: var(--mono);
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 4px 10px;
  background: transparent;
  color: var(--text);
  cursor:pointer;
}
.filter-chip.is-active{
  background: var(--paper-alt);
  border-color: var(--accent);
  color: var(--accent);
}

html.theme-pastel-flat .filter-chip.is-active{
  background: #2f3248;
  border-color: rgba(159,230,255,.65);
  color: #fff6ff;
}

.project-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.project-card{
  display:block;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 16px;
  background: var(--paper);
  color: var(--text);
}

html.theme-pastel-flat .project-card{
  border-color: rgba(211,199,255,.32);
  background: #232539;
}
.project-card:visited{ color: var(--text); }
.project-card .title{ margin: 6px 0 4px; font-weight:600; }
.project-card .desc{ margin:0; color: var(--muted); font-size: 13px; }
.project-card__thumb{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--paper-alt);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 22px;
  color: var(--accent);
}
.project-card__meta{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 6px;
}
.project-card__tags{
  display:flex;
  flex-wrap:wrap;
  gap: 6px;
  margin-top: 8px;
}
.project-card__tags span{
  font-family: var(--mono);
  font-size: 11px;
  background: var(--paper-alt);
  padding: 2px 8px;
  border-radius: 999px;
}

html.theme-pastel-flat .project-card__tags span{
  background: #2f3248;
  border: 1px solid rgba(211,199,255,.35);
  color: #fff6ff;
}

.stacked-list{
  display:grid;
  gap: 12px;
}
.stacked-list div{
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 10px;
}
.stacked-list div:last-child{ border-bottom:0; padding-bottom:0; }
.stacked-list dt{
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  margin:0 0 4px;
}
.stacked-list dd{
  margin:0;
  font-weight:500;
}

.site-button{
  margin: 8px 0 4px;
  display:flex;
  gap: 14px;
  align-items:flex-start;
}
.site-button img{
  width: 88px;
  height: 31px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  image-rendering: pixelated;
}
.site-button code{
  display:block;
  margin-top: 4px;
  word-break: break-all;
  white-space: pre-wrap;
}

.marquee{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  overflow:hidden;
}

html.theme-pastel-flat .marquee{
  border-color: rgba(211,199,255,.32);
  box-shadow: inset 0 0 16px rgba(159,230,255,.12);
}
.marquee-track{
  display:flex;
  gap: 14px;
  padding: 12px 18px;
  width:max-content;
  animation: slide 28s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state: paused; }
.link-pill{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: var(--paper);
  font-size: 13px;
  color: var(--text);
}

html.theme-pastel-flat .link-pill{
  border-color: rgba(211,199,255,.32);
  background: #2f3248;
}
.link-pill span{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.list{
  display:flex;
  flex-direction:column;
  gap: 12px;
  margin-top: 14px;
}
.post-item{
  display:block;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 16px;
  background: var(--paper);
  color: var(--text);
}

html.theme-pastel-flat .post-item{
  border-color: rgba(211,199,255,.32);
  background: #232539;
}

.post-item:visited{ color: var(--text); }
.post-item .title{ margin:0 0 4px; font-weight:600; }
.post-item .meta{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.post-item .desc{ margin:8px 0 0; color: var(--muted); }

.hr{
  height:1px;
  background: rgba(255,255,255,.08);
  border:0;
}

.blog-layout{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
  margin-top: 20px;
}
@media (max-width: 900px){ .blog-layout{ grid-template-columns: 1fr; } }

.card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

html.theme-pastel-flat .card{
  background: var(--paper);
  border-color: rgba(211,199,255,.3);
  box-shadow: 0 18px 28px rgba(0,0,0,.4);
}
.card .inner{ padding: 24px; }
.sidebar .widget{
  display:flex;
  flex-direction:column;
  gap: 18px;
}

.kicker{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
}

.blog-search input{
  width:100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: var(--paper);
  color: var(--text);
}

.reading-progress{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background: rgba(255,255,255,.05);
  z-index: 999;
}
.reading-progress span{
  display:block;
  height:100%;
  width:0;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.toc{
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.toc button{
  border:0;
  background:none;
  text-align:left;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  padding:2px 0;
  cursor:pointer;
}
.toc button.is-active{ color: var(--accent); }

.anchor-btn{
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-family: var(--mono);
  color: var(--muted);
  margin-left: 6px;
  background: transparent;
}
.anchor-btn[data-copied="true"]{ color: var(--accent); border-color: var(--accent); }

.prose h1,
.prose h2,
.prose h3{ margin-top: 28px; }
.prose code{ background: var(--paper-alt); border-color: var(--line); }
.prose pre code{ background: transparent; border:0; padding:0; }

.footer{
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  position: relative;
  z-index: 2;
  background: color-mix(in srgb, var(--paper) 70%, transparent);
  backdrop-filter: blur(6px);
  padding: 3px 12px;
  border-radius: 12px;
}
.footer a{ color: var(--muted); }

.soju-bottle{
  position: absolute;
  right: 4px;
  bottom: 14px;
  width: 72px;
  height: 140px;
  /*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='140' viewBox='0 0 72 140'%3E%3Crect width='72' height='140' fill='none'/%3E%3Cg shape-rendering='crispEdges'%3E%3Crect x='30' y='8' width='12' height='8' fill='%232a3f5a'/%3E%3Crect x='26' y='16' width='20' height='10' fill='%234a6f7f'/%3E%3Crect x='24' y='26' width='24' height='12' fill='%2388c7b6'/%3E%3Crect x='20' y='38' width='32' height='16' fill='%2388c7b6'/%3E%3Crect x='18' y='54' width='36' height='58' fill='%23aee6d9'/%3E%3Crect x='20' y='56' width='32' height='54' fill='%23bff0e3'/%3E%3Crect x='22' y='70' width='28' height='26' fill='%23e9f7f4'/%3E%3Crect x='24' y='74' width='24' height='18' fill='%23ffffff'/%3E%3Crect x='26' y='96' width='20' height='10' fill='%23f6b7df'/%3E%3Crect x='28' y='98' width='16' height='6' fill='%23ffd1e9'/%3E%3Crect x='22' y='108' width='28' height='8' fill='%239fe6ff'/%3E%3Crect x='24' y='110' width='24' height='4' fill='%23c9f1ff'/%3E%3Crect x='18' y='112' width='36' height='10' fill='%2388c7b6'/%3E%3Crect x='20' y='114' width='32' height='6' fill='%239fe6d5'/%3E%3Crect x='16' y='122' width='40' height='10' fill='%2367a18f'/%3E%3Crect x='18' y='124' width='36' height='6' fill='%2376b5a2'/%3E%3Crect x='24' y='18' width='4' height='98' fill='%2377b3a6'/%3E%3Crect x='44' y='18' width='4' height='98' fill='%2377b3a6'/%3E%3C/g%3E%3C/svg%3E");*/
  background-image: url('/assets/img/soju.png');
  background-repeat: no-repeat;
  background-size: contain;
  image-rendering: pixelated;
  opacity: .95;
  pointer-events: auto;
  display: block;
  z-index: 3;
  animation: soju-bob .9s steps(2) infinite alternate;
}

.ground{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  background-color: rgba(120, 140, 190, .25);
  pointer-events: none;
  z-index: 0;
}
.ground img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  transform: translateY(calc(var(--ground-parallax, 0px)));
  will-change: transform;
}
/*
.ground::before{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  height: 80px;
  background: linear-gradient(180deg, rgba(226,231,244,0), rgba(226,231,244,0.55), rgba(120,140,190,0.15));
  pointer-events: none;
}
  */

.button88 img{
  width: 88px;
  height: 31px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  image-rendering: pixelated;
}

@media (max-width: 640px){
  .header{ flex-direction:column; align-items:flex-start; gap: 10px; }
  .nav{ width:100%; }
}

@media (max-width: 560px){
  .footer{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 520px){
  .soju-bottle{
    right: 10px;
    bottom: 10px;
    width: 56px;
    height: 110px;
  }
}

@keyframes slide{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@keyframes pronoun-text{
  0%{ background-position:0% 50%; }
  100%{ background-position:100% 50%; }
}

@keyframes clouds-float{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
  100%{ transform: translateY(0); }
}

@keyframes soju-bob{
  0%{ transform: translateY(+5px); transform: rotate(-9deg);}
  100%{ transform: translateY(-5px); transform: rotate(9deg);}
}
