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

:root {
  --bg: #ececec;
  --text: #1c1c1c;
  --pink: #f2a9cb;
  --pink-soft: #efc1d9;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Roboto Mono', monospace;
}

.top {
  position: fixed;
  inset: 0 0 auto 0;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 36px;
}

.top-left {
  justify-self: start;
  border: 0;
  background: transparent;
  font: 700 33px/1 'Chewy', cursive;
  color: #101010;
  cursor: pointer;
}
.top-title {
  justify-self: center;
  text-decoration: none;
  color: #101010;
  font: 700 66px/1 'Chewy', cursive;
}
.top-right { justify-self: end; }
.top-right img { width: 28px; opacity: .24; }

.stage {
  min-height: 100vh;
  position: relative;
  padding-top: 160px;
}

.folder-cluster {
  position: absolute;
  left: 225px;
  top: 270px;
  width: 520px;
  height: 360px;
}
.folder-item { position: absolute; text-decoration: none; color: #121212; }
.folder-img { width: 68px; display: block; }
.folder-name {
  margin-top: 8px;
  font: 700 30px/1 'Chewy', cursive;
  text-align: center;
}
.ghost { pointer-events: none; opacity: .55; }
.ghost .folder-name { visibility: hidden; }

.p1 { left: 0; top: 114px; }
.p2 { left: 190px; top: 114px; }
.p3 { left: 380px; top: 114px; }
.p4 { left: 95px; top: 0; }
.p5 { left: 285px; top: 0; }
.p6 { left: 95px; top: 228px; }
.p7 { left: 285px; top: 228px; }
.p8 { left: 190px; top: 340px; }

.intro {
  position: absolute;
  left: 820px;
  top: 300px;
  width: 460px;
  font: 700 34px/1.55 'Chewy', cursive;
}

.mascot-area {
  position: fixed;
  right: 270px;
  bottom: 62px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.bubble {
  background: #ea8eb8;
  color: #fefefe;
  border-radius: 26px;
  padding: 16px 32px;
  font: 700 32px/1 'Chewy', cursive;
}
.me { width: 120px; }

.fav-text {
  position: fixed;
  top: 88px;
  left: 36px;
  opacity: 0;
  transition: opacity .2s ease;
  font: 700 26px/1 'Chewy', cursive;
}
.fav-text.show { opacity: 1; }

.simple-page .content-card {
  width: min(860px, 90vw);
  margin: 220px auto 0;
  background: #fff9;
  border-radius: 18px;
  padding: 28px;
  font: 700 36px/1.5 'Chewy', cursive;
}

@media (max-width: 1200px) {
  .top-title { font-size: 42px; }
  .top-left { font-size: 22px; }
  .folder-cluster { left: 50%; transform: translateX(-50%); top: 220px; }
  .intro { position: static; width: min(90vw, 680px); margin: 620px auto 0; text-align: center; }
  .mascot-area { right: 20px; }
  .bubble { font-size: 24px; }
}
