@font-face {
  font-family: 'Typewriter Spool';
  src: url('assets/typewriter-spool.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  color: #fff;
  overflow: hidden;
  height: 100vh;
}

#entry {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #04060d;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.6s ease;
}

#entry::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(40,110,255,0.28) 0%, rgba(20,60,160,0.12) 35%, rgba(4,6,13,0) 70%);
  animation: entry-pulse 4.5s ease-in-out infinite;
}

@keyframes entry-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

#entry.fade {
  opacity: 0;
  pointer-events: none;
}

.entry-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

#enter-btn {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  opacity: 0.92;
  transition: opacity 0.25s, transform 0.25s, text-shadow 0.25s;
  text-shadow: 0 0 30px rgba(40,110,255,0.3);
}

#entry:hover #enter-btn {
  opacity: 1;
  transform: scale(1.03);
  text-shadow: 0 0 45px rgba(40,110,255,0.55);
}

.warning {
  font-size: 0.72rem;
  opacity: 0.38;
  margin-top: 0.3rem;
  line-height: 1.6;
  letter-spacing: 0.3px;
  max-width: 360px;
}

#bgvid {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.volume-control {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.volume-control:hover {
  opacity: 1;
}

#vol-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 2;
}

#vol-btn svg {
  width: 24px;
  height: 24px;
}

#vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  margin-left: 0;
  opacity: 0;
  transition: width 0.25s ease, opacity 0.2s ease, margin-left 0.25s ease;
}

.volume-control:hover #vol-slider {
  width: 80px;
  margin-left: 0.6rem;
  opacity: 1;
}

#vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: 0.15s;
}

#vol-slider::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

#vol-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: none;
}

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  perspective: 1400px;
  transition: opacity 0.45s ease;
}

.page.active {
  opacity: 1;
  pointer-events: auto;
}

.page > * {
  opacity: 0;
  transform: translateY(48px) scale(0.9) rotateX(10deg);
  filter: blur(14px);
  transform-origin: center bottom;
  transition: opacity 0.6s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.page.active > * {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.page > .projects-card,
.page > .projects-card > .projects-grid {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.projects-grid {
  perspective: 1400px;
}

.projects-grid > * {
  opacity: 0;
  transform: translateY(48px) scale(0.9) rotateX(10deg);
  filter: blur(14px);
  transform-origin: center bottom;
  transition: opacity 0.6s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.page.active .projects-grid > * {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.page.active .projects-grid > *:nth-child(1) { transition-delay: 0.08s; }
.page.active .projects-grid > *:nth-child(2) { transition-delay: 0.16s; }
.page.active .projects-grid > *:nth-child(3) { transition-delay: 0.24s; }
.page.active .projects-grid > *:nth-child(4) { transition-delay: 0.32s; }
.page.active .projects-grid > *:nth-child(5) { transition-delay: 0.40s; }
.page.active .projects-grid > *:nth-child(6) { transition-delay: 0.48s; }
.page.active .projects-grid > *:nth-child(7) { transition-delay: 0.56s; }

.card {
  text-align: center;
}

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 440px;
}

.project-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  text-align: left;
  cursor: pointer;
  transition: opacity 0.6s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease, border-color 0.2s, background 0.2s;
  overflow: hidden;
}

.project-card:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}

.project-cta {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, gap 0.2s;
}

.project-cta svg {
  width: 13px;
  height: 13px;
}

.project-card:hover .project-cta {
  color: rgba(255,255,255,0.9);
  gap: 0.5rem;
}

.project-title {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
  padding-right: 6rem;
}

.project-desc {
  font-size: 0.8rem;
  opacity: 0.55;
  line-height: 1.4;
  font-weight: 300;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.project-tag {
  font-size: 0.65rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0.5;
  letter-spacing: 0.3px;
}

#navbar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 0.25rem;
}

.nav-name {
  display: none;
}

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-indicator {
  position: absolute;
  top: 0.15rem;
  bottom: 0.15rem;
  left: 0.15rem;
  width: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  transition: left 0.3s ease, width 0.3s ease;
  pointer-events: none;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  opacity: 0.45;
  transition: opacity 0.25s;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-link.active {
  opacity: 1;
}

.ambient-dots {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  animation: float-up linear infinite;
}

.dot:nth-child(1) { left: 10%; animation-duration: 18s; animation-delay: 0s; }
.dot:nth-child(2) { left: 25%; animation-duration: 22s; animation-delay: 3s; }
.dot:nth-child(3) { left: 45%; animation-duration: 16s; animation-delay: 1s; }
.dot:nth-child(4) { left: 65%; animation-duration: 20s; animation-delay: 5s; }
.dot:nth-child(5) { left: 85%; animation-duration: 14s; animation-delay: 2s; }

@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.profile-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.name-tooltip {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  letter-spacing: 0;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  margin-bottom: 6px;
}

.name-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.75);
}

.name-text {
  position: relative;
  display: inline-block;
}

#name-text:hover .name-tooltip {
  opacity: 1;
}

.star-icon {
  color: #ffd700;
  font-size: 1.3rem;
  position: relative;
  cursor: default;
  vertical-align: super;
  margin-left: 2px;
  display: inline-block;
}

.star-wrap {
  position: relative;
  display: inline;
}

.star-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  font-weight: 400;
}

.star-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.75);
}

.star-wrap:hover .star-tooltip {
  opacity: 1;
}

.star-icon {
  transition: transform 0.3s;
  display: inline-block;
}

.star-wrap:hover .star-icon {
  transform: rotate(-15deg);
}

.subtitle {
  font-size: 1.1rem;
  opacity: 0.75;
  margin-top: 0.2rem;
  letter-spacing: 2px;
  font-weight: 300;
}

.opium {
  font-family: 'Typewriter Spool', 'Courier New', Courier, monospace;
  font-size: 1.6rem;
  letter-spacing: 0;
  opacity: 0.6;
  margin: 0.6rem auto 0;
  line-height: 1;
  display: block;
}

.opium-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.opium-tooltip {
  position: absolute;
  left: 50%;
  top: calc(100% + 6px);
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  font-weight: 400;
  z-index: 2;
}

.opium-tooltip::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.75);
}

.opium-wrap:hover .opium-tooltip {
  opacity: 1;
}

.bio {
  font-size: 0.85rem;
  opacity: 0.5;
  margin-top: 0.15rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  opacity: 0.6;
  letter-spacing: 0.5px;
  font-weight: 400;
  overflow: hidden;
}

.dw-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.discord-widget {
  width: 100%;
  max-width: fit-content;
}

.dw-inner {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}

.dw-avatar-col {
  flex-shrink: 0;
  align-self: center;
}

.dw-avatar-wrap {
  position: relative;
  width: 64px;
  height: 64px;
}

#dw-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

.status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
}

.status-dot svg {
  width: 11px;
  height: 11px;
}

.status-dot.online    svg { color: #43b581; }
.status-dot.idle      svg { color: #faa61a; }
.status-dot.dnd       svg { color: #f04747; }
.status-dot.offline   svg { color: #747f8d; }

.dw-body {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: 0.75rem;
}

.dw-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
  gap: 0.2rem;
}

.dw-name-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
}

.dw-name {
  font-size: 1.1rem;
  font-weight: 550;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dw-badges {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
  align-items: center;
}

.badge-icon {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.badge-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.badge-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  font-weight: 400;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
}
.badge-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.75);
}
.badge-icon:hover .badge-tooltip {
  opacity: 1;
}

.dw-activity-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 0.1rem;
  width: 100%;
  transition: opacity 0.3s, height 0.3s;
}

.dw-sname {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.3;
  display: inline-block;
  white-space: nowrap;
}

.dw-label {
  opacity: 0.6;
  font-weight: 400;
}

.dw-sdetail {
  font-size: 0.8rem;
  opacity: 0.55;
  line-height: 1.3;
  display: inline-block;
  white-space: nowrap;
}

.scroll-wrap {
  overflow: hidden;
  width: 100%;
  text-align: left;
}

.scroll-wrap.scrolling .dw-sname,
.scroll-wrap.scrolling .dw-sdetail {
  animation: scroll-text 14s ease-in-out infinite;
}

@keyframes scroll-text {
  0%, 10% { transform: translateX(0); }
  50% { transform: translateX(var(--scroll, -50px)); }
  80% { transform: translateX(var(--scroll, -50px)); }
  100% { transform: translateX(0); }
}

.dw-img-col {
  flex-shrink: 0;
  transition: opacity 0.3s, height 0.3s;
}

.dw-img-inner {
  display: flex;
  align-items: center;
  position: relative;
  background: transparent;
}

.dw-img-span {
  display: inline-flex;
  position: relative;
  background: transparent;
}

.viz-video {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
  mix-blend-mode: lighten;
  display: block;
}

.viz-video.hidden {
  display: none;
}

.dw-act-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.act-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 400;
  white-space: pre-line;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  max-width: 320px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.act-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.75);
}

.dw-img-span:hover .act-tooltip {
  opacity: 1;
}

.visits-wrap {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: auto;
  font-size: 0.75rem;
  opacity: 0.45;
}

.visits-icon {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: default;
}

.visits-icon svg {
  width: 16px;
  height: 16px;
}

.visits-count {
  font-variant-numeric: tabular-nums;
}

.visits-tooltip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 9999;
}

.visits-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.75);
}

.visits-icon:hover .visits-tooltip {
  opacity: 1;
}

.about {
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.about-text {
  font-size: 0.8rem;
  opacity: 0.55;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.about-game {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.projects-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  position: fixed;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(calc(-50% + 40px));
  z-index: 4;
  opacity: 0.25;
  pointer-events: none;
}

.projects-prompt-text {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.projects-prompt-arrow {
  width: 18px;
  height: 18px;
  animation: bounce-arrow 1.5s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (max-width: 500px) {
  .avatar {
    width: 80px;
    height: 80px;
  }
  h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  .subtitle {
    font-size: 0.9rem;
  }
  .opium {
    font-size: 1.2rem;
  }
  #navbar {
    bottom: 1rem;
  }
  .projects-prompt {
    bottom: 4rem;
  }
  .nav-link {
    font-size: 0.7rem;
    padding: 0.45rem 0.9rem;
  }
  .profile-row {
    gap: 0.6rem;
  }
  .viz-video {
    width: 56px;
    height: 56px;
  }
  .dw-inner {
    padding: 0.6rem;
    gap: 0.5rem;
  }
  .dw-avatar-wrap {
    width: 48px;
    height: 48px;
  }
  #dw-avatar {
    width: 48px;
    height: 48px;
  }
  .dw-body {
    gap: 0.5rem;
  }
  .dw-name {
    font-size: 0.95rem;
  }
  .dw-sname {
    font-size: 0.78rem;
  }
  .dw-sdetail {
    font-size: 0.73rem;
  }
  .dw-act-img {
    width: 56px;
    height: 56px;
  }
  .badge-icon img {
    width: 16px;
    height: 16px;
  }
  .discord-widget {
    max-width: 340px;
  }
  .projects-card {
    padding: 1rem;
  }
  .project-card {
    padding: 0.8rem 1rem;
  }
  .project-title {
    padding-right: 4.5rem;
  }
  .project-cta {
    top: 0.7rem;
    right: 0.8rem;
    font-size: 0.65rem;
  }
  .card {
    max-width: 92vw;
    padding: 0 0.5rem;
  }
  .entry-content {
    padding: 1.5rem;
  }
  #enter-btn {
    font-size: 2.4rem;
  }
  .warning {
    max-width: 280px;
    font-size: 0.68rem;
  }
  .volume-control {
    bottom: 1.5rem;
    left: auto;
    right: 0.75rem;
    transform: none;
  }
  .tags {
    gap: 0.3rem;
  }
  .tag {
    font-size: 0.65rem;
    padding: 0.2rem 0.55rem;
  }
  .about {
    max-width: 92vw;
  }
  .projects-grid {
    max-width: 92vw;
  }
  .dw-inner {
    max-width: 92vw;
  }
}

@media (hover: none) and (pointer: coarse) {
  .volume-control {
    opacity: 0.6;
  }
  .volume-control #vol-slider {
    width: 80px;
    margin-left: 0.6rem;
    opacity: 1;
  }
}
