@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/syne-v24-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../assets/fonts/syne-v24-latin-800.woff2') format('woff2');
}

@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/caveat-v23-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/caveat-v23-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../assets/fonts/dm-sans-v17-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/dm-sans-v17-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Swanky and Moo Moo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/swanky-and-moo-moo-v24-latin-regular.woff2') format('woff2');
}


:root {
  --red: #E8241A;
  --blue: #1A4CE8;
  --yellow: #F5C800;
  --green: #2ECC40;
  --white: #FFFFFF;
  --black: #080808;

  --font-display: 'Syne', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;
  --font-marker: 'Swanky and Moo Moo', cursive;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.2);

  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.45);

  --radius: 18px;
  --radius-sm: 10px;
  --content-max: 640px;
  --nav-height: 62px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}
html {
  scrollbar-color: #ffff18 #080808;
  scrollbar-width: auto;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #080808;
}

::-webkit-scrollbar-thumb {
  background: #ffff18;
  border-radius: 100px;
  border: 3px solid #080808;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}

::-webkit-scrollbar-corner {
  background: #080808;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 999;
  padding: 12px 20px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-name {
  font-family: var(--font-marker);
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.nav-name:hover {
  color: var(--text-primary);
}

.nav-est {
  font-family: var(--font-marker);
  font-size: 1.1rem;
  color: var(--text-secondary);
}



.page-main {
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: 60px 20px 0;
}

.section-centered {
  text-align: center;
}



.type-display {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
}

.type-hand {
  font-family: var(--font-hand);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
}

.type-marker {
  font-family: var(--font-marker);
  color: var(--text-primary);
}

.page-title {
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 28px;
}

.lead {
  font-family: var(--font-marker);
  font-size: clamp(1rem, 3vw, 1.35rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin-inline: auto;
}



.deco {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  animation: float linear infinite;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.deco-scroll {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: float linear infinite;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

@keyframes float {
  0%   { transform: translateY(0) rotate(0deg); }
  33%  { transform: translateY(-12px) rotate(6deg); }
  66%  { transform: translateY(7px) rotate(-4deg); }
  100% { transform: translateY(0) rotate(0deg); }
}



.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: background 0.3s var(--ease),
              border-color 0.3s var(--ease),
              transform 0.3s var(--ease);
}

.card:hover,
.card:focus-within {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

a.card {
  display: block;
  text-decoration: none;
  color: inherit;
}


.site-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 36px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.5);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h2 {
  font-family: var(--font-marker);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-col a {
  font-family: var(--font-marker);
  font-size: 1.05rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
  width: fit-content;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-marker);
  font-size: 1rem;
  color: var(--text-primary);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 8px;
}



@media (max-width: 560px) {
  .site-header {
    padding: 12px 18px;
  }

  .section {
    padding: 48px 16px 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 20px 28px;
    gap: 20px;
  }

  .footer-copy {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  overflow: hidden;
  text-align: center;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  overflow: hidden;
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 3;
}

.hero-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: invert(1);
  margin: 0 auto 20px;
}

.hero-welcome {
  font-family: var(--font-marker);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 0.93;
  letter-spacing: -0.02em;
}

.hero-port {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
}

.hero-folio {
  font-family: var(--font-hand);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
}

.hero-garden {
  font-family: var(--font-marker);
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--text-primary);
  margin-top: 8px;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-marker);
  font-size: 1rem;
  color: var(--text-primary);
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 3;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

.stickers-section {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
}

.stickers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 20px;
  max-width: 460px;
  margin-inline: auto;
  justify-items: center;
}

.stickers-grid > li {
  display: flex;
  justify-content: center;
}

.sticker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  max-width: 160px;
  text-decoration: none;
  color: inherit;
}

.sticker-item:hover .sticker-img,
.sticker-item:focus-visible .sticker-img {
  transform: scale(1.07) translateY(-4px);
}

.sticker-item.is-static:hover .sticker-img {
  transform: scale(1.04) translateY(-2px);
}

.sticker-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s var(--ease);
}

.sticker-label {
  font-family: var(--font-marker);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.2;
  white-space: nowrap;
}

.sticker-item:hover .sticker-label,
.sticker-item:focus-visible .sticker-label {
  color: var(--text-primary);
}

.made-section {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 100px;
  overflow: hidden;
}

.made-title-wrap {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
  width: 100%;
}

.made-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0 12px;
}

.made-sub {
  font-family: var(--font-marker);
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  color: var(--text-secondary);
}

.made-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  position: relative;
  z-index: 3;
  max-width: 480px;
  width: 100%;
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s var(--ease),
              border-color 0.3s var(--ease),
              transform 0.3s var(--ease);
}

.brand-item:hover,
.brand-item:focus-visible {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.brand-item img {
  height: 50px;
  object-fit: contain;
  max-width: 100%;
}

.brand-item span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (min-width: 720px) {
  .stickers-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 640px;
  }
}

@media (max-width: 560px) {
  .stickers-section {
    padding: 60px 16px;
  }

  .brands-grid {
    gap: 16px;
  }
}

  .sticker-img {
    width: 82px;
    height: 82px;
  }

  .sticker-item {
    max-width: 100px;
  }

  .brands-grid {
    gap: 16px;
  }

.me-hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 28px 80px;
  text-align: center;
  overflow: hidden;
}

.me-title {
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  position: relative;
  z-index: 3;
}

.me-word-get {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
}

.me-word-to {
  font-family: var(--font-marker);
  color: var(--text-primary);
}

.me-word-know {
  font-family: var(--font-hand);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
}

.me-photo {
  width: 170px;
  height: 170px;
  object-fit: cover;
  position: relative;
  z-index: 3;
  margin-bottom: 28px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5));
  clip-path: path('M85 0 C142 0 170 28 170 85 C170 142 142 170 85 170 C28 170 0 142 0 85 C0 28 28 0 85 0 Z');
  transition: transform 0.3s var(--ease);
}

.me-photo:hover {
  transform: scale(1.06) translateY(-4px);
}

.me-bio {
  font-family: var(--font-marker);
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.75;
  position: relative;
  z-index: 3;
}

.me-bio p + p {
  margin-top: 1.2em;
}

.me-title-sub {
  font-family: var(--font-marker);
  font-size: 0.6em;
  color: var(--text-primary);
}

.skill-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  transition: background 0.3s var(--ease),
              border-color 0.3s var(--ease),
              transform 0.3s var(--ease);
}

.skill-item:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.skill-name {
  font-family: var(--font-marker);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.star {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 24px;
  padding-bottom: 100px;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 80px;
  text-decoration: none;
  color: inherit;
}

.tool-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s var(--ease);
}

.tool-item:hover .tool-icon,
.tool-item:focus-visible .tool-icon {
  transform: scale(1.1) translateY(-3px);
}

.tool-name {
  font-family: var(--font-marker);
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.2;
  transition: color 0.2s var(--ease);
}

.tool-item:hover .tool-name,
.tool-item:focus-visible .tool-name {
  color: var(--text-primary);
}

.songs-hero {
  position: relative;
  z-index: 2;
  padding: 110px 28px 40px;
  text-align: center;
}

.songs-title {
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.songs-word-my {
  font-family: var(--font-hand);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
}

.songs-word-fav {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
}

.songs-word-artists {
  font-family: var(--font-marker);
  font-size: 1.1em;
  color: var(--text-primary);
}

.songs-intro {
  font-family: var(--font-marker);
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 6px;
  line-height: 1.6;
}

.songs-sub {
  font-family: var(--font-marker);
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  color: var(--text-primary);
  max-width: 400px;
  margin-inline: auto;
}

.artists-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 40px;
}

.artist-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s var(--ease),
              border-color 0.3s var(--ease),
              transform 0.3s var(--ease);
}

.artist-card:hover,
.artist-card:focus-visible {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.artist-rank {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.artist-photo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.artist-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.artist-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.artist-song {
  font-family: var(--font-marker);
  font-size: 1rem;
  color: var(--text-muted);
}

.artist-globe {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.artist-card:hover .artist-globe,
.artist-card:focus-visible .artist-globe {
  opacity: 1;
  transform: scale(1.15);
}

.songs-outro {
  font-family: var(--font-marker);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--text-primary);
  text-align: center;
  line-height: 1.6;
  padding: 8px 0 80px;
}
.anime-hero {
  position: relative;
  z-index: 2;
  padding: 110px 28px 50px;
  text-align: center;
}

.anime-title {
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.anime-word-my {
  font-family: var(--font-hand);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
}

.anime-word-anime {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
}

.anime-word-addiction {
  font-family: var(--font-marker);
  font-size: 1.15em;
  color: var(--text-primary);
}

.anime-intro {
  font-family: var(--font-marker);
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.6;
}

.anime-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.anime-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: background 0.3s var(--ease),
              border-color 0.3s var(--ease),
              transform 0.3s var(--ease);
}

.anime-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.anime-rank {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.anime-cover {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.anime-info {
  flex: 1;
  text-align: left;
}

.anime-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.anime-genre {
  font-family: var(--font-marker);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-sticker {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.stat-label {
  font-family: var(--font-marker);
  font-size: 1.05rem;
  color: var(--text-muted);
}

.northstar {
  padding-bottom: 80px;
}

.northstar-heading {
  font-family: var(--font-marker);
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.northstar-quote {
  font-family: var(--font-marker);
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.ghibli-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.ghibli-card:hover,
.ghibli-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.ghibli-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ghibli-body {
  display: block;
  padding: 18px;
}

.ghibli-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.cats-hero {
  position: relative;
  z-index: 2;
  padding: 110px 28px 30px;
  text-align: center;
}

.cats-title {
  font-size: clamp(2.6rem, 9vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.cats-word-world {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
}

.cats-word-of {
  font-family: var(--font-marker);
  font-size: 0.8em;
  color: var(--text-primary);
}

.cats-word-cats {
  font-family: var(--font-hand);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
}

.cats-intro {
  font-family: var(--font-marker);
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.6;
}

.cats-tap-hint {
  font-family: var(--font-marker);
  font-size: clamp(0.95rem, 2.8vw, 1.2rem);
  color: var(--text-muted);
  margin-top: 22px;
}

.cats-field-section {
  position: relative;
  z-index: 2;
}

.cats-field {
  position: relative;
  width: 100%;
  min-height: 900px;
  padding: 20px 0;
}

.cat-item {
  position: absolute;
}

.cat-button {
  display: block;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.cat-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s var(--ease);
}

.cat-button:hover .cat-img,
.cat-button:focus-visible .cat-img,
.cat-item.is-open .cat-img {
  transform: scale(1.08) translateY(-3px);
}

.cat-bubble {
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 230px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 14px 16px;
  font-family: var(--font-marker);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.45;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cat-item.is-open .cat-bubble {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.cat-bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #161616;
}

.cat-item.edge-left .cat-bubble {
  left: 0;
  transform: translateX(0) translateY(6px);
}

.cat-item.edge-left.is-open .cat-bubble {
  transform: translateX(0) translateY(0);
}

.cat-item.edge-left .cat-bubble::after {
  left: 30px;
  transform: translateX(0);
}

.cat-item.edge-right .cat-bubble {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(6px);
}

.cat-item.edge-right.is-open .cat-bubble {
  transform: translateX(0) translateY(0);
}

.cat-item.edge-right .cat-bubble::after {
  left: auto;
  right: 30px;
  transform: translateX(0);
}

.charity-section {
  padding-bottom: 100px;
}

.charity-heading {
  font-family: var(--font-marker);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 20px;
}

.charity-intro {
  font-family: var(--font-marker);
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  color: var(--text-primary);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.charity-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.charity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s var(--ease),
              border-color 0.3s var(--ease),
              transform 0.3s var(--ease);
}

.charity-card:hover,
.charity-card:focus-visible {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.charity-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 14px;
}

.charity-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
}

@media (max-width: 560px) {
  .cat-img {
    width: 92px;
    height: 92px;
  }

  .cat-bubble {
    width: 200px;
  }
}
.journal-hero {
  position: relative;
  z-index: 2;
  padding: 110px 28px 20px;
  text-align: center;
}

.journal-title {
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.journal-word-my {
  font-family: var(--font-hand);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
}

.journal-word-junk {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
}

.journal-word-journals {
  font-family: var(--font-marker);
  font-size: 1.1em;
  color: var(--text-primary);
}

.journal-sub {
  font-family: var(--font-marker);
  font-size: clamp(1rem, 3vw, 1.35rem);
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.journal-part {
  font-family: var(--font-marker);
  font-size: clamp(1.45rem, 5vw, 2rem);
  color: var(--text-primary);
  margin-top: 10px;
}

.carousel-section {
  position: relative;
  z-index: 2;
}

.carousel-wrap {
  position: relative;
  margin-top: 40px;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s var(--ease);
  will-change: transform;
}

.carousel-slide {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.carousel-img {
  width: auto;
  max-width: 88vw;
  max-height: 500px;
  object-fit: contain;
  margin-inline: auto;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
  padding-bottom: 4px;
}

.dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.dot.is-active {
  background: var(--white);
  transform: scale(1.3);
}

.carousel-arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}

.carousel-arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  transform: scale(1.12);
}

.carousel-arrow img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.5));
}

.tips-section {
  margin-top: 60px;
  padding-bottom: 100px;
}

.tips-heading {
  font-family: var(--font-marker);
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.4;
  color: var(--text-primary);
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tip-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 18px 16px;
  transition: background 0.3s var(--ease),
              border-color 0.3s var(--ease),
              transform 0.3s var(--ease);
}

.tip-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.tip-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.tip-text {
  font-family: var(--font-marker);
  font-size: clamp(1rem, 3vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: 4px;
}
.error-hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 28px 80px;
  text-align: center;
  overflow: hidden;
}

.error-sticker {
  width: 150px;
  height: 150px;
  object-fit: contain;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5));
  margin-bottom: 24px;
}

.error-title {
  font-size: clamp(1.9rem, 7vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}

.error-word-page {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
}

.error-word-not {
  font-family: var(--font-marker);
  color: var(--text-primary);
}

.error-word-found {
  font-family: var(--font-hand);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
}

.error-text {
  font-family: var(--font-marker);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 3;
}

.error-button {
  position: relative;
  z-index: 3;
  display: inline-block;
  font-family: var(--font-marker);
  font-size: 1.15rem;
  color: var(--text-primary);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  padding: 14px 32px;
  transition: background 0.3s var(--ease),
              border-color 0.3s var(--ease),
              transform 0.3s var(--ease);
}

.error-button:hover,
.error-button:focus-visible {
  background: var(--surface-hover);
  border-color: var(--white);
  transform: translateY(-3px);
}
.legal-hero {
  position: relative;
  z-index: 2;
  padding: 110px 28px 10px;
  text-align: center;
}

.legal-title {
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}

.legal-word-legal {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
}

.legal-word-and {
  font-family: var(--font-marker);
  color: var(--text-primary);
}

.legal-word-privacy {
  font-family: var(--font-hand);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
}

.dim-toggle {
  font-family: var(--font-marker);
  font-size: 1rem;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.3s var(--ease),
              border-color 0.3s var(--ease),
              color 0.3s var(--ease);
}

.dim-toggle:hover,
.dim-toggle:focus-visible {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

#bgCanvas {
  transition: opacity 0.5s var(--ease);
}

body.is-dimmed #bgCanvas {
  opacity: 0.2;
}

.legal-section {
  padding-bottom: 100px;
}

.legal-panel {
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.legal-block + .legal-block {
  margin-top: 34px;
}

.legal-block-title {
  font-family: var(--font-marker);
  font-size: clamp(1.35rem, 4vw, 1.8rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.legal-block p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.legal-updated {
  font-family: var(--font-marker);
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

@media (max-width: 560px) {
  .legal-panel {
    padding: 24px 20px;
  }
}
.updates-body {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.updates-top {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  background: var(--black);
  padding: 96px 28px 34px;
  text-align: center;
  overflow: hidden;
}

.deco-top {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: float linear infinite;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.updates-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: invert(1);
  margin: 0 auto 18px;
  position: relative;
  z-index: 3;
}

.updates-title {
  font-size: clamp(2.1rem, 7.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  position: relative;
  z-index: 3;
}

.updates-word-news {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
}

.updates-word-and {
  font-family: var(--font-marker);
  color: var(--text-primary);
}

.updates-word-updates {
  font-family: var(--font-hand);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
}

.updates-intro {
  font-family: var(--font-marker);
  font-size: clamp(1rem, 3vw, 1.35rem);
  color: var(--text-secondary);
  position: relative;
  z-index: 3;
}

.updates-panel {
  position: relative;
  flex: 1;
  min-height: 0;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  overflow: hidden;
  border-top: 2px solid rgba(255, 255, 255, 0.85);
}

.updates-panel #bgCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.chat-scroll {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow-y: auto;
  padding: 40px 20px 40px;
}

.chat-scroll:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -3px;
}

.chat-log {
  display: flex;
  flex-direction: column;
  gap: 34px;
  max-width: 560px;
  margin-inline: auto;
}

.chat-date {
  text-align: center;
  font-family: var(--font-marker);
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  max-width: 80%;
}

.msg-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
}

.msg + .msg .msg-avatar {
  visibility: hidden;
}

.msg-bubble {
  background: rgba(8, 8, 8, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px 20px 20px 6px;
  padding: 12px 16px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.msg-bubble p {
  font-family: var(--font-marker);
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.msg-bubble p + p {
  margin-top: 0.6em;
}

.msg-bubble a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.msg-bubble a:hover,
.msg-bubble a:focus-visible {
  color: var(--white);
}

.msg-media {
  display: block;
  max-width: 100%;
  border-radius: 14px;
  margin-top: 4px;
}

.msg-bubble p + .msg-media {
  margin-top: 10px;
}

.chat-jump {
  position: absolute;
  right: 18px;
  bottom: 20px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.85);
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.chat-jump:hover,
.chat-jump:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.chat-jump svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 560px) {
  .msg {
    max-width: 88%;
  }

  .msg-avatar {
    width: 34px;
    height: 34px;
  }
}
