.menu-page {
  background-color: #D9D9D9;
  background-image: none;
  min-height: 100vh;
  padding: 32px 48px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-dot {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #888888;
  margin-bottom: 56px;
  transition: transform 0.2s, background 0.2s;
  flex-shrink: 0;
}
.menu-dot:hover {
  background: #555555;
  transform: scale(1.1);
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  align-content: flex-start;
  flex: 1;
}

.tag {
  display: inline-block;
  background: #A0FF3C;
  color: #111111;
  font-family: "Geist Mono", monospace;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  padding: 24px 48px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.tag:hover {
  background: #111111;
  color: #A0FF3C;
  transform: scale(1.03);
}

.menu-footer {
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  line-height: 1.7;
  color: #111111;
  letter-spacing: 0.01em;
  max-width: 860px;
  margin-top: 80px;
}

.gif-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  z-index: 999;
  pointer-events: none;
}

@media (max-width: 768px) {

  .menu-page {
    padding: 24px 20px 40px 20px;
  }

  .menu-dot {
    width: 22px;
    height: 22px;
    margin-bottom: 32px;
  }

  .menu-tags {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
  }

  .tag {
    font-size: 28px;
    padding: 16px 28px;
    white-space: nowrap;
  }

  .menu-footer {
    font-size: 12px;
    margin-top: 48px;
  }

  .gif-overlay {
    transform: rotate(90deg) scale(150%);
    transform-origin: center center;
  }
}